@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -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;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.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);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body {
  padding: 0;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:active {
  outline: none;
}

input:focus, input:active, fieldset:focus, fieldset:active, textarea:focus, textarea:active, button:focus, button:active {
  outline: none;
}

.alignright {
  float: right;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignleft {
  float: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.bold, strong, b {
  font-weight: bold;
}

.undo-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.undo-li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
}

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

.clearfix:after, .cf:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.flat-left {
  padding-left: 0;
}

.flat-right {
  padding-right: 0;
}

.flat-both {
  padding-left: 0;
  padding-right: 0;
}

.flat-top {
  padding-top: 0;
}

.flat-bottom {
  padding-bottom: 0;
}

.flat-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.float-none {
  float: none !important;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields, #footer #footer-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, #footer #footer-nav > ul > li, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2, #footer #footer-nav > ul > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4, form .gform_body .gform_fields .gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield.gfield--width-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/* ==========================================================================
   Clamp
   ========================================================================== */
/* ==========================================================================
   Gradient
   ========================================================================== */
/* ==========================================================================
   Filter
   ========================================================================== */
/*- Font -*/
/*- Colors -*/
/* ==========================================================================
   Fonts
   ========================================================================== */
/* ==========================================================================
   Colors
   ========================================================================== */
/* ==========================================================================
   Media Queries
   ========================================================================== */
/* ==========================================================================
   Misc.
   ========================================================================== */
/*- Gutters -*/
::-moz-selection {
  background: #3f96b4;
  color: #fff;
}

::selection {
  background: #3f96b4;
  color: #fff;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.the-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content small {
  color: #004054;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}

#main {
  margin-top: calc(var(--alert-height, 0) + 190px);
}

html,
body {
  box-sizing: border-box;
  color: #282828;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

.page-transition {
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  transform-origin: center center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.page-transition .transition-logo {
  background: url(https://agencerubik.com/wp-content/uploads/2021/07/i-love-rubik-reversed.svg) no-repeat center center;
  background-size: contain;
  position: fixed;
  width: 550px;
  height: 550px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999999;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  background: black;
  transform-origin: center center;
  transform: translateY(0);
  transition: all 0.3s ease-in-out 0.03s;
}
.page-transition.out {
  pointer-events: none;
  opacity: 0;
}
.page-transition.out:before, .page-transition.out:after {
  transform: translateY(0);
}
.page-transition.out .transition-logo {
  opacity: 0;
}

/* ==========================================================================
   HTML / Body
   ========================================================================== */
html {
  font-size: 62.5%; /* 10px */
}

body {
  color: #004054;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
}

/* ==========================================================================
   Headings
   ========================================================================== */
/* ==========================================================================
   Home
   ========================================================================== */
.home-top-container {
  position: relative;
}
.home-top-container > section {
  position: relative;
  z-index: 2;
}
.home-top-container .home-news {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.home-top-container .home-news h2 {
  font-size: 5.2rem;
  color: #004054 !important;
  margin-bottom: 2rem;
  padding-left: 4rem;
}

.news-block {
  background-color: rgba(0, 155, 216, 0.1019607843);
  min-height: 100%;
}
.news-block .content {
  padding: 4.5rem 4rem 4rem 4rem;
}
.news-block .content h4 {
  font: bold 3.4rem/120% Roboto, sans-serif;
  margin-bottom: 4rem;
}
.news-block .content .the-content {
  margin-bottom: 4rem;
}
.news-block .content .the-content p {
  font: 300 2.8rem/140% Roboto, sans-serif;
}

/*- CSS pour les images avec un filtre bleu*/
.image {
  position: relative;
}
.image > img {
  width: 100%;
}
.image .image-filter {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #004054;
}

.home-content {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.bg-decoration {
  position: absolute;
  left: 5%;
  top: 0;
  height: 100%;
  z-index: 1;
  opacity: 0.25 !important;
}
.bg-decoration svg {
  max-height: 100%;
  max-width: 100%;
}

.home-testimonials {
  padding: 6.5rem 9rem;
  background: rgba(63, 150, 180, 0.3);
}
.home-testimonials .container {
  position: relative;
}
.home-testimonials h2 {
  color: #3F96B4;
  font: 500 5.2rem/120% Roboto, sans-serif;
  margin-bottom: 5rem;
}
.home-testimonials .testimonial-block {
  min-height: 200px !important;
  background-color: transparent !important;
}
.home-testimonials .testimonial-block .inner {
  flex-wrap: nowrap;
  width: 100%;
}
.home-testimonials .testimonial-block .col-text {
  text-align: left;
  position: relative;
  padding-left: 4rem;
}
.home-testimonials .testimonial-block .col-text > svg {
  position: absolute;
  top: -0.8rem;
  left: 0rem;
  height: 5rem;
  width: 2.2rem;
}
.home-testimonials .testimonial-block .col-text h4 {
  font-size: 2.4rem;
}
.home-testimonials .testimonial-block .col-img .image, .home-testimonials .testimonial-block .col-img .image img {
  max-height: 400px;
  object-fit: cover;
}
.home-testimonials .swiper {
  width: 100%;
}
.home-testimonials .swiper-button-prev,
.home-testimonials .swiper-button-next {
  width: 4rem;
  height: 4rem;
}
.home-testimonials .swiper-button-prev svg,
.home-testimonials .swiper-button-next svg {
  width: 100%;
}
.home-testimonials .swiper-button-prev {
  left: -4.5rem;
  background: url("../images/icon-arrow-left.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.home-testimonials .swiper-button-prev:after {
  display: none;
}
.home-testimonials .swiper-button-prev:hover {
  background: url("../images/icon-arrow-left_hover.svg") no-repeat center center;
}
.home-testimonials .swiper-button-next {
  right: -4.5rem;
  background: url("../images/icon-arrow-right.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.home-testimonials .swiper-button-next:after {
  display: none;
}
.home-testimonials .swiper-button-next:hover {
  background: url("../images/icon-arrow-right_hover.svg") no-repeat center center;
}

/* ==========================================================================
   Home hero
   ========================================================================== */
.home-banner {
  position: relative;
}
.home-banner:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  background-color: var(--overlay-color);
  z-index: 2;
}
.home-banner .container {
  position: relative;
  height: 615px;
  max-width: 100%;
}
.home-banner .container.banner-container-video {
  height: 700px;
}
.home-banner .banner-fg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-banner .banner-fg img {
  max-width: 80%;
  margin-bottom: 125px;
}
.home-banner .banner-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.home-banner .banner-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.home-banner .banner-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.home-banner .scroll-icon {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.home-banner .scroll-icon svg {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.home-banner .scroll-icon svg path {
  transition: all 0.3s ease-in-out;
}
.home-banner .scroll-icon svg #Icon_feather-arrow-right {
  animation-name: scrollAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.home-banner .scroll-icon:hover svg {
  background-color: #f5a823;
}
.home-banner .scroll-icon:hover svg #Ellipse_16 path:nth-child(2) {
  fill: #f5a823;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}
.page-anchor {
  position: relative;
  top: -150px;
  display: block;
}

/* ==========================================================================
   Body
   ========================================================================== */
body {
  background-color: #fff;
  position: relative;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   Paragraphs & Lists default Margin
   ========================================================================== */
p,
ul,
ol {
  margin-bottom: 2rem;
}

/* ==========================================================================
   Links
   ========================================================================== */
a {
  color: #3f96b4;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #004054;
  text-decoration: none;
}

/* ==========================================================================
   Images
   ========================================================================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Wrapper
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}

/* ==========================================================================
   The content
   ========================================================================== */
.the-content h1 {
  color: #3f96b4;
  font: 500 5.2rem/120% Roboto, sans-serif;
  margin-bottom: 5rem;
}
.the-content h2 {
  color: #004054;
  font: 600 3.8rem/120% Roboto, sans-serif;
  margin-bottom: 3.5rem;
  margin-top: 1rem;
}
.the-content h3 {
  color: #070707;
  font: 600 3rem/120% Roboto, sans-serif;
  margin-bottom: 3.5rem;
  margin-top: 1.5rem;
}
.the-content h4 {
  color: #070707;
  font: 300 3.4rem/120% Roboto, sans-serif;
  margin-top: 1.5rem;
}
.the-content h5 {
  color: #070707;
  font: 500 3.4rem/120% Roboto, sans-serif;
}
.the-content h6 {
  color: #004054;
  font: 600 2.4rem/120% Roboto, sans-serif;
}
.the-content p {
  font: 300 2rem/160% Roboto, sans-serif;
  margin-bottom: 2rem;
  color: black;
}
.the-content ul {
  padding-left: 0;
}
.the-content ul li {
  padding-left: 4rem;
  margin-bottom: 1rem;
  font: 300 2rem/160% Roboto, sans-serif;
  color: #070707;
  list-style: none;
  position: relative;
}
.the-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #f5a823;
}
.the-content ul li ul {
  margin-top: 1rem;
}
.the-content ul li ul li:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.7rem;
  width: 18px;
  height: 18px;
  background-image: url("../images/list-arrow-2.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: none !important;
}

/* ==========================================================================
   Call to action
   ========================================================================== */
.cta {
  padding: 5.5rem 4.5rem;
  background-color: rgba(0, 155, 216, 0.3);
  margin: 4rem auto;
}
.cta h4 {
  font: bold 2.8rem/120% Roboto, sans-serif;
  color: #004054;
  margin-bottom: 3rem;
}
.cta h3 {
  font: bold 3.2rem/120% Roboto, sans-serif;
  color: #004054;
  margin-bottom: 3rem;
}
.cta p {
  font: normal 2rem/120% Roboto, sans-serif;
  color: #004054;
}
.cta .row > div, .cta form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div, form .gform_body .gform_fields .gfield .cta .ginput_container.ginput_container_address > div, .cta form .gform_body .gform_fields > div, form .gform_body .cta .gform_fields > div, .cta #footer #footer-nav > ul > div, #footer .cta #footer-nav > ul > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta .c-btn {
  width: fit-content;
}
.cta .the-content ul li {
  font: normal 2rem/120% Roboto, sans-serif;
  color: #004054;
  padding-left: 3rem;
}
.cta .the-content ul li:before {
  border-left: 12px solid #3f96b4;
  top: 0.4rem;
}

/* ==========================================================================
   Collapses
   ========================================================================== */
.collapse-container {
  color: #004054;
  border-bottom: 0.3rem solid #f5a823;
  margin-bottom: 10rem;
}

.collapse-wrap {
  border-top: 0.3rem solid #f5a823;
  position: relative;
}

.sub-collapse-container .collapse-content {
  padding: 2rem 0 3rem;
}

.page-content-wrap .collapse-wrap:last-of-type {
  border-bottom: 0.3rem solid #f5a823;
  margin-bottom: 8rem;
}

.collapse-trigger {
  font: bold 4.2rem/120% Roboto, sans-serif;
  color: #004054;
  padding: 2rem 6rem 2rem 0;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.collapse-trigger:after {
  content: "+";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  font: 400 4.2rem/120% Roboto, sans-serif;
  color: #004054;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid transparent;
}
.collapse-trigger.open:after {
  content: "-";
  border: 0.2rem solid #004054;
  font: 400 4.2rem/87% Roboto, sans-serif;
}

.collapse-content {
  display: none;
  padding-bottom: 5rem;
}
.collapse-content .collapse-trigger {
  border-top: 0.3rem solid #3f96b4;
  font: bold 3.4rem/120% Roboto, sans-serif;
  color: #070707;
  padding: 1rem 10rem 1rem 0;
}
.collapse-content .collapse-trigger:after {
  color: #3f96b4;
}
.collapse-content .collapse-trigger.open:after {
  border: 0.2rem solid #3f96b4;
}
.collapse-content .collapse-container {
  border-bottom: 0.3rem solid #3f96b4;
  margin-bottom: 8rem;
  margin-top: 5rem;
}
.collapse-content img {
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 4rem 0;
}

.collapse-content .content-separator {
  margin-top: 5rem;
}

.the-content + .single-sub-collapse {
  border-top: 2px solid #3f96b4;
}

.the-content ~ .single-sub-collapse {
  border-bottom: 2px solid #3f96b4;
}

.single-sub-collapse h3 {
  border-top: none !important;
}

/* ==========================================================================
   Titles
   ========================================================================== */
h1 {
  color: #3f96b4;
  font: 500 5.2rem/120% Roboto, sans-serif;
  margin-bottom: 6rem;
}

h2 {
  color: #070707;
  font: 500 5.2rem/120% Roboto, sans-serif;
  margin-bottom: 1rem;
}

h3 {
  color: #004054;
  font: 600 4.2rem/120% Roboto, sans-serif;
}

h4 {
  color: #070707;
  font: 600 3.5rem/120% Roboto, sans-serif;
}

/* ==========================================================================
   Scroll BTN
   ========================================================================== */
#scroll-to-top {
  position: fixed;
  right: 3rem;
  bottom: 4rem;
  z-index: 10;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.c-btn {
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #004054;
  padding: 1.3rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  user-select: none;
  vertical-align: middle;
  white-space: normal;
}
.c-btn--primary {
  border: 2px solid #3f96b4;
  color: #004054;
}
.c-btn--primary:hover {
  background-color: #f5a823;
  border: 2px solid #f5a823;
  color: white;
}
.c-btn--small {
  font-size: 1.5rem;
  padding: 0.9rem 1.2rem;
}
.c-btn--secondary {
  background-color: #004054;
  color: #fff;
}
.c-btn--secondary:hover {
  background-color: #f5a823;
  border: 2px solid #f5a823;
  font-weight: bold;
  color: white;
}
.c-btn--link {
  background-color: transparent;
}
.c-btn--link:hover {
  color: #fff;
}

/* ==========================================================================
   Button Reveal
   ========================================================================== */
.c-btn__reveal {
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 10;
  right: 3rem;
  bottom: 3rem;
}
.c-btn__reveal > i {
  background-color: #3f96b4;
  border-radius: 100vmax;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  color: inherit;
  font-size: 3rem;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn__reveal > div {
  padding: 0 1rem 0 2rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s;
}
.c-btn__reveal::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  border-radius: 100vmax 0 0 100vmax;
  background-color: #3f96b4;
  transform: translateX(100%);
  transition-property: all;
  transition-duration: 0.6s;
}
@media (hover: hover) {
  .c-btn__reveal:hover {
    color: #fff;
  }
  .c-btn__reveal:hover > div {
    opacity: 1;
    transform: none;
    transition-delay: 0.4s;
  }
  .c-btn__reveal:hover::after {
    transform: none;
  }
}

.page-with-sidebar {
  padding-top: 13rem;
}
.page-with-sidebar.page-with-banner {
  padding-top: 0;
}
.page-with-sidebar.page-with-banner .page-banner {
  margin-bottom: 7rem;
}
.page-with-sidebar #sidebar {
  margin-right: 7.5rem;
  min-height: 100%;
  margin-bottom: 50px;
}

.page-with-banner .page-banner {
  height: 600px;
  background-position: center;
  background-size: cover;
}
.page-with-banner .page-banner .the-content {
  max-width: 1250px;
}
.page-with-banner .page-banner h2 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 6.5rem;
}
.page-with-banner .page-banner h3 {
  font-weight: bold;
  font-size: 5rem;
}

.cta-sidebar {
  width: 100%;
  background-color: #3f96b4;
  padding: 5rem 4.5rem;
  position: sticky;
  top: 260px;
}
.cta-sidebar.cta-text-black {
  color: #070707 !important;
}
.cta-sidebar.cta-text-black h4, .cta-sidebar.cta-text-black .the-content, .cta-sidebar.cta-text-black p, .cta-sidebar.cta-text-black a {
  color: #070707 !important;
}
.cta-sidebar.cta-text-black a {
  border-color: #070707 !important;
}
.cta-sidebar.cta-text-black a:hover {
  border-color: #f5a823 !important;
  color: #fff !important;
}
.cta-sidebar.cta-text-white {
  color: #fff !important;
}
.cta-sidebar.cta-text-white h4, .cta-sidebar.cta-text-white .the-content, .cta-sidebar.cta-text-white p, .cta-sidebar.cta-text-white a {
  color: #fff !important;
}
.cta-sidebar svg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.cta-sidebar h4 {
  font: bold 2.8rem/140% Roboto, sans-serif;
  margin-bottom: 4rem;
}
.cta-sidebar h3 {
  color: black;
  font: 500 3.2rem/140% Roboto, sans-serif;
  margin-bottom: 4rem;
}
.cta-sidebar p {
  color: white;
  font: normal 1.6rem/140% Roboto, sans-serif;
}
.cta-sidebar .c-btn--primary {
  border: 2px solid white;
}
.cta-sidebar .c-btn--primary:hover {
  border: 2px solid #f5a823;
}
.cta-sidebar .sidebar-decoration svg path {
  transition: all 0.3s ease-in-out;
}
.cta-sidebar .sidebar-decoration.deco-white svg path {
  fill: #fff;
}

/* ==========================================================================
   Swiper Overrides
   ========================================================================== */
/* ==========================================================================
   Swiper Slider
   ========================================================================== */
.mySwiper .swiper-slide {
  background-color: var(--color-secondary);
  color: #fff;
  min-height: 500px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#primary {
  width: 100%;
}
#primary.no-sidebar {
  width: 80%;
  margin: auto;
}
#primary h1 {
  color: #3f96b4;
  font-size: 5.2rem;
}
#primary .page-intro {
  padding-bottom: 3rem;
}

.page-template-normal {
  background-image: url("../images/vanguard-slash-fade.svg");
  background-repeat: no-repeat;
  background-size: 1220px 1600px;
  background-position: 14px 820px;
}

.page-with-sidebar {
  position: relative;
}
.page-with-sidebar .bg-decoration {
  height: 1600px;
  top: 65vh;
  z-index: -1;
  opacity: 0.25;
}

.page-content-wrap > section {
  margin: 50px 0;
}

.the-content a {
  font-weight: bold;
  color: #004054;
  text-decoration: underline;
}
.the-content a.c-btn {
  margin: 1.5rem 0;
  text-decoration: none;
}

.socials-wrap a {
  margin: 10px 15px;
}
.socials-wrap a:nth-child(1) {
  margin-left: 0;
}
.socials-wrap a svg {
  height: 48px;
  width: 48px;
}
.socials-wrap a svg rect, .socials-wrap a svg .bg-rect {
  transition: all 0.3s ease-in-out;
}
.socials-wrap a:hover svg rect, .socials-wrap a:hover svg .bg-rect {
  fill: #f5a823;
}

.search-result-page h2 {
  color: #070707;
  margin-bottom: 4rem;
}
.search-result-page h2 .blue-text {
  color: #3f96b4;
}

.search-result {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(63, 150, 180, 0.2);
}
.search-result:nth-last-child(1) {
  border-bottom: none;
}

.news-block {
  background-color: rgba(63, 150, 180, 0.5);
  min-height: 100%;
  margin-bottom: 4rem;
}
.news-block .content .the-content p {
  font: 300 2rem/120% Roboto, sans-serif;
}
.news-block .image, .news-block .image img {
  height: 300px;
  object-fit: cover;
}

.blog-page {
  padding: 7rem 0;
}
.blog-page h2 {
  color: #004054;
}
.blog-page .news-wrap .blog-post-block {
  padding: 30px 0;
  border-bottom: 3px solid #f5a823;
}
.blog-page .news-wrap .blog-post-block:nth-child(1) {
  border-top: 3px solid #f5a823;
}
.blog-page .news-wrap .blog-post-block img {
  padding: 0;
  object-fit: cover;
  height: 350px;
  min-height: 100%;
}
.blog-page .news-wrap .blog-post-block .image {
  padding: 0;
}
.blog-page .news-wrap .blog-post-block .content {
  padding: 5px 40px 15px;
}
.blog-page .news-wrap .blog-post-block .content h5 {
  font: 500 20px/120% Roboto, sans-serif;
  color: black;
}
.blog-page .news-wrap .blog-post-block .the-content h4 {
  font: 600 3.5rem/120% Roboto, sans-serif;
}
.blog-page .news-wrap .blog-post-block .c-btn {
  width: fit-content;
  padding: 1.3rem 4.5rem;
}

.pagination {
  margin-top: 3rem;
  text-align: end;
}
.pagination .page-numbers {
  font-weight: bold;
  padding: 0 0.8rem;
  border-left: 2px solid #3f96b4;
}
.pagination .page-numbers:nth-child(1) {
  border-left: 0;
}
.pagination .page-numbers:nth-last-child(1) {
  padding-right: 0;
}

.single-post-wrap {
  margin: 5rem 0;
}
.single-post-wrap h1 {
  margin-bottom: 3rem;
}
.single-post-wrap .post-nav-wrap {
  margin-top: 5rem;
}

.post-nav-wrap .nav-links {
  display: flex;
  justify-content: space-between;
}

.video-fancybox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 25px auto;
}
.video-fancybox .play-wrap {
  height: 175px;
  width: 175px;
  transition: all 0.3s ease-in-out;
}
.video-fancybox .play-wrap svg {
  height: 100%;
  width: 100%;
}
.video-fancybox .play-wrap:hover {
  height: 190px;
  width: 190px;
}

.error-wrap {
  padding: 11rem 0;
}
.error-wrap .the-content h1 {
  margin-bottom: 0;
  font-size: 8rem;
}
.error-wrap .the-content p {
  margin-bottom: 0;
}

.form-section.no-heading-form {
  margin-top: 0;
}
.form-section .gform_heading {
  display: none;
}
.form-section .gfield--width-third, .form-section .gfield--width-half {
  max-width: 100% !important;
}
.form-section .gform_fields {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.form-section .gfield {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.form-section .gform_button {
  border: 2px solid #004054;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5 !important;
  text-transform: uppercase;
  color: #004054;
  background-color: transparent;
  padding: 1.3rem 1.8rem;
  margin-top: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  user-select: none;
  vertical-align: middle;
  white-space: normal;
}
.form-section .gform_button:hover {
  background-color: #f5a823;
  border: 2px solid #f5a823;
  color: white;
}
.form-section form .gform_body .gform_fields .gfield#field_1_6 .ginput_container_fileupload:before {
  content: var(--txt-cv);
}
.form-section form .gform_body .gform_fields .gfield#field_1_7 .ginput_container_fileupload:before {
  content: var(--txt-pres);
}

#contact-form {
  margin-top: -3rem;
}

.img-btn-center {
  width: 100%;
  height: 315px;
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.img-btn-center .c-btn {
  background-color: var(--btn-color-bg);
  border-color: #fff;
  color: #fff;
}
.img-btn-center .c-btn:hover {
  opacity: 0.75;
}

.img-text-row {
  margin: 3rem 0;
}
.img-text-row .the-image {
  width: 45%;
  padding-right: 5%;
}
.img-text-row .the-image img {
  margin: 0;
}
.img-text-row .the-content {
  width: 55%;
  padding: 5px 0;
}

.slider-normal {
  padding: 60px 70px;
  margin-top: 80px;
  margin-bottom: 80px;
  background-color: #3f96b4;
}
.slider-normal .swiper-slide {
  min-height: auto;
  padding: 50px 0;
}
.slider-normal .container {
  position: relative;
}
.slider-normal .container > h2 {
  color: #fff;
}
.slider-normal .col-img {
  padding: 0 40px 0 0;
}
.slider-normal .col-text {
  padding: 0;
  text-align: left;
}
.slider-normal.slider-text-white .col-text {
  color: white;
}
.slider-normal.slider-text-white .the-content h1, .slider-normal.slider-text-white .the-content h2, .slider-normal.slider-text-white .the-content h3, .slider-normal.slider-text-white .the-content h4, .slider-normal.slider-text-white .the-content h5, .slider-normal.slider-text-white .the-content h6, .slider-normal.slider-text-white .the-content p {
  color: white;
}
.slider-normal.slider-text-black .col-text {
  color: #070707;
}
.slider-normal.slider-text-black h1, .slider-normal.slider-text-black h2, .slider-normal.slider-text-black h3, .slider-normal.slider-text-black h4, .slider-normal.slider-text-black h5, .slider-normal.slider-text-black h6 {
  color: #3f96b4;
}
.slider-normal.slider-text-black .the-content h1, .slider-normal.slider-text-black .the-content h2, .slider-normal.slider-text-black .the-content h3, .slider-normal.slider-text-black .the-content h4, .slider-normal.slider-text-black .the-content h5, .slider-normal.slider-text-black .the-content h6 {
  color: #3f96b4;
}
.slider-normal.slider-text-black .the-content p {
  color: #070707;
}
.slider-normal.slider-text-black .swiper-button-prev, .slider-normal.slider-text-black .swiper-button-next {
  background: url("../images/icon-arrow-right.svg") no-repeat center center;
  background-size: contain;
}
.slider-normal.slider-text-black .swiper-button-prev:hover, .slider-normal.slider-text-black .swiper-button-next:hover {
  background: url("../images/icon-arrow-right_hover.svg") no-repeat center center;
  background-size: contain;
}
.slider-normal.slider-text-black .swiper-button-next {
  left: auto;
  transform: rotate(0);
}
.slider-normal.slider-text-black .swiper-button-prev {
  transform: rotate(180deg);
}
.slider-normal .swiper-button-prev, .slider-normal .swiper-button-next {
  left: -4.5rem;
  background: url("../images/icon-arrow-white.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  height: 4rem;
  width: 4rem;
  transition: all 0.3s ease-in-out;
}
.slider-normal .swiper-button-prev:after, .slider-normal .swiper-button-next:after {
  display: none;
}
.slider-normal .swiper-button-prev:hover, .slider-normal .swiper-button-next:hover {
  background: url("../images/icon-arrow-white_hover.svg") no-repeat center center;
  background-size: contain;
}
.slider-normal .swiper-button-next {
  right: -4.5rem;
  left: auto;
}
.slider-normal .swiper-button-next {
  transform: rotate(180deg);
}

.single-post-wrap {
  padding: 10rem 0 6rem;
}
.single-post-wrap .post-banner img {
  width: 100%;
  min-height: 50rem;
  max-height: 78rem;
  object-fit: cover;
}
.single-post-wrap .content-wrap {
  margin: 50px auto;
  max-width: 950px;
}
.single-post-wrap .content-wrap h1 {
  font: bold 3.4rem/130% Roboto, sans-serif;
  color: #070707;
  margin-top: 5px;
}
.single-post-wrap .content-wrap h4 {
  font: 500 2rem/120% Roboto, sans-serif;
  color: #070707;
}
.single-post-wrap .content-wrap .the-content {
  margin: 2rem 0 3rem;
}
.single-post-wrap .content-wrap .author-name {
  margin: 5rem 0 4rem;
}
.single-post-wrap .content-wrap .post-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post-wrap .content-wrap .next-post-btn .c-btn {
  padding: 1.3rem 4rem;
}

.post-share-wrap a svg {
  height: 35px;
  width: 35px;
}

.date-selector-wrap {
  margin: 40px 0 10px;
}
.date-selector-wrap .select-wrap {
  position: relative;
  margin-right: 50px;
  margin-bottom: 20px;
}
.date-selector-wrap .select-wrap:after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  background-image: url("../images/icon-select-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 12px;
  width: 22px;
  pointer-events: none;
}
.date-selector-wrap select {
  width: fit-content;
  padding: 15px 60px 15px 15px !important;
  background-color: rgba(7, 7, 7, 0.08);
  font: 500 20px/120% Roboto, sans-serif !important;
  border: none;
}

.galleryPost {
  width: 100%;
  height: 520px;
  margin: 25px auto 50px;
  padding-bottom: 60px;
}
.galleryPost .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2) !important;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.galleryPost .swiper-slide a, .galleryPost .swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.galleryPost .swiper-pagination-bullet {
  height: fit-content;
  width: fit-content;
  background: none;
  color: #070707;
  opacity: 1;
  margin: 0 !important;
  font: 600 18px/100% Roboto, sans-serif;
}
.galleryPost .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #070707;
  text-decoration: underline;
}
.galleryPost .swiper-pagination-bullet:after {
  content: "-";
  display: inline-block;
  margin: 0 6px;
}
.galleryPost .swiper-pagination-bullet:nth-last-child(1):after {
  display: none;
}
.galleryPost .swiper-pagination {
  position: relative;
  top: 0;
  left: 0;
  width: fit-content;
  margin: auto 25px;
}
.galleryPost .nav-wrap {
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  height: 4rem;
  width: 100%;
}
.galleryPost .swiper-button-prev,
.galleryPost .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 4rem;
  height: 4rem;
  margin-top: 0;
}
.galleryPost .swiper-button-prev svg,
.galleryPost .swiper-button-next svg {
  width: 100%;
}
.galleryPost .swiper-button-prev {
  background: url("../images/icon-arrow-left.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.galleryPost .swiper-button-prev:after {
  display: none;
}
.galleryPost .swiper-button-prev:hover {
  background: url("../images/icon-arrow-left_hover.svg") no-repeat center center;
}
.galleryPost .swiper-button-next {
  background: url("../images/icon-arrow-right.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.galleryPost .swiper-button-next:after {
  display: none;
}
.galleryPost .swiper-button-next:hover {
  background: url("../images/icon-arrow-right_hover.svg") no-repeat center center;
}

.no-post-found {
  margin: 30px 0;
}

.id-hook {
  position: absolute;
  top: -350px;
}

.img-sidebar img {
  width: 100%;
  object-fit: contain;
}

.team-category .category-name {
  position: relative;
}
.team-category .category-name .collapse-trigger {
  font-size: 34px;
  font-weight: 700;
}
.team-category .category-name .collapse-trigger:after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 53%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.team-category .row, .team-category form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .team-category .ginput_container.ginput_container_address, .team-category form .gform_body .gform_fields, form .gform_body .team-category .gform_fields, .team-category #footer #footer-nav > ul, #footer .team-category #footer-nav > ul {
  row-gap: 20px;
}
.team-category .team-members .member {
  border: 2px solid rgba(63, 150, 180, 0.3137254902);
  padding: 50px 20px;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.team-category .team-members .member .name {
  font-size: 24px;
  font-weight: 700;
}
.team-category .team-members .member .description {
  font-size: 20px;
  font-weight: 300;
}
.team-category .team-members .member .email {
  margin-bottom: 30px;
  margin-top: auto;
}
.team-category .team-members .member .email a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.team-category .team-members .member .socials-container {
  margin-top: auto;
}
.team-category .team-members .member .linkedin {
  text-transform: uppercase;
  border: 2px solid #009BD8;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  background-color: transparent;
  transition: all 0.3s ease-out;
}
.team-category .team-members .member .linkedin:hover {
  background-color: #F0AF49;
  border-color: #F0AF49;
  color: #fff;
}
.team-category .team-members .member:hover {
  background-color: rgba(63, 150, 180, 0.3137254902);
}

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields, #footer #footer-nav > ul {
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Moyen -*/
  /*- Espacement des colonnes - Large -*/
  /*- Espacement des colonnes - X-Large -*/
}
.row.gutter-none, form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address, form .gform_body .gutter-none.gform_fields, #footer #footer-nav > ul.gutter-none {
  margin-left: 0;
  margin-right: 0;
}
.row.gutter-none > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-none.gform_fields > div[class*=col-], #footer #footer-nav > ul.gutter-none > div[class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.row.gutter-small, form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address, form .gform_body .gutter-small.gform_fields, #footer #footer-nav > ul.gutter-small {
  margin-left: -15px;
  margin-right: -15px;
}
.row.gutter-small > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-small.gform_fields > div[class*=col-], #footer #footer-nav > ul.gutter-small > div[class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}
.row.gutter-medium, form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address, form .gform_body .gutter-medium.gform_fields, #footer #footer-nav > ul.gutter-medium {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-medium > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-medium.gform_fields > div[class*=col-], #footer #footer-nav > ul.gutter-medium > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.row.gutter-large, form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address, form .gform_body .gutter-large.gform_fields, #footer #footer-nav > ul.gutter-large {
  margin-left: -75px;
  margin-right: -75px;
}
.row.gutter-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-large.gform_fields > div[class*=col-], #footer #footer-nav > ul.gutter-large > div[class*=col-] {
  padding-left: 75px;
  padding-right: 75px;
}
.row.gutter-x-large, form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address, form .gform_body .gutter-x-large.gform_fields, #footer #footer-nav > ul.gutter-x-large {
  margin-left: -125px;
  margin-right: -125px;
}
.row.gutter-x-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-x-large.gform_fields > div[class*=col-], #footer #footer-nav > ul.gutter-x-large > div[class*=col-] {
  padding-left: 125px;
  padding-right: 125px;
}

/** Popup **/
.pop-up {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3137254902);
  color: white;
}
.pop-up .col-12, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_left, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_right, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_full, .pop-up form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .pop-up .gfield.gfield--width-full, .pop-up form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .pop-up .gfield.gfield--width-half, .pop-up form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields .pop-up .gfield.gfield--width-third {
  margin: 0 auto;
  padding: 50px 100px;
  width: 90%;
  max-width: calc(100% - 100px);
}
.pop-up .col-12 .d-flex, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .d-flex, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_left .d-flex, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .d-flex, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_right .d-flex, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .d-flex, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_full .d-flex, .pop-up form .gform_body .gform_fields .gfield.gfield--width-full .d-flex, form .gform_body .gform_fields .pop-up .gfield.gfield--width-full .d-flex, .pop-up form .gform_body .gform_fields .gfield.gfield--width-half .d-flex, form .gform_body .gform_fields .pop-up .gfield.gfield--width-half .d-flex, .pop-up form .gform_body .gform_fields .gfield.gfield--width-third .d-flex, form .gform_body .gform_fields .pop-up .gfield.gfield--width-third .d-flex {
  width: 100%;
}
.pop-up .col-12 h3, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h3, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_left h3, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h3, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_right h3, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h3, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_full h3, .pop-up form .gform_body .gform_fields .gfield.gfield--width-full h3, form .gform_body .gform_fields .pop-up .gfield.gfield--width-full h3, .pop-up form .gform_body .gform_fields .gfield.gfield--width-half h3, form .gform_body .gform_fields .pop-up .gfield.gfield--width-half h3, .pop-up form .gform_body .gform_fields .gfield.gfield--width-third h3, form .gform_body .gform_fields .pop-up .gfield.gfield--width-third h3 {
  margin-bottom: 10px;
}
.pop-up .col-12 h4, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_left h4, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_right h4, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_full h4, .pop-up form .gform_body .gform_fields .gfield.gfield--width-full h4, form .gform_body .gform_fields .pop-up .gfield.gfield--width-full h4, .pop-up form .gform_body .gform_fields .gfield.gfield--width-half h4, form .gform_body .gform_fields .pop-up .gfield.gfield--width-half h4, .pop-up form .gform_body .gform_fields .gfield.gfield--width-third h4, form .gform_body .gform_fields .pop-up .gfield.gfield--width-third h4 {
  margin-bottom: 50px;
  font-size: 22px;
}
.pop-up .col-12 .c-btn, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .c-btn, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_left .c-btn, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .c-btn, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_right .c-btn, .pop-up form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .c-btn, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .pop-up .ginput_full .c-btn, .pop-up form .gform_body .gform_fields .gfield.gfield--width-full .c-btn, form .gform_body .gform_fields .pop-up .gfield.gfield--width-full .c-btn, .pop-up form .gform_body .gform_fields .gfield.gfield--width-half .c-btn, form .gform_body .gform_fields .pop-up .gfield.gfield--width-half .c-btn, .pop-up form .gform_body .gform_fields .gfield.gfield--width-third .c-btn, form .gform_body .gform_fields .pop-up .gfield.gfield--width-third .c-btn {
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
}
.pop-up .content-wrapper {
  height: 65%;
  justify-content: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 150px;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
}
.pop-up.active {
  opacity: 1;
  pointer-events: all;
}
.pop-up .pop-up-container {
  width: 95%;
  max-width: 700px;
  height: 95vh;
  max-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}
.pop-up .pop-up-container .row, .pop-up .pop-up-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .pop-up .pop-up-container .ginput_container.ginput_container_address, .pop-up .pop-up-container form .gform_body .gform_fields, form .gform_body .pop-up .pop-up-container .gform_fields, .pop-up .pop-up-container #footer #footer-nav > ul, #footer .pop-up .pop-up-container #footer-nav > ul {
  height: 100%;
  overflow-y: auto;
}
.pop-up .pop-up-container .row .img-container, form .gform_body .gform_fields .gfield .pop-up .pop-up-container .ginput_container.ginput_container_address .img-container, .pop-up .pop-up-container form .gform_body .gform_fields .img-container, form .gform_body .pop-up .pop-up-container .gform_fields .img-container, .pop-up .pop-up-container #footer #footer-nav > ul .img-container, #footer .pop-up .pop-up-container #footer-nav > ul .img-container {
  height: calc(50% - 3px);
  position: relative;
}
.pop-up .pop-up-container .close.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pop-up .pop-up-container .close.close-btn line {
  stroke: #000;
}
.pop-up .pop-up-container .close.close-btn svg {
  width: 100%;
  height: 100%;
}
.pop-up .pop-up-container .close.close-btn path {
  transition: all 0.3s ease-out;
}
.pop-up .pop-up-container .pop-up-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
  background-size: cover;
  height: 100%;
}
.pop-up .pop-up-container .pop-up-content .wrapper {
  max-width: 75%;
  height: fit-content;
}
.pop-up .pop-up-container .pop-up-content .wrapper .small-title {
  color: #fff !important;
  font: bold 22px Mont;
  text-transform: uppercase;
  margin: 0;
}
.pop-up .pop-up-container .pop-up-content .wrapper .big-title {
  font: bold 40px Mont;
  margin: 0;
}
.pop-up .pop-up-container .pop-up-content .wrapper .pop-up-text {
  margin: 30px 0 60px;
}
.pop-up .pop-up-container .pop-up-content .wrapper .button {
  font-size: 16px !important;
}
.pop-up .pop-up-container .pop-up-content .wrapper .button:hover {
  background: red !important;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  z-index: 10;
  top: 0;
}

.mobile-nav-trigger,
#mobile-nav {
  display: none;
}

#header {
  background: white;
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
}
#header img {
  transition: all 0.3s ease-in-out;
  height: 90px;
}
#header.shrink img {
  height: 65px;
}
#header.shrink .container {
  padding-top: 10px;
}
#header.shadowed {
  -webkit-box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.15);
}
#header .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
#header.is-scrolling {
  background: #fff;
  box-shadow: 0 0 10px #000;
}
#header .header__logo {
  display: block;
  max-width: 150px;
  padding: 2rem 0;
}
#header #secondary-nav,
#header .menu {
  margin-right: 3.5rem;
}
#header #secondary-nav > ul,
#header .menu > ul {
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
#header #secondary-nav > ul > li,
#header .menu > ul > li {
  display: flex;
  height: 100%;
  margin: 0 3.5rem;
  position: relative;
  transition: opacity 0.2s linear;
}
#header #secondary-nav > ul > li > a,
#header .menu > ul > li > a {
  font: 400 16px/100% Roboto, sans-serif;
  color: #070707;
  display: flex;
  align-items: center;
  height: 100%;
}
#header #secondary-nav > ul > li.menu-item-has-children > a::after,
#header .menu > ul > li.menu-item-has-children > a::after {
  content: "\e901";
  display: inline-block;
  font-size: 1rem;
  font-family: "icomoon";
  font-weight: 400;
  line-height: 1;
  margin-left: 0.8rem;
  position: relative;
  top: 1px;
}
#header #secondary-nav > ul > li.menu-item-has-children:hover > a,
#header .menu > ul > li.menu-item-has-children:hover > a {
  color: #004054;
}
#header #secondary-nav > ul > li.menu-item-has-children:hover > a::after,
#header .menu > ul > li.menu-item-has-children:hover > a::after {
  animation: fdDown 0.4s cubic-bezier(0, 0.1, 0.5, 0.1);
  animation-fill-mode: both;
}
#header #secondary-nav > ul > li:hover .sub-menu,
#header .menu > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
#header #secondary-nav > ul .sub-menu,
#header .menu > ul .sub-menu {
  margin: 0;
  background: #004054;
  padding: 1.5rem 0;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
#header #secondary-nav > ul .sub-menu > li,
#header .menu > ul .sub-menu > li {
  opacity: 0;
  transform: translateY(-1rem);
}
#header #secondary-nav > ul .sub-menu > li.is-animating,
#header .menu > ul .sub-menu > li.is-animating {
  animation: seqFade 1s cubic-bezier(0, 0.9, 0.48, 0.97);
  animation-fill-mode: both;
}
#header #secondary-nav > ul .sub-menu a,
#header .menu > ul .sub-menu a {
  color: #3f96b4;
  font-family: Roboto, sans-serif;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 3rem;
}
#header #secondary-nav > ul .sub-menu a:hover,
#header .menu > ul .sub-menu a:hover {
  color: #fff;
}
#header .main-nav-container {
  background-color: #004054;
}
#header .main-nav-container .container {
  padding-top: 0px;
  padding-bottom: 0px;
}
#header .main-nav-container .container #main-nav {
  position: relative;
}
#header .main-nav-container .container #main-nav > ul {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
#header .main-nav-container .container #main-nav > ul li {
  width: auto;
  list-style: none;
  margin-bottom: 0;
}
#header .main-nav-container .container #main-nav > ul li a {
  font: 500 1.8rem Roboto, sans-serif;
  color: white;
  display: block;
  text-align: center;
  padding: 2rem 2.5rem;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}
#header .main-nav-container .container #main-nav > ul li a:hover {
  background: #3f96b4;
  color: white !important;
}
#header .main-nav-container .container #main-nav > ul li.current-menu-item a {
  font-weight: 700;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu li a {
  font-weight: 400;
  position: relative;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu li a:after {
  content: "";
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  height: 3px;
  width: 0;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu li a:hover:after {
  width: calc(100% - 5rem);
  left: 2.5rem;
}
#header .main-nav-container .container #main-nav > ul li.menu-item-has-children.current-menu-item .sub-menu {
  opacity: 1;
  pointer-events: all;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu {
  background-color: rgba(63, 150, 180, 0.85);
  position: absolute;
  padding: 0;
  left: 0;
  top: 100%;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu li {
  display: inline-block;
  width: auto;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu li a {
  padding: 2rem 2.5rem;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu:before, #header .main-nav-container .container #main-nav > ul li .sub-menu:after {
  content: "";
  position: absolute;
  width: 100vw;
  background-color: rgba(63, 150, 180, 0.85);
  height: 100%;
  top: 0;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu:before {
  right: 100%;
}
#header .main-nav-container .container #main-nav > ul li .sub-menu:after {
  left: 100%;
}
#header .main-nav-container .container #main-nav > ul > li.current-menu-item > a, #header .main-nav-container .container #main-nav > ul > li.open > a {
  background: #3f96b4;
  color: white !important;
}

#header #secondary-nav > ul > li.lang-item {
  margin: 0 0.5rem;
}
#header #secondary-nav > ul > li.lang-item a {
  padding: 10px;
}
#header #secondary-nav > ul > li.lang-item.lang-item-first {
  margin-left: 3.5rem;
}
#header #secondary-nav > ul > li.lang-item.current-lang {
  background-color: #070707;
}
#header #secondary-nav > ul > li.lang-item.current-lang a {
  color: #fff;
}
#header #secondary-nav > ul > li.lang-item .no-translation {
  display: none;
}

.secondary-nav-mobile {
  border-top: 1px solid #004054;
  padding-top: 3rem !important;
}

@media screen and (max-width: 1380px) {
  #header .main-nav-container .container {
    display: flex;
    justify-content: end;
    padding: 1rem 0;
  }
  #header .main-nav-container .container #main-nav {
    display: none;
  }
  #header .mobile-nav-trigger {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55px;
    height: 30px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span {
    width: 45px;
    height: 5px;
    border-radius: 0px;
    display: block;
    background: white;
    flex: 0 0 auto;
    transform-origin: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2):before, #header .mobile-nav-trigger span:nth-child(2):after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    background: white;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(-13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):before {
    transform: rotateZ(135deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):after {
    transform: rotateZ(225deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  .secondary-nav-mobile {
    border-top: 3px solid #3f96b4;
  }
  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 200px;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: calc(100% - 200px);
    overflow-x: scroll;
    padding-top: 4rem;
    background: #004054;
    display: flex;
    justify-content: start;
    align-items: start;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  #mobile-nav.shrink {
    top: 160px;
    height: calc(100% - 160px);
  }
  #mobile-nav > ul {
    width: 100%;
    padding: 0 40px 0 20px;
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 30px;
  }
  #mobile-nav > ul li.current-menu-item a {
    text-decoration: underline;
    text-decoration-color: #f5a823;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
  }
  #mobile-nav > ul li a:not(.btn) {
    display: inline-block;
    position: relative;
    color: white;
    font: bold 20px Roboto, sans-serif;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li a:not(.btn):hover {
    color: #3f96b4;
  }
  #mobile-nav > ul li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow {
    content: "";
    width: 30px;
    heighT: 30px;
    background: url("../vanguard/assets/img/icon-arrow-down-white.svg") no-repeat center center;
    background-size: contain;
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow.open {
    transform: rotateZ(180deg);
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu {
    display: none;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li {
    margin-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li a {
    font-size: 17px;
    font-weight: normal;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
  .secondary-nav-mobile {
    display: none;
  }
  .secondary-nav-mobile .lang-item {
    display: initial;
  }
  .secondary-nav-mobile .lang-item.current-lang {
    display: none;
  }
}
/* ==========================================================================
   Helpers Classes
   ========================================================================== */
.u-clr-primary {
  color: #009BD8;
}

.u-bg-primary {
  background-color: #009BD8;
}

.u-clr-secondary {
  color: #00475C;
}

.u-bg-secondary {
  background-color: #00475C;
}

.u-clr-tertiary {
  color: #082F3B;
}

.u-bg-tertiary {
  background-color: #082F3B;
}

.u-clr-accent {
  color: #F0AF49;
}

.u-bg-accent {
  background-color: #F0AF49;
}

.u-clr-success {
  color: #00ff3d;
}

.u-bg-success {
  background-color: #00ff3d;
}

.u-clr-warning {
  color: #ff5400;
}

.u-bg-warning {
  background-color: #ff5400;
}

.u-clr-black {
  color: #070707;
}

.u-bg-black {
  background-color: #070707;
}

.bg-img {
  background-image: url(../img/bg_xxx.jpg);
}

.u-pos-relative {
  position: relative;
}

.u-ls-reset, #header #secondary-nav > ul,
#header .menu > ul, #header #secondary-nav > ul .sub-menu,
#header .menu > ul .sub-menu {
  list-style: none;
  padding: 0;
}

.u-align-xy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-align-y {
  top: 50%;
  transform: translateY(-50%);
}

.u-align-x {
  left: 50%;
  transform: translateX(-50%);
}

.u-flip-x {
  transform: scaleX(-1);
}

/* ==========================================================================
   Gradients
   ========================================================================== */
.u-gradient-primary {
  background: #3f96b4;
  background: linear-gradient(0deg, #3f96b4 0%, #004054 100%);
}

/* ==========================================================================
   Content Invert
   ========================================================================== */
.u-content-invert {
  color: #fff;
}
.u-content-invert :is(h1, h2, h3, h4, h5, h6) {
  color: #fff;
}

.search-trigger {
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
}
.close-popup svg path {
  fill: #3f96b4;
}

.search-result-page {
  padding: 6rem 3rem;
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.search-popup.open {
  opacity: 1;
  pointer-events: auto;
}
.search-popup .search-title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 3rem;
}
.search-popup .search-form {
  width: 30%;
}
.search-popup .search-field {
  width: 100%;
  height: 50px;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
}
.search-popup .search-submit {
  width: 50%;
  margin: 3rem auto 4rem;
  padding: 1.3rem 1.8rem;
  font-weight: bold;
  font-size: 1.6rem;
  color: white;
  background-color: #3f96b4;
  border: none;
  cursor: pointer;
}
.search-popup .search-submit:hover {
  text-decoration: underline;
}

.alert-block {
  width: 100%;
  background-color: #BA0808;
  padding: 15px 0;
  text-align: center;
  height: var(--alert-height);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.alert-block .the-content {
  max-width: 1000px;
  margin: auto;
}
.alert-block .the-content h1, .alert-block .the-content h2, .alert-block .the-content h3, .alert-block .the-content h4, .alert-block .the-content p, .alert-block .the-content a {
  color: white;
}
.alert-block .the-content p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.shrink .alert-block {
  height: 0;
  padding: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
  background: #004054;
  color: #fff;
  padding: 3.5rem;
}
#footer #footer-nav {
  margin: 30px 0 0;
}
#footer #footer-nav > ul {
  padding-left: 0;
  margin-bottom: 0;
}
#footer #footer-nav > ul > li {
  list-style: none;
}
#footer #footer-nav > ul > li.is-title {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
#footer #footer-nav > ul > li.is-title > a {
  font-weight: bold;
}
#footer #footer-nav > ul > li ul {
  padding-top: 3rem !important;
  padding-left: 0;
}
#footer #footer-nav > ul > li ul li {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem !important;
}
#footer #footer-nav > ul > li ul li.is-title {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
#footer #footer-nav > ul > li ul li.is-title > a {
  font-weight: bold;
}
#footer a {
  font-size: 1.8rem;
  color: white;
  font-weight: lighter;
}
#footer .footer-logo {
  width: 230px;
  display: block;
}
#footer .col-contact a {
  font-size: 1.6rem;
  font-weight: 500;
}
#footer .col-social-title h5 {
  color: #3f96b4;
  font-size: 1.8rem;
  text-transform: uppercase;
}
#footer .socials-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: -4px;
}
#footer .socials-wrap a {
  margin: auto;
}
#footer .socials-wrap a:nth-child(1) {
  margin-left: 0;
}
#footer .socials-wrap a:nth-last-child(1) {
  margin-right: 0;
}
#footer .socials-wrap a svg {
  height: 25px;
  width: 25px;
}

#copyrights {
  background-color: #082F3B;
}
#copyrights .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#copyrights .container p {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 0;
}

#footer .footer-ctas {
  margin-bottom: 40px;
}
#footer .footer-ctas .c-btn-footer {
  margin-bottom: 20px;
  width: 100%;
  padding: 1.3rem 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1em;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: normal 18px/20px sans-serif;
  margin-bottom: 10px;
  color: black;
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 15px;
  border: 1px solid #282828;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 15px;
  border: 1px solid #282828;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  /*
   * To add "custom" arrow to HTML select in gForm - comment out if Chosen or enhanced UI active - can comment back in mobile since chosen does not work
   */
  /*
  &:after{
  	content: '';
  	display: block;
  	position: absolute;
  	@include v-align(absolute);
  	right: 15px;
  	height: 25px;
  	width: 25px;
  	background: {
  		image: url('../images/forms/angle-down.svg');
  		size: contain;
  		position: center;
  		repeat: no-repeat;
  	}
  }
   */
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 20px;
  width: 20px;
  background-color: #082F3B;
  border-radius: 100%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 20px;
  width: 20px;
  background-color: #082F3B;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: none;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  max-height: 100px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:before {
  content: "Déposez votre cv";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  border: 2px solid #004054;
  padding: 10px 15px;
  color: #004054;
  background-color: #fff;
  text-transform: uppercase;
  font: bold 2rem/2.5rem Roboto, sans-serif;
  transition: all 0.3s ease-in-out;
  pointer-events: none !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:hover:before {
  color: white;
  background-color: #f5a823;
  border-color: #f5a823;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "\f335";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 30px;
  /*
   * Edit the stroke-line cap, and stroke color directly in /images/loader.svg
   */
}
form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 18px/32px sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #282828;
  border-radius: 0;
  padding: 15px !important;
  font: 400 18px/20px sans-serif !important;
  color: black;
  background: white url(../image/arrow-dropdown.svg) no-repeat 98% center;
  cursor: pointer;
}
select::placeholder {
  color: grey !important;
  opacity: 1 !important;
}

.chosen-container-single {
  width: 100% !important;
}
.chosen-container-single.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}
.chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.chosen-container-single .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  max-height: 100%;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  background: transparent;
  cursor: pointer;
}
.chosen-container-single .chosen-single span {
  font: 400 16px/18px sans-serif;
  color: black;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  bottom: inherit;
  top: inherit;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: black transparent transparent transparent;
}
.chosen-container-single .chosen-single div b {
  display: none !important;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-drop {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0 0;
  box-shadow: none;
  z-index: 1;
  top: calc(100% - 2px);
  border-radius: 0 0;
  border: 2px solid black;
}
.chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results {
  border: 0;
  background: white;
  border-radius: 0;
  max-height: 150px;
  overflow-y: scroll;
  height: auto;
  padding: 0 0;
  margin: 0 0;
}
.chosen-container-single .chosen-drop .chosen-results li {
  position: relative;
  display: block;
  padding: 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  cursor: pointer;
  text-align: left;
}
.chosen-container-single .chosen-drop .chosen-results li.disabled-result, .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder {
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: grey;
  background-color: grey;
  color: white;
}

@media screen and (max-width: 1450px) {
  #header .main-nav-container .container #main-nav > ul li a {
    padding: 2rem;
  }
}
@media screen and (max-width: 1380px) {
  .page-with-sidebar {
    padding-top: 8rem;
  }
  .cta-sidebar {
    top: 210px;
  }
}
@media screen and (max-width: 1199px) {
  #footer #footer-nav > ul {
    justify-content: space-between;
  }
  #footer #footer-nav > ul > li {
    min-width: 30%;
  }
  #footer .footer-bottom {
    padding-top: 4rem !important;
    border-top: 1px solid #3f96b4;
    text-align: center;
  }
  #footer .footer-bottom .socials-wrap a {
    margin: 5px 10px;
  }
  #footer .footer-bottom .col-social-title {
    margin-top: 4rem;
  }
  .search-popup .search-form {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .the-content h1 {
    font-size: 4.8rem;
    margin-bottom: 1.8rem;
  }
  .the-content h1 br {
    display: none;
  }
  #header {
    -webkit-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.05);
  }
  #header .wrapper > nav {
    display: none;
  }
  #header .mobile-nav-trigger {
    margin: 10px 0 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 22px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span {
    width: 35px;
    height: 4px;
    display: block;
    background: #3f96b4;
    flex: 0 0 auto;
    transform-origin: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(2):before, #header .mobile-nav-trigger span:nth-child(2):after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #3f96b4;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger:hover span:nth-child(2) {
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger:hover span:nth-child(1), #header .mobile-nav-trigger:hover span:nth-child(3) {
    transform: translateY(0px);
  }
  #header .logo {
    position: relative;
    top: -12px;
    transition: all 0.3s ease-in-out;
  }
  #header .logo img {
    height: 75px;
  }
  #header .nav-container {
    position: relative;
    top: 5px;
  }
  #header.shrink .logo {
    top: 0;
  }
  #header.shrink .logo img {
    height: 50px;
  }
  #header.shrink .nav-container {
    top: 7px;
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(-13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):before {
    transform: rotateZ(135deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):after {
    transform: rotateZ(225deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  .secondary-nav-mobile {
    display: block;
  }
  #main {
    margin-top: calc(var(--alert-height, 0) + 115px);
  }
  .mobile-nav-trigger,
  #mobile-nav {
    display: block;
  }
  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 115px;
    right: 0;
    width: 100%;
    max-width: 250px;
    height: 100vh;
    overflow-x: scroll;
    padding: 4rem 0 2rem;
    background: #004054;
    display: flex;
    justify-content: start;
    align-items: start;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  #mobile-nav.shrink {
    top: 80px;
    height: calc(100% - 80px);
  }
  #mobile-nav > ul {
    width: 100%;
    padding: 0 20px 0 10px;
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 20px;
  }
  #mobile-nav > ul li a {
    display: inline-block;
    position: relative;
    color: white;
    font: bold 18px Roboto, sans-serif;
    padding: 5px 0px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li a:hover {
    color: #fff !important;
  }
  #mobile-nav > ul li.socials-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 17px;
  }
  #mobile-nav > ul li.socials-container p {
    padding: 5px 0px;
    color: white;
    font: bold 18px Roboto, sans-serif;
  }
  #mobile-nav > ul li.socials-container a {
    padding: 0 10px 0 0px;
  }
  #mobile-nav > ul li.socials-container a svg {
    width: 30px;
  }
  #mobile-nav > ul li.socials-container a svg path {
    fill: white;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li.socials-container a:hover svg {
    max-width: 100%;
  }
  #mobile-nav > ul li.socials-container a:hover svg path {
    fill: black;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
  #secondary-nav {
    display: none !important;
  }
  #main .container {
    padding: 0 3rem;
  }
  .page-with-sidebar .bg-decoration {
    left: -450px;
  }
  .the-content h2 {
    margin-top: 3rem;
  }
  .home-news .col-12, .home-news form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields .home-news .gfield.gfield--width-third, .home-news form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .home-news .gfield.gfield--width-half, .home-news form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .home-news .gfield.gfield--width-full, .home-news form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .home-news .ginput_full, .home-news form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .home-news .ginput_left, .home-news form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .home-news .ginput_right {
    margin-bottom: 3rem;
  }
  .home-top-container .home-news h2 {
    padding-left: 0;
  }
  .home-content .image img {
    height: 400px;
    object-fit: cover;
    margin-bottom: 25px;
  }
  .home-top-container .home-news h2 {
    font-size: 4.8rem;
  }
  .page-with-sidebar {
    padding: 7rem 0;
  }
  .page-template-normal {
    background-position: -500px 400px;
  }
  #primary.no-sidebar {
    width: 90%;
  }
  #footer .footer-bottom > .row, #footer #footer-nav.footer-bottom > ul, #footer form .gform_body .footer-bottom > .gform_fields, form .gform_body #footer .footer-bottom > .gform_fields, #footer form .gform_body .gform_fields .gfield .footer-bottom > .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #footer .footer-bottom > .ginput_container.ginput_container_address {
    flex-direction: column;
    align-items: center;
  }
  #footer .footer-bottom > .row .col-xl-2, #footer #footer-nav.footer-bottom > ul .col-xl-2, #footer form .gform_body .footer-bottom > .gform_fields .col-xl-2, form .gform_body #footer .footer-bottom > .gform_fields .col-xl-2, #footer form .gform_body .gform_fields .gfield .footer-bottom > .ginput_container.ginput_container_address .col-xl-2, form .gform_body .gform_fields .gfield #footer .footer-bottom > .ginput_container.ginput_container_address .col-xl-2 {
    margin-bottom: 2rem;
  }
  #footer .footer-bottom > .row .col-social-title, #footer #footer-nav.footer-bottom > ul .col-social-title, #footer form .gform_body .footer-bottom > .gform_fields .col-social-title, form .gform_body #footer .footer-bottom > .gform_fields .col-social-title, #footer form .gform_body .gform_fields .gfield .footer-bottom > .ginput_container.ginput_container_address .col-social-title, form .gform_body .gform_fields .gfield #footer .footer-bottom > .ginput_container.ginput_container_address .col-social-title {
    margin-top: 1rem;
  }
  #copyrights {
    padding: 1.5rem 0;
    text-align: center;
  }
  .search-popup .search-form {
    width: 70%;
  }
  .slider-normal .col-img {
    padding: 0;
    margin-bottom: 25px;
  }
  .news-block .content h4 {
    font-size: 3rem;
  }
  .news-block .content .the-content p {
    font-size: 1.8rem;
  }
  .home-testimonials .testimonial-block .col-img .image, .home-testimonials .testimonial-block .col-img .image img {
    margin-bottom: 3rem;
  }
  .blog-page .news-wrap .blog-post-block .content h4 {
    font-size: 2.8rem;
  }
  .blog-page .news-wrap .blog-post-block .content p {
    font-size: 1.8rem;
  }
  .single-post-wrap {
    padding: 6rem 0 3rem;
  }
  .img-sidebar img {
    margin: 2rem auto;
    max-height: 200px;
    width: 90%;
  }
  #footer {
    padding: 3.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .the-content h2 {
    margin-top: 2rem;
    font-size: 3.2rem;
  }
  .the-content h3 {
    font-size: 2.8rem;
  }
  .collapse-content .collapse-trigger {
    font-size: 2.9rem;
  }
  .single-sub-collapse h3 {
    font-size: 2.3rem;
  }
  #scroll-to-top svg {
    height: 45px;
    width: 45px;
  }
  .home-testimonials {
    padding: 6.5rem 6rem;
  }
  .home-testimonials .testimonial-block .col-img {
    padding: 0;
  }
  .home-testimonials .testimonial-block .col-text {
    padding: 0;
  }
  .home-testimonials .testimonial-block .col-text > svg {
    display: none;
  }
  .collapse-trigger {
    font-size: 2.5rem;
  }
  .collapse-trigger:after {
    right: 1rem;
  }
  .blog-page .news-wrap .blog-post-block .content {
    padding: 25px 20px 15px;
  }
  .blog-page .news-wrap .blog-post-block img {
    height: 250px;
  }
  .single-post-wrap .post-banner img {
    min-height: 30rem;
    max-height: 50rem;
  }
  .video-fancybox {
    height: 350px;
  }
  .slider-normal {
    margin-top: 1rem;
  }
  .slider-normal .container > h2 {
    font-size: 3.6rem;
  }
  .slider-normal .swiper-slide {
    padding: 30px 0;
  }
}
@media screen and (max-width: 680px) {
  .the-content h1 {
    font-size: 4.2rem;
  }
  .the-content h2 {
    margin-top: 2rem;
    font-size: 3rem;
  }
  .the-content h3 {
    font-size: 2.8rem;
  }
  .the-content p {
    font-size: 1.7rem;
  }
  .collapse-content .collapse-trigger {
    font-size: 2.5rem;
  }
  #primary h1 {
    font-size: 4.5rem;
  }
  .home-top-container .home-news h2 {
    font-size: 4.2rem;
  }
  .home-testimonials h2 {
    font-size: 4.5rem;
  }
  .blog-page h2 {
    font-size: 4rem;
  }
  #footer #footer-nav > ul > li {
    min-width: 50%;
  }
  .page-with-banner .page-banner h2 {
    font-size: 4.5rem;
  }
  .page-with-banner .page-banner h3 {
    font-size: 3.5rem;
  }
  .page-with-banner .page-banner h2 br, .page-with-banner .page-banner h3 br {
    display: none;
  }
  .page-template-normal {
    background-size: 1000px 1200px;
    background-position: -450px 750px;
  }
  .team-category .member {
    padding: 50px 30px;
  }
  .team-category .member .email a {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .the-content h1 {
    font-size: 3.6rem;
  }
  .the-content h2 {
    font-size: 2.5rem;
  }
  .the-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .collapse-content .collapse-trigger {
    font-size: 2.2rem;
  }
  .sub-collapse-container .collapse-content {
    padding: 0.5rem 0 3rem;
  }
  #primary h1 {
    font-size: 4.2rem;
  }
  .c-btn {
    font-size: 1.4rem;
  }
  .page-transition .transition-logo {
    width: 250px;
    height: 250px;
  }
  .home-testimonials h2 {
    margin-left: -3rem;
    font-size: 4.2rem;
    margin-bottom: 3rem;
  }
  .home-testimonials .container {
    padding: 0 !important;
  }
  .home-testimonials .swiper-button-prev, .home-testimonials .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .slider-normal .swiper-button-prev, .slider-normal .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .news-block .content {
    padding: 3.5rem 2.5rem 3rem 2.5rem;
  }
  .news-block .image, .news-block .image img {
    height: 250px;
  }
  .search-popup .search-form {
    width: 90%;
  }
  .page-with-sidebar #sidebar {
    padding: 0;
  }
  .cta-sidebar {
    padding: 5rem 3rem;
  }
  .slider-normal {
    padding: 60px 20px;
  }
  .slider-normal .swiper-button-prev {
    left: -1rem;
  }
  .slider-normal .swiper-button-next {
    right: -1rem;
    left: auto;
  }
  .video-fancybox {
    height: 250px;
  }
  .video-fancybox .play-wrap {
    height: 110px;
    width: 110px;
  }
  .slider-normal .container > h2 {
    font-size: 3rem;
  }
  .slider-normal .swiper-slide {
    padding: 25px 0;
  }
  .cta-sidebar h4 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .socials-wrap a svg {
    height: 35px;
    width: 35px;
  }
}
@media screen and (max-width: 475px) {
  .the-content h1 {
    font-size: 3.2rem;
  }
  #primary h1 {
    font-size: 4rem;
  }
  #primary .the-content h1 {
    font-size: 3.2rem;
  }
  #footer #footer-nav > ul > li ul li.is-title {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  #footer #footer-nav {
    margin-top: 50px;
  }
  #footer #footer-nav > ul {
    text-align: center;
  }
  #footer #footer-nav > ul > li {
    min-width: 100%;
  }
  #footer #footer-nav > ul > li.is-title {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  #footer #footer-nav > ul > li ul {
    padding-top: 0 !important;
  }
  #footer #footer-nav > ul .menu-item {
    display: none;
  }
  #footer #footer-nav > ul .menu-item.is-title {
    display: block;
  }
  #footer .footer-logo {
    margin: auto;
  }
  #main #footer .container {
    padding: 0 1rem;
  }
  .home-testimonials h2 {
    font-size: 4rem;
  }
  .blog-page .news-wrap .blog-post-block .content {
    padding: 25px 0 15px;
  }
  .blog-page .news-wrap .blog-post-block .content h4 {
    font-size: 2.2rem;
  }
  .blog-page .news-wrap .blog-post-block .content p {
    font-size: 1.6rem;
  }
  .blog-page .news-wrap .blog-post-block .content h5 {
    font-size: 16px;
  }
  .blog-page .news-wrap .blog-post-block img {
    height: 200px;
  }
  .blog-page .news-wrap .blog-post-block .c-btn {
    font-size: 1.4rem;
    padding: 1.1rem 3.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
