@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-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, -20px, 0);
    transform: translate3d(0, -20px, 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, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce infinite;
  animation-name: bounce infinite;
  -webkit-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;
  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: none;
    transform: none;
  }
  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: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  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: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-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-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, -100px, 0);
    transform: translate3d(0, -100px, 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: none;
    transform: none;
  }
}

@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, -100px, 0);
    transform: translate3d(0, -100px, 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: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@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(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

.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-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(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInleftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInrightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.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-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-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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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: none;
    transform: none;
    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-name: hinge;
  animation-name: hinge;
}

/* 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: none;
    transform: none;
  }
}

@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: none;
    transform: none;
  }
}

.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: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  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;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  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);
  }
}

.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;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Settings
 */
/**
 * Easings
 */
/**
 * Core
 */
[data-sal] {
  transition-duration: 0.4s;
  transition-delay: 0.15s;
  transition-duration: var(--sal-duration, 0.4s);
  transition-delay: var(--sal-delay, 0.15s);
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration='200'] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration='250'] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration='300'] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration='350'] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration='400'] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration='450'] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration='500'] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration='550'] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration='600'] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration='650'] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration='700'] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration='750'] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration='800'] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration='850'] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration='900'] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration='950'] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration='1000'] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration='1050'] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration='1100'] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration='1150'] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration='1200'] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration='1250'] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration='1300'] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration='1350'] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration='1400'] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration='1450'] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration='1500'] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration='1550'] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration='1600'] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration='1650'] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration='1700'] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration='1750'] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration='1800'] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration='1850'] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration='1900'] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration='1950'] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration='2000'] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay='50'] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay='100'] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay='150'] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay='200'] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay='250'] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay='300'] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay='350'] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay='400'] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay='450'] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay='500'] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay='550'] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay='600'] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay='650'] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay='700'] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay='750'] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay='800'] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay='850'] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay='900'] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay='950'] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay='1000'] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing='linear'] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing='ease'] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing='ease-in'] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing='ease-out'] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing='ease-in-out'] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing='ease-in-cubic'] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing='ease-out-cubic'] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-out-cubic'] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing='ease-in-circ'] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing='ease-out-circ'] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing='ease-in-out-circ'] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing='ease-in-expo'] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing='ease-out-expo'] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing='ease-in-out-expo'] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing='ease-in-quad'] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing='ease-out-quad'] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing='ease-in-out-quad'] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing='ease-in-quart'] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing='ease-out-quart'] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing='ease-in-out-quart'] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing='ease-in-quint'] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing='ease-out-quint'] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing='ease-in-out-quint'] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing='ease-in-sine'] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing='ease-out-sine'] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing='ease-in-out-sine'] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing='ease-in-back'] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing='ease-out-back'] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing='ease-in-out-back'] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
 * Animations
 */
[data-sal|='fade'] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|='fade'].sal-animate,
body.sal-disabled [data-sal|='fade'] {
  opacity: 1;
}

[data-sal|='slide'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal='slide-up'] {
  transform: translateY(20px);
}

[data-sal='slide-down'] {
  transform: translateY(-20px);
}

[data-sal='slide-left'] {
  transform: translateX(20px);
}

[data-sal='slide-right'] {
  transform: translateX(-20px);
}

[data-sal|='slide'].sal-animate,
body.sal-disabled [data-sal|='slide'] {
  opacity: 1;
  transform: none;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  scroll-behavior: smooth;
}

a, a:active, a:focus, button, button:focus, input, input:focus {
  outline: none !important;
}

input[type="text"], input[type="search"] {
  font-family: "Open Sans", sans-serif;
  outline: none;
}

input[type="text"]::placeholder, input[type="search"]::placeholder {
  color: #231F20;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder {
  color: #231F20;
}

input[type="text"]::-ms-input-placeholder, input[type="search"]::-ms-input-placeholder {
  color: #231F20;
}

select {
  outline: none;
}

.hiding {
  filter: alpha(opacity=0);
  opacity: 0;
}

.visible {
  opacity: 1;
}

.hide-section {
  display: none;
}

.mobile-visible {
  display: none;
}

@media (max-width: 1230px) {
  .mobile-visible {
    display: block;
  }
}

.desktop-visible {
  display: block;
}

@media (max-width: 1230px) {
  .desktop-visible {
    display: none;
  }
}

.no-scroll_js {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container-max {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .container-max {
    padding: 0 32px;
  }
}

.owl-carousel {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

#main-wrapper {
  padding-top: 180px;
}

@media (max-width: 1230px) {
  #main-wrapper {
    padding-top: 150px;
  }
}

#preloader {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  overflow: hidden;
  opacity: 1;
  display: none;
  -webkit-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 31, 48, 0.9);
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#preloader .preloader-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#preloader .preloader-wrap .logo {
  position: relative;
  z-index: 2;
}

#preloader .preloader-wrap .loader {
  position: absolute;
  bottom: 25px;
  right: -2px;
  width: 30px;
}

#preloader .preloader-wrap p {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  color: #ffffff;
  animation: text 3.5s ease both infinite;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes text {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 3px;
    transform: translateX(26px);
  }
  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }
  90% {
    letter-spacing: 3px;
    transform: translateX(0px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}

#preloader .preloader-wrap span {
  background-color: #ffffff;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading 3.5s ease both infinite;
}

#preloader .preloader-wrap span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: inherit;
  animation: loading2 3.5s ease both infinite;
}

@keyframes loading {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  40% {
    width: 100%;
    transform: translateX(0px);
  }
  80% {
    width: 16px;
    transform: translateX(64px);
  }
  90% {
    width: 100%;
    transform: translateX(0px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}

@keyframes loading2 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }
  40% {
    transform: translateX(0%);
    width: 80%;
  }
  80% {
    width: 100%;
    transform: translateX(0px);
  }
  90% {
    width: 80%;
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
    width: 16px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #F57B31;
  padding: 14px 20px;
  text-transform: uppercase;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover {
  background: #00AB4E;
  letter-spacing: 1px;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}

.btn.btn-large {
  width: 175px;
  padding: 17px 10px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .btn.btn-large {
    width: 177px;
  }
}

.btn.btn-xl {
  width: 185px;
  padding: 17px 30px;
}

.btn.btn-content {
  width: 225px;
  padding: 17px 20px;
}

@media (max-width: 992px) {
  .btn.btn-content {
    width: 220px;
  }
}

.btn.btn-white {
  color: #0D76BD;
  background: #ffffff;
}

.btn.btn-white:hover {
  color: #ffffff;
  background: #00AB4E;
}

.btn.btn-outline {
  width: 225px;
  height: 50px;
  font-size: 17px;
  background: transparent;
  padding: 14px 20px;
  border: 2px solid #ffffff;
}

@media (max-width: 992px) {
  .btn.btn-outline {
    width: 220px;
  }
}

.btn-submit {
  display: block;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #F57B31;
  padding: 11px 15px;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  cursor: pointer;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-submit:hover {
  background: #00AB4E;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}

.filter-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 49px 52px 30px 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .filter-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 22px 32px 22px;
  }
}

@media (max-width: 768px) {
  .filter-wrap .ajax-counts {
    width: 100%;
  }
}

.filter-wrap .ajax-counts p {
  font-size: 15px;
  color: #231F20;
  line-height: 30px;
}

.filter-wrap .item {
  padding-left: 34px;
}

.filter-wrap .item:first-of-type {
  padding-left: 0;
}

.filter-wrap .filter {
  position: relative;
}

.filter-wrap .filter.active .dropdown-wrap {
  opacity: 1;
  visibility: visible;
}

.filter-wrap .filter.active .select {
  color: #00AB4E;
}

.filter-wrap .filter.active .select:before {
  border-top: 6px solid #00AB4E;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.filter-wrap .filter a {
  font-size: 15px;
  color: #231F20;
  line-height: 30px;
}

.filter-wrap .filter a.select {
  display: block;
  position: relative;
  font-weight: 700;
  padding-right: 14px;
  -webkit-transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-wrap .filter a.select:hover {
  color: #00AB4E;
}

.filter-wrap .filter a.select:hover:before {
  border-top: 6px solid #00AB4E;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.filter-wrap .filter a.select:before {
  content: '';
  position: absolute;
  top: 12px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #231F20;
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-wrap .filter .dropdown-wrap {
  position: absolute;
  top: 36px;
  left: 35px;
  width: 160px;
  background: #ffffff;
  box-shadow: 0 5px 29px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-wrap .filter .dropdown-wrap a {
  display: block;
  padding: 0 15px;
  line-height: 38px;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-wrap .filter .dropdown-wrap a:hover {
  background: #F7F7F7;
}

@media (max-width: 768px) {
  .filter-wrap #filter-category {
    padding-left: 0;
  }
}

@media (max-width: 1524px) {
  .filter-wrap #tags-category .dropdown-wrap {
    left: -28px;
  }
}

body, html {
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

h1 {
  font-size: 60px;
  color: #0D76BD;
  line-height: 70px;
}

h2 {
  font-size: 50px;
  color: #0D76BD;
  line-height: 65px;
}

h3 {
  font-size: 45px;
  color: #0D76BD;
  line-height: 60px;
}

@media (max-width: 992px) {
  h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

h4 {
  font-size: 35px;
  color: #0D76BD;
  line-height: 45px;
}

@media (max-width: 768px) {
  h4 {
    font-size: 25px;
    line-height: 35px;
  }
}

h5 {
  font-size: 20px;
  color: #231F20;
  line-height: 30px;
}

@media (max-width: 768px) {
  h5 {
    font-size: 22px;
    line-height: 32px;
  }
}

h6 {
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  line-height: 60px;
  text-transform: uppercase;
  text-decoration: underline;
}

@media (max-width: 992px) {
  h6 {
    font-size: 15px;
    line-height: 28px;
    text-decoration: none;
  }
}

p {
  font-size: 19px;
  font-weight: 400;
  color: #231F20;
  line-height: 29px;
}

a {
  text-decoration: none;
  outline: none;
}

strong {
  font-size: 19px;
  font-weight: 700;
  color: #231F20;
  line-height: 29px;
}

.home header .header--main {
  padding: 19px 42px 30px;
}

@media (max-width: 1360px) {
  .home header .header--main {
    padding: 19px 23px 30px;
  }
}

@media (max-width: 1230px) {
  .home header .header--main {
    padding: 21px 23px 32px;
  }
}

.home header .header--main .line-colors {
  opacity: 1;
  visibility: visible;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header .header--contact {
  background: #00AB4E;
  text-align: center;
}

header .header--contact p {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 20px;
  line-height: 27px;
}

@media (max-width: 1230px) {
  header .header--contact p {
    font-size: 15px;
    padding: 0 23px;
    line-height: 20px;
  }
}

header .header--contact p span {
  padding: 12px 0;
}

@media (max-width: 1230px) {
  header .header--contact p span {
    padding: 10px 0;
  }
}

header .header--contact p a {
  position: relative;
  display: block;
  color: #ffffff;
  padding: 12px 10px;
  margin: 0 5px;
  text-decoration: underline;
  z-index: 2;
  -webkit-transition: text-decoration 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: text-decoration 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: text-decoration 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: text-decoration 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: text-decoration 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1230px) {
  header .header--contact p a {
    padding: 10px;
  }
}

header .header--contact p a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F57B31;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header .header--contact p a:hover {
  text-decoration: none;
}

header .header--contact p a:hover:before {
  opacity: 1;
}

header .header--main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 19px 42px 30px;
  -webkit-transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1360px) {
  header .header--main {
    padding: 19px 23px 30px;
  }
}

@media (max-width: 1230px) {
  header .header--main {
    padding: 21px 23px 32px;
  }
}

header .header--main .header--menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header .header--main .header--menu .search.mobile-visible {
  margin-right: 53px;
}

@media (max-width: 1230px) {
  header .header--main .header--menu .search.mobile-visible {
    margin-top: 2px;
  }
}

header .header--main .header--menu .search.mobile-visible img {
  width: 22px;
  height: 22px;
}

@media (max-width: 1230px) {
  header .header--main .header--menu .search.mobile-visible img.icon-close {
    width: 20px;
    height: 20px;
  }
}

header .header--main .header--menu .patient-login-language {
  position: relative;
  padding-right: 208px;
  margin-bottom: 20px;
}

header .header--main .header--menu .patient-login-language .language {
  position: absolute;
  top: -7px;
  right: 0;
}

header .header--main .logo img {
  -webkit-transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1230px) {
  header .header--main .logo img {
    width: 156px;
    height: auto;
  }
}

header .header--main .patient-login {
  margin-bottom: 21px;
}

@media (max-width: 1230px) {
  header .header--main .patient-login {
    margin-top: 80px;
  }
}

header .header--main .patient-login a {
  font-size: 16px;
  font-weight: 600;
  color: #231F20;
  text-decoration: underline;
}

header .header--main .patient-login a:hover {
  color: #00AB4E;
}

@media (max-width: 1230px) {
  header .header--main .patient-login a {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
  }
  header .header--main .patient-login a:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0%;
    width: 8px;
    height: 8px;
    background: #FBB040;
    border-radius: 8px;
    opacity: 0;
    -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, height 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, height 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, height 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, height 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, height 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  }
  header .header--main .patient-login a.active, header .header--main .patient-login a:hover {
    color: #ffffff;
  }
  header .header--main .patient-login a.active:before, header .header--main .patient-login a:hover:before {
    top: -6px;
    width: 30px;
    height: 5px;
    opacity: 1;
  }
}

header .header--main .overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 18;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header .header--main .navigation {
  display: flex;
  align-items: center;
}

@media (max-width: 1230px) {
  header .header--main .navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    background: #0D76BD;
    padding: 79px 41px 30px;
    overflow: auto;
    z-index: 20;
    -webkit-transform: translateX(340px);
    -moz-transform: translateX(340px);
    -ms-transform: translateX(340px);
    -o-transform: translateX(340px);
    transform: translateX(340px);
    -webkit-transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
    -moz-transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
    -ms-transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
    -o-transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
  }
}

header .header--main .navigation ul {
  display: flex;
  align-items: center;
}

@media (max-width: 1230px) {
  header .header--main .navigation ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  header .header--main .navigation ul li {
    width: 100%;
  }
  header .header--main .navigation ul li:first-of-type a {
    border-top: 0;
  }
}

header .header--main .navigation ul a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #231F20;
  padding: 0 16px;
  line-height: 16px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1360px) {
  header .header--main .navigation ul a {
    padding: 0 10px;
  }
}

@media (max-width: 1230px) {
  header .header--main .navigation ul a {
    font-size: 25px;
    color: #ffffff;
    padding: 29px 0 25px;
    border-top: 1px solid #ffffff;
    line-height: 30px;
  }
}

header .header--main .navigation ul a.active, header .header--main .navigation ul a:hover {
  color: #00AB4E;
}

@media (max-width: 1230px) {
  header .header--main .navigation ul a.active, header .header--main .navigation ul a:hover {
    color: #ffffff;
  }
}

header .header--main .navigation .search {
  margin: 0 24px 0 15px;
}

header .header--main .navigation .search img {
  display: block;
}

header .header--main .navigation .language-mobile {
  margin-top: 13px;
}

@media (max-width: 1230px) {
  header .header--main .navigation .donate {
    display: none;
  }
}

header .header--main .navigation .donate .btn {
  width: 120px;
  padding: 14px 27px;
}

header .header--main .line-colors {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

header .header--main .line-colors .line {
  width: calc( 100% / 4);
  height: 10px;
}

header .header--main .line-colors .line-green {
  background: #00AB4E;
}

header .header--main .line-colors .line-blue {
  background: #0D76BD;
}

header .header--main .line-colors .line-yellow {
  background: #FBB040;
}

header .header--main .line-colors .line-orange {
  background: #F15A29;
}

header .menu-hamburger {
  display: none;
  position: absolute;
  width: 60px;
  height: 30px;
  background: transparent;
  padding: 20px 15px;
  outline: none;
  cursor: pointer;
}

@media (max-width: 1230px) {
  header .menu-hamburger {
    display: block;
  }
}

header .menu-hamburger.mh-open {
  top: 27px;
  right: 8px;
  z-index: 19;
  -webkit-transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

header .menu-hamburger.mh-close {
  top: 28px;
  right: 10px;
  z-index: 21;
}

header .menu-hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background: #0D76BD;
  z-index: 9999;
}

header .menu-hamburger span:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0D76BD;
}

header .menu-hamburger span:after {
  content: '';
  position: absolute;
  top: 8px;
  right: 0;
  width: 100%;
  height: 3px;
  background: #0D76BD;
  -webkit-transition: top 0.2s 0.2s ease-in-out, width 1s 1s ease-in-out, transform 0.2s ease-in-out, background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: top 0.2s 0.2s ease-in-out, width 1s 1s ease-in-out, transform 0.2s ease-in-out, background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: top 0.2s 0.2s ease-in-out, width 1s 1s ease-in-out, transform 0.2s ease-in-out, background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.2s 0.2s ease-in-out, width 1s 1s ease-in-out, transform 0.2s ease-in-out, background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.2s 0.2s ease-in-out, width 1s 1s ease-in-out, transform 0.2s ease-in-out, background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

header .menu-hamburger span, header .menu-hamburger span:after, header .menu-hamburger span:before {
  content: '';
  -webkit-transition: top 0.2s 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: top 0.2s 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: top 0.2s 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.2s 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.2s 0.2s ease-in-out, transform 0.2s ease-in-out, background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

header.sticky_js {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  top: -50px;
}

@media (max-width: 1230px) {
  header.sticky_js {
    top: -40px;
  }
}

header.sticky_js .header--main {
  padding: 11px 42px;
}

@media (max-width: 1360px) {
  header.sticky_js .header--main {
    padding: 11px 23px 12px;
  }
}

header.sticky_js .header--main .logo img {
  width: 187px;
  height: auto;
}

@media (max-width: 1230px) {
  header.sticky_js .header--main .logo img {
    width: 156px;
  }
}

header.sticky_js .header--main .patient-login-language {
  display: none;
}

header.sticky_js .header--main .line-colors {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 0;
}

header.sticky_js .menu-hamburger.mh-open {
  top: 17px;
}

body.active-header_js .menu-hamburger span {
  background: transparent !important;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

@media (max-width: 1230px) {
  body.active-header_js .menu-hamburger span {
    background: #ffffff;
  }
}

body.active-header_js .menu-hamburger span:before, body.active-header_js .menu-hamburger span:after {
  content: '';
  top: 0;
  -webkit-transition: top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -ms-transition: top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -o-transition: top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
}

@media (max-width: 1230px) {
  body.active-header_js .menu-hamburger span:before, body.active-header_js .menu-hamburger span:after {
    background: #ffffff;
  }
}

body.active-header_js .menu-hamburger span:before {
  content: '';
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.active-header_js .menu-hamburger span:after {
  content: '';
  width: 100%;
  -webkit-transition: top 0.2s ease-in-out, width 0.2s 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out, width 0.2s 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -ms-transition: top 0.2s ease-in-out, width 0.2s 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -o-transition: top 0.2s ease-in-out, width 0.2s 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, width 0.2s 0.2s ease-in-out, transform 0.2s 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 1230px) {
  body.active-header_js .navigation {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (max-width: 1230px) {
  body.active-header_js .overlay-menu {
    opacity: 1;
    visibility: visible;
  }
}

footer {
  position: relative;
}

footer .line-colors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
}

footer .line-colors .line {
  width: calc( 100% / 4);
  height: 10px;
}

footer .line-colors .line-green {
  background: #00AB4E;
}

footer .line-colors .line-blue {
  background: #0D76BD;
}

footer .line-colors .line-yellow {
  background: #FBB040;
}

footer .line-colors .line-orange {
  background: #F15A29;
}

footer .footer-container-max {
  width: 100%;
  max-width: 1197px;
  padding: 0 20px;
  margin: 0 auto;
}

footer .footer--details {
  padding: 59px 0 57px;
  background: #F7F7F7;
}

@media (max-width: 768px) {
  footer .footer--details {
    padding: 69px 0 52px;
  }
}

footer .footer--details .footer--column {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  footer .footer--details .footer--column {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  footer .footer--details .footer--column {
    flex-direction: column;
  }
}

footer .footer--details .item--logo {
  width: 100%;
  max-width: 240px;
}

@media (max-width: 992px) {
  footer .footer--details .item--logo {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--logo {
    margin-bottom: 27px;
  }
}

footer .footer--details .item--logo p {
  font-size: 15px;
  font-weight: 600;
  color: #231F20;
  line-height: 27px;
}

footer .footer--details .item--logo p a {
  color: #231F20;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer--details .item--logo p a:hover {
  color: #00AB4E;
}

footer .footer--details .item--logo .logo {
  margin-bottom: 51px;
}

@media (max-width: 992px) {
  footer .footer--details .item--logo .logo {
    margin-bottom: 27px;
  }
}

footer .footer--details .item--mail-follow {
  width: 100%;
  max-width: 350px;
}

@media (max-width: 992px) {
  footer .footer--details .item--mail-follow {
    max-width: calc( 50% - 20px);
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow {
    max-width: 100%;
  }
}

footer .footer--details .item--mail-follow p {
  font-size: 16px;
  font-weight: 600;
  color: #231F20;
  text-transform: uppercase;
}

footer .footer--details .item--mail-follow .subscribe {
  margin: 14px 0 52px;
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe {
    margin: 14px 0 43px;
  }
}

footer .footer--details .item--mail-follow .subscribe .ajax-loader {
  display: none;
}

footer .footer--details .item--mail-follow .subscribe .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 16px;
}

footer .footer--details .item--mail-follow .subscribe .wpcf7-not-valid-tip {
  position: absolute;
  top: -11px;
  left: 0;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe .subs--form {
    flex-direction: column;
  }
}

footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"] {
  width: 100%;
  max-width: 208px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #231F20;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"]::-webkit-input-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"]::-moz-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"]:-ms-input-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"]:-moz-placeholder {
  color: #C4C4C4;
}

@media (max-width: 992px) {
  footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"] {
    max-width: calc( 100% - 134px);
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe .subs--form input[type="email"] {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe .subs--form input[type="submit"] {
    width: 125px;
    margin-top: 22px;
  }
}

footer .footer--details .item--mail-follow .subscribe #email_address_label_1, footer .footer--details .item--mail-follow .subscribe #gdpr_text {
  display: none;
}

footer .footer--details .item--mail-follow .subscribe #ctct_form_1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 1px;
  margin-top: 13px;
}

footer .footer--details .item--mail-follow .subscribe #email_address_field_1 {
  position: relative;
  margin-bottom: 0;
}

footer .footer--details .item--mail-follow .subscribe .ctct-form-defaults {
  padding: 0;
  background: 0;
}

footer .footer--details .item--mail-follow .subscribe #email_address_1 {
  width: 100%;
  max-width: 208px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #231F20;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #C4C4C4;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

footer .footer--details .item--mail-follow .subscribe #email_address_1::-webkit-input-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe #email_address_1::-moz-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe #email_address_1:-ms-input-placeholder {
  color: #C4C4C4;
}

footer .footer--details .item--mail-follow .subscribe #email_address_1:-moz-placeholder {
  color: #C4C4C4;
}

@media (max-width: 992px) {
  footer .footer--details .item--mail-follow .subscribe #email_address_1 {
    max-width: calc( 100% - 134px);
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe #email_address_1 {
    max-width: 100%;
  }
}

footer .footer--details .item--mail-follow .subscribe .ctct-form-button {
  display: block;
  max-width: 124px;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #F57B31;
  padding: 11px 15px;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer--details .item--mail-follow .subscribe .ctct-form-button:hover {
  text-transform: uppercase;
  border: 0px;
  background: #00AB4E;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  footer .footer--details .item--mail-follow .subscribe .ctct-form-button {
    width: 125px;
    margin-top: 22px;
  }
}

footer .footer--details .item--mail-follow .subscribe .ctct-form-errorMessage {
  position: absolute;
  top: 50px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

footer .footer--details .item--mail-follow .subscribe #success_message_1 h2 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #231F20;
  text-transform: uppercase;
  margin-top: 10px;
}

footer .footer--details .item--mail-follow .subscribe #success_message_1 .ctct-form-text {
  font-size: 14px;
  margin: 10px 0 0;
  text-transform: none;
}

footer .footer--details .item--mail-follow .follow p {
  text-transform: none;
}

footer .footer--details .item--mail-follow .follow .follow--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 13px;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer--details .item--mail-follow .follow .follow--list:hover a {
  opacity: 0.5;
}

footer .footer--details .item--mail-follow .follow .follow--list a {
  display: block;
  margin-left: 36px;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer--details .item--mail-follow .follow .follow--list a:first-of-type {
  margin-left: 0;
}

footer .footer--details .item--mail-follow .follow .follow--list a:hover {
  opacity: 1 !important;
}

footer .footer--details .item--link {
  width: 100%;
  max-width: 297px;
  margin-top: 9px;
}

@media (max-width: 992px) {
  footer .footer--details .item--link {
    max-width: calc( 50% - 20px);
  }
}

@media (max-width: 768px) {
  footer .footer--details .item--link {
    max-width: 100%;
    margin-top: 41px;
  }
}

footer .footer--details .item--link .link {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  footer .footer--details .item--link .link {
    margin-bottom: 28px;
    max-width: 379px;
  }
}

footer .footer--details .item--link .link ul {
  display: flex;
  flex-wrap: wrap;
}

footer .footer--details .item--link .link ul li {
  width: 50%;
}

footer .footer--details .item--link .link a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #231F20;
  padding: 12px 0;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

footer .footer--details .item--link .link a.active, footer .footer--details .item--link .link a:hover {
  color: #00AB4E;
}

footer .footer--details .item--link .link a.active:before, footer .footer--details .item--link .link a:hover:before {
  top: -5px;
  width: 30px;
  height: 5px;
  opacity: 1;
}

footer .footer--details .item--link .seal--icons img {
  margin-left: 30px;
}

@media (max-width: 768px) {
  footer .footer--details .item--link .seal--icons img {
    width: 70px;
    height: auto;
    margin-left: 29px;
  }
}

footer .footer--details .item--link .seal--icons img:first-of-type {
  margin-left: 0;
}

footer .footer--copyright {
  background: #0D76BD;
  padding: 13px 0;
}

@media (max-width: 992px) {
  footer .footer--copyright {
    padding: 24px 0 25px;
  }
}

footer .footer--copyright p {
  font-size: 13px;
  color: #ffffff;
  line-height: 15px;
}

footer .footer--copyright p a {
  color: #ffffff;
  text-decoration: underline;
}

footer .footer--copyright .footer--copyright-wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  footer .footer--copyright .footer--copyright-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .footer--copyright .footer--copyright-wrap p {
    text-align: center;
    line-height: 23px;
  }
}

footer .footer--copyright .footer--copyright-wrap .disclaimer {
  padding-right: 20px;
}

@media (max-width: 992px) {
  footer .footer--copyright .footer--copyright-wrap .disclaimer {
    padding-right: 0;
  }
}

footer .footer--copyright .footer--copyright-wrap .copyright {
  padding-left: 20px;
}

@media (max-width: 992px) {
  footer .footer--copyright .footer--copyright-wrap .copyright {
    padding-left: 0;
    margin-top: 14px;
  }
  footer .footer--copyright .footer--copyright-wrap .copyright span {
    display: none;
  }
  footer .footer--copyright .footer--copyright-wrap .copyright a {
    display: block;
  }
}

section#slider {
  position: relative;
  background: #FCFCFC;
  margin-bottom: 92px;
}

@media (max-width: 992px) {
  section#slider {
    padding-top: 62px;
  }
}

section#slider .item {
  position: relative;
  display: flex;
  align-items: center;
  height: 683px;
}

@media (max-width: 992px) {
  section#slider .item {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
  }
}

section#slider .item .slider--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 992px) {
  section#slider .item .slider--bg {
    position: relative;
    height: 300px;
    order: 2;
    background-size: contain !important;
  }
}

section#slider .item .slider--line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 83px;
  background: #029D4A;
  z-index: 1;
}

@media (max-width: 992px) {
  section#slider .item .slider--line {
    height: 44px;
  }
}

section#slider .item .content--container {
  display: flex;
  width: 100%;
  padding: 0 0 0 110px;
}

@media (max-width: 1230px) {
  section#slider .item .content--container {
    padding: 0 0 0 32px;
  }
}

@media (max-width: 992px) {
  section#slider .item .content--container {
    padding: 0 32px;
    margin-bottom: 73px;
  }
}

section#slider .item .content {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 3;
}

@media (max-width: 1230px) {
  section#slider .item .content {
    max-width: 380px;
  }
}

@media (max-width: 992px) {
  section#slider .item .content {
    max-width: 100%;
  }
}

section#slider .item .content .title {
  font-size: 60px;
  margin-bottom: 18px;
  line-height: 70px;
}

@media (max-width: 1230px) {
  section#slider .item .content .title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 992px) {
  section#slider .item .content .title {
    font-size: 35px;
    margin-bottom: 14px;
    line-height: 45px;
  }
}

@media (max-width: 1230px) {
  section#slider .item .content p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#slider .item .content .btn {
  margin: 22px 0 0;
}

@media (max-width: 1230px) {
  section#slider .item .content .btn {
    width: 156px;
  }
}

@media (max-width: 992px) {
  section#slider .item .content .btn {
    margin: 24px 0 0;
  }
}

section#slider .slider--right-fullwidth .content--container {
  justify-content: flex-end;
  padding: 0 110px 0 0;
}

@media (max-width: 1230px) {
  section#slider .slider--right-fullwidth .content--container {
    padding: 0 32px 0 0;
  }
}

@media (max-width: 992px) {
  section#slider .slider--right-fullwidth .content--container {
    padding: 0 32px;
    margin-bottom: 73px;
  }
}

section#slider .slider--right-fullwidth .slider--line {
  height: 82px;
}

section#slider .slider--right-fullwidth .dancing-girl {
  position: absolute;
  bottom: 63px;
  right: 54px;
  z-index: 2;
}

@media (max-width: 992px) {
  section#slider .slider--right-fullwidth .dancing-girl {
    display: none;
  }
}

section#slider .slider--right-half-fullwidth .slider--bg {
  width: 50%;
  height: 100%;
}

@media (max-width: 992px) {
  section#slider .slider--right-half-fullwidth .slider--bg {
    position: relative;
    width: 100%;
    height: 300px;
    order: 2;
    background-position: top center !important;
    background-size: cover !important;
  }
}

section#slider .slider--right-half-fullwidth .content--container {
  justify-content: flex-end;
  padding: 0 110px 0 0;
}

@media (max-width: 1230px) {
  section#slider .slider--right-half-fullwidth .content--container {
    padding: 0 32px 0 0;
  }
}

@media (max-width: 992px) {
  section#slider .slider--right-half-fullwidth .content--container {
    padding: 0 32px;
    margin-bottom: 73px;
  }
}

section#slider .slider--right-half-fullwidth .tri--trees {
  position: absolute;
  bottom: 0px;
  right: 90px;
  z-index: 2;
}

@media (max-width: 992px) {
  section#slider .slider--right-half-fullwidth .tri--trees {
    display: none;
  }
}

section#slider .slider--left-maxwidth .slider--bg {
  position: absolute;
  top: 50%;
  left: inherit;
  right: 58px;
  max-width: 625px;
  height: 550px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1230px) {
  section#slider .slider--left-maxwidth .slider--bg {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  section#slider .slider--left-maxwidth .slider--bg {
    position: relative;
    top: 0;
    right: 0;
    max-width: calc( 100% - 72px);
    height: 300px;
    background-size: cover !important;
    margin: 0 40px 0 32px;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

section#slider .slider--left-maxwidth .slider-shape-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 341px;
  height: 217px;
  background: #00AB4E;
  z-index: 1;
}

@media (max-width: 992px) {
  section#slider .slider--left-maxwidth .slider-shape-bg {
    width: 170px;
    height: 118px;
  }
}

section#slider .slider--left-maxwidth .tree {
  position: absolute;
  bottom: -76px;
  left: 416px;
}

@media (max-width: 1230px) {
  section#slider .slider--left-maxwidth .tree {
    display: none;
  }
}

section#slider .slider--left-dark-fullwidth .content .title {
  color: #ffffff;
}

@media (max-width: 992px) {
  section#slider .slider--left-dark-fullwidth .content .title {
    color: #0D76BD;
  }
}

section#slider .slider--left-dark-fullwidth .content p {
  color: #ffffff;
}

@media (max-width: 992px) {
  section#slider .slider--left-dark-fullwidth .content p {
    color: #231F20;
  }
}

section#slider .owl-dots {
  position: absolute;
  bottom: -50px;
  width: 100%;
  text-align: center;
}

section#slider .owl-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  border-radius: 100%;
  margin: 0 10px;
}

section#slider .owl-dots button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #F57B31;
  border-radius: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0);
  -o-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

section#slider .owl-dots button:hover span, section#slider .owl-dots button.active span {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
  -moz-transform: translate3d(-50%, -50%, 0) scale(1);
  -ms-transform: translate3d(-50%, -50%, 0) scale(1);
  -o-transform: translate3d(-50%, -50%, 0) scale(1);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

section#content-center-box {
  position: relative;
  padding-bottom: 61px;
}

@media (max-width: 768px) {
  section#content-center-box {
    padding-bottom: 44px;
  }
}

section#content-center-box .ccb--background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 248px;
  z-index: -1;
}

section#content-center-box .ccb--box {
  background: #ffffff;
  padding: 98px 110px 49px;
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  section#content-center-box .ccb--box {
    padding: 55px 26px;
  }
}

section#content-center-box .ccb--box h4 {
  margin-bottom: 34px;
  text-align: center;
}

section#donate {
  position: relative;
  background: #ffffff;
  padding: 90px 0 175px;
  overflow: hidden;
}

@media (max-width: 992px) {
  section#donate {
    padding: 59px 0 136px;
  }
}

@media (max-width: 992px) {
  section#donate .container-max {
    padding: 0 31px;
  }
}

@media (max-width: 992px) {
  section#donate .donate--column-container {
    padding: 0;
  }
}

section#donate .shape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../src/images/shape-bg.svg") no-repeat bottom right;
  background-size: 100%;
  z-index: 1;
}

section#donate .donate--headline {
  position: relative;
  background: #ffffff;
  padding: 77px 73px;
  border: 8px solid #0D76BD;
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 1230px) {
  section#donate .donate--headline {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  section#donate .donate--headline {
    padding: 39px 28px 226px;
    border: 6px solid #0D76BD;
  }
}

section#donate .donate--headline h3 {
  max-width: 467px;
}

@media (max-width: 992px) {
  section#donate .donate--headline h3 {
    max-width: 100%;
  }
}

section#donate .donate--headline .donate-img {
  position: absolute;
  bottom: 37px;
  bottom: -125px;
  right: -95px;
}

@media (max-width: 1230px) {
  section#donate .donate--headline .donate-img {
    right: -28px;
  }
}

@media (max-width: 992px) {
  section#donate .donate--headline .donate-img {
    right: -37px;
    bottom: 31px;
  }
}

@media (max-width: 992px) {
  section#donate .donate--headline .donate-img img {
    width: 300px;
    height: auto;
  }
}

section#donate .donate--headline .donate-content {
  position: absolute;
  bottom: -261px;
  bottom: -393px;
  right: -95px;
  width: 100%;
  max-width: 500px;
  max-width: 470px;
  background: #0D76BD;
  padding: 58px 58px 64px;
  z-index: 3;
  margin-right: 30px;
}

@media (max-width: 1230px) {
  section#donate .donate--headline .donate-content {
    right: -28px;
  }
}

@media (max-width: 992px) {
  section#donate .donate--headline .donate-content {
    right: -37px;
    bottom: -247px;
    max-width: 300px;
    padding: 47px 38px;
  }
}

section#donate .donate--headline .donate-content p {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  line-height: 35px;
}

@media (max-width: 992px) {
  section#donate .donate--headline .donate-content p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#donate .donate--headline .donate-content .btn {
  margin: 24px 0 0;
}

section#donate .donate--column {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 117px;
  margin-top: 230px;
  z-index: 2;
}

@media (max-width: 992px) {
  section#donate .donate--column {
    flex-direction: column;
    margin-top: 250px;
  }
}

section#donate .donate--column .donate--item {
  width: calc( 50% - 43px);
  margin-top: 170px;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 69px !important;
  }
}

section#donate .donate--column .donate--item:nth-child(2) {
  margin-top: 230px;
}

section#donate .donate--column .donate--item .box-background {
  position: absolute;
  bottom: -65px;
  height: 62%;
  z-index: 1;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item .box-background {
    bottom: -30px;
  }
}

section#donate .donate--column .donate--item:nth-child(odd) {
  margin-top: -25px;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(odd) {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

section#donate .donate--column .donate--item:nth-child(odd):first-of-type {
  margin-top: 0;
}

section#donate .donate--column .donate--item:nth-child(odd) .box-background {
  left: 0;
  width: 80%;
  background: #00AB4E;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(odd) .box-background {
    width: 72%;
  }
}

section#donate .donate--column .donate--item:nth-child(odd) .donate--image {
  justify-content: flex-end;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(odd) .donate--image {
    display: block;
  }
  section#donate .donate--column .donate--item:nth-child(odd) .donate--image img {
    margin-left: 30px;
  }
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(even) {
    justify-content: flex-end;
    align-items: flex-end;
  }
}

section#donate .donate--column .donate--item:nth-child(even) .box-background {
  right: 0;
  width: 51.1%;
  background: #0D76BD;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(even) .box-background {
    width: 49%;
  }
}

section#donate .donate--column .donate--item:nth-child(even) .donate--image {
  justify-content: flex-start;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item:nth-child(even) .donate--image {
    display: block;
  }
  section#donate .donate--column .donate--item:nth-child(even) .donate--image img {
    margin-right: 30px;
  }
}

section#donate .donate--column .donate--item .donate--image {
  display: flex;
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item .donate--image {
    margin-bottom: 50px;
    width: calc( 100% - 31px);
  }
}

section#donate .donate--column .donate--item .donate--image img {
  position: relative;
  display: block;
  width: calc( 100% - 30px);
  height: auto;
  z-index: 2;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item .donate--content-column {
    padding: 0 30px;
  }
}

section#donate .donate--column .donate--item h4 {
  margin-bottom: 26px;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item h4 {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 35px;
  }
}

section#donate .donate--column .donate--item p {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 25px;
  }
}

section#donate .donate--column .donate--item .btn {
  margin: 23px 0 0;
}

@media (max-width: 992px) {
  section#donate .donate--column .donate--item .btn {
    margin: 10px 0 0;
  }
}

section#testimonials {
  position: relative;
  background: #F7F7F7;
  padding: 0 0 168px;
}

@media (max-width: 992px) {
  section#testimonials {
    padding: 0 0 139px;
  }
}

section#testimonials h3 {
  text-align: center;
}

@media (max-width: 1360px) {
  section#testimonials .container-max {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  section#testimonials .container-max {
    padding: 0 30px;
  }
}

section#testimonials .shape-triple {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

section#testimonials .owl-carousel {
  position: relative;
  background: #ffffff;
  margin-top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel {
    margin-top: 25px;
  }
}

section#testimonials .owl-carousel .item {
  position: relative;
  background: #ffffff;
  padding: 163px 112px 100px;
  text-align: center;
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel .item {
    padding: 123px 34px 37px;
  }
}

section#testimonials .owl-carousel .item:before {
  content: '\201C';
  position: absolute;
  top: 56px;
  left: 50%;
  font-size: 100px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #0D76BD;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel .item:before {
    top: 40px;
  }
}

section#testimonials .owl-carousel .item p {
  font-size: 25px;
  line-height: 35px;
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel .item p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#testimonials .owl-carousel .item p.author {
  margin-top: 34px;
  line-height: 30px;
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel .item p.author {
    font-size: 20px;
    margin-top: 38px;
    line-height: 30px;
  }
  section#testimonials .owl-carousel .item p.author strong {
    display: block;
  }
}

section#testimonials .owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -7px;
}

@media (max-width: 992px) {
  section#testimonials .owl-carousel .owl-nav {
    display: none;
  }
}

section#testimonials .owl-carousel .owl-nav span {
  display: none;
}

section#testimonials .owl-carousel .owl-nav button {
  width: 14px;
  height: 26px;
}

section#testimonials .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -67px;
  background: url("../../src/images/icon-prev.svg") no-repeat;
  background-size: 14px 26px;
}

@media (max-width: 1360px) {
  section#testimonials .owl-carousel .owl-nav .owl-prev {
    left: -30px;
  }
}

section#testimonials .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -67px;
  background: url("../../src/images/icon-next.svg") no-repeat;
  background-size: 14px 26px;
}

@media (max-width: 1360px) {
  section#testimonials .owl-carousel .owl-nav .owl-next {
    right: -30px;
  }
}

section#testimonials .owl-carousel .owl-dots {
  position: absolute;
  bottom: -89px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  section#testimonials .owl-carousel .owl-dots {
    bottom: -43px;
  }
}

section#testimonials .owl-carousel .owl-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  border-radius: 100%;
  margin: 0 10px;
}

section#testimonials .owl-carousel .owl-dots button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #F57B31;
  border-radius: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0);
  -o-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

section#testimonials .owl-carousel .owl-dots button:hover span, section#testimonials .owl-carousel .owl-dots button.active span {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
  -moz-transform: translate3d(-50%, -50%, 0) scale(1);
  -ms-transform: translate3d(-50%, -50%, 0) scale(1);
  -o-transform: translate3d(-50%, -50%, 0) scale(1);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

section#donate-banner {
  background: #0D76BD;
  padding: 82px 0 142px;
}

@media (max-width: 992px) {
  section#donate-banner {
    padding: 60px 0 66px;
  }
}

section#donate-banner .donate-banner--column {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column {
    flex-direction: column;
    align-items: flex-start;
  }
}

section#donate-banner .donate-banner--column .item {
  position: relative;
}

section#donate-banner .donate-banner--column .item.item--thumbnail {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 501px;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item.item--thumbnail {
    display: block;
    max-width: 100%;
    justify-content: flex-start;
    padding-left: 17px;
  }
}

section#donate-banner .donate-banner--column .item.item--thumbnail img {
  width: 100%;
  max-width: 431px;
  height: auto;
  z-index: 2;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item.item--thumbnail img {
    position: relative;
  }
}

section#donate-banner .donate-banner--column .item.item--content {
  width: 100%;
  max-width: 488px;
  padding-left: 40px;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item.item--content {
    max-width: 100%;
    padding-left: 0;
    margin-top: 81px;
  }
}

section#donate-banner .donate-banner--column .item h2 {
  color: #ffffff;
  margin-bottom: 46px;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 27px;
  }
}

section#donate-banner .donate-banner--column .item p {
  color: #ffffff;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }
}

section#donate-banner .donate-banner--column .item .thumbnail--shape {
  position: absolute;
  bottom: -42px;
  left: -32px;
  z-index: 1;
}

@media (max-width: 992px) {
  section#donate-banner .donate-banner--column .item .thumbnail--shape img {
    width: 100%;
    max-width: 290px;
    height: auto;
  }
}

section#blog-home {
  background: #ffffff;
  padding: 100px 0 84px;
}

@media (max-width: 992px) {
  section#blog-home {
    padding: 61px 0 84px;
  }
}

section#blog-home .blog--headline {
  width: 100%;
  max-width: 705px;
  padding: 0 30px;
  margin: 0 auto 62px;
  text-align: center;
}

@media (max-width: 992px) {
  section#blog-home .blog--headline {
    margin: 0 auto 37px;
  }
}

section#blog-home .blog--headline h2 {
  margin-bottom: 23px;
}

@media (max-width: 992px) {
  section#blog-home .blog--headline h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 18px;
  }
}

@media (max-width: 992px) {
  section#blog-home .blog--headline p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#blog-home .blog--listings {
  display: flex;
  justify-content: space-between;
  padding: 0 64px;
}

@media (max-width: 992px) {
  section#blog-home .blog--listings {
    padding: 0 30px;
  }
}

section#blog-home .blog--listings .item:hover h5 {
  color: #0D76BD;
}

section#blog-home .blog--listings .item:hover .category span {
  background: #00AB4E;
}

section#blog-home .blog--listings .thumbnail {
  position: relative;
}

section#blog-home .blog--listings .thumbnail .category {
  position: absolute;
  top: 29px;
  left: 25px;
  display: flex;
}

@media (max-width: 992px) {
  section#blog-home .blog--listings .thumbnail .category {
    top: 20px;
    left: 20px;
  }
}

section#blog-home .blog--listings .thumbnail .category span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #0D76BD;
  padding: 3px 21px 3px 20px;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 15px;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

section#blog-home .blog--listings .content {
  background: #F7F7F7;
  padding: 25px 31px 31px;
}

@media (max-width: 992px) {
  section#blog-home .blog--listings .content {
    padding: 34px 33px 34px;
  }
}

section#blog-home .blog--listings .content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 7px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 992px) {
  section#blog-home .blog--listings .content h5 {
    margin-bottom: 14px;
  }
}

section#blog-home .blog--listings .content p {
  font-size: 16px;
  line-height: 24px;
}

section#blog-home .blog--listings .content p.date {
  font-size: 14px;
  font-weight: 600;
  color: #838383;
  margin-top: 25px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  section#blog-home .blog--listings .content p.date {
    margin-top: 13px;
  }
}

section#blog-home .blog--listings .owl-dots {
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 100%;
  text-align: center;
}

section#blog-home .blog--listings .owl-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  border-radius: 100%;
  margin: 0 10px;
}

section#blog-home .blog--listings .owl-dots button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #F57B31;
  border-radius: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0);
  -o-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

section#blog-home .blog--listings .owl-dots button:hover span, section#blog-home .blog--listings .owl-dots button.active span {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
  -moz-transform: translate3d(-50%, -50%, 0) scale(1);
  -ms-transform: translate3d(-50%, -50%, 0) scale(1);
  -o-transform: translate3d(-50%, -50%, 0) scale(1);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

section#blog-home .btn--all {
  margin-top: 44px;
}

@media (max-width: 992px) {
  section#blog-home .btn--all {
    margin-top: 91px;
  }
}

section#blog-home .btn--all .btn {
  width: 150px;
}

section#landing-banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  height: 508px;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 992px) {
  section#landing-banner {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
  }
}

section#landing-banner .content--container {
  display: flex;
  width: 100%;
}

@media (max-width: 992px) {
  section#landing-banner .content--container {
    padding: 0 32px;
    margin-bottom: 73px;
    order: 1;
  }
}

section#landing-banner .content {
  position: relative;
  width: 100%;
  max-width: 440px;
  z-index: 3;
}

@media (max-width: 1230px) {
  section#landing-banner .content {
    max-width: 380px;
  }
}

@media (max-width: 992px) {
  section#landing-banner .content {
    max-width: 100%;
  }
}

section#landing-banner .content .title {
  font-size: 55px;
  line-height: 65px;
}

@media (max-width: 1230px) {
  section#landing-banner .content .title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 992px) {
  section#landing-banner .content .title {
    font-size: 35px;
    line-height: 40px;
  }
}

section#landing-banner .slider--bg {
  position: absolute;
  top: 89px;
  right: 70px;
  width: 100%;
  max-width: 685px;
  height: 448px;
  z-index: 2;
}

@media (max-width: 1230px) {
  section#landing-banner .slider--bg {
    max-width: 530px;
    right: 32px;
  }
}

@media (max-width: 992px) {
  section#landing-banner .slider--bg {
    position: relative;
    top: 0;
    right: 0;
    max-width: calc( 100% - 35px);
    height: 222px;
    background-size: cover !important;
    order: 2;
  }
}

section#landing-banner .shape-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 390px;
  height: 625px;
  background: #0D76BD;
}

@media (max-width: 992px) {
  section#landing-banner .shape-bg {
    width: 50%;
    height: 309px;
    top: inherit;
    bottom: -43px;
  }
}

section#center-content {
  position: relative;
  background: #F7F7F7;
  padding: 178px 0 97px;
}

@media (max-width: 992px) {
  section#center-content {
    padding: 93px 0 95px;
  }
}

section#center-content .shape-triple {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  section#center-content .shape-triple img {
    width: 205px;
    height: auto;
  }
}

section#center-content .content--container {
  position: relative;
  width: 100%;
  max-width: 818px;
  margin: 0 auto;
  padding: 0 39px;
  z-index: 2;
}

section#center-content .content--container p {
  font-size: 30px;
  font-weight: 600;
  color: #231F20;
  line-height: 40px;
}

@media (max-width: 992px) {
  section#center-content .content--container p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
}

section#content-highlights {
  position: relative;
  background: #ffffff;
  padding: 131px 0 104px;
}

@media (max-width: 992px) {
  section#content-highlights {
    padding: 45px 0 91px;
  }
}

@media (max-width: 768px) {
  section#content-highlights {
    padding: 45px 32px 89px;
  }
}

section#content-highlights h3 {
  font-size: 40px;
  color: #0D76BD;
  line-height: 50px;
  text-align: center;
}

@media (max-width: 992px) {
  section#content-highlights h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

section#content-highlights .ch--background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 248px;
  z-index: 1;
}

@media (max-width: 768px) {
  section#content-highlights .ch--background {
    height: 202px;
  }
}

section#content-highlights .z-index-top {
  position: relative;
  z-index: 2;
}

section#content-highlights .ch--column {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 82px;
}

@media (max-width: 992px) {
  section#content-highlights .ch--column {
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  section#content-highlights .ch--column {
    flex-direction: column;
  }
}

section#content-highlights .ch--column .ch--item {
  width: 33%;
  max-width: 381px;
  padding: 0 28px;
}

@media (max-width: 992px) {
  section#content-highlights .ch--column .ch--item {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  section#content-highlights .ch--column .ch--item {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 48px;
  }
  section#content-highlights .ch--column .ch--item:first-of-type {
    margin-top: 0;
  }
}

section#content-highlights .ch--column .ch--item .ch--content {
  position: relative;
  padding: 63px 52px 52px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 992px) {
  section#content-highlights .ch--column .ch--item .ch--content {
    padding: 47px 20px 52px;
  }
}

@media (max-width: 768px) {
  section#content-highlights .ch--column .ch--item .ch--content {
    padding: 47px 39px 52px;
  }
}

@media (max-width: 992px) {
  section#content-highlights .ch--column .ch--item .ch--content p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#content-highlights .ch--column .ch--item .ch--content .headline {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 47px;
}

@media (max-width: 992px) {
  section#content-highlights .ch--column .ch--item .ch--content .headline {
    font-size: 48px;
    margin-bottom: 21px;
    line-height: 45px;
  }
}

section#content-highlights .ch--column .ch--item .ch--content .headline.green {
  color: #00AB4E;
}

section#content-highlights .ch--column .ch--item .ch--content .headline.yellow {
  color: #FBB040;
}

section#content-highlights .ch--column .ch--item .ch--content .headline.red {
  color: #F15A29;
}

section#content-highlights .ch--column .ch--item .ch--content .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

section#content-highlights .ch--column .ch--item .ch--content .line.green {
  background: #00AB4E;
}

section#content-highlights .ch--column .ch--item .ch--content .line.yellow {
  background: #FBB040;
}

section#content-highlights .ch--column .ch--item .ch--content .line.red {
  background: #F15A29;
}

.divider {
  width: calc( 100% - 40px);
  max-width: 1088px;
  padding: 0 33px;
  margin: 0 auto;
  border-top: 2px solid #00AB4E;
}

@media (max-width: 992px) {
  .divider {
    width: calc( 100% - 66px);
  }
}

#main-content {
  padding-top: 56px;
}

@media (max-width: 768px) {
  #main-content {
    padding-top: 19px;
  }
}

#main-content h3 {
  width: 100%;
  max-width: 719px;
  font-size: 50px;
  line-height: 55px;
  text-align: center;
  margin: 0 auto 60px;
}

@media (max-width: 768px) {
  #main-content h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 28px;
  }
}

#main-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 59px 0 56px;
}

@media (max-width: 768px) {
  #main-content img {
    margin: 28px 0;
  }
}

#main-content p {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #main-content p {
    font-size: 18px;
    margin-bottom: 26px;
    line-height: 28px;
  }
}

#main-content p a {
  color: #231F20;
  text-decoration: underline;
}

.layout-content {
  background: #ffffff;
  padding: 119px 0 112px;
}

@media (max-width: 992px) {
  .layout-content {
    padding: 88px 0 84px;
  }
}

.layout-content .headline {
  width: 100%;
  max-width: 900px;
}

.layout-content .headline h3 {
  font-size: 40px;
  color: #0D76BD;
  margin-bottom: 31px;
  line-height: 50px;
}

@media (max-width: 768px) {
  .layout-content .headline h3 {
    font-size: 30px;
    margin-bottom: 28px;
    line-height: 40px;
  }
}

.layout-content .content {
  font-size: 19px;
  font-weight: 400;
  color: #231F20;
  line-height: 29px;
}

.layout-content .content p {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .layout-content .content p {
    font-size: 18px;
    margin-bottom: 26px;
    line-height: 28px;
  }
}

.layout-content .content p a {
  color: #231F20;
  text-decoration: underline;
}

.layout-content .content img {
  display: block;
  width: 100%;
  height: auto;
}

.layout-content .content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 27px;
}

.layout-content .content ul li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 9px;
  width: 6px;
  height: 6px;
  background: #231F20;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .layout-content .content ul li:last-of-type {
    margin-bottom: 0;
  }
}

.layout-content .content ul li p {
  margin-bottom: 0;
}

.layout-content .content ul li p a {
  color: #231F20;
  text-decoration: underline;
}

.layout-content .content ul li a {
  color: #231F20;
  text-decoration: underline;
}

section#layout-content-1 .content ul li p:not(:last-of-type) {
  margin-bottom: 10px;
}

section#layout-content-2 .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  section#layout-content-2 .content ul {
    flex-direction: column;
  }
}

section#layout-content-2 .content ul li {
  width: 50%;
  max-width: 485px;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  section#layout-content-2 .content ul li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  section#layout-content-2 .content ul li:last-of-type {
    margin-bottom: 0;
  }
}

section#layout-content-2 .content ul li p:not(:last-of-type) {
  margin-bottom: 10px;
}

section#layout-content-3 .content img {
  margin: 46px 0 60px;
}

@media (max-width: 768px) {
  section#layout-content-3 .content img {
    margin: 28px 0;
  }
}

section#layout-content-4 .content--column .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 87px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .item {
    flex-direction: column;
    margin-top: 60px;
  }
}

section#layout-content-4 .content--column .item:first-of-type {
  margin-top: 80px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .item:first-of-type {
    margin-top: 29px;
  }
}

section#layout-content-4 .content--column .item:nth-child(4n) .thumbnail, section#layout-content-4 .content--column .item:nth-child(4n - 1) .thumbnail {
  order: 2;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .item:nth-child(4n) .thumbnail, section#layout-content-4 .content--column .item:nth-child(4n - 1) .thumbnail {
    order: 1;
  }
}

section#layout-content-4 .content--column .item:nth-child(4n) .column--content, section#layout-content-4 .content--column .item:nth-child(4n - 1) .column--content {
  order: 1;
  padding-left: 0;
  padding-right: 82px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .item:nth-child(4n) .column--content, section#layout-content-4 .content--column .item:nth-child(4n - 1) .column--content {
    padding-right: 0;
    order: 2;
  }
}

section#layout-content-4 .content--column .thumbnail {
  width: 100%;
  max-width: 550px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .thumbnail {
    max-width: 100%;
  }
}

section#layout-content-4 .content--column .column--content {
  width: 100%;
  max-width: 538px;
  padding-left: 82px;
  margin-top: 24px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .column--content {
    max-width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

section#layout-content-4 .content--column .column--content h5 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 33px;
}

@media (max-width: 992px) {
  section#layout-content-4 .content--column .column--content h5 {
    font-size: 22px;
    margin-bottom: 22px;
    line-height: 32px;
  }
}

section#layout-content-4 .content--column .column--content p {
  margin-bottom: 23px;
}

section#layout-content-5 .content--column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 48px;
}

@media (max-width: 768px) {
  section#layout-content-5 .content--column {
    flex-direction: column;
    margin-top: 28px;
  }
}

section#layout-content-5 .content--column .item {
  width: calc( 50% - 20px);
  max-width: 500px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section#layout-content-5 .content--column .item {
    width: 100%;
    max-width: 100%;
  }
  section#layout-content-5 .content--column .item:last-of-type {
    margin-bottom: 0;
  }
}

section#layout-content-5 .content--column .item .btn-content-wrap {
  margin-top: 0;
}

section#layout-content-5 .content--column .item .btn-content-wrap a {
  margin: 0;
}

section#layout-content-5 .content--column .thumbnail {
  width: 100%;
  max-width: 425px;
  margin-bottom: 43px;
}

@media (max-width: 768px) {
  section#layout-content-5 .content--column .thumbnail {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

section#layout-content-5 .content--column .column--content h5 {
  font-size: 25px;
  margin-bottom: 19px;
}

section#layout-content-5 .btn-content-wrap {
  margin-top: 66px;
}

@media (max-width: 768px) {
  section#layout-content-5 .btn-content-wrap {
    margin-top: 47px;
  }
}

section#layout-content-5 .btn-content-wrap .btn {
  margin: 0 auto;
}

section#layout-content-6 .content--column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 82px;
}

@media (max-width: 768px) {
  section#layout-content-6 .content--column {
    flex-direction: column;
    margin-top: 29px;
  }
}

section#layout-content-6 .content--column .item {
  width: calc( 33.33% - 20px);
  max-width: 325px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section#layout-content-6 .content--column .item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }
  section#layout-content-6 .content--column .item:last-of-type {
    margin-bottom: 0;
  }
}

section#layout-content-6 .content--column .item .btn-content-wrap {
  margin-top: 0;
}

section#layout-content-6 .content--column .item .btn-content-wrap a {
  margin: 0;
}

section#layout-content-6 .content--column .thumbnail {
  width: 100%;
  max-width: 250px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  section#layout-content-6 .content--column .thumbnail {
    margin-bottom: 27px;
  }
}

section#layout-content-6 .content--column .column--content h5 {
  font-size: 25px;
  margin-bottom: 19px;
}

@media (max-width: 768px) {
  section#layout-content-6 .content--column .column--content h5 {
    margin-bottom: 16px;
  }
}

section#layout-content-6 .btn-content-wrap {
  margin-top: 26px;
}

@media (max-width: 768px) {
  section#layout-content-6 .btn-content-wrap {
    margin-top: 47px;
    margin-bottom: 7px;
  }
}

section#layout-content-6 .btn-content-wrap .btn {
  margin: 0 auto;
}

section#layout-content-7 .content--column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 82px;
}

@media (max-width: 768px) {
  section#layout-content-7 .content--column {
    flex-direction: column;
    margin-top: 48px;
  }
}

section#layout-content-7 .content--column .item {
  width: calc( 33.33% - 20px);
  max-width: 325px;
  margin-bottom: 38px;
  text-align: center;
}

@media (max-width: 768px) {
  section#layout-content-7 .content--column .item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }
}

section#layout-content-7 .content--column .item:last-of-type {
  margin-bottom: 0;
}

section#layout-content-7 .content--column .thumbnail {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 32px;
  border-radius: 100%;
  overflow: hidden;
}

section#layout-content-7 .content--column .column--content h5 {
  font-size: 25px;
  margin-bottom: 19px;
}

@media (max-width: 768px) {
  section#layout-content-7 .content--column .column--content h5 {
    margin-bottom: 14px;
  }
}

section#template-slider {
  padding-top: 160px;
}

@media (max-width: 1360px) {
  section#template-slider {
    padding-left: 29px;
    padding-right: 29px;
  }
}

@media (max-width: 992px) {
  section#template-slider {
    padding-top: 88px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  section#template-slider .container-max {
    padding: 0;
  }
}

section#template-slider .owl-carousel {
  position: relative;
  z-index: 2;
}

section#template-slider .owl-carousel .item {
  position: relative;
}

section#template-slider .owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -7px;
}

@media (max-width: 992px) {
  section#template-slider .owl-carousel .owl-nav {
    display: none;
  }
}

section#template-slider .owl-carousel .owl-nav span {
  display: none;
}

section#template-slider .owl-carousel .owl-nav button {
  width: 14px;
  height: 26px;
}

section#template-slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -67px;
  background: url("../../src/images/icon-prev.svg") no-repeat;
  background-size: 14px 26px;
}

@media (max-width: 1360px) {
  section#template-slider .owl-carousel .owl-nav .owl-prev {
    left: -30px;
  }
}

section#template-slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -67px;
  background: url("../../src/images/icon-next.svg") no-repeat;
  background-size: 14px 26px;
}

@media (max-width: 1360px) {
  section#template-slider .owl-carousel .owl-nav .owl-next {
    right: -30px;
  }
}

section#template-slider .owl-carousel .owl-dots {
  position: absolute;
  bottom: -46px;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  section#template-slider .owl-carousel .owl-dots {
    bottom: -40px;
  }
}

section#template-slider .owl-carousel .owl-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  border-radius: 100%;
  margin: 0 10px;
}

section#template-slider .owl-carousel .owl-dots button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #F57B31;
  border-radius: 100%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0);
  -o-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

section#template-slider .owl-carousel .owl-dots button:hover span, section#template-slider .owl-carousel .owl-dots button.active span {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
  -moz-transform: translate3d(-50%, -50%, 0) scale(1);
  -ms-transform: translate3d(-50%, -50%, 0) scale(1);
  -o-transform: translate3d(-50%, -50%, 0) scale(1);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

section#video {
  padding: 47px 0 100px;
}

@media (max-width: 768px) {
  section#video {
    padding: 25px 0 38px;
  }
}

@media (max-width: 768px) {
  section#video .container-max {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  section#video iframe {
    height: 409px;
  }
}

@media (max-width: 480px) {
  section#video iframe {
    height: 209px;
  }
}

section#banner-size {
  padding-bottom: 100px;
}

@media (max-width: 992px) {
  section#banner-size {
    padding-bottom: 51px;
  }
}

section#banner-size .banner-column {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("../../src/images/banner-bg.jpg") no-repeat center center;
  padding: 64px 73px 63px;
  background-size: cover;
}

@media (max-width: 992px) {
  section#banner-size .banner-column {
    padding: 50px 32px 54px;
  }
}

@media (max-width: 768px) {
  section#banner-size .banner-column {
    flex-direction: column;
    background: url("../../src/images/diagonal-mobile.jpg") no-repeat center;
    background-size: cover;
  }
}

section#banner-size .banner-column p {
  font-size: 27px;
  font-weight: 700;
  color: #ffffff;
  line-height: 35px;
}

@media (max-width: 768px) {
  section#banner-size .banner-column p {
    line-height: 27px;
  }
}

@media (max-width: 768px) {
  section#banner-size .banner-column .item {
    width: 100%;
  }
}

section#banner-size .banner-column .item-label {
  width: calc( 100% - 275px);
}

@media (max-width: 768px) {
  section#banner-size .banner-column .item-label {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section#banner-size .banner-column .item-label p {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
  }
}

@media (max-width: 768px) {
  section#banner-size .banner-column .btn {
    margin: 39px 0 0;
  }
}

section#center-content-layout {
  position: relative;
  background: #18AB4E;
  padding: 96px 0 80px;
}

@media (max-width: 768px) {
  section#center-content-layout {
    padding: 147px 0 131px;
  }
}

section#center-content-layout .shape-triple-1 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  section#center-content-layout .shape-triple-1 img {
    width: 134px;
    height: auto;
  }
}

section#center-content-layout .shape-triple-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  section#center-content-layout .shape-triple-2 img {
    width: 135px;
    height: auto;
  }
}

section#center-content-layout .content {
  position: relative;
  width: 100%;
  max-width: 797px;
  padding: 0 30px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

section#center-content-layout .content h3 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 27px;
  line-height: 50px;
}

@media (max-width: 768px) {
  section#center-content-layout .content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 40px;
  }
}

section#center-content-layout .content p {
  color: #ffffff;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  section#center-content-layout .content p {
    font-size: 18px;
    line-height: 28px;
  }
}

section#center-content-layout .content .btn {
  margin: 0 auto;
}

section#full-two-column {
  display: flex;
}

@media (max-width: 992px) {
  section#full-two-column {
    flex-direction: column;
  }
}

section#full-two-column .item-image {
  position: relative;
  width: 50%;
}

@media (max-width: 768px) {
  section#full-two-column .item-image {
    width: 100%;
  }
}

section#full-two-column .item-image .column-image {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  section#full-two-column .item-image .column-image {
    position: relative;
    height: 248px;
  }
}

section#full-two-column .item-content {
  position: relative;
  width: 50%;
  background: #0D76BD;
  padding: 86px 115px 78px;
  margin: 0 auto;
  z-index: 2;
}

@media (max-width: 992px) {
  section#full-two-column .item-content {
    padding: 86px 30px 78px;
  }
}

@media (max-width: 768px) {
  section#full-two-column .item-content {
    width: 100%;
    padding: 67px 30px 74px;
  }
}

section#full-two-column .item-content h3 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 50px;
}

@media (max-width: 768px) {
  section#full-two-column .item-content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

section#full-two-column .item-content p {
  color: #ffffff;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  section#full-two-column .item-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 28px;
  }
}

section#full-two-column .item-content .content-wrap {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  section#full-two-column .item-content .content-wrap {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section#full-two-column .item-content .btn {
    margin: 0 auto;
  }
}

section#blog-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 270px;
  padding: 0 30px;
}

section#blog-banner h1 {
  position: relative;
  font-size: 55px;
  color: #ffffff;
  line-height: 65px;
  text-align: center;
  z-index: 1;
}

@media (max-width: 768px) {
  section#blog-banner h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

section#blog-banner .blog-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  section#blog-banner .blog-banner-background {
    background: url("../../src/images/blog-banner-mobile.svg") no-repeat top left !important;
    background-size: cover !important;
  }
}

section#blog-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

section#blog-section .container-max {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
  z-index: 2;
}

section#blog-section .blog-column {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 1;
}

@media (max-width: 992px) {
  section#blog-section .blog-column {
    flex-direction: column;
  }
}

section#blog-section .blog-listings-wrap {
  width: 100%;
  max-width: 924px;
  background: #ffffff;
  padding: 0 56px 0 20px;
}

@media (max-width: 992px) {
  section#blog-section .blog-listings-wrap {
    max-width: 100%;
    padding: 0 32px;
  }
}

section#blog-section .blog-listings-wrap .loadmore {
  margin: 26px 0 107px;
}

@media (max-width: 768px) {
  section#blog-section .blog-listings-wrap .loadmore {
    margin: 0;
  }
}

section#blog-section .blog-listings-wrap .loadmore .btn {
  width: 160px;
}

section#blog-section .blog-sidebar {
  position: relative;
  width: 100%;
  max-width: 373px;
  background: #F7F7F7;
  padding: 77px 56px 120px 55px;
}

@media (max-width: 992px) {
  section#blog-section .blog-sidebar {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  section#blog-section .blog-sidebar {
    margin-top: 80px;
  }
}

section#blog-section .blog-sidebar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 500%;
  height: 100%;
  background: #F7F7F7;
  z-index: 1;
}

section#blog-section .blog-sidebar h2 {
  font-size: 20px;
  color: #231F20;
  margin-bottom: 10px;
  line-height: 25px;
}

section#blog-section .blog-sidebar .item {
  margin-top: 59px;
}

section#blog-section .blog-listings {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

@media (max-width: 1360px) {
  section#blog-section .blog-listings {
    flex-direction: column;
  }
}

section#blog-section .blog-listings .item {
  width: 100%;
  max-width: 396px;
  background: #F7F7F7;
  margin-bottom: 59px;
}

@media (max-width: 1360px) {
  section#blog-section .blog-listings .item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .item {
    margin-bottom: 35px;
  }
}

section#blog-section .blog-listings .item:hover h5 {
  color: #0D76BD;
}

section#blog-section .blog-listings .item:hover .category span {
  background: #00AB4E;
}

section#blog-section .blog-listings .thumbnail {
  position: relative;
}

section#blog-section .blog-listings .thumbnail .category {
  position: absolute;
  top: 29px;
  left: 25px;
  display: flex;
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .thumbnail .category {
    top: 18px;
    left: 9px;
  }
}

section#blog-section .blog-listings .thumbnail .category span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #0D76BD;
  padding: 3px 21px 3px 20px;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 15px;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .thumbnail .category span {
    font-size: 11px;
    line-height: 25px;
    padding: 3px 19px 3px 20px;
  }
}

section#blog-section .blog-listings .content {
  background: #F7F7F7;
  padding: 25px 31px 31px;
}

@media (max-width: 992px) {
  section#blog-section .blog-listings .content {
    padding: 34px 33px 34px;
  }
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .content {
    padding: 20px 15px 24px;
  }
}

section#blog-section .blog-listings .content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 7px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 992px) {
  section#blog-section .blog-listings .content h5 {
    margin-bottom: 14px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .content h5 {
    margin-bottom: 7px;
  }
}

section#blog-section .blog-listings .content p {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .content p {
    font-size: 14px;
  }
}

section#blog-section .blog-listings .content p.date {
  font-size: 14px;
  font-weight: 600;
  color: #838383;
  margin-top: 25px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  section#blog-section .blog-listings .content p.date {
    margin-top: 13px;
  }
}

@media (max-width: 768px) {
  section#blog-section .blog-listings .content p.date {
    font-size: 13px;
  }
}

section#blog-section .blog-listings .alm-btn-wrap .btn {
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #F57B31;
  padding: 0 38px;
  text-transform: uppercase;
  line-height: 17px;
  border-radius: 0px;
}

.search-blog {
  position: relative;
}

.search-blog .search-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 0px 12px 12px;
}

.search-blog .search-input {
  width: 100%;
  height: 41px;
  font-size: 14px;
  color: #231F20;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #A8A8A8;
}

.tags-list .tags-column {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -8px;
}

.tags-list .tags-column a {
  font-size: 13px;
  font-weight: 700;
  color: #231F20;
  padding: 8px 15px;
  margin: 8px;
  border: 1px solid #231F20;
  border-radius: 15px;
  text-transform: uppercase;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.tags-list .tags-column a:hover {
  background: #00AB4E;
  color: #fff;
  border: 1px solid #00AB4E;
}

.categories-list .categories-column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.categories-list .categories-column a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #231F20;
  line-height: 35px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.categories-list .categories-column a:hover {
  color: #00AB4E;
}

.categories-list .categories-column a:hover span {
  color: #00AB4E;
}

.categories-list .categories-column a span {
  display: block;
  color: #838383;
  margin-left: 8px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.archive-list .archive-column li {
  display: flex;
  align-items: center;
}

.archive-list .archive-column li:hover a {
  color: #00AB4E;
}

.archive-list .archive-column li:hover .counts {
  color: #00AB4E;
}

.archive-list .archive-column li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #231F20;
  line-height: 35px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.archive-list .archive-column li .counts {
  display: block;
  color: #838383;
  margin-left: 8px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.archive-page section#blog-banner {
  flex-direction: column;
  justify-content: center;
}

.archive-page section#blog-banner .content-banner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.archive-page section#blog-banner .content-banner h1 {
  margin: 30px 0 20px;
}

.archive-page section#blog-banner .content-banner .top-category {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  padding: 7px 12px;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 50px;
}

.archive-page section#blog-banner .content-banner .subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.archive-page section#blog-section {
  padding-top: 50px;
}

.archive-page section#blog-section:after {
  top: 50px;
  height: calc( 100% - 50px);
}

section#single-banner {
  display: flex;
  justify-content: center;
  padding: 79px 0 71px;
}

@media (max-width: 768px) {
  section#single-banner {
    padding: 22px 0;
  }
}

section#single-banner h1 {
  font-size: 50px;
  margin-bottom: 22px;
  line-height: 60px;
}

@media (max-width: 768px) {
  section#single-banner h1 {
    font-size: 30px;
    margin-bottom: 8px;
    line-height: 40px;
  }
}

section#single-banner .date {
  font-size: 15px;
  font-weight: 600;
  color: #838383;
  line-height: 24px;
  text-transform: uppercase;
}

section#single-banner .content {
  width: 100%;
  max-width: 638px;
  padding: 0 32px;
  margin: 0 auto;
  text-align: center;
}

.blog-single-content {
  position: relative;
  display: block;
}

.blog-single-content h2 {
  font-size: 35px;
  line-height: 35px;
  margin: 66px 0 34px;
}

@media (max-width: 768px) {
  .blog-single-content h2 {
    font-size: 22px;
    line-height: 32px;
    margin: 28px 0 16px;
  }
}

.blog-single-content h3 {
  font-size: 30px;
  line-height: 30px;
  margin: 40px 0 34px;
}

@media (max-width: 768px) {
  .blog-single-content h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0 14px;
  }
}

.blog-single-content h4 {
  font-size: 25px;
  line-height: 25px;
  margin: 30px 0 24px;
}

@media (max-width: 768px) {
  .blog-single-content h4 {
    font-size: 17px;
    line-height: 27px;
    margin: 20px 0 14px;
  }
}

.blog-single-content h5 {
  font-size: 20px;
  color: #0D76BD;
  line-height: 20px;
  margin: 20px 0 14px;
}

.blog-single-content p {
  margin-bottom: 29px;
}

@media (max-width: 768px) {
  .blog-single-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }
}

.blog-single-content ul {
  margin-bottom: 29px;
}

.blog-single-content ul li {
  position: relative;
  font-size: 19px;
  font-weight: 400;
  color: #231F20;
  padding-left: 20px;
  line-height: 29px;
}

.blog-single-content ul li:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #0D76BD;
}

.blog-single-content blockquote {
  margin: 20px;
  border-left: 4px solid #0D76BD;
  padding: 15px;
}

.blog-single-content blockquote strong {
  font-size: 16px;
  line-height: 22px;
}

.blog-single-content blockquote p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
  line-height: 22px;
}

.blog-single-content blockquote p:not(:last-of-type) {
  margin-bottom: 20px !important;
}

.blog-single-content blockquote p strong {
  font-weight: 700;
}

.blog-single-content .single-content-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 90px 0;
}

@media (max-width: 768px) {
  .blog-single-content .single-content-footer {
    flex-direction: column;
    margin: 40px 0 81px;
  }
}

.blog-single-content .single-content-footer .item {
  width: 50%;
}

@media (max-width: 768px) {
  .blog-single-content .single-content-footer .item {
    width: 100%;
  }
}

.blog-single-content .single-content-footer .item.tags-list {
  display: flex;
}

@media (max-width: 480px) {
  .blog-single-content .single-content-footer .item.tags-list {
    flex-wrap: wrap;
  }
}

.blog-single-content .single-content-footer .item.tags-list span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0D76BD;
  padding: 0 14px;
  margin-left: 16px;
  border: 1px solid #0D76BD;
  border-radius: 50px;
  text-transform: uppercase;
  line-height: 29px;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .blog-single-content .single-content-footer .item.tags-list span {
    font-size: 13px;
    margin: 0 16px 16px 0;
    line-height: 29px;
  }
}

.blog-single-content .single-content-footer .item.tags-list span:hover {
  background: #00AB4E;
  border: 1px solid #00AB4E;
}

.blog-single-content .single-content-footer .item.tags-list span:hover a {
  color: #fff;
}

.blog-single-content .single-content-footer .item.tags-list span a {
  color: #0D76BD;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-single-content .single-content-footer .item.tags-list span:first-of-type {
  margin-left: 0;
}

.blog-single-content .single-content-footer .item.share-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .blog-single-content .single-content-footer .item.share-list {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-single-content .single-content-footer .item.share-list {
    justify-content: flex-start;
    align-items: center;
  }
}

.blog-single-content .single-content-footer .item.share-list .share-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #0D76BD;
  text-transform: uppercase;
  line-height: 25px;
  border: 1px solid #0D76BD;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), border 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-single-content .single-content-footer .item.share-list .share-button:hover {
  background: #00AB4E;
  border: 1px solid #00AB4E;
}

.blog-single-content .single-content-footer .item.share-list .share-button:hover:after {
  opacity: 1;
}

.blog-single-content .single-content-footer .item.share-list .share-button:hover span {
  color: #ffffff;
}

.blog-single-content .single-content-footer .item.share-list .share-button span {
  margin-right: 9px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-single-content .single-content-footer .item.share-list .share-button:after {
  content: '';
  position: absolute;
  top: 9px;
  right: 18px;
  width: 5px;
  height: 12px;
  background: url("../../src/images/icon-share-white.svg") no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-single-content .single-content-footer .item.share-list .share-column {
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, width 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .blog-single-content .single-content-footer .item.share-list .share-column {
    width: 132px;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.blog-single-content .single-content-footer .item.share-list .share-column a {
  margin-left: 14px;
}

.blog-single-content .single-content-footer .item.share-list .share-column a svg circle, .blog-single-content .single-content-footer .item.share-list .share-column a svg path, .blog-single-content .single-content-footer .item.share-list .share-column a svg rect {
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-single-content .single-content-footer .item.share-list .share-column a:hover circle {
  fill: #00AB4E;
  stroke: #00AB4E !important;
}

.blog-single-content .single-content-footer .item.share-list .share-column a:hover path, .blog-single-content .single-content-footer .item.share-list .share-column a:hover rect {
  fill: #ffffff;
}

.blog-single-content .single-content-footer .item.share-list .share-column.active {
  width: 132px;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), width 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .blog-single-content .blog-sidebar {
    margin-top: 0;
  }
}

.related-wrap {
  margin-bottom: 92px;
}

@media (max-width: 768px) {
  .related-wrap {
    margin-bottom: 38px;
  }
}

.related-wrap h4 {
  color: #231F20;
  line-height: 35px;
}

@media (max-width: 768px) {
  .related-wrap h4 {
    font-size: 25px;
    margin-bottom: 37px;
    line-height: 35px;
  }
}

.related-wrap .related--post {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .related-wrap .related--post {
    flex-direction: column;
  }
}

.related-wrap .related--post .item {
  width: 100%;
  max-width: 396px;
}

@media (max-width: 768px) {
  .related-wrap .related--post .item {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.related-wrap .related--post .item:first-of-type {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .related-wrap .related--post .item:first-of-type {
    margin-right: 0;
  }
}

.related-wrap .related--post .item:last-of-type {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .related-wrap .related--post .item:last-of-type {
    margin-left: 0;
  }
}

.related-wrap .related--post .item:hover h5 {
  color: #0D76BD;
}

.related-wrap .related--post .item:hover .category span {
  background: #00AB4E;
}

.related-wrap .related--post .thumbnail {
  position: relative;
}

.related-wrap .related--post .thumbnail .category {
  position: absolute;
  top: 29px;
  left: 25px;
  display: flex;
}

@media (max-width: 768px) {
  .related-wrap .related--post .thumbnail .category {
    top: 11px;
    left: 12px;
  }
}

.related-wrap .related--post .thumbnail .category span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #0D76BD;
  padding: 3px 21px 3px 20px;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 15px;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .related-wrap .related--post .thumbnail .category span {
    font-size: 11px;
    line-height: 21px;
  }
}

.related-wrap .related--post .content {
  background: #ffffff;
  padding: 25px 0 0;
}

@media (max-width: 768px) {
  .related-wrap .related--post .content {
    padding: 17px 0 0;
  }
}

.related-wrap .related--post .content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #231F20;
  line-height: 30px;
  margin: 0 0 7px;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .related-wrap .related--post .content h5 {
    margin-bottom: 7px;
  }
}

.related-wrap .related--post .content .date {
  font-size: 14px;
  font-weight: 600;
  color: #838383;
  margin-top: 14px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .related-wrap .related--post .content .date {
    margin-top: 13px;
  }
}

@media (max-width: 768px) {
  .related-wrap .related--post .content .date {
    font-size: 13px;
  }
}

header.sticky_js #seach-form {
  top: 90px;
}

@media (max-width: 1230px) {
  header.sticky_js #seach-form {
    top: 79px;
  }
}

#seach-form {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  background: #1381C3;
  padding: 0 56px;
  display: none;
  -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1230px) {
  #seach-form {
    top: 96px;
    padding: 0 32px;
  }
}

#seach-form input[type="text"] {
  width: 100%;
  height: 60px;
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  line-height: 24px;
  background: transparent;
  border: 0;
}

@media (max-width: 768px) {
  #seach-form input[type="text"] {
    font-size: 18px;
  }
}

#seach-form input[type="text"]::placeholder {
  color: #ffffff;
  opacity: 1;
}

#seach-form input[type="text"]:-ms-input-placeholder {
  color: #ffffff;
}

#seach-form input[type="text"]::-ms-input-placeholder {
  color: #ffffff;
}

.search-toggle {
  position: relative;
  cursor: pointer;
}

.search-toggle.active .icon-search {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.search-toggle.active .icon-close {
  opacity: 1;
  visibility: visible;
}

.search-toggle .icon-search {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-toggle .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-result .page-header h1 {
  margin-bottom: 29px;
}

@media (max-width: 768px) {
  .search-result .page-header h1 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .search-result .container-max {
    padding: 0 20px;
  }
}

.search-result .result-form {
  position: relative;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .search-result .result-form {
    margin-bottom: 6px;
  }
}

.search-result .result-form input[type="text"] {
  width: 100%;
  height: 68px;
  font-size: 30px;
  font-weight: 700;
  color: #231F20;
  padding: 0 20px;
  border: 1px solid #C7C7C7;
}

@media (max-width: 768px) {
  .search-result .result-form input[type="text"] {
    height: 65px;
    font-size: 20px;
    padding: 0 23px;
  }
}

.search-result .result-form input[type="image"] {
  position: absolute;
  top: 19px;
  right: 32px;
}

@media (max-width: 768px) {
  .search-result .result-form input[type="image"] {
    width: 25px;
    height: 25px;
    top: 20px;
    right: 20px;
  }
}

.search-result .results-counts {
  margin-bottom: 63px;
}

@media (max-width: 768px) {
  .search-result .results-counts {
    margin-bottom: 30px;
  }
}

.search-result .results-counts p {
  font-size: 20px;
  font-weight: 700;
  color: #231F20;
  line-height: 55px;
}

@media (max-width: 768px) {
  .search-result .results-counts p {
    font-size: 15px;
  }
}

.search-result .search-content {
  padding-bottom: 109px;
}

@media (max-width: 768px) {
  .search-result .search-content {
    padding-bottom: 98px;
  }
}

.search-result .search-content li:not(:last-of-type) {
  padding-bottom: 77px;
  margin-bottom: 81px;
  border-bottom: 2px solid #00AB4E;
}

@media (max-width: 768px) {
  .search-result .search-content li:not(:last-of-type) {
    padding-bottom: 57px;
    margin-bottom: 59px;
  }
}

.search-result .search-title {
  margin-bottom: 31px;
}

@media (max-width: 768px) {
  .search-result .search-title {
    margin-bottom: 12px;
  }
}

.search-result .search-title h3 {
  font-size: 30px;
  color: #231F20;
  line-height: 29px;
}

@media (max-width: 768px) {
  .search-result .search-title h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

.search-result .search-title h3 a {
  color: #231F20;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-result .search-title h3 a:hover {
  color: #00AB4E;
}

.search-result .search-excerpt a {
  color: #231F20;
  text-decoration: underline;
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-result .search-excerpt a:hover {
  color: #00AB4E;
}

@media (max-width: 768px) {
  .search-result .search-excerpt a {
    display: block;
  }
}

@media (max-width: 768px) {
  .search-result .search-excerpt p {
    font-size: 18px;
    line-height: 28px;
  }
}

.search-result .pagination {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 115px 0 0;
}

@media (max-width: 768px) {
  .search-result .pagination {
    padding: 70px 0 0;
  }
}

.search-result .pagination a, .search-result .pagination span {
  display: block;
  font-size: 19px;
  font-weight: 400;
  color: #231F20;
  padding: 0 6px;
  line-height: 29px;
}

@media (max-width: 768px) {
  .search-result .pagination a, .search-result .pagination span {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.4px;
  }
}

.search-result .pagination a {
  -webkit-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-result .pagination a:hover {
  color: #0D76BD;
}

.search-result .pagination .ellipsis {
  display: none;
}

@media (max-width: 768px) {
  .search-result .pagination .ellipsis {
    display: block;
  }
}

.search-result .pagination .button {
  font-weight: 700;
}

.search-result .pagination .button.disabled {
  pointer-events: none;
}

@media (max-width: 768px) {
  .search-result .pagination .button {
    position: absolute;
    top: 74px;
    font-size: 20px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}

@media (max-width: 768px) {
  .search-result .pagination .button.prev {
    left: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .search-result .pagination .button.next {
    right: 0;
    padding-right: 0;
  }
}

.search-result .pagination .current {
  font-weight: 700;
  color: #0D76BD;
}

.search-result .not-found {
  padding: 25px 0 91px;
}

.search-result .not-found h3 {
  font-size: 30px;
  color: #231F20;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .search-result .not-found h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

.search-result .not-found h4 {
  font-size: 24px;
  color: #231F20;
  margin-bottom: 9px;
  line-height: 39px;
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .search-result .not-found h4 {
    font-size: 18px;
    line-height: 24px;
  }
}

.search-result .not-found .search-tips {
  width: 100%;
  max-width: 902px;
  background: #E4E4E4;
  padding: 39px 50px 52px;
  margin: 0 auto;
}

.search-result .not-found .search-tips ul {
  margin-bottom: 7px;
}

.search-result .not-found .search-tips ul li {
  position: relative;
  font-size: 19px;
  color: #333333;
  padding: 13px 0 12px 12px;
  margin: 0;
  border: 0;
  line-height: 27px;
}

@media (max-width: 768px) {
  .search-result .not-found .search-tips ul li {
    font-size: 15px;
    line-height: 22px;
  }
}

.search-result .not-found .search-tips ul li:before {
  content: '';
  position: absolute;
  top: 23px;
  left: 0;
  width: 4px;
  height: 5px;
  background: #333333;
  border-radius: 10px;
}

section#error-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 564px;
  min-height: 500px;
  height: calc( 100vh - 553px);
  padding: 50px 32px;
  margin: 0 auto;
  text-align: center;
}

section#error-page h1 {
  font-size: 160px;
  line-height: 170px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  section#error-page h1 {
    font-size: 130px;
    line-height: 140px;
  }
}

section#error-page .btn-column {
  margin: 50px 0 0;
}

.contact-form .field {
  margin-bottom: 20px;
}

.contact-form .field.inline-field {
  display: flex;
  justify-content: space-between;
}

.contact-form .field.inline-field .wpcf7-form-control-wrap {
  width: calc( 50% - 10px);
}

.contact-form .field input[type="text"],
.contact-form .field input[type="email"],
.contact-form .field input[type="tel"],
.contact-form .field select,
.contact-form .field textarea {
  width: 100%;
  height: 39px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  background: #ffffff;
  padding: 0px 15px;
  border: 1px solid #d2d2d2;
  border-radius: 0;
}

.contact-form .field input[type="text"]::placeholder,
.contact-form .field input[type="email"]::placeholder,
.contact-form .field input[type="tel"]::placeholder,
.contact-form .field select::placeholder,
.contact-form .field textarea::placeholder {
  color: #231F20;
  opacity: 1;
}

.contact-form .field input[type="text"]:-ms-input-placeholder,
.contact-form .field input[type="email"]:-ms-input-placeholder,
.contact-form .field input[type="tel"]:-ms-input-placeholder,
.contact-form .field select:-ms-input-placeholder,
.contact-form .field textarea:-ms-input-placeholder {
  color: #231F20;
}

.contact-form .field input[type="text"]::-ms-input-placeholder,
.contact-form .field input[type="email"]::-ms-input-placeholder,
.contact-form .field input[type="tel"]::-ms-input-placeholder,
.contact-form .field select::-ms-input-placeholder,
.contact-form .field textarea::-ms-input-placeholder {
  color: #231F20;
}

.contact-form .field textarea {
  height: 160px;
  padding: 8px 15px;
  resize: none;
}

.contact-form .field select {
  -webkit-appearance: auto;
  appearance: auto;
}

.contact-form .label p {
  font-size: 14px;
  margin-bottom: 20px !important;
}

.contact-form .submit {
  position: relative;
}

.contact-form .submit input[type="submit"] {
  display: block;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #F57B31;
  padding: 11px 15px;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  cursor: pointer;
  -webkit-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1), letter-spacing 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-form .submit input[type="submit"]:hover {
  background: #00AB4E;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}

.contact-form .submit .ajax-loader {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  font-size: 14px;
  padding: 10px 15px;
  margin: 20px 0 0;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 5px;
}
