@charset "UTF-8";
@font-face {
  font-family: 'Circular';
  src: url("../fonts/CircularStd-Black.eot");
  src: url("../fonts/CircularStd-Black.eot") format("embedded-opentype"), url("../fonts/CircularStd-Black.woff2") format("woff2"), url("../fonts/CircularStd-Black.woff") format("woff"), url("../fonts/CircularStd-Black.ttf") format("truetype"), url("../fonts/CircularStd-Black.svg") format("svg");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Circular';
  src: url("../fonts/CircularStd-Bold.eot");
  src: url("../fonts/CircularStd-Bold.eot") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype"), url("../fonts/CircularStd-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Circular';
  src: url("../fonts/CircularStd-Medium.eot");
  src: url("../fonts/CircularStd-Medium.eot") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype"), url("../fonts/CircularStd-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Circular';
  src: url("../fonts/CircularStd-Regular.eot");
  src: url("../fonts/CircularStd-Regular.eot") format("embedded-opentype"), url("../fonts/CircularStd-Regular.woff2") format("woff2"), url("../fonts/CircularStd-Regular.woff") format("woff"), url("../fonts/CircularStd-Regular.ttf") format("truetype"), url("../fonts/CircularStd-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* -----------------------------------------
   Home page slider
----------------------------------------- */
#home-slider .slick-slide {
  position: relative;
  height: 500px;
  /*define the height of slide*/
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
#home-slider .slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#home-slider .slider-caption p, #home-slider .slider-caption h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    height: 400px;
    /*define the height of slide*/
  }
}
@media only screen and (max-width: 634px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/
  }
}
/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  /* Image does not overflow the content area */
  padding: 5px 5px 10px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  margin-bottom: 10px;
}
.wp-caption p {
  margin-bottom: 0;
  font-size: 14px;
}

.gallery-caption {
  font-size: 12px;
}

#wpadminbar {
  opacity: 0.3;
  -webkit-transition: 0.2s opacity linear;
          transition: 0.2s opacity linear;
  -webkit-transform: translateZ(0);
}
#wpadminbar:hover, #wpadminbar:focus {
  opacity: 1;
}

/* -----------------------------------------
    Contact Form
----------------------------------------- */
/*basic Gravity Form styles and fixes, if you dont need/use this comment or delete styles below*/
.gform_wrapper ul {
  list-style: none;
}

.gform_fields {
  margin: 0;
}

.gfield {
  list-style: none;
  margin-bottom: 20px;
}

.gfield_label {
  display: none;
}

.ginput_container ul {
  margin-left: 0;
}

.gfield_error input, .gfield_error textarea {
  border-color: red;
}

.gfield_description {
  margin-top: 10px;
}

.gform_confirmation_message {
  margin-bottom: 15px;
}

.gform_footer {
  text-align: right;
  /*aligning of submit button*/
}

.validation_error {
  margin-bottom: 15px;
  padding: 5px;
  color: #990000;
  border: 1px solid red;
}

.validation_message {
  margin-bottom: 10px;
  color: #990000;
}

.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font-size: 11px;
  z-index: 9999 !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker thead {
  background: #f7f7f7;
  border-bottom: 1px solid #bbb;
}
.ui-datepicker thead th {
  padding: 3px;
  text-align: center;
  border: 1px solid #ddd;
}
.ui-datepicker tbody {
  border: none;
}
.ui-datepicker tbody td {
  padding: 0;
  border: 1px solid #bbb;
}
.ui-datepicker tbody th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666;
}
.ui-datepicker tbody td span, .ui-datepicker tbody td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666;
}

.ui-datepicker-header {
  background-color: #666;
  /* set the header background color */
  color: #fff;
  font-weight: 700;
  border: none;
}
.ui-datepicker-header:after {
  content: '';
  clear: both;
  display: table;
}

.ui-datepicker-month,
.ui-datepicker-year {
  width: 50%;
  float: left;
  padding: 5px 20px 5px 5px;
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  font-size: 12px;
  color: #fff;
  padding: 5px;
  line-height: 1.4;
  width: 50%;
  float: left;
}

.ui-datepicker-next {
  text-align: right;
}

.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}
.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
}
.ui-datepicker-calendar .ui-state-hover {
  background: #fff;
}
.ui-datepicker-calendar .ui-state-active {
  background: #fff2aa;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  position: relative;
  margin: -1px;
  height: 32px;
  width: 32px;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}

/* -----------------------------------------
   General fixes
----------------------------------------- */
.row {
  max-width: 1170px;
}

html, body {
  height: auto;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: rgba(60, 90, 152, 0.5);
}

/* Placeholder styling */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555;
}

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea {
  /* STYLES GO THERE */
  margin-bottom: 0;
}

textarea[rows] {
  /*Styles for TextArea*/
  height: 150px;
  max-width: 100%;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type=checkbox],
[type=file],
[type=radio] {
  margin-bottom: 0;
}

button, .button, input[type='submit'], input[type='reset'] {
  border: none;
  padding: 10px 20px;
  margin-bottom: 0;
  background-color: #45a5ff;
  color: #fff;
  font-family: "Circular", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
button:hover, button:focus, .button:hover, .button:focus, input[type='submit']:hover, input[type='submit']:focus, input[type='reset']:hover, input[type='reset']:focus {
  background-color: #128cff;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  font-family: "Circular", sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: inherit;
  color: inherit;
  color: #263a61;
}

h1 {
  font-size: 100px;
}
@media (max-width: 1100px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 68px;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 64px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 60px;
}
@media (max-width: 1100px) {
  h2 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 640px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 36px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 34px;
  }
}
@media (max-width: 640px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 380px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 24px;
}
@media (max-width: 640px) {
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 18px;
}
@media (max-width: 480px) {
  h5 {
    font-size: 17px;
  }
}

h6 {
  font-size: 18px;
}
@media (max-width: 480px) {
  h6 {
    font-size: 17px;
  }
}

p {
  font-size: 18px;
  line-height: 1.5;
  color: #263a61;
  color: rgba(60, 90, 152, 0.5);
}
@media (max-width: 480px) {
  p {
    font-size: 16px;
  }
}
p:empty {
  display: none;
}
p a {
  text-decoration: underline;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  color: #45a5ff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  /*basic hover and focus effects*/
  color: #0073de;
  outline: none;
}

/* ------------------------------------
    Basic Styles
------------------------------------- */
/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* Button additional styles */
.button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover, .button:focus {
  /*basic hover and focus effects*/
}

/* Align Middle */
.align-middle {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Pagination */
ul.pagination {
  margin: 1rem 0;
}
ul.pagination .pagination {
  margin: 0;
}
ul.pagination .pagination.current {
  color: #fff;
  background: #45a5ff;
  display: block;
}

/* Search form */
#searchform {
  position: relative;
}

#s {
  padding-right: 75px;
}

#searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: .5rem;
  cursor: pointer;
}
#searchsubmit:after {
  font-family: FontAwesome;
  font-size: 20px;
}

#home-slider .slick-slide {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* ------------------------------------
    Header Styles
------------------------------------- */
.logo img {
  max-height: 150px;
}

/* ------------------------------------
    Content Styles
------------------------------------- */
/* Blog page */
.posts-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
}
.posts-list .entry-meta {
  margin-bottom: 0;
}
.posts-list #searchform {
  margin-bottom: 40px;
}

.entry-meta {
  color: #666;
  font-size: 14px;
}

.thumbnail {
  margin-bottom: 20px;
}

/* Comments block */
.comment-list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.comment-meta {
  font-size: 14px;
}

.comment-metadata {
  color: #666;
}

.comment-content {
  font-size: 14px;
  padding-left: 25px;
  margin-top: 20px;
  border-left: 1px solid #ddd;
}

.reply {
  text-align: right;
}

.comment-reply-link {
  display: inline-block;
  padding: .33333rem .5rem;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0;
  background: #777;
  color: #fefefe;
}

/* 404 page */
.not-found {
  padding: 100px 0;
}
.not-found .label {
  text-decoration: none;
  cursor: pointer;
  background-color: #45a5ff;
}
.not-found .label:hover {
  background-color: #1c91ff;
  color: #fff;
}

/* Sidebar */
.widget {
  margin-bottom: 20px;
}

.page-title {
  font-size: 60px;
}

.full_height {
  height: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding-top: 97px;
}
@media (max-width: 991px) {
  .full_height {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .full_height {
    padding-top: 50px;
  }
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section_title {
  color: #263A61;
  margin: 0;
  letter-spacing: -.2px;
}
.section_title.last_word span {
  position: relative;
}
.section_title.last_word span:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  text-align: center;
  background: url("../images/last_word.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  top: 100%;
}
.section_title span.first-word {
  position: relative;
}
.section_title span.first-word:before {
  position: absolute;
  content: "";
  left: 0;
  right: 9px;
  text-align: center;
  background: url("../images/first_word.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  top: -webkit-calc(100% - 4px);
  top: calc(100% - 4px);
}

.section_subtitle {
  color: #263A61;
  opacity: 0.5;
  margin: 0;
  letter-spacing: -.4px;
  font-weight: 500;
}

.page_banner {
  min-height: 612px;
  background-size: cover;
  background-position: 50%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .page_banner {
    min-height: 500px;
  }
}

.wow {
  visibility: hidden;
}

.header {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 27px 0 0;
  z-index: 999;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
@media (max-width: 767px) {
  .header {
    position: absolute;
  }
}
@media (min-width: 768px) {
  .header.small {
    padding-top: 10px;
  }
  .header.small .logo {
    padding-bottom: 12px;
  }
  .header.small .logo a img {
    height: 20px;
  }
  .header.small .dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: -webkit-calc(100% + 8px);
    top: calc(100% + 8px);
  }
}
@media (min-width: 768px) {
  .header.small .top-bar .header-menu > li {
    padding: 3px 26px 2px;
  }
  .header.small .top-bar .header-menu > li:before {
    top: 9px;
  }
  .header.small .top-bar .header-menu > li:last-child {
    padding-right: 9px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .header.small .top-bar .header-menu > li {
    padding: 3px 10px 2px !important;
  }
  .header.small .top-bar .header-menu > li:last-child {
    padding-right: 9px;
  }
}
@media (max-width: 767px) {
  .header .flex {
    display: block;
  }
}
.header .row {
  max-width: 1350px;
}
.header .logo {
  padding-bottom: 15px;
}
.header .logo a {
  display: inline-block;
  max-width: 100px;
  width: 100%;
}
.header .logo a img {
  width: 100%;
  max-width: 100%;
  height: 40px;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}

.home_banner .flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1075px;
  min-height: inherit;
}
.home_banner--caption {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding-bottom: 26px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (max-width: 767px) {
  .home_banner--caption {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 30px 0;
  }
}
.home_banner--caption .inner_block {
  max-width: 360px;
}
@media (max-width: 767px) {
  .home_banner--caption .inner_block {
    margin: 0 auto;
    text-align: center;
  }
}
.home_banner--caption h2 {
  line-height: 1;
  color: #FFF;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}
.home_banner--caption h2 span {
  color: #45a5ff;
}
.home_banner--caption p {
  color: #FFF;
  line-height: 1.4;
  font-weight: 500;
  max-width: 300px;
  letter-spacing: -.3px;
}
.home_banner--login_form {
  font-size: 0;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 26px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (max-width: 767px) {
  .home_banner--login_form {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home_banner--login_form .tml-login {
  padding: 0;
  margin: 0;
  max-width: 298px;
}
.home_banner--login_form .tml-login .form_title {
  color: #FFF;
}
.home_banner--login_form .tml-login form {
  background: transparent;
  padding: 0;
}
.home_banner--login_form .tml-login form input[type="text"],
.home_banner--login_form .tml-login form input[type="password"] {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.2);
}
.home_banner--login_form .tml-login form input[type="text"]:-moz-placeholder,
.home_banner--login_form .tml-login form input[type="password"]:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.home_banner--login_form .tml-login form input[type="text"]::-moz-placeholder,
.home_banner--login_form .tml-login form input[type="password"]::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.home_banner--login_form .tml-login form input[type="text"]:-ms-input-placeholder,
.home_banner--login_form .tml-login form input[type="password"]:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.home_banner--login_form .tml-login form input[type="text"]::-webkit-input-placeholder,
.home_banner--login_form .tml-login form input[type="password"]::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.home_banner--login_form .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label {
  color: #FFF;
  opacity: 1;
}
.home_banner--login_form .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:before {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.home_banner--login_form .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:after {
  color: #FFF;
}
.home_banner--login_form .tml-login form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a {
  color: #FFF;
  opacity: 1;
}
.home_banner--login_form .tml-login form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a:hover {
  color: #45a5ff;
}

.donate_sect {
  background: #FFF;
  padding: 83px 0 86px;
  overflow: hidden;
}
.donate_sect .flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}
.donate_sect--title {
  -webkit-flex-basis: 45%;
      -ms-flex-preferred-size: 45%;
          flex-basis: 45%;
  padding-bottom: 20px;
}
@media (max-width: 640px) {
  .donate_sect--title {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .donate_sect--title {
    max-width: 200px;
  }
}
.donate_sect--title h2 {
  font-size: 48px;
  line-height: 1;
  max-width: 290px;
  margin: 0;
  text-align: left;
}
.donate_sect--title h2 span {
  color: #45a5ff;
}
@media (max-width: 991px) {
  .donate_sect--title h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .donate_sect--title h2 {
    font-size: 36px;
    max-width: 250px;
  }
}
@media (max-width: 640px) {
  .donate_sect--title h2 {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .donate_sect--title h2 {
    font-size: 28px;
  }
}
.donate_sect--content {
  -webkit-flex-basis: 55%;
      -ms-flex-preferred-size: 55%;
          flex-basis: 55%;
}
@media (max-width: 640px) {
  .donate_sect--content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    text-align: center;
  }
}
.donate_sect--content p {
  letter-spacing: -.1px;
  line-height: 1.7;
  color: #263a61;
  opacity: 0.5;
}
.donate_sect--content p:last-child {
  margin-bottom: 0;
}

.home_taxpayers {
  background: #F6F7F8;
  padding: 85px 0 120px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home_taxpayers {
    padding: 70px 0;
  }
}
@media (max-width: 640px) {
  .home_taxpayers {
    padding: 55px 0;
  }
}
.home_taxpayers .row {
  max-width: 1200px;
}
.home_taxpayers--title {
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 991px) {
  .home_taxpayers--title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .home_taxpayers--title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .home_taxpayers--title {
    font-size: 28px;
  }
}
.home_taxpayers__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home_taxpayers__grid .taxpayer_item {
  -webkit-flex-basis: -webkit-calc(100% / 3 - 10px);
      -ms-flex-preferred-size: calc(100% / 3 - 10px);
          flex-basis: calc(100% / 3 - 10px);
  padding: 59px 15px;
  border: 2px solid #E5E5E6;
  background: #fff;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
@media (max-width: 991px) {
  .home_taxpayers__grid .taxpayer_item {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .home_taxpayers__grid .taxpayer_item {
    padding: 20px 15px;
    max-width: 370px;
    margin: 0 auto 15px;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.home_taxpayers__grid .taxpayer_item:hover {
  border-color: #45a5ff;
}
.home_taxpayers__grid .taxpayer_item--inner {
  max-width: 278px;
  margin: 0 auto;
}
.home_taxpayers__grid .taxpayer_item--image {
  margin-bottom: 39px;
}
@media (max-width: 991px) {
  .home_taxpayers__grid .taxpayer_item--image {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .home_taxpayers__grid .taxpayer_item--image {
    text-align: center;
  }
}
.home_taxpayers__grid .taxpayer_item h4 {
  color: #263a61;
  margin-bottom: 13px;
}
@media (max-width: 991px) {
  .home_taxpayers__grid .taxpayer_item h4 {
    font-size: 20px;
  }
}
.home_taxpayers__grid .taxpayer_item p {
  color: #263a61;
  opacity: 0.5;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.8px;
}
@media (max-width: 991px) {
  .home_taxpayers__grid .taxpayer_item p {
    font-size: 16px;
  }
}
.home_taxpayers__grid .taxpayer_item--btn {
  text-transform: uppercase;
  color: #263a61;
  display: inline-block;
  margin-top: 13px;
  font-size: 12px;
  font-weight: bold;
}
.home_taxpayers__grid .taxpayer_item--btn:hover {
  color: #45a5ff;
}

.accordion_section {
  padding: 89px 0 122px;
  background: #263a61;
  background-size: cover;
  background-position: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .accordion_section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .accordion_section {
    padding: 40px 0;
  }
}
.accordion_section .section_title {
  color: #FFF;
  font-size: 48px;
}
@media (max-width: 991px) {
  .accordion_section .section_title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .accordion_section .section_title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .accordion_section .section_title {
    font-size: 28px;
  }
}
.accordion_section .section_title + .grid {
  margin-top: 29px;
}
@media (min-width: 1025px) {
  .accordion_section .section_title + .grid {
    -webkit-transform: translateX(-12px);
        -ms-transform: translateX(-12px);
            transform: translateX(-12px);
  }
}
.accordion_section .row {
  max-width: 1215px;
}
.accordion_section .grid {
  font-size: 0;
  text-align: center;
}
.accordion_section .grid .col {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .accordion_section .grid .col {
    width: 100%;
  }
}
.accordion_section .grid .col img {
  max-width: 100%;
}
.accordion_section .grid .col.accordion_img {
  padding-top: 26px;
  text-align: right;
}
@media (max-width: 767px) {
  .accordion_section .grid .col.accordion_img {
    display: none;
  }
}
.accordion_section .grid .col.accordion_img img {
  width: 100%;
}
.accordion_section .accordion {
  max-width: 520px;
  width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  counter-reset: heading;
}
@media (max-width: 767px) {
  .accordion_section .accordion {
    margin-top: 0;
  }
}
.accordion_section .accordion_title {
  text-align: left;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  padding: 11px 0 0;
  margin-bottom: 0;
  color: #fff;
}
.accordion_section .accordion_content {
  padding: 15px 0 0;
  font-size: 18px;
  text-align: left;
  max-width: 360px;
}
@media (max-width: 991px) {
  .accordion_section .accordion_content {
    padding: 0;
  }
}
.accordion_section .accordion_content p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -.45px;
  line-height: 1.45;
}
.accordion_section .accordion_content p:last-child {
  margin-bottom: 0;
}
.accordion_section .accordion_content p a {
  color: #FFF;
}
.accordion_section .accordion_content p a:hover {
  color: #45a5ff;
}
.accordion_section .accordion_content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .accordion_section .accordion_content ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.accordion_section .accordion_content ul li {
  position: relative;
  line-height: 1.3;
  padding-left: 10px;
}
.accordion_section .accordion_content ul li:before {
  position: absolute;
  content: "";
  height: 4px;
  width: 4px;
  background: #404041;
  border-radius: 50%;
  left: 0;
  top: 2px;
}
.accordion_section .accordion__block {
  padding-left: 80px;
  margin-bottom: 32px;
  position: relative;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .accordion_section .accordion__block {
    padding-left: 80px;
  }
}
@media (max-width: 480px) {
  .accordion_section .accordion__block {
    padding-left: 60px;
  }
}
.accordion_section .accordion__block:after {
  position: absolute;
  content: "";
  top: 53px;
  left: 25px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  bottom: -31px;
  z-index: 1;
}
.accordion_section .accordion__block:last-child:after {
  display: none;
}
.accordion_section .accordion__block .accordion_title {
  position: relative;
}
.accordion_section .accordion__block .accordion_title:before {
  position: absolute;
  counter-increment: heading;
  /* Указываем идентификатор счетчика */
  content: counter(heading);
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 0;
  left: -80px;
  background: transparent;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 2;
}
@media (max-width: 991px) {
  .accordion_section .accordion__block .accordion_title:before {
    left: -80px;
  }
}
@media (max-width: 480px) {
  .accordion_section .accordion__block .accordion_title:before {
    left: -60px;
  }
}
.accordion_section .accordion__block .accordion_title:before:hover {
  border-color: #FFF;
}
.accordion_section .accordion__block .accordion_title.active:before {
  background: #45a5ff;
  color: #fff;
  border-color: #45a5ff;
}
.accordion_section .accordion__block:not(:first-of-type) .accordion_content {
  display: none;
}

.home_bottom_slider_sect {
  background: #F6F7F8;
  padding: 26px 0 14px;
}
.home_bottom_slider_sect .home_bottom_slider {
  max-width: 950px;
  margin: 0 auto;
}
.home_bottom_slider_sect .slick-slide {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home_bottom_slider_sect .slick-slide img {
  display: inline-block;
  max-width: -webkit-calc(100% - 100px);
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .home_bottom_slider_sect .slick-slide img {
    max-width: -webkit-calc(100% - 70px);
    max-width: calc(100% - 70px);
  }
}
.home_bottom_slider_sect .slick-prev, .home_bottom_slider_sect .slick-next {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid #263a61;
  color: #263a61;
  opacity: 0.15;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.home_bottom_slider_sect .slick-prev:before, .home_bottom_slider_sect .slick-next:before {
  font-size: 22px;
  color: #263a61;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.home_bottom_slider_sect .slick-prev:hover, .home_bottom_slider_sect .slick-next:hover {
  opacity: 1;
}
.home_bottom_slider_sect .slick-prev:before {
  content: "\f104";
}
.home_bottom_slider_sect .slick-next:before {
  content: "\f105";
}

.page-template-theme-my-login-custom,
.page-id-27 {
  font-size: 0;
}

body .tml .message {
  border: 1px solid #E9EBEF;
  background-color: #ffffff;
  color: #263a61;
  margin-bottom: 15px;
}
body .tml-lostpassword .tml-action-links {
  font-size: 0;
}
body .tml p {
  margin-bottom: 5px;
}
body .tml-login,
body .tml-lostpassword {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 195px 0 220px;
  max-width: 440px;
}
@media (max-width: 1200px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 140px 0;
  }
}
@media (max-width: 1100px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 110px 0;
  }
}
@media (max-width: 1024px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  body .tml-login,
  body .tml-lostpassword {
    padding: 40px 0;
  }
}
body .tml-login .form_title,
body .tml-lostpassword .form_title {
  text-align: center;
  color: #263a61;
}
body .tml-login .tml-action-links,
body .tml-lostpassword .tml-action-links {
  display: none;
}
body .tml-login form,
body .tml-lostpassword form {
  padding: 50px 70px 60px;
  display: block;
  width: 100%;
  background: #FFF;
  border-radius: 5px;
}
@media (max-width: 480px) {
  body .tml-login form,
  body .tml-lostpassword form {
    padding: 40px;
  }
}
@media (max-width: 400px) {
  body .tml-login form,
  body .tml-lostpassword form {
    padding: 40px 15px;
  }
}
body .tml-login form input[type="text"],
body .tml-login form input[type="password"],
body .tml-lostpassword form input[type="text"],
body .tml-lostpassword form input[type="password"] {
  background: #F6F7F8;
  border: 1px solid #E9EBEF;
  border-radius: 5px;
  box-shadow: none;
  font-weight: 500;
  font-size: 16px;
  color: #263a61;
  height: 55px;
  padding: 10px 20px 5px;
  margin: 0;
}
@media (max-width: 400px) {
  body .tml-login form input[type="text"],
  body .tml-login form input[type="password"],
  body .tml-lostpassword form input[type="text"],
  body .tml-lostpassword form input[type="password"] {
    height: 40px;
    padding: 5px 15px;
  }
}
body .tml-login form input[type="text"]:-moz-placeholder,
body .tml-login form input[type="password"]:-moz-placeholder,
body .tml-lostpassword form input[type="text"]:-moz-placeholder,
body .tml-lostpassword form input[type="password"]:-moz-placeholder {
  color: #263a61;
  opacity: 0.5;
}
body .tml-login form input[type="text"]::-moz-placeholder,
body .tml-login form input[type="password"]::-moz-placeholder,
body .tml-lostpassword form input[type="text"]::-moz-placeholder,
body .tml-lostpassword form input[type="password"]::-moz-placeholder {
  color: #263a61;
  opacity: 0.5;
}
body .tml-login form input[type="text"]:-ms-input-placeholder,
body .tml-login form input[type="password"]:-ms-input-placeholder,
body .tml-lostpassword form input[type="text"]:-ms-input-placeholder,
body .tml-lostpassword form input[type="password"]:-ms-input-placeholder {
  color: #263a61;
  opacity: 0.5;
}
body .tml-login form input[type="text"]::-webkit-input-placeholder,
body .tml-login form input[type="password"]::-webkit-input-placeholder,
body .tml-lostpassword form input[type="text"]::-webkit-input-placeholder,
body .tml-lostpassword form input[type="password"]::-webkit-input-placeholder {
  color: #263a61;
  opacity: 0.5;
}
body .tml-login form .tml-rememberme-submit-wrap,
body .tml-lostpassword form .tml-rememberme-submit-wrap {
  display: block;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap {
  float: left;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap input,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap input {
  display: none;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap label {
  color: #263a61;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
  position: relative;
  padding-left: 30px;
  margin: 0;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:before,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:before {
  position: absolute;
  content: "";
  left: 0;
  top: -3px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #f6f7f8;
  border: 1px solid rgba(38, 58, 97, 0.15);
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:after,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap label:after {
  position: absolute;
  content: "\f00c";
  left: 4px;
  top: 1px;
  font-family: FontAwesome;
  font-size: 11px;
  line-height: 1;
  color: #263a61;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-rememberme-wrap input:checked + label:after,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-rememberme-wrap input:checked + label:after {
  opacity: 1;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap {
  float: right;
  display: table-cell;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a {
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
  color: #263a61;
  opacity: 0.5;
}
body .tml-login form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a:hover,
body .tml-lostpassword form .tml-rememberme-submit-wrap .tml-forgotpsw-wrap a:hover {
  opacity: 1;
  color: #263a61;
}
body .tml-login form .tml-submit-wrap,
body .tml-lostpassword form .tml-submit-wrap {
  width: 100%;
  display: block;
  margin-top: 63px;
}
body .tml-login form .tml-submit-wrap input,
body .tml-lostpassword form .tml-submit-wrap input {
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  padding: 20px 15px;
}
@media (max-width: 400px) {
  body .tml-login form .tml-submit-wrap input,
  body .tml-lostpassword form .tml-submit-wrap input {
    padding: 15px;
  }
}
body .tml-login form .tml-submit-wrap input:hover,
body .tml-lostpassword form .tml-submit-wrap input:hover {
  background: #78bdff;
}

.page-title--contact {
  color: #FFF;
}

.contact_grid {
  max-width: 860px;
  padding: 0 15px;
  width: 100%;
  margin: 27px auto 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1201px) {
  .contact_grid {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media (max-width: 580px) {
  .contact_grid {
    padding: 27px 15px 33px;
    margin: 0;
  }
}
.contact_grid .contact_form {
  max-width: 435px;
  width: 100%;
  padding: 45px 20px 0 6px;
}
@media (max-width: 580px) {
  .contact_grid .contact_form {
    max-width: 100%;
    position: relative;
    z-index: 2;
    padding: 0;
  }
}
.contact_grid .contact_form form div.wpcf7-validation-errors {
  display: none !important;
}
.contact_grid .contact_form form label {
  margin-bottom: 6px;
  position: relative;
}
.contact_grid .contact_form form label .wpcf7-form-control-wrap {
  display: block;
}
.contact_grid .contact_form form label span.wpcf7-not-valid-tip {
  font-size: 13px;
  display: block;
  width: 100%;
  padding: 5px 25px 3px;
  line-height: 1;
}
@media (max-width: 440px) {
  .contact_grid .contact_form form label span.wpcf7-not-valid-tip {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact_grid .contact_form form input[type="text"],
.contact_grid .contact_form form input[type="search"],
.contact_grid .contact_form form input[type="tel"],
.contact_grid .contact_form form input[type="number"],
.contact_grid .contact_form form input[type="password"],
.contact_grid .contact_form form input[type="email"],
.contact_grid .contact_form form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  height: 55px;
  font-size: 16px;
  color: #FFF;
  font-weight: 500;
  padding: 5px 24px 0px;
  line-height: 1;
}
@media (max-width: 440px) {
  .contact_grid .contact_form form input[type="text"],
  .contact_grid .contact_form form input[type="search"],
  .contact_grid .contact_form form input[type="tel"],
  .contact_grid .contact_form form input[type="number"],
  .contact_grid .contact_form form input[type="password"],
  .contact_grid .contact_form form input[type="email"],
  .contact_grid .contact_form form textarea {
    height: 40px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact_grid .contact_form form input[type="text"]:-moz-placeholder,
.contact_grid .contact_form form input[type="search"]:-moz-placeholder,
.contact_grid .contact_form form input[type="tel"]:-moz-placeholder,
.contact_grid .contact_form form input[type="number"]:-moz-placeholder,
.contact_grid .contact_form form input[type="password"]:-moz-placeholder,
.contact_grid .contact_form form input[type="email"]:-moz-placeholder,
.contact_grid .contact_form form textarea:-moz-placeholder {
  color: #fff;
}
.contact_grid .contact_form form input[type="text"]::-moz-placeholder,
.contact_grid .contact_form form input[type="search"]::-moz-placeholder,
.contact_grid .contact_form form input[type="tel"]::-moz-placeholder,
.contact_grid .contact_form form input[type="number"]::-moz-placeholder,
.contact_grid .contact_form form input[type="password"]::-moz-placeholder,
.contact_grid .contact_form form input[type="email"]::-moz-placeholder,
.contact_grid .contact_form form textarea::-moz-placeholder {
  color: #fff;
}
.contact_grid .contact_form form input[type="text"]:-ms-input-placeholder,
.contact_grid .contact_form form input[type="search"]:-ms-input-placeholder,
.contact_grid .contact_form form input[type="tel"]:-ms-input-placeholder,
.contact_grid .contact_form form input[type="number"]:-ms-input-placeholder,
.contact_grid .contact_form form input[type="password"]:-ms-input-placeholder,
.contact_grid .contact_form form input[type="email"]:-ms-input-placeholder,
.contact_grid .contact_form form textarea:-ms-input-placeholder {
  color: #fff;
}
.contact_grid .contact_form form input[type="text"]::-webkit-input-placeholder,
.contact_grid .contact_form form input[type="search"]::-webkit-input-placeholder,
.contact_grid .contact_form form input[type="tel"]::-webkit-input-placeholder,
.contact_grid .contact_form form input[type="number"]::-webkit-input-placeholder,
.contact_grid .contact_form form input[type="password"]::-webkit-input-placeholder,
.contact_grid .contact_form form input[type="email"]::-webkit-input-placeholder,
.contact_grid .contact_form form textarea::-webkit-input-placeholder {
  color: #fff;
}
.contact_grid .contact_form form input[type="text"]:focus, .contact_grid .contact_form form input[type="text"]:active,
.contact_grid .contact_form form input[type="search"]:focus,
.contact_grid .contact_form form input[type="search"]:active,
.contact_grid .contact_form form input[type="tel"]:focus,
.contact_grid .contact_form form input[type="tel"]:active,
.contact_grid .contact_form form input[type="number"]:focus,
.contact_grid .contact_form form input[type="number"]:active,
.contact_grid .contact_form form input[type="password"]:focus,
.contact_grid .contact_form form input[type="password"]:active,
.contact_grid .contact_form form input[type="email"]:focus,
.contact_grid .contact_form form input[type="email"]:active,
.contact_grid .contact_form form textarea:focus,
.contact_grid .contact_form form textarea:active {
  overflow: hidden;
  box-shadow: none;
}
.contact_grid .contact_form form textarea {
  resize: none;
  height: 115px;
  padding-top: 20px;
  padding-bottom: 15px;
}
@media (max-width: 440px) {
  .contact_grid .contact_form form textarea {
    padding-top: 10px;
  }
}
.contact_grid .contact_form form input[type='submit'],
.contact_grid .contact_form form button {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 12px;
  border-radius: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  padding: 20px 15px;
  cursor: pointer;
}
.contact_grid .contact_form form input[type='submit']:hover,
.contact_grid .contact_form form button:hover {
  background: #78bdff;
}
@media (max-width: 580px) {
  .contact_grid .contact_left_image {
    position: absolute;
    left: 15px;
    right: 15px;
    text-align: center;
    z-index: 1;
    opacity: 0.2;
  }
}

.contact_info_grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 27px 15px 80px;
  max-width: 1090px;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 1201px) {
  .contact_info_grid {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media (max-width: 767px) {
  .contact_info_grid {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact_info_grid .info_block {
  -webkit-flex-basis: 240px;
      -ms-flex-preferred-size: 240px;
          flex-basis: 240px;
}
@media (max-width: 840px) {
  .contact_info_grid .info_block {
    -webkit-flex-basis: 31%;
        -ms-flex-preferred-size: 31%;
            flex-basis: 31%;
  }
}
@media (max-width: 767px) {
  .contact_info_grid .info_block {
    -webkit-flex-basis: 200px;
        -ms-flex-preferred-size: 200px;
            flex-basis: 200px;
    margin: 0 20px 35px;
  }
}
.contact_info_grid .info_block--inner {
  max-width: 240px;
}
.contact_info_grid .info_block--title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  line-height: 1.2;
  margin-bottom: 13px;
}
.contact_info_grid .info_block ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.contact_info_grid .info_block ul li,
.contact_info_grid .info_block a,
.contact_info_grid .info_block p {
  color: #FFF;
  font-size: 16px;
}
.contact_info_grid .info_block a:hover {
  color: #45a5ff;
}

.shadule_banner {
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .shadule_banner {
    padding-top: 30px;
  }
}
.shadule_banner .row {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}
.shadule_banner h1, .shadule_banner h2, .shadule_banner h3, .shadule_banner h4, .shadule_banner h5, .shadule_banner h6 {
  margin: 0;
  line-height: 1.2;
  color: #FFF;
}
.shadule_banner h1 {
  letter-spacing: -2.2px;
  line-height: 1.1;
}
.shadule_banner h3 {
  letter-spacing: -.3px;
}
.shadule_banner h6 {
  font-weight: 900;
  letter-spacing: .3px;
}
.shadule_banner p {
  font-size: 18px;
  letter-spacing: -.15px;
  line-height: 1.3;
  color: #FFF;
}
.shadule_banner h2, .shadule_banner h3, .shadule_banner h4, .shadule_banner h5, .shadule_banner h6,
.shadule_banner p {
  padding-left: 6px;
}
.shadule_banner--caption {
  position: absolute;
  right: 30px;
  top: 33px;
  bottom: 33px;
  width: 47%;
  padding: 50px 15px 116px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .shadule_banner--caption {
    padding: 20px 15px;
    -webkit-flex-basis: -webkit-calc(100% - 30px);
        -ms-flex-preferred-size: calc(100% - 30px);
            flex-basis: calc(100% - 30px);
    margin: 15px;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}
.shadule_banner--caption:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url("../images/dark_bg_small.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.shadule_banner--caption > * {
  position: relative;
  z-index: 2;
}
.shadule_banner--caption .inner_capt {
  max-width: 476px;
  margin: 0 auto;
  width: 100%;
}
.shadule_banner--caption h1 {
  padding-left: 0;
}
.shadule_banner--caption h2, .shadule_banner--caption h3, .shadule_banner--caption h4, .shadule_banner--caption h5, .shadule_banner--caption h6,
.shadule_banner--caption p {
  padding-left: 17px;
}
.shadule_banner--caption p {
  max-width: 270px;
}
@media (max-width: 767px) {
  .shadule_banner--caption p {
    margin: 0 auto;
    padding-left: 0;
  }
}
.shadule_banner--caption h1 + p, .shadule_banner--caption h2 + p, .shadule_banner--caption h3 + p, .shadule_banner--caption h4 + p, .shadule_banner--caption h5 + p, .shadule_banner--caption h6 + p {
  margin-top: 20px;
}
.shadule_banner--content {
  max-width: 340px;
  padding-bottom: 44px;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .shadule_banner--content {
    padding-bottom: 0;
    max-width: 476px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
.shadule_banner--content h1 + p, .shadule_banner--content h2 + p, .shadule_banner--content h3 + p, .shadule_banner--content h4 + p, .shadule_banner--content h5 + p, .shadule_banner--content h6 + p {
  margin-top: 20px;
}

.cost_of_doing {
  background: #fff;
  padding: 68px 0 72px;
}
.cost_of_doing .row {
  max-width: 1230px;
}
.cost_of_doing .three_blocks {
  text-align: center;
  font-size: 0;
}
.cost_of_doing .three_blocks .block {
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  display: inline-block;
  text-align: center;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .cost_of_doing .three_blocks .block {
    max-width: 500px;
    margin: 0 auto 30px;
    width: 100%;
  }
}
.cost_of_doing .three_blocks .block--inner {
  max-width: 300px;
  margin: 0 auto;
  vertical-align: top;
  display: inline-block;
}
.cost_of_doing .three_blocks .block--img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.cost_of_doing .three_blocks .block--img img {
  display: inline-block;
}
.cost_of_doing .three_blocks .block h4 {
  margin-bottom: 6px;
}
.cost_of_doing .three_blocks .block p {
  color: #263a61;
  opacity: 0.5;
}

.schedule_smpl_sect_title {
  max-width: 510px;
  margin: 0 auto;
  line-height: 1.15;
}
.schedule_smpl_sect_title + .smpl_content {
  margin-top: 50px;
}

.schedule_smpl_content_sect {
  padding: 78px 15px 37px;
  background: #F6F7F8;
}
.schedule_smpl_content_sect .row {
  max-width: 1115px;
}
.schedule_smpl_content_sect .smpl_content {
  max-width: 1050px;
}
.schedule_smpl_content_sect .alignleft {
  float: left;
  margin: 0 70px 0 0;
}
@media (max-width: 1024px) {
  .schedule_smpl_content_sect .alignleft {
    margin: 0 50px 0 0;
  }
}
@media (max-width: 767px) {
  .schedule_smpl_content_sect .alignleft {
    width: 30%;
  }
}
@media (max-width: 640px) {
  .schedule_smpl_content_sect .alignleft {
    margin: 0 25px 15px 0;
  }
}
@media (max-width: 480px) {
  .schedule_smpl_content_sect .alignleft {
    width: 35%;
    margin: 0 15px 5px 0;
  }
}
.schedule_smpl_content_sect p {
  letter-spacing: -.3px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: 500;
  color: #263a61;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .schedule_smpl_content_sect p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .schedule_smpl_content_sect p {
    font-size: 18px;
  }
}
@media (min-width: 641px) {
  .schedule_smpl_content_sect p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 480px) {
  .schedule_smpl_content_sect p {
    font-size: 16px;
  }
}

.smpl_additional_content {
  padding: 15px 0 0;
  text-align: center;
  max-width: 650px;
  margin: 35px auto 0;
}

.two_btns_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1330px;
  width: 100%;
  margin: 60px auto 0;
}
.two_btns_block a {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 55px 15px;
  background: #45a5ff;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
}
@media (max-width: 640px) {
  .two_btns_block a {
    font-size: 14px;
    font-weight: 700;
  }
}
@media (max-width: 440px) {
  .two_btns_block a {
    font-size: 12px;
  }
}
.two_btns_block a:hover {
  background: #0080f7;
}
.two_btns_block a:first-child {
  background: #263a61;
}
.two_btns_block a:first-child:hover {
  background: #3c5b98;
}

.page_banner.getting_started_banner {
  padding: 30px 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.page_banner.getting_started_banner .flex {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.getting_started--image {
  padding: 0 15px;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.getting_started--caption {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 462px;
  width: 100%;
  padding: 50px 15px 50px 110px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .getting_started--caption {
    padding-left: 50px;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .getting_started--caption {
    margin-left: 0;
    padding: 20px 15px;
    position: static;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 15px;
    text-align: center;
  }
}
.getting_started--caption h1, .getting_started--caption h2, .getting_started--caption h3, .getting_started--caption h4, .getting_started--caption h5, .getting_started--caption h6 {
  line-height: 1;
  margin-bottom: 15px;
  color: #FFF;
}
.getting_started--caption p {
  margin-bottom: 20px;
  max-width: 320px;
  color: #FFF;
}
@media (max-width: 640px) {
  .getting_started--caption p {
    margin: 0 auto 15px;
  }
}
.getting_started--caption p:last-child {
  margin-bottom: 5px;
}
.getting_started--caption p a {
  color: #FFF;
  text-decoration: none;
}
.getting_started--caption p a:hover {
  color: #45a5ff;
}
.getting_started--caption p strong a {
  font-size: 12px;
}

.grand_works_info_blocks_sect {
  padding: 42px 0 36px;
}
.grand_works_info_blocks_sect .row {
  max-width: 1350px;
}

.grand_works_info_blocks {
  text-align: center;
  font-size: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.grand_works_info_blocks .info_block {
  display: inline-block;
  vertical-align: top;
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
  -webkit-flex-basis: -webkit-calc(50% - 5px);
      -ms-flex-preferred-size: calc(50% - 5px);
          flex-basis: calc(50% - 5px);
  padding: 99px 30px 52px;
  background: #F4F5F7;
  border: 1px solid #E9EBEF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .grand_works_info_blocks .info_block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 500px;
    width: 100%;
    margin: 5px auto;
    padding: 50px 15px 40px;
  }
}
.grand_works_info_blocks .info_block--arrow {
  position: absolute;
  top: -webkit-calc(50% - 7px);
  top: calc(50% - 7px);
  right: -webkit-calc(100% - 2px);
  right: calc(100% - 2px);
}
@media (max-width: 767px) {
  .grand_works_info_blocks .info_block--arrow {
    bottom: 100%;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .grand_works_info_blocks .info_block:last-child {
    margin-left: 10px;
  }
}
.grand_works_info_blocks .info_block:last-child:before {
  position: absolute;
  content: "";
  width: 57px;
  height: 57px;
  top: 50%;
  right: -webkit-calc(100% - 22px);
  right: calc(100% - 22px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #F4F5F7;
  border: 1px solid #E9EBEF;
  box-shadow: 0px 0px 0px 10px #FFF;
}
@media (max-width: 767px) {
  .grand_works_info_blocks .info_block:last-child:before {
    bottom: -webkit-calc(100% - 51px);
    bottom: calc(100% - 51px);
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.grand_works_info_blocks .info_block--blue_title {
  color: #45a5ff;
  margin: 0;
}
.grand_works_info_blocks .info_block--blue_title span {
  font-size: 26px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  left: 5px;
  top: -1px;
}
@media (max-width: 767px) {
  .grand_works_info_blocks .info_block--blue_title span {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .grand_works_info_blocks .info_block--blue_title span {
    font-size: 18px;
  }
}
.grand_works_info_blocks .info_block h2 {
  font-size: 48px;
  line-height: .75;
}
@media (max-width: 991px) {
  .grand_works_info_blocks .info_block h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .grand_works_info_blocks .info_block h2 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .grand_works_info_blocks .info_block h2 {
    font-size: 28px;
  }
}
.grand_works_info_blocks .info_block h2 + p {
  margin-top: 20px;
}
.grand_works_info_blocks .info_block p {
  max-width: 265px;
  margin: 0 auto 10px;
}

.getting_started_smpl_cont {
  padding: 40px 0 100px;
}
.getting_started_smpl_cont .row {
  max-width: 940px;
}
.getting_started_smpl_cont h3 {
  letter-spacing: -.3px;
}
.getting_started_smpl_cont h4 {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.15px;
  margin-bottom: 23px;
}
.getting_started_smpl_cont p {
  max-width: 720px;
  margin: 0 auto 10px;
  letter-spacing: .25px;
}

.grand_works_sect {
  padding: 78px 0 96px;
  background: #F6F7F8;
}
.grand_works_sect .section_title {
  max-width: 370px;
  margin: 0 auto;
  line-height: 1;
}

.grand_works_blocks {
  font-size: 0;
  text-align: center;
  counter-reset: heading;
  margin-top: 60px;
}

.grand_block {
  display: inline-block;
  vertical-align: top;
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  margin: 10px;
  border: 1px solid #E1E4E9;
  background: #fff;
  border-radius: 5px;
  padding: 61px 15px 74px;
  position: relative;
}
@media (max-width: 640px) {
  .grand_block {
    padding-top: 20px;
    padding-bottom: 55px;
  }
}
@media (max-width: 550px) {
  .grand_block {
    max-width: 340px;
    width: 100%;
    margin: 10px auto;
  }
}
.grand_block:before {
  position: absolute;
  counter-increment: heading;
  content: counter(heading);
  left: 5px;
  bottom: 5px;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: #F6F7F8;
  color: #263a61;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grand_block--inner {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.grand_block--image {
  margin-bottom: 54px;
}
@media (max-width: 640px) {
  .grand_block--image {
    margin-bottom: 30px;
  }
  .grand_block--image img {
    width: 60%;
    margin: 0 auto;
  }
}
.grand_block--content p {
  color: #263a61;
  opacity: 0.5;
  line-height: 1.65;
  letter-spacing: -.1px;
}
@media (max-width: 640px) {
  .grand_block--content p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.page_banner.overview_banner {
  padding: 30px 0 15px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media (max-width: 767px) {
  .page_banner.overview_banner {
    min-height: 430px;
  }
}
.page_banner.overview_banner .flex {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 0 10px 0 54px;
}
@media (max-width: 767px) {
  .page_banner.overview_banner .flex {
    padding: 0;
  }
}

.overview_banner--image {
  padding: 0 15px;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.overview_banner--caption {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 462px;
  width: 100%;
  padding: 50px 15px 50px 110px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .overview_banner--caption {
    padding-left: 50px;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .overview_banner--caption {
    margin-left: 0;
    padding: 20px 15px;
    position: static;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 15px;
    text-align: center;
  }
}
.overview_banner--caption h1, .overview_banner--caption h2, .overview_banner--caption h3, .overview_banner--caption h4, .overview_banner--caption h5, .overview_banner--caption h6 {
  line-height: 1;
  color: #FFF;
  margin-bottom: 15px;
}
.overview_banner--caption p {
  margin-bottom: 20px;
  max-width: 320px;
  line-height: 1.4;
  letter-spacing: -.2px;
  margin-bottom: 40px;
  color: #FFF;
}
@media (max-width: 640px) {
  .overview_banner--caption p {
    margin: 0 auto 15px;
  }
}
.overview_banner--caption p:last-child {
  margin-bottom: 5px;
}
.overview_banner--caption p a {
  color: #FFF;
  text-decoration: none;
}
.overview_banner--caption p a:hover {
  color: #45a5ff;
}
.overview_banner--caption p strong a {
  font-size: 12px;
}

.numbers_section {
  padding: 100px 50px 60px 0px;
  background: #F6F7F8;
}
@media (max-width: 1024px) {
  .numbers_section {
    padding: 100px 0 60px;
  }
}
@media (max-width: 767px) {
  .numbers_section {
    padding: 70px 0 40px;
  }
}

.numbers__container {
  font-size: 0;
  text-align: center;
}

.numbers_block {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .numbers_block {
    width: 50%;
    margin-bottom: 45px;
  }
}
@media (max-width: 480px) {
  .numbers_block {
    width: 100%;
    margin-bottom: 45px;
  }
}
.numbers_block--title {
  color: #263a61;
  font-size: 48px;
  margin-bottom: 6px;
  line-height: 1;
}
@media (max-width: 991px) {
  .numbers_block--title {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  .numbers_block--title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .numbers_block--title {
    font-size: 30px;
  }
}
.numbers_block--title .after_symbol {
  display: inline-block;
  vertical-align: top;
  font-size: 26px;
  color: #45a5ff;
  top: 6px;
  left: 1px;
}
@media (max-width: 480px) {
  .numbers_block--title .after_symbol {
    font-size: 20px;
  }
}
.numbers_block p {
  font-weight: 500;
  color: #263a61;
  opacity: 0.5;
  max-width: 230px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -.2px;
}
@media (max-width: 991px) {
  .numbers_block p {
    font-size: 17px;
  }
}
@media (max-width: 800px) {
  .numbers_block p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .numbers_block p {
    font-size: 18px;
  }
}

.overview_info_sect {
  padding: 30px 0;
  background: #F6F7F8;
}
.overview_info_sect .row {
  max-width: 1200px;
}

.overview_info_block {
  background: #FFF;
  padding: 76px 83px 92px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .overview_info_block {
    padding: 70px 15px;
  }
}
.overview_info_block--content {
  -webkit-flex-basis: 59%;
      -ms-flex-preferred-size: 59%;
          flex-basis: 59%;
}
@media (max-width: 767px) {
  .overview_info_block--content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.overview_info_block--content p {
  color: #263a61;
  opacity: 0.5;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.25px;
}
.overview_info_block--button {
  -webkit-flex-basis: 33.5%;
      -ms-flex-preferred-size: 33.5%;
          flex-basis: 33.5%;
  text-align: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
@media (max-width: 767px) {
  .overview_info_block--button {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.overview_info_block--button a {
  max-width: 295px;
  width: 100%;
  text-align: center;
  background: #45a5ff;
  color: #FFF;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  padding: 18px 15px;
  border-radius: 5px;
}
.overview_info_block--button a:hover {
  background: #78bdff;
}

.overview_features {
  margin-bottom: 87px;
  margin-top: 77px;
}
@media (min-width: 1025px) {
  .overview_features {
    -webkit-transform: translateX(-31px);
        -ms-transform: translateX(-31px);
            transform: translateX(-31px);
  }
}
.overview_features--title {
  max-width: 460px;
  margin: 0 auto;
  word-break: break-word;
  word-wrap: break-word;
  letter-spacing: -.6px;
  line-height: 1;
}
.overview_features--title span {
  display: inline-block;
  margin: 0 4px;
}
.overview_features--title span:empty {
  display: none;
}
.overview_features--title span:last-child {
  position: relative;
}
.overview_features--title span:last-child:before {
  position: absolute;
  content: "";
  left: 0;
  right: -10px;
  text-align: center;
  background: url("../images/last_word_small.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  top: -webkit-calc(100% - 4px);
  top: calc(100% - 4px);
}
.overview_features_sect {
  padding: 72px 0;
  background: #F6F7F8;
}
.overview_features_sect .feature_btn {
  background: #45a5ff;
  max-width: 299px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 18px;
  color: #FFF;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 4px;
}
.overview_features_sect .feature_btn:hover {
  background: #78bdff;
}

@-webkit-keyframes circleone {
  0% {
    -webkit-transform: translateY(-45%) translateX(-11%);
            transform: translateY(-45%) translateX(-11%);
  }
  25% {
    -webkit-transform: translateY(-60%) translateX(9%);
            transform: translateY(-60%) translateX(9%);
  }
  50% {
    -webkit-transform: translateY(-48%) translateX(19%);
            transform: translateY(-48%) translateX(19%);
  }
  90% {
    -webkit-transform: translateY(-38%) translateX(-2%);
            transform: translateY(-38%) translateX(-2%);
  }
}

@keyframes circleone {
  0% {
    -webkit-transform: translateY(-45%) translateX(-11%);
            transform: translateY(-45%) translateX(-11%);
  }
  25% {
    -webkit-transform: translateY(-60%) translateX(9%);
            transform: translateY(-60%) translateX(9%);
  }
  50% {
    -webkit-transform: translateY(-48%) translateX(19%);
            transform: translateY(-48%) translateX(19%);
  }
  90% {
    -webkit-transform: translateY(-38%) translateX(-2%);
            transform: translateY(-38%) translateX(-2%);
  }
}
.feature_block {
  max-width: 910px;
  margin: 0 auto 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 640px) {
  .feature_block {
    margin-bottom: 80px;
  }
}
.feature_block:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 1025px) {
  .feature_block:nth-child(even) {
    -webkit-transform: translateX(24px);
        -ms-transform: translateX(24px);
            transform: translateX(24px);
    margin-bottom: -27px;
  }
}
@media (max-width: 1024px) {
  .feature_block:nth-child(even) {
    margin-bottom: -10px;
  }
}
@media (max-width: 767px) {
  .feature_block:nth-child(even) {
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .feature_block:nth-child(even) {
    margin-bottom: 80px;
  }
}
.feature_block:nth-child(even) .feature_block--image .circles.circle_1 {
  -webkit-transform: translateY(-54%) translateX(-11%);
      -ms-transform: translateY(-54%) translateX(-11%);
          transform: translateY(-54%) translateX(-11%);
}
.feature_block:nth-child(even) .feature_block--image .circles.circle_2 {
  -webkit-transform: translateY(-35%) translateX(0%);
      -ms-transform: translateY(-35%) translateX(0%);
          transform: translateY(-35%) translateX(0%);
}
@media (min-width: 1025px) {
  .feature_block:nth-child(even) .feature_block--content {
    -webkit-transform: translateX(-8px);
        -ms-transform: translateX(-8px);
            transform: translateX(-8px);
    padding-top: 18px;
  }
}
@media (max-width: 640px) {
  .feature_block:nth-child(even) .feature_block--content {
    padding-top: 15px;
  }
}
.feature_block--image {
  padding: 0 10px;
  -webkit-flex-basis: 47%;
      -ms-flex-preferred-size: 47%;
          flex-basis: 47%;
  text-align: center;
  position: relative;
  min-height: 369px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .feature_block--image {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 200px;
    margin: 0 auto;
    min-height: 280px;
  }
}
.feature_block--image img {
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(16px);
      -ms-transform: translateY(16px);
          transform: translateY(16px);
}
@media (max-width: 480px) {
  .feature_block--image img {
    max-height: 55px;
  }
}
.feature_block--image .circles {
  display: block;
  position: absolute;
  background: #45A5FF;
  opacity: 0.05;
  width: 333px;
  height: 333px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
@media (max-width: 991px) {
  .feature_block--image .circles {
    width: 290px;
    height: 290px;
  }
}
@media (max-width: 800px) {
  .feature_block--image .circles {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .feature_block--image .circles {
    width: 180px;
    height: 180px;
  }
}
.feature_block--image .circles.circle_1 {
  -webkit-transform: translateY(-45%) translateX(-11%);
      -ms-transform: translateY(-45%) translateX(-11%);
          transform: translateY(-45%) translateX(-11%);
}
.feature_block--image .circles.circle_2 {
  height: 285px;
  width: 285px;
  -webkit-transform: translateY(-35%) translateX(7%);
      -ms-transform: translateY(-35%) translateX(7%);
          transform: translateY(-35%) translateX(7%);
}
@media (max-width: 991px) {
  .feature_block--image .circles.circle_2 {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 800px) {
  .feature_block--image .circles.circle_2 {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .feature_block--image .circles.circle_2 {
    width: 130px;
    height: 130px;
  }
}
.feature_block--image .circles.circle_3 {
  -webkit-transform: translateY(-56%) translateX(11%);
      -ms-transform: translateY(-56%) translateX(11%);
          transform: translateY(-56%) translateX(11%);
}
.feature_block--title {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.4px;
}
@media (max-width: 991px) {
  .feature_block--title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .feature_block--title {
    font-size: 34px;
  }
}
@media (max-width: 640px) {
  .feature_block--title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .feature_block--title {
    font-size: 24px;
  }
}
.feature_block--content {
  padding: 0 10px;
  -webkit-flex-basis: 48.5%;
      -ms-flex-preferred-size: 48.5%;
          flex-basis: 48.5%;
  padding-top: 44px;
}
@media (min-width: 1025px) {
  .feature_block--content {
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
  }
}
@media (max-width: 1024px) {
  .feature_block--content {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
@media (max-width: 640px) {
  .feature_block--content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-top: 15px;
    text-align: center;
  }
}
.feature_block--content p {
  max-width: 417px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .feature_block--content p {
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .feature_block--content p {
    line-height: 1.4;
    font-size: 16px;
  }
}
.feature_block--content p:last-child {
  margin-bottom: 0;
}

.overview_bottom_sect {
  background: #263a61;
  background-size: cover;
  background-position: 50%;
  padding: 66px 0 70px;
  max-width: 1175px;
  margin: 0 auto;
  position: relative;
}
.overview_bottom_sect:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 1400px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 50%;
  background: #F6F7F8;
  z-index: -1;
}
.overview_bottom_sect:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 1400px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 50%;
  background: #fff;
  z-index: -1;
}
.overview_bottom_sect .inner_block {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  color: #FFF;
}
.overview_bottom_sect .inner_block--link {
  font-size: 12px;
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
}
.overview_bottom_sect .inner_block--link:hover {
  color: #45a5ff;
}
.overview_bottom_sect .inner_block h1, .overview_bottom_sect .inner_block h2, .overview_bottom_sect .inner_block h3, .overview_bottom_sect .inner_block h4, .overview_bottom_sect .inner_block h5, .overview_bottom_sect .inner_block h6 {
  margin-bottom: 12px;
  line-height: 1;
  color: #FFF;
}
.overview_bottom_sect .inner_block h2 {
  font-size: 48px;
}
@media (max-width: 991px) {
  .overview_bottom_sect .inner_block h2 {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  .overview_bottom_sect .inner_block h2 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .overview_bottom_sect .inner_block h2 {
    font-size: 26px;
  }
}
.overview_bottom_sect .inner_block p {
  line-height: 1.65;
  margin-bottom: 22px;
  opacity: 0.5;
  color: #FFF;
}

.page_banner.fund_banner {
  padding: 30px 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.page_banner.fund_banner .flex {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.fund--image {
  padding: 0 15px;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.fund--caption {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 462px;
  width: 100%;
  padding: 66px 15px 0px 110px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .fund--caption {
    padding-left: 50px;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .fund--caption {
    margin-left: 0;
    padding: 20px 15px;
    position: static;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 15px;
    text-align: center;
  }
}
.fund--caption h1, .fund--caption h2, .fund--caption h3, .fund--caption h4, .fund--caption h5, .fund--caption h6 {
  line-height: 1;
  margin-bottom: 15px;
  color: #FFF;
}
.fund--caption p {
  margin-bottom: 20px;
  max-width: 320px;
  font-weight: 500;
  color: #263a61;
  letter-spacing: -.3px;
  line-height: 1.4;
  margin-bottom: 37px;
}
@media (max-width: 640px) {
  .fund--caption p {
    margin: 0 auto 15px;
  }
}
.fund--caption p:last-child {
  margin-bottom: 0px;
}
.fund--caption p a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}
.fund--caption p a:hover {
  color: #263a61;
}
.fund--caption p strong a {
  font-size: 12px;
}

.fund_simple_sect {
  background: #FFF;
  padding: 91px 17px 63px 0;
}
@media (max-width: 991px) {
  .fund_simple_sect {
    padding-left: 0;
  }
}
.fund_simple_sect .title_block {
  -webkit-flex-basis: 36%;
      -ms-flex-preferred-size: 36%;
          flex-basis: 36%;
  text-align: right;
}
@media (max-width: 991px) {
  .fund_simple_sect .title_block {
    -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
  }
}
@media (max-width: 767px) {
  .fund_simple_sect .title_block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    text-align: center;
  }
}
.fund_simple_sect .title_block h2 {
  line-height: 1;
  letter-spacing: -.8px;
  font-size: 48px;
  color: #263a61;
  max-width: 350px;
  display: inline-block;
}
@media (max-width: 991px) {
  .fund_simple_sect .title_block h2 {
    max-width: 320px;
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .fund_simple_sect .title_block h2 {
    font-size: 36px;
    margin: 0 auto 25px;
  }
}
@media (max-width: 480px) {
  .fund_simple_sect .title_block h2 {
    font-size: 28px;
  }
}
.fund_simple_sect .title_block h2 span {
  position: relative;
}
.fund_simple_sect .title_block h2 span:before {
  position: absolute;
  content: "";
  top: 100%;
  left: -15px;
  right: 0;
  height: 20px;
  background: url("../images/last_word_big.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.fund_simple_sect .cont_block {
  -webkit-flex-basis: 41%;
      -ms-flex-preferred-size: 41%;
          flex-basis: 41%;
  padding-top: 5px;
}
@media (min-width: 992px) {
  .fund_simple_sect .cont_block {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media (max-width: 991px) {
  .fund_simple_sect .cont_block {
    -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
  }
}
@media (max-width: 767px) {
  .fund_simple_sect .cont_block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.fund_simple_sect .cont_block p {
  font-weight: 500;
  color: #263a61;
  opacity: 0.5;
  line-height: 1.7;
  margin-bottom: 31px;
  letter-spacing: -.25px;
}
@media (max-width: 767px) {
  .fund_simple_sect .cont_block p {
    margin-bottom: 20px;
  }
}
.fund_simple_sect + .fund_posts_sect:before {
  position: absolute;
  content: "";
  margin: 0 auto;
  left: 15px;
  right: 15px;
  top: 0;
  max-width: 1130px;
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  height: 1px;
  background: #263a61;
  opacity: 0.1;
}

.fund_posts_sect {
  padding: 88px 0 148px;
  position: relative;
  background: #FFF;
}
@media (max-width: 767px) {
  .fund_posts_sect {
    padding: 70px 0 100px;
  }
}
@media (max-width: 640px) {
  .fund_posts_sect {
    padding: 60px 0;
  }
}
.fund_posts_sect .post_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 49px;
}
@media (max-width: 640px) {
  .fund_posts_sect .post_row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fund_posts_sect .post_row:last-child {
  margin-bottom: 0;
}
.fund_posts_sect .post_row--image, .fund_posts_sect .post_row--content {
  -webkit-flex-basis: 49%;
      -ms-flex-preferred-size: 49%;
          flex-basis: 49%;
}
@media (max-width: 767px) {
  .fund_posts_sect .post_row--image {
    -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
  }
  .fund_posts_sect .post_row--content {
    -webkit-flex-basis: 55%;
        -ms-flex-preferred-size: 55%;
            flex-basis: 55%;
  }
}
@media (max-width: 640px) {
  .fund_posts_sect .post_row--image {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 440px;
    margin: 0 auto 22px;
  }
  .fund_posts_sect .post_row--content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.fund_posts_sect .post_row--content {
  padding-left: 6px;
}
@media (max-width: 767px) {
  .fund_posts_sect .post_row--content {
    padding-left: 20px;
  }
}
@media (max-width: 640px) {
  .fund_posts_sect .post_row--content {
    padding-left: 0;
  }
}
.fund_posts_sect .post_row--content h1, .fund_posts_sect .post_row--content h2, .fund_posts_sect .post_row--content h3, .fund_posts_sect .post_row--content h4, .fund_posts_sect .post_row--content h5, .fund_posts_sect .post_row--content h6 {
  line-height: 1;
  margin-bottom: 13px;
}
.fund_posts_sect .post_row--content p {
  line-height: 1.7;
  letter-spacing: -.45px;
}
@media (max-width: 991px) {
  .fund_posts_sect .post_row--content p {
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (max-width: 640px) {
  .fund_posts_sect .post_row--content p {
    line-height: 1.4;
  }
}
@media (min-width: 641px) {
  .fund_posts_sect .post_row--content .inner_block {
    max-width: 410px;
  }
}

.fund_bottom__sect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}
.fund_bottom__sect h1, .fund_bottom__sect h2, .fund_bottom__sect h3, .fund_bottom__sect h4, .fund_bottom__sect h5, .fund_bottom__sect h6 {
  color: #FFF;
  line-height: 1.1;
  margin-bottom: 23px;
  letter-spacing: -.3px;
}
.fund_bottom__sect p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: -.1px;
}
@media (max-width: 767px) {
  .fund_bottom__sect p:last-child {
    margin-bottom: 0;
  }
}
.fund_bottom__sect p a {
  color: #FFF;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}
.fund_bottom__sect p a:hover {
  color: #45a5ff;
}
.fund_bottom__sect .inner_block {
  padding: 83px 0 62px;
}
@media (max-width: 767px) {
  .fund_bottom__sect .inner_block {
    padding: 40px 0;
  }
}
.fund_bottom--desk_cont {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 2;
}
@media (max-width: 767px) {
  .fund_bottom--desk_cont {
    display: none !important;
  }
}
.fund_bottom--desk_cont .inner_block {
  width: 50%;
  max-width: 535px;
  padding-right: 15px;
}
.fund_bottom--content {
  -webkit-flex-basis: 51%;
      -ms-flex-preferred-size: 51%;
          flex-basis: 51%;
  padding: 15px;
  background-size: cover;
  background-position: 50%;
}
@media (max-width: 767px) {
  .fund_bottom--content {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media (min-width: 768px) {
  .fund_bottom--content > * {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
.fund_bottom--image {
  -webkit-flex-basis: 49%;
      -ms-flex-preferred-size: 49%;
          flex-basis: 49%;
  background-size: cover;
  background-position: 50%;
}
@media (max-width: 767px) {
  .fund_bottom--image {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    background: transparent !important;
    display: none;
  }
}
.fund_bottom--image img {
  display: none;
}
@media (max-width: 767px) {
  .fund_bottom--image img {
    display: block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .page_banner.why_ojc_banner {
    min-height: 450px;
  }
}
@media (max-width: 640px) {
  .page_banner.why_ojc_banner {
    min-height: 0;
    padding: 10px 0;
  }
}
.page_banner.why_ojc_banner .flex {
  min-height: inherit;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 640px) {
  .page_banner.why_ojc_banner .flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.why_ojc_banner {
  position: relative;
}
.why_ojc_banner--image {
  position: absolute;
  right: 0;
  bottom: 54px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .why_ojc_banner--image {
    max-width: 65%;
  }
}
@media (max-width: 991px) {
  .why_ojc_banner--image {
    max-width: 60%;
  }
}
@media (max-width: 640px) {
  .why_ojc_banner--image {
    display: none;
  }
}
.why_ojc_banner--caption {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 420px;
  width: 100%;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .why_ojc_banner--caption {
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .why_ojc_banner--caption {
    margin-left: 0;
    padding: 20px 15px;
    position: static;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 15px;
    text-align: center;
  }
}
.why_ojc_banner--caption .inner_capt {
  padding-bottom: 75px;
}
@media (max-width: 640px) {
  .why_ojc_banner--caption .inner_capt {
    padding-bottom: 0;
  }
}
.why_ojc_banner--caption h1, .why_ojc_banner--caption h2, .why_ojc_banner--caption h3, .why_ojc_banner--caption h4, .why_ojc_banner--caption h5, .why_ojc_banner--caption h6 {
  line-height: 1;
  letter-spacing: -.6px;
  margin-bottom: 20px;
  color: #FFF;
}
.why_ojc_banner--caption p {
  margin-bottom: 10px;
  max-width: 280px;
  line-height: 1.4;
  letter-spacing: -.1px;
}
@media (max-width: 640px) {
  .why_ojc_banner--caption p {
    margin: 0 auto 15px;
  }
}
.why_ojc_banner--caption p:last-child {
  margin-bottom: 5px;
}
.why_ojc_banner--caption p a {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}
.why_ojc_banner--caption p a:hover {
  color: #78bdff;
}
.why_ojc_banner--caption p strong a {
  font-size: 12px;
}

.banner_bottom_content {
  background: #F6F7F8;
}
.banner_bottom_content .bot_container {
  max-width: 1177px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 15px 75px;
  background: #fff;
  text-align: center;
  border: 1px solid #E1E4E9;
}
@media (min-width: 641px) {
  .banner_bottom_content .bot_container {
    -webkit-transform: translateY(-40%);
        -ms-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
@media (max-width: 640px) {
  .banner_bottom_content .bot_container {
    padding: 50px 15px;
  }
}
.banner_bottom_content .bot_container .inner_cont {
  max-width: 900px;
  margin: 0 auto;
}
.banner_bottom_content .bot_container p {
  color: #263a61;
  opacity: 0.5;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.35px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .banner_bottom_content .bot_container p {
    font-size: 20px;
  }
  .banner_bottom_content .bot_container p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .banner_bottom_content .bot_container p {
    font-size: 18px;
  }
}

.why_ojc_features_sect {
  background: #F6F7F8;
  padding: 15px 0;
}
@media (max-width: 640px) {
  .why_ojc_features_sect {
    padding-top: 40px;
  }
}
.why_ojc_features_sect .row {
  max-width: 1080px;
}
.why_ojc_features_sect .why_ojc_feature_block {
  max-width: 437px;
  margin-bottom: 86px;
}
@media (max-width: 767px) {
  .why_ojc_features_sect .why_ojc_feature_block {
    margin: 0 auto 86px;
  }
}
.why_ojc_features_sect .why_ojc_feature_block .image_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block {
  padding: 0;
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  padding-top: 12px;
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block ul li {
  display: block;
  position: relative;
  padding-left: 37px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.1px;
  margin-bottom: 14px;
  color: rgba(38, 58, 97, 0.5);
}
@media (max-width: 840px) {
  .why_ojc_features_sect .why_ojc_feature_block .cont_block ul li {
    font-size: 16px;
    line-height: 1.4;
  }
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block ul li:before {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 17px;
  height: 12px;
  background: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block h1, .why_ojc_features_sect .why_ojc_feature_block .cont_block h2, .why_ojc_features_sect .why_ojc_feature_block .cont_block h3, .why_ojc_features_sect .why_ojc_feature_block .cont_block h4, .why_ojc_features_sect .why_ojc_feature_block .cont_block h5, .why_ojc_features_sect .why_ojc_feature_block .cont_block h6 {
  letter-spacing: -.5px;
  line-height: 1.1;
}
.why_ojc_features_sect .why_ojc_feature_block .cont_block p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.1px;
  color: rgba(38, 58, 97, 0.5);
}
@media (max-width: 840px) {
  .why_ojc_features_sect .why_ojc_feature_block .cont_block p {
    font-size: 16px;
  }
}

.why_ojc_center_banner_section {
  padding: 104px 0 110px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .why_ojc_center_banner_section {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .why_ojc_center_banner_section {
    padding: 60px 0;
  }
}
.why_ojc_center_banner_section .row {
  max-width: 1160px;
}
.why_ojc_center_banner_section .flex {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.why_ojc_center_banner_section .inner_capt {
  max-width: 554px;
  width: 100%;
  background: #FFF;
  padding: 70px 70px 55px;
}
@media (max-width: 767px) {
  .why_ojc_center_banner_section .inner_capt {
    padding: 40px;
  }
}
@media (max-width: 640px) {
  .why_ojc_center_banner_section .inner_capt {
    padding: 20px 15px;
  }
}
.why_ojc_center_banner_section .inner_capt h1, .why_ojc_center_banner_section .inner_capt h2, .why_ojc_center_banner_section .inner_capt h3, .why_ojc_center_banner_section .inner_capt h4, .why_ojc_center_banner_section .inner_capt h5, .why_ojc_center_banner_section .inner_capt h6 {
  color: #263a61;
  margin-bottom: 15px;
}
.why_ojc_center_banner_section .inner_capt p {
  color: rgba(38, 58, 97, 0.5);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.35px;
}
.why_ojc_center_banner_section .inner_capt p a {
  color: #263a61;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.why_ojc_center_banner_section .inner_capt p a:hover {
  color: #45a5ff;
}

.why_ojc_comparison {
  background: #F0F1F2;
  padding: 72px 0 115px;
}
@media (max-width: 767px) {
  .why_ojc_comparison {
    padding: 60px 0 80px;
  }
}

.why_ojc_comparison_content {
  max-width: 450px;
  margin: 0 auto 56px;
}
.why_ojc_comparison_content h1, .why_ojc_comparison_content h2, .why_ojc_comparison_content h3, .why_ojc_comparison_content h4, .why_ojc_comparison_content h5, .why_ojc_comparison_content h6 {
  color: #263a61;
  margin-bottom: 0px;
}
.why_ojc_comparison_content h2 {
  font-size: 48px;
}
@media (max-width: 991px) {
  .why_ojc_comparison_content h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .why_ojc_comparison_content h2 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .why_ojc_comparison_content h2 {
    font-size: 28px;
  }
}
.why_ojc_comparison_content p {
  color: rgba(38, 58, 97, 0.5);
  line-height: 1.4;
}

.comparison_grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 57px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .comparison_grid {
    padding-bottom: 5px;
  }
}

.comparison__block {
  -webkit-flex-basis: -webkit-calc(50% - 11px);
      -ms-flex-preferred-size: calc(50% - 11px);
          flex-basis: calc(50% - 11px);
  background: #FFF;
  border: 1px solid #E0E3E8;
  border-radius: 8px;
  padding: 57px 71px 18px;
}
@media (max-width: 1024px) {
  .comparison__block {
    padding: 40px 30px 15px;
  }
}
@media (max-width: 900px) {
  .comparison__block {
    padding: 40px 15px 15px;
  }
}
@media (max-width: 767px) {
  .comparison__block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}
.comparison__block h1, .comparison__block h2, .comparison__block h3, .comparison__block h4, .comparison__block h5, .comparison__block h6 {
  letter-spacing: -.5px;
  line-height: 1.1;
}
.comparison__block p {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.45px;
  color: rgba(38, 58, 97, 0.5);
}
.comparison__block ul {
  list-style: none;
  margin-left: 0;
  padding-left: 4px;
  padding-top: 27px;
}
.comparison__block ul li {
  display: block;
  position: relative;
  padding-left: 37px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.45px;
  margin-bottom: 18px;
  color: rgba(38, 58, 97, 0.5);
}
@media (max-width: 900px) {
  .comparison__block ul li {
    font-size: 16px;
  }
}
.comparison__block ul li:before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 17px;
  height: 12px;
  background: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}

.why_ojc_comparison_button {
  background: #45a5ff;
  color: #FFF;
  padding: 18px 15px;
  max-width: 299px;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}
.why_ojc_comparison_button:hover {
  background: #78bdff;
  color: #FFF;
}

.why_difference_banner {
  padding: 30px 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.why_difference_banner .flex {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.why_difference--image {
  padding: 0 15px;
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .why_difference--image {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    text-align: center;
  }
  .why_difference--image img {
    max-width: 240px;
    width: 100%;
    display: inline-block;
  }
}
.why_difference--caption {
  -webkit-flex-basis: 46.5%;
      -ms-flex-preferred-size: 46.5%;
          flex-basis: 46.5%;
  padding: 26px 15px 30px 0px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .why_difference--caption {
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .why_difference--caption {
    padding: 20px 15px;
    position: static;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 15px;
    text-align: center;
    margin: 0 auto;
  }
}
.why_difference--caption h1, .why_difference--caption h2, .why_difference--caption h3, .why_difference--caption h4, .why_difference--caption h5, .why_difference--caption h6 {
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -.5px;
  color: #FFF;
}
@media (min-width: 641px) and (max-width: 767px) {
  .why_difference--caption h2 {
    font-size: 40px;
  }
}
.why_difference--caption p {
  margin-bottom: 25px;
  max-width: 320px;
  line-height: 1.4;
  color: #FFF;
}
@media (max-width: 640px) {
  .why_difference--caption p {
    margin: 0 auto 15px;
  }
}
.why_difference--caption p:last-child {
  margin-bottom: 5px;
}
.why_difference--caption p a {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}
.why_difference--caption p a:hover {
  color: #45a5ff;
}
.why_difference--caption p strong a {
  font-size: 12px;
}

.difference_three_blocks {
  padding: 83px 0 50px;
  background: #F6F7F8;
}
.difference_three_blocks .row {
  max-width: 1060px;
}
.difference_three_blocks .inner_block {
  max-width: 250px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .difference_three_blocks .inner_block {
    margin-bottom: 40px;
  }
  .difference_three_blocks .inner_block:last-child {
    margin-bottom: 0;
  }
}
.difference_three_blocks .inner_block .image_block {
  margin-bottom: 27px;
}
.difference_three_blocks .inner_block h4 {
  color: #263a61;
  margin-bottom: 1px;
}
.difference_three_blocks .inner_block p {
  margin-bottom: 0;
  color: rgba(38, 58, 97, 0.5);
}

.difference_simple_sect {
  padding: 21px 0;
  background: #F6F7F8;
}
.difference_simple_sect .inner_block {
  background: #FFF;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 69px 74px 76px;
  border: 1px solid #E1E4E9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .difference_simple_sect .inner_block {
    padding: 50px 25px;
  }
}
@media (max-width: 640px) {
  .difference_simple_sect .inner_block {
    padding: 40px 15px;
  }
}
.difference_simple_sect .inner_block p {
  color: rgba(38, 58, 97, 0.5);
  font-weight: 500;
}
.difference_simple_sect .inner_block p:last-child {
  margin-bottom: 0;
}
.difference_simple_sect .inner_block .left_block {
  -webkit-flex-basis: 58%;
      -ms-flex-preferred-size: 58%;
          flex-basis: 58%;
}
@media (max-width: 767px) {
  .difference_simple_sect .inner_block .left_block {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
@media (max-width: 640px) {
  .difference_simple_sect .inner_block .left_block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-bottom: 25px;
  }
}
.difference_simple_sect .inner_block .left_block p {
  font-size: 24px;
  letter-spacing: -.4px;
}
@media (max-width: 1024px) {
  .difference_simple_sect .inner_block .left_block p {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .difference_simple_sect .inner_block .left_block p {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .difference_simple_sect .inner_block .left_block p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .difference_simple_sect .inner_block .left_block p {
    font-size: 16px;
  }
}
.difference_simple_sect .inner_block .right_block {
  -webkit-flex-basis: 36.5%;
      -ms-flex-preferred-size: 36.5%;
          flex-basis: 36.5%;
}
@media (max-width: 767px) {
  .difference_simple_sect .inner_block .right_block {
    -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
    padding-left: 10px;
  }
}
@media (max-width: 640px) {
  .difference_simple_sect .inner_block .right_block {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
  }
}

.difference_grid_sect {
  padding: 125px 0;
  background: #F6F7F8;
}
@media (max-width: 767px) {
  .difference_grid_sect {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .difference_grid_sect {
    padding: 60px 0;
  }
}
.difference_grid_sect .row {
  max-width: 1220px;
}
.difference_grid_sect .section_title {
  max-width: 660px;
  margin: 0 auto;
  line-height: 1;
}
.difference_grid_sect .difference_grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 40px;
}
.difference_grid_sect .difference_grid .grid_item {
  -webkit-flex-basis: -webkit-calc(100% / 3);
      -ms-flex-preferred-size: calc(100% / 3);
          flex-basis: calc(100% / 3);
  background: #FFF;
  padding: 15px;
  border: 1px solid #F6F7F8;
  margin-left: -1px;
  margin-bottom: -1px;
  padding: 75px 15px 33px;
}
@media (max-width: 991px) {
  .difference_grid_sect .difference_grid .grid_item {
    padding: 45px 15px 15px;
  }
}
@media (max-width: 800px) and (min-width: 481px) {
  .difference_grid_sect .difference_grid .grid_item {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(2), .difference_grid_sect .difference_grid .grid_item:nth-child(3), .difference_grid_sect .difference_grid .grid_item:nth-child(6), .difference_grid_sect .difference_grid .grid_item:nth-child(7), .difference_grid_sect .difference_grid .grid_item:nth-child(10) {
    background: #ECEFF1;
  }
}
@media (min-width: 801px) {
  .difference_grid_sect .difference_grid .grid_item:nth-child(3), .difference_grid_sect .difference_grid .grid_item:nth-child(5), .difference_grid_sect .difference_grid .grid_item:nth-child(7) {
    background: #ECEFF1;
  }
}
@media (max-width: 480px) {
  .difference_grid_sect .difference_grid .grid_item {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(even) {
    background: #ECEFF1;
  }
}
.difference_grid_sect .difference_grid .grid_item--inner {
  max-width: 256px;
  width: 100%;
  margin: 0 auto;
}
.difference_grid_sect .difference_grid .grid_item h1, .difference_grid_sect .difference_grid .grid_item h2, .difference_grid_sect .difference_grid .grid_item h3, .difference_grid_sect .difference_grid .grid_item h4, .difference_grid_sect .difference_grid .grid_item h5, .difference_grid_sect .difference_grid .grid_item h6 {
  clear: both;
}
.difference_grid_sect .difference_grid .grid_item p {
  display: block;
  width: 100%;
  color: rgba(38, 58, 97, 0.5);
  line-height: 1.35;
  letter-spacing: -.1px;
}
.difference_grid_sect .difference_grid .grid_item p + p > img {
  margin-top: 30px;
}
.difference_grid_sect .difference_grid .grid_item p:first-child > img {
  margin-top: 7px;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .difference_grid_sect .difference_grid .grid_item:nth-child(1) .grid_item--inner, .difference_grid_sect .difference_grid .grid_item:nth-child(2) .grid_item--inner {
    -webkit-transform: translate(8px, 0px);
        -ms-transform: translate(8px, 0px);
            transform: translate(8px, 0px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(3) .grid_item--inner {
    -webkit-transform: translate(4px, -3px);
        -ms-transform: translate(4px, -3px);
            transform: translate(4px, -3px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(3) .grid_item--inner p + p > img {
    margin-top: 14px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(4) .grid_item--inner {
    -webkit-transform: translate(-3px, -14px);
        -ms-transform: translate(-3px, -14px);
            transform: translate(-3px, -14px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(4) .grid_item--inner p + p > img {
    margin-top: 37px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(5) .grid_item--inner {
    -webkit-transform: translate(-3px, -14px);
        -ms-transform: translate(-3px, -14px);
            transform: translate(-3px, -14px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(5) .grid_item--inner p:first-child > img {
    margin-bottom: 55px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(6) .grid_item--inner {
    -webkit-transform: translate(4px, 0px);
        -ms-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(6) .grid_item--inner p + p > img {
    margin-top: 40px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(4), .difference_grid_sect .difference_grid .grid_item:nth-child(5), .difference_grid_sect .difference_grid .grid_item:nth-child(6) {
    padding-bottom: 24px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(7) .grid_item--inner {
    -webkit-transform: translate(-6px, -1px);
        -ms-transform: translate(-6px, -1px);
            transform: translate(-6px, -1px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(7) .grid_item--inner p + p > img {
    margin-top: 0;
    -webkit-transform: translate(15px, -2px);
        -ms-transform: translate(15px, -2px);
            transform: translate(15px, -2px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(8) .grid_item--inner {
    -webkit-transform: translate(-8px, -10px);
        -ms-transform: translate(-8px, -10px);
            transform: translate(-8px, -10px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(8) .grid_item--inner p:first-child > img {
    margin-bottom: 70px;
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(9) .grid_item--inner {
    -webkit-transform: translate(3px, 6px);
        -ms-transform: translate(3px, 6px);
            transform: translate(3px, 6px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(9) .grid_item--inner p + p > img {
    margin-top: 0;
    -webkit-transform: translate(0px, 67px);
        -ms-transform: translate(0px, 67px);
            transform: translate(0px, 67px);
  }
  .difference_grid_sect .difference_grid .grid_item:nth-child(7), .difference_grid_sect .difference_grid .grid_item:nth-child(8), .difference_grid_sect .difference_grid .grid_item:nth-child(9) {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .difference_grid_sect .difference_grid .grid_item:nth-child(9) .grid_item--inner p + p > img {
    margin-top: 0;
    -webkit-transform: translate(0px, 67px);
        -ms-transform: translate(0px, 67px);
            transform: translate(0px, 67px);
  }
}
@media (max-width: 767px) {
  .difference_grid_sect .difference_grid .grid_item:nth-child(9) .grid_item--inner p + p > img {
    margin-top: 0;
    -webkit-transform: translate(0px, 33px);
        -ms-transform: translate(0px, 33px);
            transform: translate(0px, 33px);
  }
}

/*---------------------------------------
	TMPL: Home page
---------------------------------------*/
/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer {
  background: #FFF;
  padding: 55px 0 40px;
  text-align: center;
}
.footer .row {
  max-width: 1307px;
}
.footer .widget {
  margin-bottom: 23px;
}
.footer .widget:last-of-type {
  margin-bottom: 0;
}
.footer .widget.widget_text {
  padding-bottom: 46px;
}
.footer .widget.widget_text:last-of-type {
  padding-bottom: 0;
}
.footer .widget.widget_text .textwidget {
  font-size: 12px;
  color: #AAAEBA;
  letter-spacing: .5px;
}
.footer .widget.widget_nav_menu {
  position: relative;
}
.footer .widget.widget_nav_menu:before {
  position: absolute;
  content: "";
  width: 49%;
  height: 2px;
  background: #f1f1f1;
  bottom: -14px;
  left: 25.5%;
}
.footer .widget.widget_nav_menu ul li {
  display: inline-block;
  margin: 0 17px;
}
.footer .widget.widget_nav_menu ul li a {
  color: #aaaeba;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
}
.footer .widget.widget_nav_menu ul li a:hover {
  color: #45a5ff;
}

.sticky-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 0;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li a {
  display: block;
  padding: 5px 10px;
}

/*# sourceMappingURL=custom.css.map */
/*css made by akhil*/
.swiper-button-next {
    background-image: url(http://bkq.857.myftpupload.com/wp-content/uploads/2018/05/right-chevron-1.png);
    background-size: cover;
    width: 44px;
}
.swiper-button-prev{
    background-image: url(http://bkq.857.myftpupload.com/wp-content/uploads/2018/05/left-chevron-1.png);
    background-size: cover;
    width: 44px;
}
/*.swiper-slide.swiper-slide-prev img, .swiper-slide.swiper-slide-next img {
    display: none;
}*/
li#menu-item-420 {
    padding: 10px 20px 10px 15px;
    z-index: 9;
}
.dropdown.menu>li.opens-right>.is-dropdown-submenu {
    top: -39%;
    right: auto;
    /* left: 10px; */
    padding-top: 50px;
}
ul.menu.submenu.is-dropdown-submenu.first-sub.vertical.js-dropdown-active1 {
    z-index: -1;
}
li#menu-item-238 {
    z-index: 10;
    padding: 10px 20px 10px 15px;
}
li#menu-item-219 {
    z-index: 11;
	 padding: 10px 20px 10px 15px;
}
.header.small .dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: -11px;
    padding-top: 2px;
}
/*.dropdown.menu>li.opens-right>.is-dropdown-submenu li:first-child:before{
    position: absolute;
    content: "";
    top: 17px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3.5px 4px 3.5px;
    border-color: transparent transparent #263a61 transparent;
  }*/
 .dropdown.menu>li.opens-right>.is-dropdown-submenu li#menu-item-407:first-child:before {
    right: 55%;
 }
 .dropdown.menu>li.opens-right>.is-dropdown-submenu li#menu-item-405:first-child:before {
    right: 57%;
 }
 /*.dropdown.menu>li.opens-right>.is-dropdown-submenu li#menu-item-421:first-child:before {
 display: table;
 content: " ";
    right: 42%;
 }*/
 
 /*contact form field lighter blue color*/
 input.wpcf7-form-control.wpcf7-text:focus, .contact_grid .contact_form form textarea:focus, .home_banner--login_form .tml-login form input[type="text"]:focus, .home_banner--login_form .tml-login form input[type="password"]:focus,body .tml-login form input[type="text"]:focus, body .tml-login form input[type="password"]:focus, body .tml-lostpassword form input[type="text"]:focus, body .tml-lostpassword form input[type="password"]:focus {
    border: 1px solid #45a5ff !important;
}
section.grand_works_info_blocks_sect, section.getting_started_smpl_cont.wow.fadeInUp {
   /* width: 100%;
    float: left;*/
    background-color: #fff;
}
.smpl_additional_content p {
    font-size: 18px;
    font-weight: 500;
    color: #263a61;
    opacity: 0.4;
}
@media (min-width: 768px){
.header.small .logo a img {
    height: 30px !important;
}
.header.small .top-bar .header-menu > li {
    padding: 3px 26px 2px !important;
}
}
input.wpcf7-form-control.wpcf7-text:focus, .contact_grid .contact_form form textarea:focus, .home_banner--login_form .tml-login form input[type="text"]:focus, .home_banner--login_form .tml-login form input[type="password"]:focus, body .tml-login form input[type="text"]:focus, body .tml-login form input[type="password"]:focus, body .tml-lostpassword form input[type="text"]:focus, body .tml-lostpassword form input[type="password"]:focus {
    border: 1px solid #45a5ff !important;
}
/*.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu, .dropdown.menu>li.opens-left>.is-dropdown-submenu{
	top: -34% !important;
}
li#menu-item-406:before {
    right: 42%;
}*/
ul.menu.submenu.is-dropdown-submenu.first-sub.vertical.js-dropdown-active1 {
    top: -70%;
    padding-top: 64px;
    left: 0;
} 