/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Slick slider styles */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-water:before {
  content: "\e918";
}

.icon-arrow-left:before {
  content: "\e900";
}

.icon-arrow-link:before {
  content: "\e901";
}

.icon-arrow-right:before {
  content: "\e902";
}

.icon-businessmodel:before {
  content: "\e903";
}

.icon-caret-down:before {
  content: "\e904";
}

.icon-case:before {
  content: "\e905";
}

.icon-datause:before {
  content: "\e906";
}

.icon-food:before {
  content: "\e907";
}

.icon-hero-01:before {
  content: "\e908";
}

.icon-hero-02:before {
  content: "\e909";
}

.icon-hero-03:before {
  content: "\e90a";
}

.icon-mapper:before {
  content: "\e90b";
}

.icon-menu:before {
  content: "\e90c";
}

.icon-placeholder:before {
  content: "\e90d";
}

.icon-play-video:before {
  content: "\e90e";
}

.icon-plus:before {
  content: "\e90f";
}

.icon-quote:before {
  content: "\e910";
}

.icon-science:before {
  content: "\e911";
}

.icon-sdg-3:before {
  content: "\e912";
}

.icon-sdg-4:before {
  content: "\e913";
}

.icon-sdg-6:before {
  content: "\e914";
}

.icon-sdg-14:before {
  content: "\e915";
}

.icon-search:before {
  content: "\e916";
}

.icon-supplychain:before {
  content: "\e917";
}

.icon-logo-primary-black:before {
  content: "\e919";
}

.icon-secondary-microscope:before {
  content: "\e91a";
}

.icon-world-map-location:before {
  content: "\e91b";
}

.icon-paper:before {
  content: "\e91c";
}

.icon-lab-tube:before {
  content: "\e91d";
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
  background-color: #ebeced;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p, .fancybox-error .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .fancybox-error ul {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px;
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p, .fancybox-share .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .fancybox-share ul {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Team Page Modal  */
.modal-body.fancybox-content {
  background-color: #fff;
  max-width: 1000px;
  min-height: 300px;
  padding: 80px;
}
.modal-body.fancybox-content h2 {
  color: #08c;
}
.modal-body.fancybox-content p, .modal-body.fancybox-content .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .modal-body.fancybox-content ul {
  color: #212424;
}
.modal-body.fancybox-content button {
  padding: 30px;
}

.menu, .sub-menu.dropdown, .info-menu, .benefits-list, .slick-dots, .popup-content .statistic-list, .quick-nav .nav-list, .statistic .statistics-list, .blog-page .blog-list, .select-holder .blog-category, .select-holder .fs-dropdown, .fs-dropdown, .values .values-list, .were-work .work-list, .partnerships .partnerships-list, .partnerships .partners-list, .why-work .work-list, .development .development-list, .footer-content .info-box .titles,
.footer-content .info-box .link-list, .partners .partners-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden;
}

/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text, .wp-caption .section.singleblog__content .container .grid__container .grid__block .grid__content ul.wp-caption-text, .section.singleblog__content .container .grid__container .grid__block .grid__content .wp-caption ul.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/**
 * Iframe container
 */
.iframes-container {
  position: relative;
  overflow: hidden;
}

body.single-post iframe {
  height: 100%;
  width: 100%;
}

.responsive-image img {
  max-width: 100%;
}

img.responsive-image {
  max-width: 100%;
  height: auto;
}

.box-shadow, .modal-body.fancybox-content, .faqs-section .tabs {
  -webkit-box-shadow: 0px 5px 25px 0px rgba(61, 67, 69, 0.15);
          box-shadow: 0px 5px 25px 0px rgba(61, 67, 69, 0.15);
}

sup {
  top: -0.5em;
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  color: #0088cc;
}

.img--overlay {
  position: relative;
}
.img--overlay:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(61, 67, 69, 0.25);
}
.img--overlay:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(61, 67, 69, 0.25);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  max-height: 1000000px;
}

body {
  color: #212424;
  background: #fff;
  font: 14px/1.4285714 "proxima-nova", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: inherit;
  font-weight: bold;
  margin: 0 0 0.5em;
  color: inherit;
}

h1, .h1 {
  font-size: 38px;
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 16px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 10px;
}

p, .section.singleblog__content .container .grid__container .grid__block .grid__content ul {
  margin: 0 0 1em;
}

a {
  color: #0088cc;
}
a:hover, a:focus {
  text-decoration: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #b0b1b3;
  padding: 0.4em 0.7em;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='search']:focus,
input[type='password']:focus,
textarea:focus {
  border-color: #212424;
}
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #b0b1b3;
}
input[type='text']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='password']::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #b0b1b3;
}
input[type='text']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='password']:-moz-placeholder,
textarea:-moz-placeholder {
  color: #b0b1b3;
}
input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b0b1b3;
}
input[type='text'].placeholder,
input[type='tel'].placeholder,
input[type='email'].placeholder,
input[type='search'].placeholder,
input[type='password'].placeholder,
textarea.placeholder {
  color: #b0b1b3;
}

select {
  -webkit-border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
}

form.sign-up-form {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
form.sign-up-form ul {
  list-style: none;
  padding: 0px;
}
@media (min-width: 768px) {
  form.sign-up-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 23px;
  }
}
@media (min-width: 1024px) {
  form.sign-up-form {
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 48px !important;
  }
}
form.sign-up-form #field_1_1 {
  padding-right: 0px;
}
form.sign-up-form #field_1_1 label.gfield_label {
  display: none;
}
form.sign-up-form #field_1_1.gfield.gfield_error.field_sublabel_below.field_description_below.gfield_visibility_visible {
  padding-top: 0px !important;
}
form.sign-up-form #input_1_1 {
  text-align: center;
  border-color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  form.sign-up-form #input_1_1 {
    text-align: left;
    margin-bottom: 0;
    padding: 10px 60px !important;
  }
}
form.sign-up-form #gform_submit_button_1 {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer;
  background: #08c;
  display: inline-block;
  line-height: 1.33333;
  letter-spacing: 2.4px;
  font-weight: 300;
  vertical-align: middle;
  text-transform: uppercase !important;
  text-align: center;
  width: 100%;
  border: 1.5px solid #fff !important;
  padding: 24px 10px !important;
  outline: none;
}
form.sign-up-form #gform_submit_button_1.btn {
  min-width: auto;
}
@media (min-width: 768px) {
  form.sign-up-form #gform_submit_button_1 {
    padding: 24px 10px;
    max-width: 169px;
  }
}
@media (min-width: 1024px) {
  form.sign-up-form #gform_submit_button_1 {
    max-width: 141px;
  }
}
form.sign-up-form .gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first,
form.sign-up-form .gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle,
form.sign-up-form .gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last {
  padding-top: 0 !important;
}
form.sign-up-form .gf_simple_horizontal_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
form.sign-up-form .gf_simple_horizontal_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
  margin-bottom: 0 !important;
}
form.sign-up-form .gf_simple_horizontal_wrapper li.hidden_label input {
  margin-top: 0 !important;
}
form.sign-up-form body .gf_simple_horizontal_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}
form.sign-up-form .gf_simple_horizontal div.gform_footer.top_label {
  width: auto !important;
  vertical-align: top !important;
}
form.sign-up-form .gf_simple_horizontal div.gform_body {
  width: auto !important;
}
form.sign-up-form .gf_simple_horizontal div.gform_footer.top_label input[type="submit"] {
  line-height: 26px;
  font-size: 13px;
  padding: 0 24px;
  letter-spacing: 1px;
}
form.sign-up-form .validation_error {
  color: #682300 !important;
  border-top: 2px solid #682300 !important;
  border-bottom: 2px solid #682300 !important;
}
form.sign-up-form #validation_message_1_1 {
  color: #682300 !important;
}
form.sign-up-form .gform_footer.top_label {
  padding: 0px;
}

.form-section {
  text-align: center;
  background: #ebeced;
  padding: 15px 15px 0px;
}
.form-section.padding {
  text-align: center;
  background: #ebeced;
  padding: 15px 15px 0px;
}
@media (min-width: 768px) {
  .form-section.padding {
    padding: 70px 64px 0px;
  }
}
@media (min-width: 1024px) {
  .form-section.padding {
    padding: 20px 350px 100px;
  }
}
.form-section .text--inner {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .form-section .text--inner {
    padding: 0px 100px;
  }
}
@media (min-width: 1024px) {
  .form-section .text--inner {
    padding: 0px 180px;
  }
}
.form-section .text--inner h2 {
  color: #0088cc;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .form-section .text--inner h2 {
    margin-bottom: 43px;
  }
}
@media (min-width: 1024px) {
  .form-section .text--inner h2 {
    margin-bottom: 20px;
  }
}
.form-section .text--inner p, .form-section .text--inner .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .form-section .text--inner ul {
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .form-section .text--inner p, .form-section .text--inner .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .form-section .text--inner ul {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .form-section .text--inner p, .form-section .text--inner .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .form-section .text--inner ul {
    margin-bottom: 50px;
  }
}
.form-section .container-fluid {
  background: #fff;
  padding: 98px 32px 94px;
}
@media (min-width: 768px) {
  .form-section .container-fluid {
    padding: 120px 74px 123px;
  }
}
@media (min-width: 1024px) {
  .form-section .container-fluid {
    max-width: 650px;
    margin: 0 auto;
  }
}
.form-section .btn {
  padding: 17px 10px;
}
@media (min-width: 768px) {
  .form-section .btn {
    min-width: 210px;
  }
}
.form-section #gform_wrapper_2 {
  /* form placeholder overrides - have to use !important or this doesn't work
  --------------------------------------------- */
}
.form-section #gform_wrapper_2 #field_2_1 label {
  display: none;
}
.form-section #gform_wrapper_2 #field_2_2 label {
  display: none;
}
.form-section #gform_wrapper_2 #field_2_3 label {
  display: none;
}
.form-section #gform_wrapper_2 #field_2_4 label {
  display: none;
}
.form-section #gform_wrapper_2 .gform_footer {
  text-align: center;
}
.form-section #gform_wrapper_2 ::-webkit-input-placeholder {
  /* Chrome */
  padding-left: 15px;
}
.form-section #gform_wrapper_2 :-ms-input-placeholder {
  /* IE 10+ */
  padding-left: 15px;
}
.form-section #gform_wrapper_2 ::-moz-placeholder {
  /* Firefox 19+ */
  padding-left: 15px;
}
.form-section #gform_wrapper_2 :-moz-placeholder {
  /* Firefox 4 - 18 */
  padding-left: 15px;
}
.form-section .validation_error {
  color: #682300 !important;
  border-top: 2px solid #682300 !important;
  border-bottom: 2px solid #682300 !important;
}
.form-section #validation_message_2_1 {
  color: #682300 !important;
}
.form-section #validation_message_2_2 {
  color: #682300 !important;
}
.form-section #validation_message_2_3 {
  color: #682300 !important;
}
.form-section #validation_message_2_4 {
  color: #682300 !important;
}

.gform_footer {
  text-align: center;
}

/*header style*/
#header {
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.nav-active #header {
  background: #0088cc;
}
@media (min-width: 1024px) {
  .nav-active #header {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  }
}
#header.fixed-position {
  background: #fff !important;
}
#header.fixed-position .container {
  padding: 13px 60px 13px 18px;
}
@media (min-width: 375px) {
  #header.fixed-position .container {
    padding: 13px 60px 13px 18px;
  }
}
@media (min-width: 1024px) {
  #header.fixed-position .container {
    padding: 15px 60px 15px 15px;
  }
}
@media (min-width: 1200px) {
  #header.fixed-position .container {
    padding: 20px 60px 20px 27px;
  }
}
#header .container {
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
  max-width: none;
  padding: 27px 60px 27px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 375px) {
  #header .container {
    padding: 27px 60px 27px 31px;
  }
}
@media (min-width: 1024px) {
  #header .container {
    padding: 25px 60px 25px 15px;
  }
}
@media (min-width: 1200px) {
  #header .container {
    padding: 37px 60px 37px 45px;
  }
}

/* page logo styles */
.logo {
  -webkit-transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  width: 185px;
  display: block;
}
@media (min-width: 1024px) {
  .logo {
    width: 220px;
  }
}
.fixed-position .logo {
  width: 131px;
}
@media (min-width: 1024px) {
  .fixed-position .logo {
    width: 159px;
  }
}
.logo .logo-holder {
  -webkit-transition: height 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: height 0.3s ease-in-out, width 0.3s ease-in-out;
  width: 185px;
  height: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  .logo .logo-holder {
    width: 220px;
    height: 23px;
  }
}
.fixed-position .logo .logo-holder {
  width: 131px;
  height: 14px;
}
@media (min-width: 1024px) {
  .fixed-position .logo .logo-holder {
    width: 159px;
    height: 17px;
  }
}
.logo .logo-holder img {
  display: block;
}
.logo .logo-holder .black-logo {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.fixed-position .logo .logo-holder .black-logo {
  opacity: 1;
  visibility: visible;
}
.logo .logo-holder .white-logo {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
}
.fixed-position .logo .logo-holder .white-logo {
  opacity: 0;
  visibility: hidden;
}

.header-holder {
  -webkit-transition: padding 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out, width 0.3s ease-in-out;
  width: calc(100% - 220px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 1024px) {
  .header-holder {
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .header-holder {
    padding-right: 59px;
    padding-top: 5px;
  }
}
@media (min-width: 1024px) {
  .fixed-position .header-holder {
    width: calc(100% - 159px);
    padding-right: 0px;
  }
}
@media (min-width: 1200px) {
  .fixed-position .header-holder {
    padding-top: 0;
  }
}

/* header navigation styles */
.navigation {
  -webkit-transition: padding 0.3s ease-in-out, height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out, height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 88px 30px 100px;
  background-color: #0088cc;
  height: calc(100vh - 74px);
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .navigation {
    position: relative;
    padding: 0;
    left: auto;
    right: auto;
    height: auto;
    top: auto;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    visibility: visible;
  }
}
.nav-active .navigation {
  opacity: 1;
  visibility: visible;
}
.fixed-position .navigation {
  height: calc(100vh - 40px);
}
@media (min-width: 1024px) {
  .fixed-position .navigation {
    padding-right: 152px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .fixed-position .navigation {
    padding-right: 201px;
  }
}

/*menu style*/
.menu {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  overflow: auto;
  max-height: calc(100vh - 265px);
}
@media (min-width: 1024px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    overflow: visible;
    max-height: none;
  }
}
@media (min-width: 1024px) {
  .fixed-position .menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  .nav-active .fixed-position .menu {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1024px) {
  .fixed-position .menu a {
    color: #212424;
  }
}
.fixed-position .menu .search-opener {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.menu > li {
  margin: 0 0 35px;
  position: relative;
}
@media (min-width: 1024px) {
  .menu > li {
    margin: 0 6px;
  }
}
@media (min-width: 1200px) {
  .menu > li {
    margin: 0 12px;
  }
}
.menu > li:last-child {
  margin-right: 0;
}
.menu > li:hover .sub-menu.dropdown {
  opacity: 1;
  visibility: visible;
}
.menu a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .menu a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.52px;
  }
}

/*dropdown style*/
.sub-menu.dropdown a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.52px;
}
.sub-menu.dropdown a:hover {
  color: #4dc4ff;
}
@media (min-width: 1024px) {
  .sub-menu.dropdown {
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    display: block;
    position: absolute;
    top: calc(100% + 26px);
    background-color: #fff;
    padding: 31px 23px 25px;
    min-width: 216px;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .sub-menu.dropdown a {
    color: #0088cc;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.52px;
  }
  .sub-menu.dropdown a:hover {
    color: #4dc4ff;
  }
}
@media (min-width: 1024px) {
  .sub-menu.dropdown:before {
    position: absolute;
    content: "";
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ffffff transparent;
  }
}
@media (min-width: 1024px) {
  .sub-menu.dropdown:after {
    content: "";
    position: absolute;
    bottom: 100%;
    background-color: transparent;
    width: 100%;
    height: 26px;
  }
}
.sub-menu.dropdown li {
  margin-bottom: 10px;
  margin-top: 10px;
}

.info-menu-holder {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  bottom: 29px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 31px;
}
@media (min-width: 1024px) {
  .info-menu-holder {
    opacity: 0;
    left: auto;
    bottom: auto;
    padding: 0;
    width: auto;
    visibility: hidden;
    top: 50%;
    right: 21px;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .info-menu-holder {
    right: 21px;
  }
}
@media (min-width: 1024px) {
  .fixed-position .info-menu-holder {
    opacity: 1;
    visibility: visible;
  }
}

.info-menu {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .info-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media (min-width: 1024px) {
  .fixed-position .info-menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.info-menu li {
  margin: 0 0 5px;
  display: none;
}
@media (min-width: 1024px) {
  .info-menu li {
    margin: 0 8px;
    display: block;
  }
}
@media (min-width: 1200px) {
  .info-menu li {
    margin: 0 14px;
  }
}
@media (min-width: 1024px) {
  .info-menu li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .info-menu li.donate {
    display: block;
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .info-menu li.donate a {
    width: 100%;
    background-color: #fff;
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 22px 15px 21px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: #0088cc;
  }
}
.info-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 1024px) {
  .info-menu a {
    color: #0088cc;
  }
}

@media (max-width: 1023px) {
  .search-active #header {
    background: #0088cc;
  }
}
@media (max-width: 1023px) {
  .search-active .logo {
    opacity: 0;
    visibility: hidden;
  }
}
.search-active .search-holder {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .search-active .menu {
    opacity: 0;
    visibility: hidden;
  }
}

.search-holder {
  -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out, background-color 0.3s ease-in-out;
  max-width: calc(100% - 60px);
  position: absolute;
  width: 100%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  padding: 0 23px;
}
@media (min-width: 1024px) {
  .search-holder {
    padding: 0;
    max-width: 185px;
    right: 50px;
  }
}
@media (min-width: 1200px) {
  .search-holder {
    max-width: 228px;
    right: 60px;
  }
}
.fixed-position .search-holder {
  height: 100%;
  background-color: #0088cc;
  padding: 0 28px 0 23px;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder {
    padding: 0 20px;
    background-color: #ebeced;
  }
}
@media (min-width: 1200px) {
  .fixed-position .search-holder {
    padding: 0 28px 0 23px;
  }
}
.fixed-position .search-holder input[type='search'] {
  color: #fff;
  border-color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search'] {
    color: #0088cc;
    border-color: #0088cc;
  }
}
.fixed-position .search-holder input[type='search']::-webkit-input-placeholder {
  color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search']::-webkit-input-placeholder {
    color: #0088cc;
  }
}
.fixed-position .search-holder input[type='search']::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search']::-moz-placeholder {
    color: #0088cc;
  }
}
.fixed-position .search-holder input[type='search']:-moz-placeholder {
  color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search']:-moz-placeholder {
    color: #0088cc;
  }
}
.fixed-position .search-holder input[type='search']:-ms-input-placeholder {
  color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search']:-ms-input-placeholder {
    color: #0088cc;
  }
}
.fixed-position .search-holder input[type='search'].placeholder {
  color: #fff;
}
@media (min-width: 1024px) {
  .fixed-position .search-holder input[type='search'].placeholder {
    color: #0088cc;
  }
}
.search-holder .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.search-holder input[type='search'] {
  -webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  font-size: 14px;
  color: #fff;
  height: 33px;
  font-weight: 500;
  border: none;
  padding: 5px 25px 5px 0;
  border-bottom: 1px solid #fff;
  background-color: transparent;
}
.search-holder input[type='search']::-webkit-input-placeholder {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #fff;
}
.search-holder input[type='search']::-moz-placeholder {
  opacity: 1;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #fff;
}
.search-holder input[type='search']:-moz-placeholder {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #fff;
}
.search-holder input[type='search']:-ms-input-placeholder {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #fff;
}
.search-holder input[type='search'].placeholder {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #fff;
}

.search-opener {
  -webkit-transition: color 0.3s ease-in-out, top 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, top 0.3s ease-in-out, right 0.3s ease-in-out;
  line-height: 1;
  color: #fff;
  z-index: 3;
}
.fixed-position .search-opener {
  color: #0088cc;
}
.search-active .fixed-position .search-opener {
  color: #fff;
}
@media (min-width: 1024px) {
  .search-active .fixed-position .search-opener {
    color: #0088cc;
  }
}
.search-opener i {
  font-size: 18px;
  display: block;
}

.nav-opener {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, right 0.3s ease-in-out, top 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, right 0.3s ease-in-out, top 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, right 0.3s ease-in-out, top 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, right 0.3s ease-in-out, top 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: block;
  width: 60px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: calc(50% + 3px);
  right: 17px;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}
@media (min-width: 1024px) {
  .nav-opener {
    top: 50%;
    right: 0;
    background: #0088cc;
    height: 50px;
    width: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0) translateY(-50%);
            transform: scale(0) translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .nav-opener {
    height: 60px;
    width: 60px;
  }
}
.fixed-position .nav-opener {
  top: 50%;
  right: 0;
  background: #0088cc;
}
@media (min-width: 1024px) {
  .fixed-position .nav-opener {
    opacity: 1;
    top: 50%;
    right: 0;
    visibility: visible;
    -webkit-transform: scale(1) translateY(-50%);
            transform: scale(1) translateY(-50%);
  }
}
.nav-active .nav-opener span {
  opacity: 0;
}
.nav-active .nav-opener:before, .nav-active .nav-opener:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  left: 28%;
  right: 28%;
}
.nav-active .nav-opener:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.nav-opener span, .nav-opener:before, .nav-opener:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 29%;
  right: 29%;
  height: 1px;
}
@media (min-width: 1024px) {
  .nav-opener span, .nav-opener:before, .nav-opener:after {
    left: 29%;
    right: 26%;
  }
}
.nav-opener:before, .nav-opener:after {
  content: '';
  top: 36%;
  left: 35%;
}
@media (min-width: 1024px) {
  .nav-opener:before, .nav-opener:after {
    top: 40%;
    left: 37%;
  }
}
.nav-opener:after {
  top: 65%;
  left: 40%;
}
@media (min-width: 1024px) {
  .nav-opener:after {
    top: 60%;
    left: 42%;
  }
}

/*SearchWP Page*/
form.search {
  margin-top: 10px !important;
}
form.search input[type='search'] {
  background-color: transparent;
}

section.search-hero {
  background: #212424;
  height: 581px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.search-hero .search-hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 400px;
  width: 100%;
  max-width: 500px;
}
section.search-hero .search-hero-inner h2 {
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}
section.search-hero .search-hero-inner h1.error {
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}
section.search-hero .search-hero-inner h4 {
  color: #fff;
  text-align: center;
}
@media (min-width: 375px) {
  section.search-hero .search-hero-inner .search-form {
    margin: 0px 50px !important;
  }
}
section.search-hero .search-hero-inner span.screen-reader-text {
  display: none !important;
}
section.search-hero .search-hero-inner .search-submit {
  text-align: center;
  width: 100%;
  border: 1px solid #fff;
  padding: 24px 10px;
  outline: 0;
  color: #fff;
  background-color: #0088cc;
  line-height: 1.33333;
  letter-spacing: 2.4px;
  font-weight: 300;
  vertical-align: middle;
  text-transform: uppercase;
}

section.search-results-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0px;
}
section.search-results-section .search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 375px) {
  section.search-results-section .search-container {
    padding: 0px 50px !important;
  }
}
section.search-results-section .search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none !important;
}
section.search-results-section .search-results li {
  padding: 25px 0px;
}
section.search-results-section .search-results li p, section.search-results-section .search-results li .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content section.search-results-section .search-results li ul {
  color: #212424;
}
section.search-results-section .search-results li .search-hr {
  margin: 25px 0px;
}

section.archive-hero {
  background: #212424;
  height: 581px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.archive-hero .archive-hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 400px;
  width: 100%;
  max-width: 500px;
}
section.archive-hero .archive-hero-inner h1 {
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

.resize-active * {
  -webkit-transition: none !important;
  transition: none !important;
}

body {
  font-weight: 300;
}

/*page container style*/
.container {
  max-width: 1300px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 64px;
  }
}
.container.container-lg {
  max-width: 1460px;
  padding: 0 30px;
}

/*global geading style*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}

@media (min-width: 1024px) {
  h4,
  .h4 {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight: 300;
}

/*global default link style*/
a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #4dc4ff;
}
a.link {
  position: relative;
  padding: 0 27px 0 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.33333;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  color: #0088cc;
  letter-spacing: 2.4px;
}
a.link:hover {
  color: #005580;
}
a.link:before {
  color: #818585;
  font-family: 'icomoon' !important;
  content: '\e902';
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 9px;
}
a.link.link-white {
  color: #fff;
}
a.link.link-white:hover {
  color: #0088cc;
}
a.link.link-white:before {
  color: rgba(255, 255, 255, 0.4);
}

/*button style*/
.btn, form.sign-up-form #gform_submit_button_1, .form-section #gform_wrapper_2 #gform_submit_button_2, .gform_footer input[type=submit] {
  -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.33333;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 21px 10px;
  background: #0088cc;
  border: 1px solid transparent;
  letter-spacing: 2.4px;
  width: 100%;
}
@media (min-width: 768px) {
  .btn, form.sign-up-form #gform_submit_button_1, .form-section #gform_wrapper_2 #gform_submit_button_2, .gform_footer input[type=submit] {
    width: auto;
    min-width: 150px;
  }
}
.btn:hover, form.sign-up-form #gform_submit_button_1:hover, .form-section #gform_wrapper_2 #gform_submit_button_2:hover, .gform_footer input[type=submit]:hover {
  background: #0072bb;
  color: #fff;
}
.btn:active, form.sign-up-form #gform_submit_button_1:active, .form-section #gform_wrapper_2 #gform_submit_button_2:active, .gform_footer input[type=submit]:active {
  background: #0067a9;
}
.btn.btn-outline-white, form.sign-up-form .btn-outline-white#gform_submit_button_1, .form-section #gform_wrapper_2 .btn-outline-white#gform_submit_button_2, .gform_footer input.btn-outline-white[type=submit] {
  border-color: #fff;
}

.new-item {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}

.d-none {
  display: none;
}

/*benefits list style*/
.benefits-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .benefits-list li {
    margin-bottom: 26px;
    padding-left: 25px;
  }
}
.benefits-list li:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0088cc;
}

/*global input style*/
input::-ms-clear {
  display: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='password'],
input[type='number'] {
  height: 66px;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='password'],
input[type='number'],
textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 300;
  color: #818585;
  padding: 6px 12px;
}
input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='url']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #818585;
}
input[type='text']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='url']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='number']::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #818585;
}
input[type='text']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='url']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='password']:-moz-placeholder,
input[type='number']:-moz-placeholder,
textarea:-moz-placeholder {
  color: #818585;
}
input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='url']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='number']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #818585;
}
input[type='text'].placeholder,
input[type='tel'].placeholder,
input[type='email'].placeholder,
input[type='url'].placeholder,
input[type='search'].placeholder,
input[type='password'].placeholder,
input[type='number'].placeholder,
textarea.placeholder {
  color: #818585;
}
input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='password']:focus,
input[type='number']:focus,
textarea:focus {
  outline: none;
}

input[type='submit']:focus {
  outline: none;
}

.bg-stretch {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*slider arrow style*/
.slick-arrow {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #212424;
  position: absolute;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 1;
}
.slick-arrow:before {
  content: "\e902";
  font-family: 'icomoon' !important;
  position: absolute;
  font-size: 20px;
}
.slick-arrow:hover, .slick-arrow.slick-disabled {
  color: rgba(33, 36, 36, 0.5);
}
.slick-arrow.slick-prev:before {
  content: "\e900";
}

/*slider dots style*/
.slick-dots {
  font-size: 0;
  position: absolute;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.slick-dots li button {
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  width: 47px;
  height: 4px;
  padding: 0;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 4px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .slick-dots li button {
    width: 60px;
  }
}
.slick-dots li button:hover {
  border-color: #fff;
}
.slick-dots li.slick-active button {
  border-color: #fff;
}

/*keyframe on hero slider*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 1024px) {
  .sliders-holder {
    position: relative;
  }
}

/*hero slider style*/
.hero-slider .bg-stretch {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider .slick-dots {
  counter-reset: list;
  bottom: 24px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 200px);
}
@media (min-width: 768px) {
  .hero-slider .slick-dots {
    display: block;
    top: 50%;
    width: auto;
    right: 43px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.hero-slider .slick-dots li {
  position: relative;
}
@media (min-width: 768px) {
  .hero-slider .slick-dots li {
    display: block;
    margin-bottom: 30px;
  }
}
.hero-slider .slick-dots li.slick-active button, .hero-slider .slick-dots li:hover button {
  border-color: #fff;
}
.hero-slider .slick-dots li.slick-active button:before, .hero-slider .slick-dots li:hover button:before {
  color: #fff;
}
.hero-slider .slick-dots li button {
  -webkit-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  counter-increment: list;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.hero-slider .slick-dots li button:before {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  content: counter(list,decimal-leading-zero);
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  letter-spacing: 0.78px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*sub slider in hero section style*/
.impact-holder {
  background: #212424;
  color: #fff;
  text-align: center;
  max-width: 1168px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .impact-holder {
    position: absolute;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .impact-holder {
    padding-right: 82px;
  }
}
.impact-holder .subtitle {
  color: rgba(255, 255, 255, 0.3);
  padding: 17px 0 13px;
  -webkit-box-shadow: inset 0 -1px 0 #333333;
          box-shadow: inset 0 -1px 0 #333333;
}
@media (min-width: 1024px) {
  .impact-holder .subtitle {
    padding: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: scale(-1);
            transform: scale(-1);
    border-left: 1px solid #333333;
    text-align: center;
    min-width: 82px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1024px) {
  .impact-holder {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .impact-holder .impact-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 82px);
  }
}
@media (min-width: 1200px) {
  .impact-holder .impact-slider {
    width: calc(100% - 82px);
  }
}
.impact-holder .impact-slider .slick-arrow {
  top: 58px;
  color: #0088cc;
}
@media (min-width: 768px) {
  .impact-holder .impact-slider .slick-arrow {
    top: 61px;
  }
}
.impact-holder .impact-slider .slick-arrow:hover {
  color: #1ab3ff;
}
.impact-holder .impact-slider .slick-arrow.slick-prev {
  left: 17px;
}
@media (min-width: 768px) {
  .impact-holder .impact-slider .slick-arrow.slick-prev {
    left: 33px;
  }
}
.impact-holder .impact-slider .slick-arrow.slick-next {
  right: 37px;
}
@media (min-width: 768px) {
  .impact-holder .impact-slider .slick-arrow.slick-next {
    right: 60px;
  }
}
.impact-holder .impact-item {
  position: relative;
  padding: 0 40px;
  outline: none;
}
@media (min-width: 1024px) {
  .impact-holder .impact-item {
    width: 33.332%;
    padding: 0 35px;
  }
}
.impact-holder .impact-item h3 {
  font-weight: 700;
  margin-bottom: 3px;
}
.impact-holder .impact-item .text-description {
  display: block;
  color: #999;
  letter-spacing: 1.05px;
}
@media (min-width: 1024px) {
  .impact-holder .impact-item .text-description {
    letter-spacing: 0.35px;
  }
}
.impact-holder .impact-item .open-holder .text-holder h3 {
  color: #fff;
  font-weight: 700;
}
.impact-holder .impact-item .open-holder .text-holder h6 {
  color: #fff;
}
.impact-holder .impact-item .open {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .impact-holder .impact-item .open {
    margin-bottom: 14px;
  }
}
@media (min-width: 1024px) {
  .impact-holder .impact-item .open {
    font-size: 0;
    position: absolute;
    right: 56px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.impact-holder .impact-item .open:focus {
  outline: none;
}
.impact-holder .impact-item .open:before {
  content: "\e904";
  font-family: 'icomoon' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 8px;
}
@media (min-width: 1024px) {
  .impact-holder .impact-item .open:before {
    content: "\e90f";
    font-size: 14px;
  }
}
.impact-holder .impact-item .text-holder {
  padding: 30px 0 21px;
}
@media (min-width: 768px) {
  .impact-holder .impact-item .text-holder {
    padding: 22px 0;
  }
}
@media (min-width: 1024px) {
  .impact-holder .impact-item .text-holder {
    max-width: 210px;
    padding: 30px 0 20px;
  }
}

.popup-active .popup {
  max-height: 1500px;
}
@media (min-width: 1024px) {
  .popup-active .popup-content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*popup style*/
.popup {
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  display: block !important;
  max-height: 0;
  margin: 0 -40px;
}
@media (min-width: 1024px) {
  .popup {
    position: absolute;
    bottom: 0;
    margin: 0;
  }
}

/*popup content stle*/
.popup-content {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: relative;
  background: #0088cc;
  text-align: left;
  padding: 82px 64px 19px;
  /*close btn style*/
  /*title in popup*/
  /*statistics list in popup style*/
}
@media (min-width: 1024px) {
  .popup-content {
    padding: 43px 39px 1px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.popup-content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 25px;
  height: 25px;
}
.popup-content .close:before, .popup-content .close:after {
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(33, 36, 36, 0.4);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-content .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popup-content .close:hover:before, .popup-content .close:hover:after {
  background: #212424;
}
.popup-content .title {
  display: block;
  font-size: 30px;
}
.popup-content .title.head-title {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .popup-content .title.head-title {
    margin-bottom: 128px;
  }
}
.popup-content .description {
  display: block;
  letter-spacing: 0.9px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.popup-content .statistic-list li {
  margin-bottom: 45px;
}
@media (min-width: 1024px) {
  .popup-content .statistic-list li {
    margin-bottom: 50px;
  }
}
.popup-content .statistic-list .title {
  font-weight: 300;
  margin-bottom: 0;
}

/* fancybox style */
.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 1;
}

.fancybox-toolbar {
  top: 5px;
  left: 5px;
}
@media (min-width: 768px) {
  .fancybox-toolbar {
    top: 15px;
    left: 15px;
  }
}

.fancybox-button {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
}
.fancybox-button:before, .fancybox-button:after {
  content: "";
  width: 25px;
  height: 6px;
  background: #3e94fa;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 5px;
}
.fancybox-button:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.fancybox-button:hover {
  opacity: .8;
}
.fancybox-button:focus {
  outline: none;
}

.fancybox-button svg path {
  display: none;
}

@media (min-width: 768px) {
  .hero-holder {
    padding: 0 0 49px;
    background: #ebeded;
  }
}

@media (min-width: 768px) {
  .hero-holder-white {
    padding: 0 0 49px;
    background: #fff;
  }
}

/*hero section style*/
.hero-section {
  position: relative;
  color: #fff;
  padding: 20px 0 37px;
  /*hero section on home page style*/
  /*hero section on who we are style*/
  /*animate on slick current*/
}
@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 50px;
  }
}
.hero-section:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(17deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero-section > * {
  position: relative;
  z-index: 2;
}
.hero-section.hero-home {
  padding-bottom: 80px;
  /*vertical align bottom*/
}
@media (min-width: 768px) {
  .hero-section.hero-home {
    padding-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .hero-section.hero-home {
    padding-bottom: 153px;
  }
}
.hero-section.hero-home .container:before {
  min-height: 486px;
}
@media (min-width: 768px) {
  .hero-section.hero-home .container:before {
    min-height: 380px;
  }
}
@media (min-width: 1024px) {
  .hero-section.hero-home .container:before {
    min-height: 445px;
  }
}
.hero-section.hero-home .heading-holder {
  max-width: 360px;
}
@media (min-width: 1024px) {
  .hero-section.hero-home .heading-holder {
    max-width: 590px;
  }
}
@media (min-width: 768px) {
  .hero-section.hero-home .heading-holder h1 {
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .hero-section.hero-home .heading-holder h1 {
    margin-bottom: 17px;
  }
}
@media (min-width: 768px) {
  .hero-section.hero-home .heading-holder p, .hero-section.hero-home .heading-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .hero-section.hero-home .heading-holder ul {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .hero-section.hero-home .heading-holder p, .hero-section.hero-home .heading-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .hero-section.hero-home .heading-holder ul {
    margin-bottom: 30px;
  }
}
.hero-section.who .container:before {
  min-height: 530px;
}
@media (min-width: 768px) {
  .hero-section.who .container:before {
    min-height: 550px;
  }
}
.hero-section.who .heading-holder {
  max-width: 350px;
}
@media (min-width: 768px) {
  .hero-section.who .heading-holder {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hero-section.who .heading-holder {
    max-width: 460px;
    margin-bottom: 18px;
  }
}
@media (min-width: 1024px) {
  .hero-section.who .heading-holder h1 {
    margin-bottom: 41px;
  }
}
.hero-section.slick-current .container * {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.hero-section .container {
  white-space: nowrap;
  text-align: center;
  text-align: left;
}
.hero-section .container:before {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  width: 0;
  min-height: 470px;
}
.hero-section .container > * {
  white-space: normal;
  display: inline-block;
  vertical-align: bottom;
  max-width: 99%;
}
@media (min-width: 768px) {
  .hero-section .container:before {
    min-height: 430px;
  }
}
.hero-section .heading-holder {
  letter-spacing: 0.52px;
}
@media (min-width: 768px) {
  .hero-section .heading-holder {
    max-width: 550px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  .hero-section .heading-holder {
    margin-bottom: 35px;
  }
}
.hero-section .heading-holder h1 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero-section .heading-holder h1 {
    margin-bottom: 27px;
  }
}
@media (min-width: 1024px) {
  .hero-section .heading-holder h1 {
    margin-bottom: 22px;
  }
}
.hero-section .heading-holder p, .hero-section .heading-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .hero-section .heading-holder ul {
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .hero-section .btn {
    min-width: 200px;
  }
}

/*brand products section style*/
.brand-products-section {
  padding: 67px 0 20px;
  background: #ebeced;
  /*heading style on brand product section*/
  /*slider style on brand product section*/
  /*product slider*/
}
@media (min-width: 768px) {
  .brand-products-section {
    padding: 77px 0 0;
  }
}
@media (min-width: 768px) {
  .brand-products-section .container-lg {
    padding: 0;
  }
}
.brand-products-section .heading-holder {
  padding: 0 0 39px 15px;
}
@media (min-width: 768px) {
  .brand-products-section .heading-holder {
    padding: 0;
    max-width: calc(100% - 70px);
  }
}
@media (min-width: 1024px) {
  .brand-products-section .heading-holder {
    padding: 0 0 10px;
  }
}
@media (min-width: 1200px) {
  .brand-products-section .heading-holder {
    max-width: calc(100% - 870px);
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .brand-products-section .heading-holder h2 {
    margin-bottom: 10px;
  }
}
.brand-products-section .bg-holder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 166px;
}
@media (max-width: 767px) {
  .brand-products-section .bg-holder {
    background: none !important;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .bg-holder {
    top: 108px;
  }
}
.brand-products-section .slider-holder {
  position: relative;
}
@media (min-width: 768px) {
  .brand-products-section .slider-holder {
    min-height: 635px;
    margin-top: -20px;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .slider-holder {
    min-height: 597px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .brand-products-section .slider-holder {
    margin-top: -23px;
  }
}
@media (min-width: 768px) {
  .brand-products-section .product-slider {
    max-width: 704px;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .product-slider {
    max-width: 962px;
    margin-left: auto;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.brand-products-section .product-slider .slick-arrow {
  top: 0;
}
.brand-products-section .product-slider .slick-arrow.slick-prev {
  right: 123px;
}
.brand-products-section .product-slider .slick-arrow.slick-next {
  right: 83px;
}
.brand-products-section .product-slider .slick-track {
  margin: 0px;
}
@media (min-width: 768px) {
  .brand-products-section .product-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -94px;
  }
}
@media (min-width: 768px) {
  .brand-products-section .product-slider .slick-list {
    padding-top: 58px;
    padding-left: 84px;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .product-slider .slick-list {
    margin-right: 0;
  }
}
.brand-products-section .product-item {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: block;
  background: #fff;
  padding: 50px 33px 30px;
  margin-bottom: 30px;
  text-align: center;
  color: #818585;
  letter-spacing: 0.35px;
  -webkit-box-shadow: 0px 15px 12px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 15px 12px -10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (min-width: 768px) {
  .brand-products-section .product-item {
    padding: 87px 34px 40px;
    margin: 0 10px;
    width: calc(50% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .product-item {
    margin: 0 15px 35px;
    padding-bottom: 35px;
    width: calc(33.332% - 30px);
  }
}
.brand-products-section .product-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media (min-width: 1024px) {
  .brand-products-section .product-item:hover {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@media (min-width: 768px) {
  .brand-products-section .product-item:hover .btn {
    background: #0088cc;
    color: #fff;
  }
}
.brand-products-section .product-item .img-holder {
  max-width: 133px;
  margin: 0 auto 36px;
}
@media (min-width: 768px) {
  .brand-products-section .product-item .img-holder {
    width: 100%;
    max-width: 167px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-bottom: 33px;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .product-item .img-holder {
    margin-bottom: 49px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .brand-products-section .product-item .img-holder {
    margin-bottom: -10px;
  }
}
.brand-products-section .product-item h3 {
  color: #0088cc;
  font-weight: 700;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .brand-products-section .product-item h3 {
    margin-bottom: 17px;
  }
}
.brand-products-section .product-item p, .brand-products-section .product-item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .brand-products-section .product-item ul {
  margin-bottom: 43px;
}
@media (min-width: 768px) {
  .brand-products-section .product-item p, .brand-products-section .product-item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .brand-products-section .product-item ul {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .brand-products-section .product-item p, .brand-products-section .product-item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .brand-products-section .product-item ul {
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) {
  .brand-products-section .product-item .btn {
    background: transparent;
    color: #0088cc;
  }
}

.info-section {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.9px;
  background: #ebeced;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .info-section {
    font-size: 18px;
    line-height: 1.66667;
    letter-spacing: 0.87px;
    padding: 66px 0 70px;
  }
}
@media (min-width: 1024px) {
  .info-section {
    font-size: 22px;
    line-height: 1.454545;
    letter-spacing: 1.12px;
    padding: 110px 0;
  }
}
.info-section h2 {
  margin-bottom: 41px;
  font-weight: 100;
}
@media (max-width: 374px) {
  .info-section h2 {
    word-break: break-all;
  }
}
@media (min-width: 1200px) {
  .info-section h2 {
    margin-bottom: 67px;
  }
}
.info-section .container-fluid {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .info-section .container-fluid {
    padding: 0 64px;
  }
}
@media (min-width: 1024px) {
  .info-section .container-fluid {
    padding: 0 110px;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.info-section .info-holder {
  background: #fff;
  margin: 0 -15px;
  padding: 88px 31px;
  color: #818585;
}
@media (min-width: 375px) {
  .info-section .info-holder {
    padding: 88px 31px 64px;
  }
}
@media (min-width: 768px) {
  .info-section .info-holder {
    padding: 86px 98px 108px 61px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .info-section .info-holder {
    padding: 117px 118px 126px 118px;
  }
}
.info-section .info-holder.alternate {
  padding: 0;
}
@media (min-width: 768px) {
  .info-section .info-holder.alternate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
}
.info-section .info-holder.alternate .img-holder {
  min-height: 200px;
  padding-top: 44.6%;
}
@media (min-width: 768px) {
  .info-section .info-holder.alternate .img-holder {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .info-section .info-holder.alternate .img-holder {
    width: 39.6%;
  }
}
.info-section .info-holder.alternate .text-holder {
  padding: 25px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 768px) {
  .info-section .info-holder.alternate .text-holder {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .info-section .info-holder.alternate .text-holder {
    width: 60.4%;
  }
}
@media (min-width: 1200px) {
  .info-section .info-holder.alternate .text-holder {
    padding: 25px 194px 25px 90px;
  }
}
.info-section .info-holder .btn {
  padding: 17px 10px;
  min-width: 210px;
}
.info-section .info-holder p, .info-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section .info-holder ul {
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .info-section .info-holder p, .info-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section .info-holder ul {
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .info-section .info-holder p, .info-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section .info-holder ul {
    margin-bottom: 17px;
  }
}
@media (min-width: 768px) {
  .info-section .text-info {
    padding-left: 130px;
  }
}
@media (min-width: 1200px) {
  .info-section .text-info {
    padding-left: 235px;
  }
}
.info-section.blockquote-section .info-holder {
  padding: 73px 31px 34px;
}
@media (min-width: 768px) {
  .info-section.blockquote-section .info-holder {
    padding: 84px 61px 88px;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section .info-holder {
    padding: 115px 118px 88px;
  }
}
.info-section.blockquote-section h2 {
  max-width: 350px;
  margin-bottom: 53px;
}
@media (min-width: 768px) {
  .info-section.blockquote-section h2 {
    margin-bottom: 61px;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section h2 {
    margin-bottom: 47px;
  }
}
@media (min-width: 768px) {
  .info-section.blockquote-section .text-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0;
  }
}
.info-section.blockquote-section .text-info .img-holder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .info-section.blockquote-section .text-info .img-holder {
    width: 79px;
    height: 79px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section .text-info .img-holder {
    width: 134px;
    height: 134px;
  }
}
.info-section.blockquote-section .text-info blockquote {
  margin: 0;
  position: relative;
  color: #818585;
  font: 400 16px/1.875 "Playfair Display", "Times New Roman", "Times", "Baskerville", "Georgia", serif, serif;
  font-style: italic;
  padding: 28px 0;
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .info-section.blockquote-section .text-info blockquote {
    width: calc(100% - 79px);
    font-size: 18px;
    line-height: 1.67;
    padding: 5px 20px 25px 53px;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section .text-info blockquote {
    width: calc(100% - 134px);
    font-size: 22px;
    line-height: 1.46;
    padding: 5px 60px 66px 103px;
    letter-spacing: 1.5px;
  }
}
.info-section.blockquote-section .text-info blockquote:before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: -5px;
  font-family: "proxima-nova", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 55px;
  color: #212424;
  font-style: normal;
  line-height: 1;
}
@media (min-width: 768px) {
  .info-section.blockquote-section .text-info blockquote:before {
    top: -7px;
    left: 19px;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section .text-info blockquote:before {
    top: -7px;
    left: 57px;
  }
}
.info-section.blockquote-section .text-info blockquote p, .info-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section.blockquote-section .text-info blockquote ul {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .info-section.blockquote-section .text-info blockquote p, .info-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section.blockquote-section .text-info blockquote ul {
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .info-section.blockquote-section .text-info blockquote p, .info-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .info-section.blockquote-section .text-info blockquote ul {
    margin-bottom: 40px;
  }
}
.info-section.blockquote-section .text-info blockquote cite {
  font-family: "proxima-nova", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.9px;
  font-size: 10px;
  font-weight: 300;
  display: block;
  color: #212424;
}

/*innovetion section style*/
.innovation-section {
  color: #fff;
  /*text holder style on innovation section*/
  /*open close item style*/
}
@media (min-width: 768px) {
  .innovation-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.innovation-section .innovation-holder {
  background: #212424;
  overflow: hidden;
}
@media (min-width: 768px) {
  .innovation-section .innovation-holder {
    width: 50%;
  }
}
.innovation-section .innovation-holder .innovation-info {
  padding: 0 30px;
  color: #999;
}
@media (min-width: 768px) {
  .innovation-section .innovation-holder .innovation-info {
    padding: 64px 50px 17px 64px;
  }
}
@media (min-width: 1200px) {
  .innovation-section .innovation-holder .innovation-info {
    max-width: 700px;
    padding: 84px 101px 33px 114px;
  }
}
.innovation-section .bg-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 544px;
  position: relative;
  /*gradient on image bg*/
}
@media (min-width: 768px) {
  .innovation-section .bg-holder {
    width: 50%;
  }
}
.innovation-section .bg-holder:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(17deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.innovation-section .bg-holder > * {
  position: relative;
  z-index: 1;
}
.innovation-section .text-holder {
  padding: 0 30px 30px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .innovation-section .text-holder {
    padding: 92px 65px 30px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}
@media (min-width: 1200px) {
  .innovation-section .text-holder {
    padding: 150px 170px 30px 117px;
    max-width: 700px;
    margin-left: auto;
  }
}
.innovation-section .text-holder h1 {
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .innovation-section .text-holder h1 {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .innovation-section .text-holder h1 {
    margin-bottom: 31px;
  }
}
.innovation-section .text-holder p, .innovation-section .text-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .innovation-section .text-holder ul {
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .innovation-section .text-holder .btn {
    min-width: 180px;
  }
}
.innovation-section .item {
  /*opener style*/
  /*icon style*/
}
@media (min-width: 768px) {
  .innovation-section .item {
    letter-spacing: 1.12px;
    margin-bottom: 39px;
  }
}
@media (min-width: 1200px) {
  .innovation-section .item {
    margin-bottom: 66px;
  }
}
.innovation-section .item .slide {
  padding-top: 10px;
}
.innovation-section .item .opener {
  display: block;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .innovation-section .item .opener {
    pointer-events: none;
    display: block;
  }
}
.innovation-section .item .opener:before, .innovation-section .item .opener:after {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background: #0088cc;
}
@media (min-width: 768px) {
  .innovation-section .item .opener:before, .innovation-section .item .opener:after {
    content: none;
  }
}
.innovation-section .item .opener:after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
.innovation-section .item h3 {
  font-weight: 700;
  padding: 30px 0 34px 5px;
  margin: 0;
  position: relative;
}
@media (min-width: 768px) {
  .innovation-section .item h3 {
    padding: 0 0 2px;
  }
}
@media (min-width: 1024px) {
  .innovation-section .item h3 {
    padding-bottom: 13px;
  }
}
.innovation-section .item h3:before {
  content: '';
  position: absolute;
  left: -100vw;
  right: -10vw;
  bottom: 0;
  height: 1px;
  background: #333333;
}
@media (min-width: 768px) {
  .innovation-section .item h3:before {
    content: none;
  }
}
.innovation-section .item [class^="icon-"], .innovation-section .item [class*=" icon-"] {
  margin-right: 9px;
  color: #0088cc;
  font-size: 30px;
}
@media (min-width: 375px) {
  .innovation-section .item [class^="icon-"], .innovation-section .item [class*=" icon-"] {
    margin-right: 20px;
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .innovation-section .item [class^="icon-"], .innovation-section .item [class*=" icon-"] {
    display: block;
    font-size: 55px;
    margin: 0 0 16px 0;
  }
}
@media (min-width: 768px) {
  .innovation-section .item [class^="icon-"].icon-datause, .innovation-section .item [class^="icon-"].icon-businessmodel, .innovation-section .item [class*=" icon-"].icon-datause, .innovation-section .item [class*=" icon-"].icon-businessmodel {
    font-size: 45px;
  }
}
.innovation-section .item.active .opener:after {
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
}
@media (min-width: 768px) {
  .innovation-section .item p, .innovation-section .item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .innovation-section .item ul {
    margin-bottom: 18px;
  }
}

/*blog section*/
.blog-section {
  color: #fff;
  position: relative;
}
.blog-section .link-white {
  position: absolute;
  left: 30px;
  bottom: 44px;
}
@media (min-width: 768px) {
  .blog-section .link-white {
    left: 64px;
    bottom: 57px;
  }
}
@media (min-width: 1300px) {
  .blog-section .link-white {
    left: calc((100vw - 1180px)/2);
  }
}

/*blog slider style*/
.blog-slider {
  background-color: #000;
  /*blog article style*/
}
.blog-slider .slick-arrow {
  bottom: 108px;
  color: #fff;
}
@media (min-width: 768px) {
  .blog-slider .slick-arrow {
    bottom: 123px;
  }
}
.blog-slider .slick-arrow:hover, .blog-slider .slick-arrow.slick-disabled {
  color: rgba(255, 255, 255, 0.3);
}
.blog-slider .slick-arrow.slick-prev {
  right: 90px;
}
@media (min-width: 768px) {
  .blog-slider .slick-arrow.slick-prev {
    right: 124px;
  }
}
@media (min-width: 1024px) {
  .blog-slider .slick-arrow.slick-prev {
    right: 117px;
  }
}
.blog-slider .slick-arrow.slick-next {
  right: 50px;
}
@media (min-width: 768px) {
  .blog-slider .slick-arrow.slick-next {
    right: 86px;
  }
}
@media (min-width: 1024px) {
  .blog-slider .slick-arrow.slick-next {
    right: 77px;
  }
}
.blog-slider .slick-dots {
  left: 27px;
  bottom: 93px;
  max-width: 200px;
}
@media (min-width: 768px) {
  .blog-slider .slick-dots {
    left: 64px;
    bottom: 110px;
    max-width: 500px;
  }
}
@media (min-width: 1300px) {
  .blog-slider .slick-dots {
    left: calc((100vw - 1180px)/2);
  }
}
.blog-slider .slick-dots li {
  margin-bottom: 5px;
}
.blog-slider .bg-stretch {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 480px) {
  .blog-slider .bg-stretch {
    background-position: top;
  }
}
@media (min-width: 768px) {
  .blog-slider .bg-stretch {
    background-position: center;
  }
}
.blog-slider .blog-article {
  position: relative;
  padding: 248px 0 140px;
  /*gradient on bg image*/
}
@media (min-width: 768px) {
  .blog-slider .blog-article {
    padding: 242px 0 175px;
  }
}
@media (min-width: 1024px) {
  .blog-slider .blog-article {
    padding-top: 230px;
  }
}
.blog-slider .blog-article:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: linear-gradient(17deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 768px) {
  .blog-slider .blog-article:before {
    background-image: linear-gradient(17deg, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
  }
}
.blog-slider .blog-article .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .blog-slider .blog-article h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .blog-slider .blog-article h1 {
    margin-bottom: 20px;
  }
}
.blog-slider .blog-article .heading-holder {
  letter-spacing: 0.8px;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .blog-slider .blog-article .heading-holder {
    max-width: 392px;
    line-height: 1.625;
  }
}
@media (min-width: 768px) {
  .blog-slider .blog-article .heading-holder p, .blog-slider .blog-article .heading-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .blog-slider .blog-article .heading-holder ul {
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .blog-slider .blog-article .btn {
    min-width: 180px;
  }
}

/*media section style*/
.media-section {
  background: #ebeded;
  padding: 80px 0 69px;
  /*slider style on media section*/
  /*media item in slider*/
}
@media (min-width: 768px) {
  .media-section {
    padding: 83px 0 0;
  }
}
@media (min-width: 768px) {
  .media-section .container-lg {
    padding: 0 64px;
  }
}
.media-section .heading-holder {
  padding: 0 0 26px 14px;
  max-width: calc(100% - 70px);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .media-section .heading-holder {
    padding: 0 0 60px 0;
  }
}
@media (min-width: 1024px) {
  .media-section .heading-holder {
    padding: 0 0 10px;
  }
}
@media (min-width: 1200px) {
  .media-section .heading-holder {
    max-width: calc(100% - 870px);
  }
}
.media-section h2 {
  margin-bottom: 11px;
}
.media-section .bg-holder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 109px;
}
@media (max-width: 767px) {
  .media-section .bg-holder {
    background: none !important;
  }
}
.media-section .slider-holder {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .media-section .slider-holder {
    min-height: 490px;
    padding-bottom: 77px;
  }
}
@media (min-width: 1200px) {
  .media-section .slider-holder {
    margin-top: -60px;
  }
}
.media-section .media-slider {
  margin-right: -30px;
}
@media (min-width: 768px) {
  .media-section .media-slider {
    margin-right: -64px;
  }
}
@media (min-width: 768px) {
  .media-section .media-slider {
    margin-left: auto;
    max-width: 964px;
  }
}
.media-section .media-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -24px;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-track {
    margin-left: -94px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-slider .slick-track {
    margin-left: 14px;
  }
}
.media-section .media-slider .slick-list {
  padding-left: 18px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-list {
    padding-left: 84px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-slider .slick-list {
    padding-left: 0;
  }
}
.media-section .media-slider .slick-arrow {
  top: -63px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-arrow {
    top: -76px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-slider .slick-arrow {
    top: -55px;
  }
}
.media-section .media-slider .slick-arrow.slick-prev {
  right: 93px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-arrow.slick-prev {
    right: 123px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-slider .slick-arrow.slick-prev {
    right: 118px;
  }
}
.media-section .media-slider .slick-arrow.slick-next {
  right: 53px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-arrow.slick-next {
    right: 83px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-slider .slick-arrow.slick-next {
    right: 78px;
  }
}
.media-section .media-slider .slick-dots {
  bottom: -40px;
  left: 0;
  right: 30px;
  text-align: center;
  max-height: 50px;
  overflow: auto;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-dots {
    right: 60px;
    left: auto;
  }
}
.media-section .media-slider .slick-dots li {
  margin-bottom: 10px;
}
.media-section .media-slider .slick-dots li button {
  border-color: rgba(33, 36, 36, 0.3);
  width: 60px;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-dots li button {
    border-color: rgba(255, 255, 255, 0.3);
  }
}
.media-section .media-slider .slick-dots li.slick-active button, .media-section .media-slider .slick-dots li:hover button {
  border-color: #212424;
}
@media (min-width: 768px) {
  .media-section .media-slider .slick-dots li.slick-active button, .media-section .media-slider .slick-dots li:hover button {
    border-color: #fff;
  }
}
.media-section .media-item {
  text-align: center;
  background: #fff;
  color: #818585;
  -webkit-box-shadow: 0px 15px 12px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 15px 12px -10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.35px;
  margin: 0 8px;
  display: block;
  height: auto;
}
@media (min-width: 768px) {
  .media-section .media-item {
    margin: 0 10px;
  }
}
@media (min-width: 1024px) {
  .media-section .media-item {
    margin: 0 15px;
  }
}
.media-section .media-item:hover .btn {
  background: #0088cc;
  color: #fff;
}
.media-section .media-item .img-holder {
  padding-top: 71%;
}
@media (min-width: 480px) {
  .media-section .media-item .img-holder {
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .media-section .media-item .img-holder {
    padding-top: 76%;
  }
}
.media-section .media-item .text-holder {
  padding: 50px 30px 30px;
}
@media (min-width: 768px) {
  .media-section .media-item .text-holder {
    padding: 40px 30px 20px;
  }
}
.media-section .media-item h3 {
  color: #0088cc;
  font-weight: 700;
  line-height: 1.077;
  padding: 0 14px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .media-section .media-item h3 {
    padding: 0 5px;
  }
}
.media-section .media-item p, .media-section .media-item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .media-section .media-item ul {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .media-section .media-item p, .media-section .media-item .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .media-section .media-item ul {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .media-section .media-item .btn {
    background: transparent;
    color: #0088cc;
  }
}

/*product card style*/
.product-holder {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .product-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px 25px;
  }
}
@media (min-width: 1024px) {
  .product-holder {
    max-width: 962px;
    margin: 0 auto 40px;
  }
}
.product-holder .product-card {
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-align: center;
  background: #fff;
  color: #818585;
  -webkit-box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.35px;
  display: block;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .product-holder .product-card {
    margin: 0 10px 30px;
    width: calc(33.332% - 20px);
  }
}
@media (min-width: 1024px) {
  .product-holder .product-card {
    margin: 0 15px 30px;
    width: calc(33.332% - 30px);
  }
}
.product-holder .product-card:hover .btn {
  background: #0088cc;
  color: #fff;
}
.product-holder .product-card .img-holder {
  padding-top: 76%;
}
@media (min-width: 480px) {
  .product-holder .product-card .img-holder {
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .product-holder .product-card .img-holder {
    padding-top: 76%;
  }
}
.product-holder .product-card .text-holder {
  padding: 44px 43px 34px;
}
@media (min-width: 768px) {
  .product-holder .product-card .text-holder {
    padding: 38px 31px 24px;
  }
}
@media (min-width: 1024px) {
  .product-holder .product-card .text-holder {
    padding: 55px 31px 35px;
  }
}
.product-holder .product-card h3 {
  color: #0088cc;
  font-weight: 700;
  line-height: 1.077;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-holder .product-card h3 {
    margin-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .product-holder .product-card h3 {
    margin-bottom: 22px;
  }
}
.product-holder .product-card p, .product-holder .product-card .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder .product-card ul {
  margin-bottom: 10px;
}
.product-holder .product-card .btn {
  background: transparent;
  color: #0088cc;
}
@media (min-width: 768px) {
  .product-holder.two-col .product-card {
    width: calc(50% - 20px);
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .product-holder.two-col .product-card {
    width: calc(50% - 30px);
  }
}
.product-holder.two-col .product-card:hover .btn {
  color: #00334d;
  background: transparent;
}
.product-holder.two-col .product-card .text-holder {
  padding: 47px 47px 45px;
}
@media (min-width: 1024px) {
  .product-holder.two-col .product-card .text-holder {
    padding: 47px 57px 52px;
  }
}
@media (min-width: 768px) {
  .product-holder.two-col .product-card .btn {
    padding: 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .product-holder.two-col .product-card h3 {
    margin-bottom: 13px;
  }
}
@media (min-width: 1024px) {
  .product-holder.two-col .product-card h3 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .product-holder.two-col .product-card p, .product-holder.two-col .product-card .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .product-holder.two-col .product-card p, .product-holder.two-col .product-card .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul {
    margin-bottom: 20px;
  }
}

/*product section style*/
.product-section {
  padding: 87px 0 107px;
  background: #ebeded;
}
@media (min-width: 768px) {
  .product-section {
    padding: 100px 0 81px;
  }
}
@media (min-width: 1024px) {
  .product-section {
    padding: 130px 0 116px;
  }
}
@media (min-width: 768px) {
  .product-section .container {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .product-section .container {
    padding: 0 64px;
  }
}
.product-section h2 {
  text-align: center;
  margin-bottom: 51px;
}
@media (min-width: 768px) {
  .product-section h2 {
    margin-bottom: 68px;
  }
}
@media (min-width: 1024px) {
  .product-section h2 {
    margin-bottom: 77px;
  }
}
.product-section .btn-holder {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-section .btn-holder {
    margin-bottom: 150px;
  }
}
.product-section .link {
  padding: 0;
}
.product-section .link:before {
  content: none;
}

/*quick nav with anchor links style*/
.quick-nav-holder {
  position: relative;
  background: #ebeded;
}

.quick-nav {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  padding: 0 27px 0 39px;
  background: #0088cc;
  color: #fff;
  z-index: 1;
  /*nav list style*/
  /*opener style*/
}
@media (min-width: 768px) {
  .quick-nav {
    max-width: 444px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    top: -50px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .quick-nav {
    text-align: left;
    padding: 0;
    max-width: 1168px;
  }
}
.fixed-nav .quick-nav {
  -webkit-transform: none;
          transform: none;
  z-index: 999;
}
.quick-nav a {
  color: #fff;
}
.quick-nav a:hover {
  color: #bfbfbf;
}
.quick-nav .tablet-description {
  display: none;
}
@media (min-width: 768px) {
  .quick-nav .tablet-description {
    display: block;
  }
}
@media (min-width: 768px) {
  .quick-nav .mobile-description {
    display: none;
  }
}
.quick-nav .nav-list {
  position: absolute;
  background: #0088cc;
  left: 0;
  right: 0;
  padding: 0 27px 22px 39px;
}
@media (min-width: 768px) {
  .quick-nav .nav-list {
    padding: 0 0 20px;
  }
}
@media (min-width: 1024px) {
  .quick-nav .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    background: transparent;
    padding: 0;
  }
}
.quick-nav .nav-list li {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .quick-nav .nav-list li {
    padding: 10px;
  }
}
@media (min-width: 1024px) {
  .quick-nav .nav-list li {
    padding: 0;
    position: relative;
    overflow: hidden;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1024px) {
  .quick-nav .nav-list li:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: #0072bb;
  }
}
.quick-nav .nav-list li:last-child:before {
  content: none;
}
@media (min-width: 1024px) {
  .quick-nav .nav-list li a {
    display: block;
    padding: 21px 15px;
  }
}
@media (min-width: 1200px) {
  .quick-nav .nav-list li a {
    padding: 41px 36px;
  }
}
.quick-nav .opener {
  display: block;
  padding: 22px 20px 22px 0;
  position: relative;
  /*opener icon style*/
}
@media (min-width: 768px) {
  .quick-nav .opener {
    display: inline-block;
    vertical-align: middle;
    padding: 22px 24px 22px 5px;
  }
}
@media (min-width: 1024px) {
  .quick-nav .opener {
    display: none;
  }
}
.quick-nav .opener:before {
  content: "\e902";
  font-family: 'icomoon' !important;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  font-size: 10px;
}
@media (min-width: 768px) {
  .quick-nav .opener:before {
    content: "\e904";
    -webkit-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
    font-size: 8px;
  }
}

/*mosaic section style*/
.mosaic-holder {
  position: relative;
  padding: 36px 0 42px;
  /*image style*/
  /*content style on mosaic section*/
  /*reverce section*/
}
@media (min-width: 768px) {
  .mosaic-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
}
.mosaic-holder h2 {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .mosaic-holder h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  .mosaic-holder h2 {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder,
  .mosaic-holder .img-holder {
    width: 50%;
  }
}
.mosaic-holder .img-holder {
  min-height: 258px;
  margin-right: -30px;
  margin-bottom: 54px;
  /*video placeholder style*/
}
@media (min-width: 768px) {
  .mosaic-holder .img-holder {
    margin: 0;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
@media (min-width: 1024px) {
  .mosaic-holder .img-holder {
    min-height: 772px;
  }
}
.mosaic-holder .img-holder.video-holder {
  position: relative;
}
.mosaic-holder .img-holder.video-holder .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 84px;
  color: #fff;
}
.mosaic-holder .img-holder.video-holder .play-btn:hover {
  color: #0088cc;
}
.mosaic-holder .content-holder {
  letter-spacing: 0.7px;
  /*benefits list style*/
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder {
    padding: 54px 57px 62px 56px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (min-width: 1024px) {
  .mosaic-holder .content-holder {
    font-size: 16px;
    padding: 124px 156px 105px 156px;
  }
}
.mosaic-holder .content-holder .btn {
  padding: 17px 10px;
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder .btn {
    min-width: 210px;
  }
}
.mosaic-holder .content-holder .benefits-list {
  margin-bottom: 47px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder .benefits-list {
    letter-spacing: 0.7px;
    margin-bottom: 38px;
  }
}
.mosaic-holder .content-holder p, .mosaic-holder .content-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mosaic-holder .content-holder ul {
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder p, .mosaic-holder .content-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mosaic-holder .content-holder ul {
    margin-bottom: 19px;
  }
}
.mosaic-holder .content-holder p:last-of-type, .mosaic-holder .content-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul:last-of-type, .section.singleblog__content .container .grid__container .grid__block .grid__content .mosaic-holder .content-holder ul:last-of-type {
  margin-bottom: 62px;
}
@media (min-width: 768px) {
  .mosaic-holder .content-holder p:last-of-type, .mosaic-holder .content-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul:last-of-type, .section.singleblog__content .container .grid__container .grid__block .grid__content .mosaic-holder .content-holder ul:last-of-type {
    margin-bottom: 105px;
  }
}
.mosaic-holder.dark {
  background: #212424;
  color: #fff;
}
.mosaic-holder.dark:before {
  position: absolute;
  content: '';
  left: -30px;
  right: -30px;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #212424;
}
@media (min-width: 768px) {
  .mosaic-holder.dark:before {
    content: none;
  }
}
@media (min-width: 768px) {
  .mosaic-holder.mosaic-reverce {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.mosaic-holder.mosaic-reverce .img-holder {
  margin-left: -30px;
  margin-right: 0;
}
@media (min-width: 768px) {
  .mosaic-holder.mosaic-reverce .img-holder {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .mosaic-holder.mosaic-reverce .content-holder {
    padding: 149px 174px 140px 173px;
    line-height: 1.5;
  }
}

.mosaic-section .container-fluid {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .mosaic-section .container-fluid {
    padding: 0;
  }
}
.mosaic-section.alternative-mosaic .container {
  padding: 0 64px;
}
@media (min-width: 768px) {
  .mosaic-section.alternative-mosaic .container {
    padding: 0;
  }
}
.mosaic-section.alternative-mosaic .mosaic-holder:before {
  position: absolute;
  content: '';
  left: -64px;
  right: -64px;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #ebeced;
}
@media (min-width: 768px) {
  .mosaic-section.alternative-mosaic .mosaic-holder:before {
    content: none;
  }
}
.mosaic-section.alternative-mosaic .mosaic-holder.mosaic-reverce .img-holder {
  margin-right: -64px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .mosaic-section.alternative-mosaic .mosaic-holder.mosaic-reverce .img-holder {
    margin: 0;
  }
}
.mosaic-section.alternative-mosaic .mosaic-holder h1 {
  color: #0088cc;
}
.mosaic-section.alternative-mosaic .mosaic-holder .content-holder {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.845;
}
@media (min-width: 768px) {
  .mosaic-section.alternative-mosaic .mosaic-holder .content-holder {
    font-size: 18px;
    line-height: 1.66667;
  }
}
@media (min-width: 1024px) {
  .mosaic-section.alternative-mosaic .mosaic-holder .content-holder {
    font-size: 22px;
    line-height: 1.4545;
  }
}
.mosaic-section.alternative-mosaic .mosaic-holder p, .mosaic-section.alternative-mosaic .mosaic-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mosaic-section.alternative-mosaic .mosaic-holder ul {
  margin-bottom: 35px;
}
.mosaic-section.alternative-mosaic .mosaic-holder .img-holder {
  margin-left: -64px;
  margin-right: 0px;
}
@media (min-width: 768px) {
  .mosaic-section.alternative-mosaic .mosaic-holder .img-holder {
    margin: 0;
    min-height: 540px;
  }
}
@media (min-width: 1024px) {
  .mosaic-section.alternative-mosaic .mosaic-holder .img-holder {
    min-height: 725px;
  }
}
.mosaic-section.alternative-mosaic .mosaic-holder .btn {
  width: auto;
  min-width: 210px;
}

/*statistic section*/
.statistic {
  background: #ebeded;
  padding: 16px 15px;
  /*statistic list style*/
}
@media (min-width: 768px) {
  .statistic {
    padding: 60px 64px 76px;
  }
}
@media (min-width: 1024px) {
  .statistic {
    padding: 110px;
  }
}
.statistic .container-fluid {
  background: #fff;
  padding: 90px 96px 36px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .statistic .container-fluid {
    padding: 100px 64px 46px 62px;
  }
}
@media (min-width: 1024px) {
  .statistic .container-fluid {
    padding: 115px 118px 44px;
  }
}
.statistic h2 {
  margin-bottom: 74px;
}
@media (min-width: 768px) {
  .statistic h2 {
    margin-bottom: 66px;
  }
}
@media (min-width: 1024px) {
  .statistic h2 {
    max-width: 306px;
    margin-bottom: 133px;
  }
}
.statistic .statistics-list {
  color: #818585;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .statistic .statistics-list {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -80px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1024px) {
  .statistic .statistics-list {
    font-size: 22px;
    margin: 0 -67px 0 auto;
    max-width: 832px;
    line-height: 1.4545;
  }
}
.statistic .statistics-list h3 {
  color: #0088cc;
  font-weight: 700;
  margin-bottom: 9px;
}
.statistic .statistics-list li {
  margin-bottom: 66px;
}
@media (min-width: 768px) {
  .statistic .statistics-list li {
    width: 50%;
    padding: 0 80px;
    margin-bottom: 63px;
  }
}
@media (min-width: 1024px) {
  .statistic .statistics-list li {
    padding: 0 67px;
    margin-bottom: 119px;
  }
}
@media (min-width: 768px) {
  .statistic .statistics-list p, .statistic .statistics-list .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .statistic .statistics-list ul {
    margin-bottom: 9px;
  }
}
@media (min-width: 1024px) {
  .statistic .statistics-list p, .statistic .statistics-list .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .statistic .statistics-list ul {
    margin-bottom: 13px;
  }
}

/*map section style*/
.map-section {
  background: #0088cc;
  color: #fff;
  padding: 145px 0 0;
  /*heading style on map section*/
  /*icon mappstyle*/
  /*opener style*/
  /*map item style*/
}
@media (min-width: 768px) {
  .map-section {
    padding: 135px 0 93px;
  }
}
@media (min-width: 1024px) {
  .map-section {
    padding: 186px 0 135px;
  }
}
@media (min-width: 1024px) {
  .map-section .container {
    max-width: 1054px;
  }
}
.map-section .heading-holder {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.8px;
  max-width: calc(100% - 10px);
  margin: 0 auto 48px;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .map-section .heading-holder {
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  .map-section .heading-holder {
    font-size: 22px;
    letter-spacing: 1px;
    max-width: 670px;
    line-height: 1.4545;
    margin-bottom: 143px;
  }
}
.map-section h1 {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .map-section h1 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .map-section h1 {
    margin-bottom: 29px;
  }
}
.map-section h3 {
  font-weight: 700;
}
.map-section .icon-mapper {
  font-size: 114px;
  display: block;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .map-section .icon-mapper {
    font-size: 85px;
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) {
  .map-section .icon-mapper {
    font-size: 115px;
  }
}
.map-section .link {
  color: #fff;
}
.map-section .link:before {
  color: #fff;
}
.map-section .opener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 30px 23px 0;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 768px) {
  .map-section .opener {
    padding: 0 0 28px 0;
    display: block;
  }
}
.map-section .opener:before, .map-section .opener:after {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background: #fff;
}
@media (min-width: 768px) {
  .map-section .opener:before, .map-section .opener:after {
    content: none;
  }
}
.map-section .opener:after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media (min-width: 768px) {
  .map-section .map-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .map-section .map-holder {
    margin: 0 -63px;
  }
}
.map-section .map-item {
  position: relative;
  letter-spacing: 1.05px;
}
@media (min-width: 768px) {
  .map-section .map-item {
    width: 33.332%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 19px;
    letter-spacing: 0.65px;
  }
}
@media (min-width: 1024px) {
  .map-section .map-item {
    padding: 0 63px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.map-section .map-item:before {
  position: absolute;
  content: '';
  top: 0;
  right: -100vw;
  left: -100vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .map-section .map-item:before {
    content: none;
  }
}
.map-section .map-item [class^="icon-"], .map-section .map-item [class*=" icon-"] {
  margin-right: 27px;
  font-size: 35px;
}
@media (min-width: 768px) {
  .map-section .map-item [class^="icon-"], .map-section .map-item [class*=" icon-"] {
    display: block;
    margin-bottom: 31px;
    font-size: 75px;
  }
}
@media (min-width: 1024px) {
  .map-section .map-item [class^="icon-"], .map-section .map-item [class*=" icon-"] {
    font-size: 103px;
    margin-bottom: 22px;
  }
}
.map-section .map-item.active .opener:after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.map-section .map-item.active .opener:before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.map-section .map-item .slide {
  padding-bottom: 49px;
}
@media (min-width: 768px) {
  .map-section .map-item .slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
.map-section .map-item .slide p, .map-section .map-item .slide .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .map-section .map-item .slide ul {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .map-section .map-item .slide p, .map-section .map-item .slide .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .map-section .map-item .slide ul {
    margin-bottom: 23px;
  }
}
@media (min-width: 1024px) {
  .map-section .map-item .slide p, .map-section .map-item .slide .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .map-section .map-item .slide ul {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .map-section .map-item .text-holder {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

/*donate section style*/
.donate-section {
  text-align: center;
  background: #ebeced;
  padding: 15px;
}
@media (min-width: 768px) {
  .donate-section {
    padding: 70px 64px;
  }
}
@media (min-width: 1024px) {
  .donate-section {
    padding: 110px;
  }
}
.donate-section h1 {
  color: #0088cc;
  margin-bottom: 63px;
}
@media (min-width: 768px) {
  .donate-section h1 {
    margin-bottom: 43px;
  }
}
@media (min-width: 1024px) {
  .donate-section h1 {
    margin-bottom: 51px;
  }
}
.donate-section h2 {
  margin-bottom: 52px;
}
@media (min-width: 768px) {
  .donate-section h2 {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .donate-section h2 {
    margin-bottom: 88px;
  }
}
.donate-section p, .donate-section .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .donate-section ul {
  text-align: left;
}
.donate-section ul {
  text-align: left;
}
.donate-section ul li {
  text-align: left;
}
.donate-section .container-fluid {
  background: #fff;
  padding: 98px 32px 94px;
}
@media (min-width: 768px) {
  .donate-section .container-fluid {
    padding: 120px 74px 123px;
  }
}
@media (min-width: 1024px) {
  .donate-section .container-fluid {
    padding: 120px 255px 137px;
  }
}
.donate-section .icon-holder {
  width: 81px;
  margin: 0 auto 42px;
}
.donate-section .btn {
  padding: 17px 10px;
}
@media (min-width: 768px) {
  .donate-section .btn {
    min-width: 210px;
  }
}

/*wysiwyg section style*/
.wysiwyg-section {
  text-align: center;
  background: #ebeced;
  padding: 15px;
}
@media (min-width: 768px) {
  .wysiwyg-section {
    padding: 70px 64px;
  }
}
@media (min-width: 1024px) {
  .wysiwyg-section {
    padding: 110px;
  }
}
.wysiwyg-section h1 {
  color: #0088cc;
  margin-bottom: 63px;
}
@media (min-width: 768px) {
  .wysiwyg-section h1 {
    margin-bottom: 43px;
  }
}
@media (min-width: 1024px) {
  .wysiwyg-section h1 {
    margin-bottom: 51px;
  }
}
.wysiwyg-section h2 {
  margin-bottom: 52px;
  text-align: left;
}
@media (min-width: 768px) {
  .wysiwyg-section h2 {
    margin-bottom: 48px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .wysiwyg-section h2 {
    margin-bottom: 88px;
    text-align: left;
  }
}
.wysiwyg-section h3 {
  color: #0088cc;
  text-align: left;
}
@media (min-width: 768px) {
  .wysiwyg-section h3 {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .wysiwyg-section h3 {
    text-align: left;
  }
}
.wysiwyg-section h4 {
  text-align: left;
  color: #0088cc;
}
.wysiwyg-section h4 span {
  text-align: left;
  color: #0088cc;
}
.wysiwyg-section p, .wysiwyg-section .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .wysiwyg-section ul {
  text-align: left;
  font-size: 16px;
}
.wysiwyg-section ul {
  text-align: left;
}
.wysiwyg-section ul li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 16px;
}
.wysiwyg-section .container-fluid {
  background: #fff;
  padding: 98px 32px 94px;
}
@media (min-width: 768px) {
  .wysiwyg-section .container-fluid {
    padding: 120px 74px 123px;
  }
}
@media (min-width: 1024px) {
  .wysiwyg-section .container-fluid {
    padding: 120px 255px 137px;
  }
}
.wysiwyg-section .container-fluid ol {
  text-align: left;
  padding-left: 10px;
}
.wysiwyg-section .container-fluid ol li {
  padding-left: 10px;
  text-align: left;
  margin-bottom: 10px;
  font-size: 16px;
}
.wysiwyg-section .container-fluid sup {
  top: -0.5em;
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  color: #0088cc;
}
.wysiwyg-section .icon-holder {
  width: 81px;
  margin: 0 auto 42px;
}
.wysiwyg-section .btn {
  padding: 17px 10px;
}
@media (min-width: 768px) {
  .wysiwyg-section .btn {
    min-width: 210px;
  }
}

/*blog hero seciton*/
.blog-hero {
  min-height: 347px;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-hero {
    min-height: 581px;
  }
}
@media (min-width: 1024px) {
  .blog-hero {
    padding-bottom: 100px;
  }
}
.blog-hero .container {
  white-space: nowrap;
  text-align: center;
}
.blog-hero .container:before {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  width: 0;
  min-height: 162px;
}
.blog-hero .container > * {
  white-space: normal;
  display: inline-block;
  vertical-align: bottom;
  max-width: 99%;
}
@media (min-width: 768px) {
  .blog-hero .container:before {
    min-height: 316px;
  }
}
@media (min-width: 1024px) {
  .blog-hero .container:before {
    min-height: 340px;
  }
}
.blog-hero h1 {
  max-width: 100% !important;
  width: 100%;
  text-align: center;
  font-size: 38px;
}
@media (min-width: 768px) {
  .blog-hero h1 {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  .blog-hero h1 {
    font-size: 80px;
  }
}

/*blog section style*/
.blog-page {
  position: relative;
  background-color: #ebeced;
  padding: 0 0 100px;
  /*blog list style*/
}
@media (min-width: 768px) {
  .blog-page {
    padding: 100px 0 116px;
  }
}
@media (min-width: 1024px) {
  .blog-page {
    padding: 145px 0 165px;
  }
}
.blog-page .container {
  max-width: 1060px;
}
@media (min-width: 768px) {
  .blog-page .container {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .blog-page .container {
    padding: 0 64px;
  }
}
.blog-page .category-title {
  display: none;
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .blog-page .category-title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}
.blog-page .blog-list {
  margin-right: -32px;
  margin-bottom: 50px;
  /*subtitle style*/
}
@media (min-width: 768px) {
  .blog-page .blog-list {
    margin-bottom: 60px;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .blog-page .blog-list {
    margin-bottom: 100px;
  }
}
.blog-page .blog-list li {
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .blog-page .blog-list li {
    margin-bottom: 18px;
  }
}
@media (min-width: 1024px) {
  .blog-page .blog-list li {
    margin-bottom: 33px;
  }
}
.blog-page .blog-list .subtitle {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  display: block;
  margin-bottom: 10px;
  color: #0088cc;
}
@media (min-width: 768px) {
  .blog-page .blog-list .subtitle {
    margin-bottom: 20px;
  }
}
.blog-page .blog-list h2 {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 20px;
  font-weight: 300;
  color: #212424;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .blog-page .blog-list h2 {
    font-size: 28px;
    letter-spacing: -0.2px;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .blog-page .blog-list h2 {
    font-size: 36px;
    letter-spacing: -0.3px;
  }
}
.blog-page .blog-list li.blog_details {
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  background-color: #fff;
  display: block;
  padding: 40px 90px 29px 33px;
  position: relative;
}
@media (min-width: 768px) {
  .blog-page .blog-list li.blog_details {
    padding: 51px 150px 46px 45px;
  }
}
@media (min-width: 1024px) {
  .blog-page .blog-list li.blog_details {
    padding: 59px 150px 46px 65px;
  }
}
.blog-page .blog-list li.blog_details:before {
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  content: "\e902";
  font-family: "icomoon" !important;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
}
@media (min-width: 768px) {
  .blog-page .blog-list li.blog_details:before {
    width: 100px;
  }
}
@media (min-width: 1024px) {
  .blog-page .blog-list li.blog_details:before {
    width: 119px;
  }
}
.blog-page .blog-list li.blog_details:hover {
  -webkit-box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
}
.blog-page .blog-list li.blog_details:hover:before {
  background-color: #0088cc;
  color: #fff;
}
.blog-page .blog-list li.blog_details:hover h2 {
  color: #0088cc;
}
.blog-page .btn-holder {
  text-align: center;
}
.blog-page .btn-holder .btn {
  padding: 16px;
  min-width: 211px;
  width: auto;
}
.blog-page .select-holder {
  text-align: center;
}

/*popup select style*/
.select-holder {
  width: auto;
  z-index: 2;
  position: relative;
  margin: 0 -30px 33px;
  /*blog category style*/
}
@media (min-width: 768px) {
  .select-holder {
    max-width: 444px;
    position: absolute;
    margin: 0;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.select-holder .popup-select {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
}
.select-holder .blog-filtration-open {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background-color: #0088cc;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 22px 15px 21px;
  min-height: 60px;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
@media (min-width: 768px) {
  .select-holder .blog-filtration-open {
    min-width: 444px;
    min-height: 100px;
    width: auto;
    padding: 41px 15px 40px;
  }
}
.select-holder .blog-filtration-open i {
  margin-left: 11px;
  font-size: 7px;
  margin-top: -2px;
}
.select-holder .blog-filtration-open:hover {
  background-color: #0072bb;
}
.select-holder .blog-category {
  width: 100%;
  background-color: #0088cc;
  border: 1px solid #0072bb;
}
.select-holder .blog-category li {
  border-bottom: 1px solid #0072bb;
}
.select-holder .blog-category li a {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  padding: 13px 15px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
@media (min-width: 768px) {
  .select-holder .blog-category li a {
    padding: 15px;
  }
}
.select-holder .blog-category li a:hover {
  background-color: #0072bb;
}
.select-holder .blog-category li:last-child {
  border-bottom: none;
}

.select-holder {
  width: auto;
  z-index: 2;
  position: relative;
  margin: 0 -30px 33px;
  /*blog category style*/
}
@media (min-width: 768px) {
  .select-holder {
    max-width: 444px;
    position: absolute;
    margin: 0;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.select-holder .popup-select {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
}
.select-holder .fs-label-wrap {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background-color: #0088cc;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 22px 40px 21px 0px;
  min-height: 60px;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  border: none;
}
@media (min-width: 768px) {
  .select-holder .fs-label-wrap {
    min-width: 444px;
    min-height: 100px;
    width: auto;
    padding: 41px 15px 40px;
  }
}
.select-holder .fs-label-wrap i {
  margin-left: 11px;
  font-size: 7px;
  margin-top: -2px;
}
.select-holder .fs-label-wrap:hover {
  background-color: #0072bb;
}
.select-holder .fs-dropdown {
  width: 100% !important;
  background-color: #0088cc;
  border: 1px solid #0072bb;
}

.fs-wrap {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  width: auto !important;
  min-width: 444px !important;
}
.fs-wrap:focus {
  outline: none;
}

.fs-label-wrap {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: default;
}
.fs-label-wrap:focus {
  outline: none;
}

.fs-label-wrap,
.fs-dropdown {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fs-dropdown {
  min-width: 444px !important;
  width: auto !important;
  background-color: #0088cc;
  border: 1px solid #0072bb !important;
}
.fs-dropdown:last-child {
  border-bottom: none;
}

.fs-search {
  display: none !important;
}

.fs-option,
.fs-optgroup-label {
  padding: 13px 20px 13px 0px !important;
  font-size: 12px !important;
  letter-spacing: 2.4px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  display: block !important;
  border-bottom: 1px solid #0072bb !important;
}
@media (min-width: 768px) {
  .fs-option,
  .fs-optgroup-label {
    padding: 15px;
  }
}
.fs-option:hover,
.fs-optgroup-label:hover {
  background-color: #0072bb;
}

.fs-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff !important;
  position: absolute;
  top: 0;
  right: 139px !important;
  bottom: 0;
  margin: auto;
  -webkit-transition: ease-in 0.15s;
  transition: ease-in 0.15s;
}
@media (min-width: 1024px) {
  .fs-arrow {
    right: 128px !important;
  }
}

.fs-open .fs-arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*mission section style*/
.mission {
  /*black and white box style*/
}
@media (min-width: 768px) {
  .mission .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mission .box-holder {
  position: relative;
  background-color: #fff;
  padding: 120px 65px 77px 14px;
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 1.47;
}
@media (min-width: 768px) {
  .mission .box-holder {
    width: 50%;
    padding: 101px 68px 73px 0;
    letter-spacing: 0.7px;
  }
}
@media (min-width: 1024px) {
  .mission .box-holder {
    font-size: 16px;
    letter-spacing: 0.9px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .mission .box-holder {
    padding: 174px 180px 149px 68px;
  }
}
.mission .box-holder h1 {
  line-height: 1;
  font-size: 36px;
  letter-spacing: normal;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .mission .box-holder h1 {
    margin-bottom: 26px;
  }
}
@media (min-width: 1024px) {
  .mission .box-holder h1 {
    font-size: 50px;
    margin-bottom: 25px;
  }
}
.mission .box-holder p, .mission .box-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mission .box-holder ul {
  margin-bottom: 28px;
}
@media (min-width: 1200px) {
  .mission .box-holder p, .mission .box-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mission .box-holder ul {
    margin-bottom: 26px;
  }
}
.mission .box-holder.dark {
  background-color: #212424;
  color: #fff;
  padding-top: 74px;
  padding-bottom: 82px;
}
@media (min-width: 768px) {
  .mission .box-holder.dark {
    padding: 101px 0 73px 55px;
  }
}
@media (min-width: 1200px) {
  .mission .box-holder.dark {
    padding: 174px 68px 149px 174px;
  }
}
.mission .box-holder.dark:before {
  content: "";
  position: absolute;
  left: -32px;
  right: -32px;
  z-index: -1;
  top: 0;
  bottom: 0;
  background-color: #212424;
  pointer-events: none;
  width: 9999px;
}
@media (min-width: 768px) {
  .mission .box-holder.dark:before {
    left: 100%;
    right: auto;
  }
}

/*values style*/
.values {
  padding: 17px 15px 19px;
  /*values list style*/
}
@media (min-width: 768px) {
  .values {
    padding: 66px 64px 71px;
  }
}
@media (min-width: 1024px) {
  .values {
    padding: 110px;
  }
}
.values .container-fluid {
  background-color: #fff;
  padding: 50px 20px 30px;
}
@media (min-width: 375px) {
  .values .container-fluid {
    padding: 95px 36px 66px;
  }
}
@media (min-width: 768px) {
  .values .container-fluid {
    padding: 86px 61px 111px;
  }
}
@media (min-width: 1200px) {
  .values .container-fluid {
    padding: 116px 115px 73px;
  }
}
.values h2 {
  margin-bottom: 63px;
}
@media (min-width: 768px) {
  .values h2 {
    margin-bottom: 76px;
  }
}
@media (min-width: 1024px) {
  .values h2 {
    margin-bottom: 104px;
  }
}
@media (min-width: 768px) {
  .values .values-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -65px;
    padding-left: 10px;
  }
}
@media (min-width: 1024px) {
  .values .values-list {
    margin: 0 -60px;
    padding-left: 0;
  }
}
.values .values-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 48px;
}
.values .values-list li p, .values .values-list li .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .values .values-list li ul {
  padding-top: 15px;
}
.values .values-list li a.link {
  padding-top: 15px;
}
.values .values-list li a.link:before {
  top: 15px;
}
@media (min-width: 768px) {
  .values .values-list li {
    width: 50%;
    display: block;
    padding: 0 45px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .values .values-list li {
    width: 33.33%;
    padding: 0 40px;
    margin-bottom: 80px;
  }
}
.values .values-list li h3 {
  font-weight: 700;
  width: calc(100% - 55px);
  padding-left: 26px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .values .values-list li h3 {
    width: auto;
    margin-bottom: 8px;
    padding-left: 0;
  }
}
.values .values-list li i {
  font-size: 55px;
}
@media (min-width: 768px) {
  .values .values-list li i {
    margin-bottom: 22px;
    display: inline-block;
    vertical-align: middle;
  }
}
.values .values-list li .image-container {
  height: 55px;
  width: 55px;
}
@media (min-width: 768px) {
  .values .values-list li .image-container {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 22px;
  }
}
.values .values-list li .image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/*where work section*/
.were-work {
  padding: 112px 0 71px;
  background-color: #ebeded;
  /*work list style */
}
@media (min-width: 768px) {
  .were-work {
    padding: 161px 0 83px;
  }
}
@media (min-width: 1200px) {
  .were-work {
    padding: 215px 0 89px;
  }
}
@media (min-width: 375px) {
  .were-work .container {
    padding: 0 45px;
  }
}
@media (min-width: 768px) {
  .were-work .container {
    padding: 0 64px 0 125px;
  }
}
@media (min-width: 1024px) {
  .were-work .container {
    padding: 0 64px;
  }
}
.were-work h2 {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .were-work h2 {
    padding-left: 117px;
    margin-bottom: 100px;
  }
}
.were-work .text-holder {
  font-size: 16px;
  font-weight: 300;
  color: #818585;
  line-height: 1.875;
  letter-spacing: 0.8px;
  max-width: 1200px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .were-work .text-holder {
    font-size: 18px;
    line-height: 1.67;
    letter-spacing: 0.9px;
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  .were-work .text-holder {
    font-size: 22px;
    line-height: 1.37;
    letter-spacing: 1.1px;
    margin-bottom: 110px;
    padding-left: 150px;
  }
}
.were-work .work-list {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.9px;
  color: #818585;
  /*address style*/
}
@media (min-width: 768px) {
  .were-work .work-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -39px;
  }
}
@media (min-width: 1024px) {
  .were-work .work-list {
    padding-left: 150px;
    margin: 0;
    font-size: 22px;
    line-height: 1.46;
    letter-spacing: 1.1px;
  }
}
@media (min-width: 1200px) {
  .were-work .work-list {
    padding-left: 361px;
  }
}
.were-work .work-list li {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .were-work .work-list li {
    width: 50%;
    padding: 0 39px;
    margin-bottom: 59px;
  }
}
@media (min-width: 1024px) {
  .were-work .work-list li {
    padding: 0;
    margin-bottom: 75px;
  }
}
.were-work .work-list li h3 {
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1;
  letter-spacing: normal;
  color: #212424;
}
.were-work .work-list li a {
  display: block;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .were-work .work-list li a {
    margin-bottom: 7px;
  }
}
.were-work .work-list address {
  font-style: normal;
  display: block;
  margin-bottom: 29px;
}
@media (min-width: 1024px) {
  .were-work .work-list address {
    margin-bottom: 21px;
  }
}

/*download section style*/
.download {
  background-color: #212424;
  color: #fff;
  text-align: center;
  padding: 106px 0 89px;
}
@media (min-width: 768px) {
  .download {
    padding: 102px 0 86px;
  }
}
@media (min-width: 1024px) {
  .download {
    padding: 135px 0 139px;
  }
}
.download .container {
  padding: 0 23px;
}
.download h1 {
  max-width: 660px;
  margin: 0 auto 48px;
  font-size: 38px;
  padding: 0 25px;
}
@media (min-width: 768px) {
  .download h1 {
    font-size: 44px;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .download h1 {
    font-size: 50px;
    margin: 0 auto 59px;
  }
}
.download .btn {
  display: block;
  min-width: auto;
  max-width: 339px;
  width: 100%;
  margin: 0 auto 18px;
}

/*partners logo style*/
.partnerships {
  padding: 119px 0 83px;
}
@media (min-width: 768px) {
  .partnerships {
    padding: 131px 0 144px;
  }
}
@media (min-width: 1024px) {
  .partnerships {
    padding: 185px 0 192px;
  }
}
@media (min-width: 375px) {
  .partnerships .container {
    padding: 0 45px;
  }
}
@media (min-width: 768px) {
  .partnerships .container {
    padding: 0 83px;
  }
}
@media (min-width: 1200px) {
  .partnerships .container {
    padding: 0 183px;
  }
}
.partnerships h1 {
  text-align: center;
  margin-bottom: 44px;
  font-size: 36px;
}
@media (min-width: 768px) {
  .partnerships h1 {
    margin-bottom: 78px;
  }
}
@media (min-width: 1024px) {
  .partnerships h1 {
    font-size: 50px;
    margin-bottom: 75px;
  }
}
.partnerships .partnerships-list {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 1.43;
  font-weight: 300;
  counter-reset: counter;
}
@media (min-width: 768px) {
  .partnerships .partnerships-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -26px 30px;
  }
}
@media (min-width: 1024px) {
  .partnerships .partnerships-list {
    font-size: 16px;
    letter-spacing: 0.6px;
    line-height: 1.5;
    margin: 0 -26px 56px;
  }
}
@media (min-width: 1200px) {
  .partnerships .partnerships-list {
    margin: 0 -60px 56px;
  }
}
.partnerships .partnerships-list li {
  counter-increment: counter;
  position: relative;
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .partnerships .partnerships-list li {
    width: 33.33%;
    padding: 0 26px;
  }
}
@media (min-width: 1200px) {
  .partnerships .partnerships-list li {
    padding: 0 60px;
  }
}
.partnerships .partnerships-list li:before {
  content: counter(counter,decimal-leading-zero) "";
  display: block;
  border-bottom: 1px solid #b0b1b3;
  font-size: 22px;
  color: #b0b1b3;
  padding-bottom: 9px;
  margin-bottom: 19px;
}
@media (min-width: 768px) {
  .partnerships .partnerships-list li:before {
    margin-bottom: 29px;
  }
}
@media (min-width: 1024px) {
  .partnerships .partnerships-list li:before {
    margin-bottom: 40px;
  }
}
.partnerships .partnerships-list li p, .partnerships .partnerships-list li .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .partnerships .partnerships-list li ul {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .partnerships .partnerships-list li p, .partnerships .partnerships-list li .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .partnerships .partnerships-list li ul {
    margin-bottom: 25px;
  }
}
.partnerships .partners-list {
  display: none;
}
@media (min-width: 768px) {
  .partnerships .partners-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -22px;
  }
}
@media (min-width: 1024px) {
  .partnerships .partners-list {
    margin: 0 -42px;
  }
}
@media (min-width: 768px) {
  .partnerships .partners-list li {
    width: 20%;
    padding: 0 22px;
  }
}
@media (min-width: 1024px) {
  .partnerships .partners-list li {
    padding: 0 42px;
  }
}
.partnerships .partners-list li a {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.partnerships .partners-list li a:hover {
  opacity: 0.6;
}

/*why work section style*/
.why-work {
  padding: 110px 0 46px;
}
@media (min-width: 768px) {
  .why-work {
    padding: 131px 0 46px;
  }
}
@media (min-width: 1024px) {
  .why-work {
    padding: 150px 0 80px;
  }
}
@media (min-width: 1200px) {
  .why-work {
    padding: 216px 0 192px;
  }
}
@media (min-width: 375px) {
  .why-work .container {
    padding: 0 45px;
  }
}
@media (min-width: 768px) {
  .why-work .container {
    padding: 0 74px;
  }
}
@media (min-width: 1200px) {
  .why-work .container {
    padding: 0 181px;
  }
}
.why-work h2 {
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .why-work h2 {
    margin-bottom: 37px;
  }
}
@media (min-width: 1024px) {
  .why-work h2 {
    margin-bottom: 55px;
  }
}
@media (min-width: 1024px) {
  .why-work .text-content {
    padding-left: 150px;
  }
}
@media (min-width: 1200px) {
  .why-work .text-content {
    padding-left: 238px;
  }
}
.why-work .text-holder {
  font-size: 16px;
  font-weight: 300;
  color: #818585;
  line-height: 1.875;
  letter-spacing: 0.8px;
  max-width: 600px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .why-work .text-holder {
    font-size: 18px;
    line-height: 1.67;
    letter-spacing: 0.9px;
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  .why-work .text-holder {
    font-size: 22px;
    line-height: 1.37;
    letter-spacing: 1.1px;
    margin-bottom: 110px;
  }
}
.why-work .work-list {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  letter-spacing: 0.72px;
}
@media (min-width: 768px) {
  .why-work .work-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -50px;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .why-work .work-list {
    margin: 0 -65px;
  }
}
.why-work .work-list li {
  margin-bottom: 69px;
}
@media (min-width: 768px) {
  .why-work .work-list li {
    width: 50%;
    padding: 0 50px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .why-work .work-list li {
    padding: 0 65px;
    margin-bottom: 66px;
  }
}
.why-work .work-list li i {
  font-size: 82px;
  color: #0088cc;
  margin-bottom: 24px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .why-work .work-list li i {
    margin-bottom: 26px;
  }
}
@media (min-width: 1200px) {
  .why-work .work-list li i {
    font-size: 102px;
    margin-bottom: 34px;
  }
}
.why-work .work-list li .image-container {
  height: 82px;
  width: 82px;
  margin-bottom: 24px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .why-work .work-list li .image-container {
    margin-bottom: 26px;
  }
}
@media (min-width: 1200px) {
  .why-work .work-list li .image-container {
    height: 102px;
    width: 102px;
    margin-bottom: 34px;
  }
}
.why-work .work-list li .image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/*development section style*/
.development {
  background-color: #0088cc;
  padding: 106px 0 54px;
  color: #fff;
  /*development list style*/
  /*link and go to style*/
}
@media (min-width: 768px) {
  .development {
    padding: 102px 0 80px;
  }
}
@media (min-width: 1024px) {
  .development {
    padding: 159px 0 131px;
  }
}
.development.light {
  background-color: #fff;
  color: #212424;
}
.development.light .link-holder .link {
  color: #0088cc;
}
.development.light .link-holder .link:before {
  color: #818585;
}
.development.light .link-holder .go-to {
  color: #013b61;
}
@media (min-width: 375px) {
  .development .container {
    padding: 0 45px;
  }
}
@media (min-width: 768px) {
  .development .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 41px;
  }
}
@media (min-width: 1024px) {
  .development .container {
    padding: 0 64px;
  }
}
.development h1 {
  line-height: 1;
  font-size: 36px;
  margin-bottom: 39px;
}
@media (min-width: 768px) {
  .development h1 {
    font-size: 44px;
    margin-bottom: 19px;
  }
}
@media (min-width: 1024px) {
  .development h1 {
    font-size: 50px;
    margin-bottom: 45px;
  }
}
.development .text-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.875;
  margin-bottom: 49px;
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .development .text-content {
    margin-bottom: 15px;
    padding-left: 22px;
    padding-right: 30px;
    width: 50%;
    line-height: 1.625;
    padding-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  .development .text-content {
    font-size: 22px;
    line-height: 1.47;
    margin-bottom: 110px;
    padding-left: 0;
    max-width: 490px;
    padding-bottom: 50px;
    letter-spacing: 1px;
  }
}
.development .development-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 501px;
  margin: 0 -10px 30px;
}
@media (min-width: 768px) {
  .development .development-list {
    width: 44%;
    margin: 0 0 0 auto;
    padding: 6px 0 0 0;
  }
}
@media (min-width: 1024px) {
  .development .development-list {
    padding: 11px 0 0 0;
  }
}
.development .development-list li {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .development .development-list li {
    padding: 0 17px;
    margin-bottom: 40px;
  }
}
.development .development-list li i {
  font-size: 132px;
}
@media (min-width: 768px) {
  .development .development-list li i {
    font-size: 129px;
  }
}
@media (min-width: 1200px) {
  .development .development-list li i {
    font-size: 216px;
  }
}
.development .development-list li img {
  width: 100%;
}
.development .link-holder {
  width: 100%;
}
@media (min-width: 768px) {
  .development .link-holder {
    padding-left: 22px;
  }
}
@media (min-width: 1024px) {
  .development .link-holder {
    margin-top: -71px;
    padding-left: 0;
  }
}
.development .link-holder .go-to {
  color: #005c97;
  display: block;
  font-size: 12px;
  letter-spacing: 0.6px;
}
.development .link-holder .go-to a {
  color: inherit;
  display: inline-block;
  vertical-align: top;
}
.development .link-holder .go-to a:hover {
  color: #212424;
}
.development .link-holder .link {
  color: #fff;
  margin-bottom: 4px;
}
.development .link-holder .link:before {
  color: #fff;
}
.development .link-holder .link:hover {
  color: #bfbfbf;
}

/*video section style*/
.video-section {
  padding: 18px 0 43px;
  text-align: center;
  /*video placeholder style*/
}
@media (min-width: 768px) {
  .video-section {
    padding: 73px 0 56px;
  }
}
@media (min-width: 1024px) {
  .video-section {
    padding: 119px 0 93px;
  }
}
.video-section h2 {
  line-height: 1.1;
  margin-bottom: 9px;
}
.video-section .container {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .video-section .container {
    padding: 0 64px;
  }
}
@media (min-width: 1024px) {
  .video-section .video-holder {
    position: relative;
  }
}
.video-section .video {
  position: relative;
  padding-bottom: 95%;
  margin-bottom: 43px;
  /*play btn style*/
}
@media (min-width: 768px) {
  .video-section .video {
    padding-bottom: 53%;
  }
}
@media (min-width: 1024px) {
  .video-section .video {
    padding-bottom: 51%;
  }
}
.video-section .video .play {
  position: absolute;
  font-size: 78px;
  left: 50%;
  top: 50%;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
}
.video-section .video .play:hover {
  color: #0088cc;
}
.video-section .video .play i {
  display: block;
}
.video-section .description {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.6px;
  display: block;
}
@media (min-width: 1024px) {
  .video-section .description {
    position: absolute;
    color: #fff;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .video-section .description {
    bottom: 75px;
  }
}
.video-section .description .time-video {
  color: rgba(33, 36, 36, 0.5);
}
@media (min-width: 1024px) {
  .video-section .description .time-video {
    color: #fff;
  }
}

/*Blog Single Details*/
.section.singleblog__content {
  padding: 0px 0px;
  margin: 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ebeced;
}
.section.singleblog__content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section.singleblog__content .container .grid__container {
  margin: -50px 5% 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 50%;
  max-width: 100%;
  height: auto;
  background-color: #fff;
  z-index: 1;
}
@media (min-width: 768px) {
  .section.singleblog__content .container .grid__container {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .section.singleblog__content .container .grid__container {
    min-width: 800px;
  }
}
.section.singleblog__content .container .grid__container .grid__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
}
@media (min-width: 768px) {
  .section.singleblog__content .container .grid__container .grid__block {
    padding: 80px;
  }
}
@media (min-width: 1024px) {
  .section.singleblog__content .container .grid__container .grid__block {
    padding: 80px;
  }
}
.section.singleblog__content .container .grid__container .grid__block .grid__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.section.singleblog__content .container .grid__container .grid__block .grid__top ul.post-categories {
  list-style-type: none;
  -webkit-padding-start: 0px !important;
          padding-inline-start: 0px !important;
  padding-bottom: 30px;
}
.section.singleblog__content .container .grid__container .grid__block .grid__content {
  text-align: left;
}
.section.singleblog__content .container .grid__container .grid__block .grid__content ul {
  list-style: inside;
  font-weight: 500;
  line-height: 32px;
  padding: 20px 0px;
}

.post-navigation h2.screen-reader-text {
  display: none !important;
}
.post-navigation .nav-links {
  display: inline !important;
}
.post-navigation .nav-links .nav-previous {
  display: inline-block;
  padding: 50px 30px;
}
.post-navigation .nav-links .nav-previous .icon-arrow-left {
  font-size: 12px !important;
}
.post-navigation .nav-links .nav-next {
  display: inline-block;
  padding: 50px 30px;
}
.post-navigation .nav-links .nav-next .icon-arrow-right {
  font-size: 12px !important;
}

/*Archive Page*/
.blog-hero.archive-hero {
  min-height: 481px !important;
}
.blog-hero.archive-hero .archive-header {
  margin-top: 50px;
}
.blog-hero.archive-hero .archive-header h1.page-title {
  text-transform: capitalize;
}

/*404 Page*/
.hero-section.error_hero {
  min-height: 481px !important;
}

/*wysiwyg section style*/
.faqs-section {
  text-align: center;
  background: #fff;
  padding: 45px;
  /* Accordion styles */
}
@media (min-width: 768px) {
  .faqs-section {
    padding: 70px 64px;
  }
}
@media (min-width: 1024px) {
  .faqs-section {
    padding: 110px;
  }
}
@media (min-width: 1024px) {
  .faqs-section .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.faqs-section .container {
  text-align: left;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .faqs-section .container {
    text-align: left;
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .faqs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-top: 30px;
  }
}
.faqs-section h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}
.faqs-section h2 {
  margin: 0 0 .5em;
  margin-bottom: 55px;
}
.faqs-section input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faqs-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faqs-section .row .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqs-section .row .col:last-child {
  margin-left: 1em;
}
.faqs-section .tabs {
  border-radius: 2px;
  overflow: hidden;
}
.faqs-section .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.faqs-section .tab-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 14px 14px 14px;
  background: #0088cc;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.faqs-section .tab-label:hover {
  background: #006699;
}
.faqs-section .tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: left;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.faqs-section .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #212424;
  background: white;
  -webkit-transition: all .25s;
  transition: all .25s;
  text-align: left;
}
.faqs-section .tab-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #0088cc;
  cursor: pointer;
}
.faqs-section .tab-close:hover {
  background: #006699;
}
.faqs-section input:checked + .tab-label {
  background: #006699;
}
.faqs-section input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faqs-section input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 30px;
}

.teams-section {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.9px;
  background: #ebeced;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .teams-section {
    font-size: 18px;
    line-height: 1.66667;
    letter-spacing: 0.87px;
    padding: 66px 0 70px;
  }
}
@media (min-width: 1024px) {
  .teams-section {
    font-size: 22px;
    line-height: 1.454545;
    letter-spacing: 1.12px;
    padding: 110px 0;
  }
}
.teams-section h2 {
  margin-bottom: 41px;
  font-weight: 700;
}
@media (max-width: 374px) {
  .teams-section h2 {
    word-break: break-all;
  }
}
@media (min-width: 1200px) {
  .teams-section h2 {
    margin-bottom: 67px;
  }
}
.teams-section .container-fluid {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .teams-section .container-fluid {
    padding: 0 64px;
  }
}
@media (min-width: 1024px) {
  .teams-section .container-fluid {
    padding: 0 110px;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.teams-section .info-holder {
  background: #fff;
  margin: 0 -15px;
  padding: 88px 31px;
  color: #818585;
}
@media (min-width: 375px) {
  .teams-section .info-holder {
    padding: 88px 31px 64px;
  }
}
@media (min-width: 768px) {
  .teams-section .info-holder {
    padding: 86px 98px 108px 61px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .teams-section .info-holder {
    padding: 117px 118px 126px 118px;
  }
}
.teams-section .info-holder.alternate {
  padding: 0;
}
@media (min-width: 768px) {
  .teams-section .info-holder.alternate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
}
.teams-section .info-holder.alternate .img-holder {
  min-height: 200px;
  padding-top: 44.6%;
}
@media (min-width: 768px) {
  .teams-section .info-holder.alternate .img-holder {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .teams-section .info-holder.alternate .img-holder {
    width: 39.6%;
  }
}
.teams-section .info-holder.alternate .text-holder {
  padding: 25px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 768px) {
  .teams-section .info-holder.alternate .text-holder {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .teams-section .info-holder.alternate .text-holder {
    width: 60.4%;
  }
}
@media (min-width: 1200px) {
  .teams-section .info-holder.alternate .text-holder {
    padding: 25px 194px 25px 90px;
  }
}
.teams-section .info-holder .btn {
  padding: 17px 10px;
  min-width: 210px;
}
.teams-section .info-holder p, .teams-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section .info-holder ul {
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .teams-section .info-holder p, .teams-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section .info-holder ul {
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .teams-section .info-holder p, .teams-section .info-holder .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section .info-holder ul {
    margin-bottom: 17px;
  }
}
@media (min-width: 768px) {
  .teams-section .text-info {
    padding-left: 130px;
  }
}
@media (min-width: 1200px) {
  .teams-section .text-info {
    padding-left: 235px;
  }
}
.teams-section.blockquote-section .info-holder {
  padding: 73px 31px 34px;
}
@media (min-width: 768px) {
  .teams-section.blockquote-section .info-holder {
    padding: 84px 61px 88px;
  }
}
@media (min-width: 1024px) {
  .teams-section.blockquote-section .info-holder {
    padding: 115px 118px 88px;
  }
}
.teams-section.blockquote-section h2 {
  max-width: 350px;
  margin-bottom: 53px;
  color: #0088cc;
  font-weight: 500px;
}
@media (min-width: 768px) {
  .teams-section.blockquote-section h2 {
    margin-bottom: 61px;
    color: #0088cc;
    font-weight: 500px;
  }
}
@media (min-width: 1024px) {
  .teams-section.blockquote-section h2 {
    margin-bottom: 47px;
    color: #0088cc;
    font-weight: 500px;
  }
}
@media (min-width: 768px) {
  .teams-section.blockquote-section .text-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0;
  }
}
.teams-section.blockquote-section .text-info .img-holder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .teams-section.blockquote-section .text-info .img-holder {
    width: 79px;
    height: 79px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .teams-section.blockquote-section .text-info .img-holder {
    width: 134px;
    height: 134px;
  }
}
.teams-section.blockquote-section .text-info blockquote {
  margin: 0;
  position: relative;
  color: #818585;
  padding: 28px 0;
}
@media (min-width: 768px) {
  .teams-section.blockquote-section .text-info blockquote {
    width: calc(100% - 79px);
    font-size: 18px;
    line-height: 1.67;
    padding: 5px 20px 25px 53px;
  }
}
@media (min-width: 1024px) {
  .teams-section.blockquote-section .text-info blockquote {
    width: calc(100% - 134px);
    font-size: 18px;
    line-height: 1.46;
    padding: 5px 60px 66px 103px;
  }
}
.teams-section.blockquote-section .text-info blockquote p, .teams-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section.blockquote-section .text-info blockquote ul {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .teams-section.blockquote-section .text-info blockquote p, .teams-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section.blockquote-section .text-info blockquote ul {
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .teams-section.blockquote-section .text-info blockquote p, .teams-section.blockquote-section .text-info blockquote .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .teams-section.blockquote-section .text-info blockquote ul {
    margin-bottom: 40px;
  }
}

/*product section style*/
.team-cards {
  padding: 87px 0 107px;
  background: #ebeded;
}
@media (min-width: 768px) {
  .team-cards {
    padding: 100px 0 81px;
  }
}
@media (min-width: 1024px) {
  .team-cards {
    padding: 130px 0 116px;
  }
}
@media (min-width: 768px) {
  .team-cards .container {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container {
    padding: 0 64px;
  }
}
.team-cards .container .product-holder {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .team-cards .container .product-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px 25px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder {
    max-width: 962px;
    margin: 0 auto 40px;
  }
}
.team-cards .container .product-holder .product-card {
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-align: center;
  background: #fff;
  color: #818585;
  -webkit-box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 27px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.35px;
  display: block;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .team-cards .container .product-holder .product-card {
    margin: 0 10px 30px;
    width: calc(33.332% - 20px);
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder .product-card {
    margin: 0 15px 30px;
    width: calc(33.332% - 30px);
  }
}
.team-cards .container .product-holder .product-card:hover .btn {
  background: #0088cc;
  color: #fff;
}
.team-cards .container .product-holder .product-card .img-holder {
  padding-top: 76%;
}
@media (min-width: 480px) {
  .team-cards .container .product-holder .product-card .img-holder {
    padding-top: 50%;
  }
}
@media (min-width: 768px) {
  .team-cards .container .product-holder .product-card .img-holder {
    padding-top: 76%;
  }
}
.team-cards .container .product-holder .product-card .img-holder.no-image {
  padding-top: 0;
}
@media (min-width: 480px) {
  .team-cards .container .product-holder .product-card .img-holder.no-image {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .team-cards .container .product-holder .product-card .img-holder.no-image {
    padding-top: 0;
  }
}
.team-cards .container .product-holder .product-card .text-holder {
  padding: 44px 43px 34px;
}
@media (min-width: 768px) {
  .team-cards .container .product-holder .product-card .text-holder {
    padding: 38px 31px 24px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder .product-card .text-holder {
    padding: 55px 31px 35px;
  }
}
.team-cards .container .product-holder .product-card h3 {
  color: #0088cc;
  font-weight: 700;
  line-height: 1.077;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .team-cards .container .product-holder .product-card h3 {
    margin-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder .product-card h3 {
    margin-bottom: 22px;
  }
}
.team-cards .container .product-holder .product-card p, .team-cards .section.singleblog__content .container .product-holder .product-card .grid__container .grid__block .grid__content ul, .section.singleblog__content .team-cards .container .product-holder .product-card .grid__container .grid__block .grid__content ul, .team-cards .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder .product-card ul, .section.singleblog__content .team-cards .container .grid__container .grid__block .grid__content .product-holder .product-card ul {
  margin-bottom: 10px;
}
.team-cards .container .product-holder .product-card .btn {
  background: transparent;
  color: #0088cc;
}
@media (min-width: 768px) {
  .team-cards .container .product-holder.two-col .product-card {
    width: calc(50% - 20px);
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder.two-col .product-card {
    width: calc(50% - 30px);
  }
}
.team-cards .container .product-holder.two-col .product-card:hover .btn {
  color: #00334d;
  background: transparent;
}
.team-cards .container .product-holder.two-col .product-card .text-holder {
  padding: 47px 47px 45px;
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder.two-col .product-card .text-holder {
    padding: 47px 57px 52px;
  }
}
@media (min-width: 768px) {
  .team-cards .container .product-holder.two-col .product-card .btn {
    padding: 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .team-cards .container .product-holder.two-col .product-card h3 {
    margin-bottom: 13px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder.two-col .product-card h3 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .team-cards .container .product-holder.two-col .product-card p, .team-cards .section.singleblog__content .container .product-holder.two-col .product-card .grid__container .grid__block .grid__content ul, .section.singleblog__content .team-cards .container .product-holder.two-col .product-card .grid__container .grid__block .grid__content ul, .team-cards .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul, .section.singleblog__content .team-cards .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .team-cards .container .product-holder.two-col .product-card p, .team-cards .section.singleblog__content .container .product-holder.two-col .product-card .grid__container .grid__block .grid__content ul, .section.singleblog__content .team-cards .container .product-holder.two-col .product-card .grid__container .grid__block .grid__content ul, .team-cards .section.singleblog__content .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul, .section.singleblog__content .team-cards .container .grid__container .grid__block .grid__content .product-holder.two-col .product-card ul {
    margin-bottom: 20px;
  }
}
.team-cards h2 {
  text-align: center;
  margin-bottom: 51px;
}
@media (min-width: 768px) {
  .team-cards h2 {
    margin-bottom: 68px;
  }
}
@media (min-width: 1024px) {
  .team-cards h2 {
    margin-bottom: 77px;
  }
}
.team-cards .btn-holder {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .team-cards .btn-holder {
    margin-bottom: 150px;
  }
}
.team-cards .link {
  padding: 0;
}
.team-cards .link:before {
  content: none;
}

.mobile-header {
  max-height: 600px !important;
}
.mobile-header .image-mobile-container {
  height: 300px !important;
  width: 100% !important;
}
.mobile-header .image-mobile-container img {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: 50% 50% !important;
     object-position: 50% 50% !important;
}
.mobile-header .grid-container {
  height: 300px;
  width: 100%;
  background-color: #212424;
}
.mobile-header .grid-container .grid-text {
  padding: 50px 30px;
}
.mobile-header .grid-container .grid-text h1 {
  color: #fff;
}
.mobile-header .grid-container .grid-text p, .mobile-header .grid-container .grid-text .section.singleblog__content .container .grid__container .grid__block .grid__content ul, .section.singleblog__content .container .grid__container .grid__block .grid__content .mobile-header .grid-container .grid-text ul {
  color: #fff;
}

/* footer styles */
#footer {
  color: #fff;
  /* footer logo styles */
}
#footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 375px) {
  #footer .container {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  #footer .container {
    padding: 0 64px;
  }
}
@media (min-width: 1024px) {
  #footer .container {
    padding: 0 15px;
  }
}
#footer .logo {
  width: 157px;
  margin-bottom: 63px;
  display: block;
}
@media (min-width: 1024px) {
  #footer .logo {
    margin-bottom: 52px;
  }
}
#footer .logo img {
  display: block;
}

/* footer content styles */
@media (min-width: 1024px) {
  .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-content .sign-up-box,
.footer-content .info-box {
  position: relative;
  padding: 75px 0 40px;
}
@media (min-width: 768px) {
  .footer-content .sign-up-box,
  .footer-content .info-box {
    padding: 75px 0 67px;
  }
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box,
  .footer-content .info-box {
    width: 50%;
    padding: 93px 0 80px;
  }
}
.footer-content .sign-up-box:before,
.footer-content .info-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  right: -30px;
  background-color: #0088cc;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer-content .sign-up-box:before,
  .footer-content .info-box:before {
    left: -64px;
    right: -64px;
  }
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box:before,
  .footer-content .info-box:before {
    right: 100%;
    bottom: 0;
    left: auto;
    width: 9999px;
  }
}
.footer-content .sign-up-box {
  background-color: #0088cc;
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box {
    padding-right: 117px;
  }
}
.footer-content .sign-up-box h3 {
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.4px;
  margin-bottom: 15px;
}
.footer-content .sign-up-box h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.07692;
  margin-bottom: 34px;
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box h4 {
    margin-bottom: 27px;
  }
}
@media (min-width: 768px) {
  .footer-content .sign-up-box .sign-up-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 23px;
  }
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box .sign-up-form {
    padding-right: 0;
    margin-bottom: 48px;
  }
}
.footer-content .sign-up-box .sign-up-form input[type='email'] {
  text-align: center;
  border-color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .footer-content .sign-up-box .sign-up-form input[type='email'] {
    text-align: left;
    margin-bottom: 0;
    padding: 10px 34px;
    width: calc(100% - 169px);
  }
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box .sign-up-form input[type='email'] {
    width: calc(100% - 141px);
  }
}
.footer-content .sign-up-box .sign-up-form input[type='submit'] {
  text-align: center;
  width: 100%;
  border: 1px solid #fff;
  padding: 24px 10px;
  outline: none;
}
.footer-content .sign-up-box .sign-up-form input[type='submit'].btn {
  min-width: auto;
}
@media (min-width: 768px) {
  .footer-content .sign-up-box .sign-up-form input[type='submit'] {
    padding: 24px 10px;
    max-width: 169px;
  }
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box .sign-up-form input[type='submit'] {
    max-width: 141px;
  }
}
.footer-content .sign-up-box .privacy {
  display: none;
}
@media (min-width: 1024px) {
  .footer-content .sign-up-box .privacy {
    display: block;
    font-weight: 300;
    letter-spacing: 1.1px;
  }
}
.footer-content .info-box {
  background-color: #212424;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .footer-content .info-box {
    padding-left: 116px;
  }
}
.footer-content .info-box:before {
  background-color: #212424;
}
@media (min-width: 1024px) {
  .footer-content .info-box:before {
    right: auto;
    left: 100%;
  }
}
.footer-content .info-box .row-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -25px 27px;
}
@media (min-width: 768px) {
  .footer-content .info-box .row-holder {
    padding-right: 63px;
    margin: 0 -25px;
  }
}
@media (min-width: 1024px) {
  .footer-content .info-box .row-holder {
    margin: 0 -30px;
  }
}
.footer-content .info-box .row-holder .row {
  width: 50%;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 180px;
}
@media (min-width: 1024px) {
  .footer-content .info-box .row-holder .row {
    max-width: none;
    padding: 0 30px;
  }
}
.footer-content .info-box .titles,
.footer-content .info-box .link-list {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
}
.footer-content .info-box .titles li,
.footer-content .info-box .link-list li {
  margin-bottom: 19px;
}
.footer-content .info-box .link-list a {
  color: #0088cc;
}
.footer-content .info-box .link-list a:hover {
  color: #fff;
}
.footer-content .info-box .copyright,
.footer-content .info-box .credits {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.78px;
  line-height: 1.85714;
}
.footer-content .info-box .copyright a,
.footer-content .info-box .credits a {
  color: #fff;
}
.footer-content .info-box .copyright a:hover,
.footer-content .info-box .credits a:hover {
  color: #0088cc;
}
.footer-content .info-box .credits {
  color: rgba(255, 255, 255, 0.3);
}
.footer-content .info-box .credits a {
  color: rgba(255, 255, 255, 0.3);
}
.footer-content .info-box .credits a:hover {
  color: #0088cc;
}

/* partners block styles */
.partners {
  text-align: center;
  color: #212424;
  padding: 61px 0 44px;
  /* partners-list styles */
}
@media (min-width: 768px) {
  .partners {
    padding: 61px 0 39px;
  }
}
.partners h6 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .partners h6 {
    margin-bottom: 32px;
  }
}
.partners .partners-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -30px;
}
@media (min-width: 768px) {
  .partners .partners-list {
    margin: 0 -25px;
    padding: 0 55px;
  }
}
@media (min-width: 1024px) {
  .partners .partners-list {
    margin: 0 -75px;
    padding: 0 120px;
  }
}
.partners .partners-list li {
  width: 33.33%;
  padding: 0 30px;
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .partners .partners-list li {
    width: 20%;
    padding: 0 25px;
  }
}
@media (min-width: 1024px) {
  .partners .partners-list li {
    padding: 0 75px;
  }
}
.partners .partners-list a {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.partners .partners-list a:hover {
  opacity: 0.6;
}
