@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
: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 (prefers-reduced-motion: reduce), print {
  .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;
  }
}
@-webkit-keyframes bounce {
  0%, 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: translateZ(0);
    transform: translateZ(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: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 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: translateZ(0);
    transform: translateZ(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: translateZ(0) scaleY(0.95);
    transform: translateZ(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 {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(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 {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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;
}
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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;
}
@-webkit-keyframes bounceIn {
  0%, 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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 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: scaleX(1);
    transform: scaleX(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 {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%, 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(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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 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(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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.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;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(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;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    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;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(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 {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes zoomOut {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@keyframes slide-in {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  51% {
    width: 100%;
    right: 0%;
    left: auto;
  }
  100% {
    width: 0%;
    right: 0%;
    left: auto;
  }
}
@keyframes opacity {
  0%, 50% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 1;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes image {
  0% {
    clip-path: inset(0% 0% 100% 0);
    transform: scale(1.2);
  }
  100% {
    clip-path: inset(0% 0% 0% 0);
    transform: scale(1);
  }
}
@keyframes bgMobile {
  100% {
    width: 100%;
  }
}
@keyframes bgDesktop {
  100% {
    width: calc(200% - 2rem);
  }
}
@keyframes opa {
  100% {
    opacity: 1;
  }
}
@keyframes bg2 {
  100% {
    height: 100%;
  }
}
.animate__clip-img {
  animation-name: image;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.2s;
  clip-path: inset(0% 0% 100% 0);
  animation-fill-mode: forwards;
}
.animate__clip-img-img img {
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 1s;
  clip-path: inset(0% 0% 100% 0);
  animation-fill-mode: forwards;
}
.animate__clip-img-img.animated img {
  animation-name: image;
}
.animate__title {
  transform: translateY(100%);
  animation: slide-up 2s cubic-bezier(0.7, 0, 0.1, 1) both 1;
}
.animate__bg {
  width: 0;
  animation: bgMobile 2s cubic-bezier(0.7, 0, 0.1, 1) both 1;
}
@media only screen and (min-width : 1280px) {
  .animate__bg {
    animation: bgDesktop 2s cubic-bezier(0.7, 0, 0.1, 1) both 1;
  }
}
.animate__bg2 {
  height: 0;
  animation: bg2 0.1s cubic-bezier(0.7, 0, 0.1, 1) both 1;
}
.animate__opa {
  opacity: 0;
  animation: opa 1s cubic-bezier(0.7, 0, 0.1, 1) both 1;
}
.m-delay-1 {
  animation-delay: 0.1s;
}
.m-delay-2 {
  animation-delay: 0.2s;
}
.m-delay-3 {
  animation-delay: 0.3s;
}
.m-delay-4 {
  animation-delay: 0.4s;
}
/**
 * Swiper 4.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 5, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar, .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a, button, input, textarea {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
a:hover, button:hover, input:hover, textarea:hover, a:focus, button:focus, input:focus, textarea:focus {
  outline: none;
}
a, a:hover, a:active, a:link, a:visited {
  text-decoration: none;
  outline: none;
}
a {
  color: #000a2c;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  color: #000a2c;
  background-color: #f6f4f0;
  background-color: #fff;
  margin: 0;
}
@media only screen and (min-width : 1280px) {
  html, body {
    font-size: 1vw;
  }
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
body.m-prevent-scroll {
  overflow: hidden;
}
main {
  flex: 1;
  position: relative;
  z-index: 90;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  font-size: inherit;
  line-height: 1.2;
}
p {
  margin: 0;
  font-size: inherit;
}
figure {
  margin: 0;
  padding: 0;
}
img, svg {
  display: block;
}
section {
  width: 100%;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.wp-block {
  max-width: 1024px;
}
.m-blur {
  transition: all 0.2s;
}
.m-blur.m-hidden {
  opacity: 0.25;
}
.m-blur.m-visible {
  opacity: 1;
}
.site-team {
  position: relative;
  overflow: hidden;
  font-size: 1.125rem;
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding-bottom: 2rem;
}
@media only screen and (min-width : 1024px) {
  .site-team {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-team {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-team {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-team {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-team {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-team {
    padding-bottom: 8rem;
  }
}
.site-team.m-single {
  margin-top: 6rem;
}
.site-team:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #f6f4f0;
  z-index: -1;
  width: calc(100% - 2.5vw - 1rem);
}
@media only screen and (min-width : 1024px) {
  .site-team:before {
    width: calc(100% - 8vw - 2rem);
  }
}
.site-team__goal {
  position: absolute;
  top: -6rem;
}
.site-team__header {
  width: auto;
  grid-column: main / main;
  position: relative;
}
@media only screen and (max-width : 1023px) {
  .site-team__header {
    padding-left: calc(2.5vw + 1rem);
  }
}
@media only screen and (min-width : 1024px) {
  .site-team__header {
    display: flex;
    grid-column: main / main;
  }
  .site-team:nth-of-type(2n - 1) .site-team__header:before {
    content: '';
    width: 100%;
    margin-left: -68%;
    height: 22rem;
    position: absolute;
    top: 100%;
    left: 0;
    background-image: url('../img/dot.svg');
    background-repeat: repeat;
    background-size: 6rem 6rem;
    background-position: left bottom;
    z-index: -1;
  }
  .site-team:nth-of-type(2n) .site-team__header:before {
    content: '';
    width: calc(66% + 8vw + 2rem);
    margin-right: calc(-8vw - 2rem);
    height: 100%;
    position: absolute;
    top: calc(-12rem + 4px);
    right: 0;
    background-image: url('../img/dot.svg');
    background-repeat: repeat;
    background-size: 6rem 6rem;
    background-position: left top;
    z-index: -1;
  }
}
.site-team__header-cover {
  overflow: hidden;
  width: 100%;
  display: none;
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .site-team__header-cover {
    width: calc(66% + 8vw + 2rem);
    margin-left: calc(-8vw - 2rem);
    display: block;
  }
}
.site-team__header-cover-inner {
  background-color: #231006;
  display: block;
  width: 100%;
  height: 100%;
}
.site-team__header-cover img {
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .2);
  mix-blend-mode: screen;
  opacity: 0.25;
  transform: scale(1.05);
  filter: blur(0.25rem);
}
.site-team__header-content {
  width: 100%;
  padding: 2rem 0 1rem;
}
@media only screen and (min-width : 1024px) {
  .site-team__header-content {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    width: 34%;
    padding: 2rem 0 2rem 2rem;
  }
}
.site-team__name {
  font-weight: 700;
  color: #231006;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  padding-right: 5rem;
}
@media only screen and (min-width: 768px) {
  .site-team__name {
    font-size: 3rem;
    margin: 0 0 4rem 0;
  }
}
@media only screen and (min-width : 1280px) {
  .site-team__name {
    font-size: 3.35rem;
    margin: 0 0 6rem 0;
  }
}
.site-team__name-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.site-team__name-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.site-team__name-text {
  display: block;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .site-team__name {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-team__name {
    margin-bottom: 1rem;
  }
}
.site-team__position {
  color: #ff5c00;
}
.site-team__content {
  grid-column: main / main;
}
@media only screen and (max-width : 1023px) {
  .site-team__content {
    padding-left: calc(2.5vw + 1rem);
  }
}
@media only screen and (min-width : 1024px) {
  .site-team__content {
    display: flex;
    align-items: flex-start;
  }
}
.site-team__photo {
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width : 1024px) {
  .site-team__photo {
    width: 32%;
    transform: translateY(-50%);
  }
}
.site-team__photo img {
  position: relative;
  width: 100%;
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .2);
}
.site-team__text {
  width: 100%;
  padding: 1rem 0 0;
}
@media only screen and (min-width : 1024px) {
  .site-team__text {
    width: 68%;
    padding: 2rem 0 0 2rem;
  }
}
.site-team__text h2, .site-team__text h3, .site-team__text h4, .site-team__text h5, .site-team__text h6 {
  font-weight: 500;
  font-weight: 700;
}
.site-team__text h2 {
  font-size: 3rem;
  margin: 3rem 0 2rem;
}
.site-team__text h3 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}
.site-team__text h4 {
  font-size: 1.5rem;
  margin: 3rem 0 1.5rem;
}
@media only screen and (max-width : 1023px) {
  .site-team__text h4.m-not-margin-top {
    margin-top: 3rem !important;
  }
}
.site-team__text p {
  margin: 1rem 0;
}
@media only screen and (min-width: 768px) {
  .site-team__text p {
    margin: 1.5rem 0;
  }
}
.site-team__text p a {
  color: #ff5c00;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: color 0.2s, border-color 0.2s;
}
.site-team__text p a:hover {
  color: #000a2c;
  border-color: transparent;
}
.site-team__text ol {
  counter-reset: list;
}
.site-team__text ol li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}
.site-team__text ol li:before {
  counter-increment: list;
  /* Инкрементирует счетчик*/
  content: "0" counter(list);
  font-size: 3.5rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  color: #ff5c00;
  opacity: 0.25;
  margin-right: 1rem;
  text-align: center;
  width: 5rem;
  flex-shrink: 0;
}
.site-team__text ol li:after {
  width: 0;
  height: calc(100% - 1rem);
  border-right: 1px dashed #ff5c00;
  content: '';
  position: absolute;
  top: 3.75rem;
  left: 2.5rem;
}
.site-team__text ol li:last-of-type {
  margin-bottom: 0;
}
.site-team__text ol li:last-of-type:after {
  display: none;
}
.site-team__text .wp-block-quote {
  margin: 1.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid;
}
@media only screen and (min-width: 768px) {
  .site-team__text .wp-block-quote {
    margin: 2rem 0;
    border-left: 4px solid;
  }
}
.site-team__text .wp-block-columns {
  margin-bottom: 0;
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-columns {
    margin-bottom: 0rem;
    display: block !important;
  }
  .site-team__text .wp-block-columns:last-of-type {
    margin-bottom: 0rem;
  }
}
.site-team__text .wp-block-columns.m-with-dark-bg {
  position: relative;
  color: #fff;
}
@media only screen and (max-width : 767px) {
  .site-team__text .wp-block-columns.m-with-dark-bg {
    margin: 0 calc(-2.5vw - 1rem);
  }
  .site-team__text .wp-block-columns.m-with-dark-bg h2 {
    margin-left: calc(2.5vw + 1rem);
    margin-right: calc(2.5vw + 1rem);
  }
}
.site-team__text .wp-block-columns.m-with-dark-bg:before {
  content: '';
  position: absolute;
  background-color: #231006;
  background-image: url('../img/aproach.jpg');
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-columns.m-with-dark-bg:before {
    margin-right: calc(-1rem - 2.5vw);
    width: calc(100% + 2rem + 5vw);
    height: 57%;
    bottom: 0;
    right: 0;
    display: none;
  }
}
@media only screen and (min-width : 1024px) {
  .site-team__text .wp-block-columns.m-with-dark-bg:before {
    margin-right: calc(-10vw - 2rem);
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
  }
}
.site-team__text .wp-block-columns.m-with-dark-bg:after {
  content: '';
  position: absolute;
  background-color: #f6f4f0;
  z-index: -1;
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-columns.m-with-dark-bg:after {
    width: calc(100% + 2rem + 5vw);
    margin-left: calc(-1rem - 2.5vw);
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width : 1024px) {
  .site-team__text .wp-block-columns.m-with-dark-bg:after {
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: calc(-10vw - 2rem);
  }
}
.site-team__text .wp-block-columns.m-with-dark-bg .wp-block-column:first-of-type {
  margin-bottom: 0;
}
.site-team__text .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type:before {
  content: '';
  width: 24rem;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: calc(-8vw - 2rem);
  background-image: url('../img/dot.svg');
  background-repeat: repeat;
  background-size: 6rem 6rem;
  background-position: left top;
  pointer-events: none;
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type {
    background-color: #231006;
    padding: 1rem;
  }
}
@media only screen and (max-width : 767px) {
  .site-team__text .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type {
    padding: calc(1rem + 2.5vw);
    margin-bottom: 0;
  }
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-columns.m-swap-columns {
    display: flex !important;
    flex-flow: column;
  }
  .site-team__text .wp-block-columns.m-swap-columns .wp-block-column:first-of-type {
    order: 2;
  }
  .site-team__text .wp-block-columns.m-swap-columns .wp-block-column:first-of-type h2 {
    margin: 0rem 0 1rem;
  }
}
.site-team__text .wp-block-column {
  position: relative;
}
.site-team__text .wp-block-column p:first-of-type {
  margin-top: 0;
}
.site-team__text .wp-block-column p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width : 1023px) {
  .site-team__text .wp-block-column {
    margin-bottom: calc(2.5vw + 1rem);
    margin-left: 0 !important;
  }
}
.texticon {
  display: flex;
  margin-bottom: 0rem;
}
@media only screen and (min-width: 768px) {
  .texticon {
    margin-bottom: 3rem;
  }
}
.texticon__icon {
  flex-shrink: 0;
  width: 3rem;
}
.texticon__icon img {
  width: 100%;
  display: block;
  height: auto;
}
.texticon__text {
  padding-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .texticon__text {
    padding-left: 1.5rem;
  }
}
.texticon__text strong {
  font-weight: 500;
}
.tile {
  background-size: 68% 68%;
  background-repeat: no-repeat;
  background-position: center;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.tile__text {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .tile__text {
    padding: 1rem;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width : 1024px) {
  .tile__text {
    font-size: 1rem;
  }
}
@media only screen and (min-width : 1280px) {
  .tile__text {
    padding: 1.5rem;
    font-size: 1.5rem;
  }
}
.tile__text strong {
  font-weight: 500;
}
.tile.m-Orange, .tile.m-Brown {
  color: #fff;
}
.tile:last-of-type:nth-of-type(3) {
  grid-column-end: 3;
}
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.site-slider__img {
  width: 100%;
}
.site-slider__container {
  overflow: visible;
}
.site-slider__arrows {
  display: none;
}
@media only screen and (min-width : 1024px) {
  .site-slider__arrows {
    display: flex;
    justify-content: flex-start;
    justify-content: flex-end;
    margin-top: 2rem;
  }
}
.site-slider__next svg, .site-slider__prev svg {
  width: 4rem;
  fill: #ff5c00;
}
@media only screen and (min-width: 768px) {
  .site-slider__next svg, .site-slider__prev svg {
    width: 6rem;
  }
}
.site-slider__prev {
  margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
  .site-slider__prev {
    margin-right: 2rem;
  }
}
.site-nav {
  display: none;
}
@media only screen and (min-width : 1024px) {
  .site-nav {
    display: block;
    grid-column: 5 / main;
  }
}
@media only screen and (min-width : 1280px) {
  .site-nav {
    grid-column: 7 / main;
  }
}
.site-nav ul {
  display: flex;
  justify-content: space-between;
}
.site-nav ul li {
  margin: 0 1rem 0 0;
  overflow: hidden;
}
.site-nav ul li:last-of-type {
  margin: 0;
}
.site-nav ul li.current-menu-item a, .site-nav ul li.current_page_parent a {
  color: #ff5c00;
}
.m-orange .site-nav ul li.current-menu-item a, .m-orange .site-nav ul li.current_page_parent a, .post-type-archive-team_members .site-nav ul li.current-menu-item a, .post-type-archive-team_members .site-nav ul li.current_page_parent a {
  color: #59260d;
}
.site-nav ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.site-nav ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.site-nav ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.site-nav ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.site-nav ul li:nth-child(5) {
  animation-delay: 0.5s;
}
.site-nav ul li:nth-child(6) {
  animation-delay: 0.6s;
}
.site-nav ul li:nth-child(7) {
  animation-delay: 0.7s;
}
.site-nav ul li:nth-child(8) {
  animation-delay: 0.8s;
}
.site-nav ul li:nth-child(9) {
  animation-delay: 0.9s;
}
.site-nav ul a {
  color: #59260d;
  font-size: 1.25rem;
  position: relative;
  transition: transform 0.4s;
  display: inline-block;
}
.site-nav ul a:after {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.site-nav ul a:hover {
  transform: translateY(-100%);
}
.home .site-nav ul a, .page-about .site-nav ul a, .page-team .site-nav ul a, .post-type-archive-team_members .site-nav ul a, .single-post .site-nav ul a, .m-orange .site-nav ul a, .m-sticky .site-nav ul a {
  color: #fff;
}
.site-header {
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 0.75rem 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  align-items: center;
  transition: background-color 0.8s;
}
@media only screen and (min-width : 1024px) {
  .site-header {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-header {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-header {
    padding: 1.5rem 0;
  }
}
.site-header.m-sticky:not(.m-active) {
  background-color: rgba(35, 16, 6, .5);
  backdrop-filter: blur(8px);
}
.site-header.m-sticky:not(.m-active) .current-menu-item a, .site-header.m-sticky:not(.m-active) .current_page_parent a {
  color: #ff5c00;
}
.site-header__socials {
  grid-column: main / main;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  animation-delay: 1s;
}
@media only screen and (min-width: 768px) {
  .site-header__socials {
    margin-top: 4rem;
  }
}
.site-header__social {
  margin: 0 2rem 0 0;
  opacity: 0;
}
.m-active .site-header__social {
  animation-name: opa;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.m-active .site-header__social:nth-of-type(1) {
  animation-delay: calc(.5s + (1 * .1s));
}
.m-active .site-header__social:nth-of-type(2) {
  animation-delay: calc(.5s + (2 * .1s));
}
.m-active .site-header__social:nth-of-type(3) {
  animation-delay: calc(.5s + (3 * .1s));
}
.m-active .site-header__social:nth-of-type(4) {
  animation-delay: calc(.5s + (4 * .1s));
}
.m-active .site-header__social:nth-of-type(5) {
  animation-delay: calc(.5s + (5 * .1s));
}
.m-active .site-header__social:nth-of-type(6) {
  animation-delay: calc(.5s + (6 * .1s));
}
.m-active .site-header__social:nth-of-type(7) {
  animation-delay: calc(.5s + (7 * .1s));
}
.m-active .site-header__social:nth-of-type(8) {
  animation-delay: calc(.5s + (8 * .1s));
}
.m-active .site-header__social:nth-of-type(9) {
  animation-delay: calc(.5s + (9 * .1s));
}
.site-header__social:hover {
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .site-header__social {
    margin: 0 1rem 0 0;
  }
}
.site-header__social svg path {
  fill: #fff;
}
.site-header__logo {
  grid-column: main / span 2;
}
@media only screen and (min-width: 768px) {
  .site-header__logo {
    grid-column: main / 4;
  }
}
.site-header__logo svg {
  width: auto;
  display: block;
  height: 2rem;
}
@media only screen and (min-width: 768px) {
  .site-header__logo svg {
    height: 3rem;
  }
}
.site-header__logo svg .icon {
  fill: #ff5c00;
}
.site-header__logo svg .text {
  fill: #231006;
}
.home .site-header__logo svg .icon, .m-orange .site-header__logo svg .icon, .post-type-archive-team_members .site-header__logo svg .icon, .single-post .site-header__logo svg .icon, .m-active .site-header__logo svg .icon, .m-sticky .site-header__logo svg .icon {
  fill: #fff;
}
.home .site-header__logo svg .text, .m-orange .site-header__logo svg .text, .post-type-archive-team_members .site-header__logo svg .text, .single-post .site-header__logo svg .text, .m-active .site-header__logo svg .text, .m-sticky .site-header__logo svg .text {
  fill: #fff;
}
.site-header__logo.m-active svg .icon {
  fill: #fff;
}
.site-header__logo.m-active svg .text {
  fill: #fff;
}
.menu-toggle {
  --webkit-appearance: none;
  font-size: 0px;
  width: 3rem;
  height: calc(100% + 1rem);
  position: relative;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  background: transparent;
  grid-column: span 1 / main;
  justify-self: end;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  margin-right: -0.75rem;
  cursor: pointer;
}
@media only screen and (min-width : 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle__path {
  width: 1.5rem;
  height: 2px;
  position: absolute;
  left: 0.75rem;
  background-color: #fff;
  transition: transform 0.4s, background-color 0.2s;
}
.menu-toggle__path.m-1 {
  top: 1.25rem;
}
.menu-toggle.m-active .menu-toggle__path.m-1 {
  transform: translateY(0.25rem) rotate(45deg);
  background-color: #fff;
}
.menu-toggle__path.m-2 {
  top: 1.75rem;
}
.menu-toggle.m-active .menu-toggle__path.m-2 {
  transform: translateY(-0.25rem) rotate(-45deg);
  background-color: #fff;
}
.site-mob {
  display: flex;
  flex-flow: column;
  position: fixed;
  z-index: 10;
  background: #231006;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  padding: 8rem 6%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
@media only screen and (min-width : 1024px) {
  .site-mob {
    display: none;
  }
}
.site-mob .menu {
  font-size: 2rem;
}
.site-mob .menu li {
  margin: 1rem 0;
  opacity: 0;
  animation: none;
}
.site-mob .menu li a {
  color: #fff;
}
.site-mob .menu li a:active {
  color: #ff5c00;
}
.site-mob .menu li__border {
  display: none;
}
.site-mob .menu li.current-menu-item a, .site-mob .menu li.current_page_item a, .site-mob .menu li.current_page_parent a {
  color: #ff5c00;
}
.site-mob.m-active {
  opacity: 1;
  pointer-events: initial;
}
.site-mob.m-active li {
  animation-name: opa !important;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
  visibility: visible !important;
}
.site-mob.m-active li:nth-of-type(1) {
  animation-delay: calc(.5s + (1 * .1s));
}
.site-mob.m-active li:nth-of-type(2) {
  animation-delay: calc(.5s + (2 * .1s));
}
.site-mob.m-active li:nth-of-type(3) {
  animation-delay: calc(.5s + (3 * .1s));
}
.site-mob.m-active li:nth-of-type(4) {
  animation-delay: calc(.5s + (4 * .1s));
}
.site-mob.m-active li:nth-of-type(5) {
  animation-delay: calc(.5s + (5 * .1s));
}
.site-mob.m-active li:nth-of-type(6) {
  animation-delay: calc(.5s + (6 * .1s));
}
.site-mob.m-active li:nth-of-type(7) {
  animation-delay: calc(.5s + (7 * .1s));
}
.site-mob.m-active li:nth-of-type(8) {
  animation-delay: calc(.5s + (8 * .1s));
}
.site-mob.m-active li:nth-of-type(9) {
  animation-delay: calc(.5s + (9 * .1s));
}
.site-footer {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding: 4rem 0;
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .site-footer {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-footer {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
.site-footer__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #231006;
}
.site-footer__bg:after {
  content: '';
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: radial-gradient(rgba(246, 244, 240, .75) 0.138vw, transparent 0.138vw);
  background-size: 3rem 3rem;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .site-footer__bg:after {
    background-size: 6rem 6rem;
  }
}
.site-footer__logo {
  grid-column: main / main;
  position: relative;
}
.site-footer__logo svg {
  fill: #fff;
}
.site-footer__title {
  grid-column: main / main;
  font-size: 3rem;
  color: #ff5c00;
  font-weight: 700;
  margin: 1rem 0 0 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .site-footer__title {
    margin: 2rem 0 0 0;
  }
}
.site-footer__items {
  grid-column: main / main;
  position: relative;
  margin: 1rem 0 2rem;
}
@media only screen and (min-width: 768px) {
  .site-footer__items {
    display: flex;
    margin: 1rem 0 3rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-footer__items {
    display: flex;
    margin: 1rem 0 4rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-footer__items {
    display: flex;
    margin: 1rem 0 6rem;
  }
}
.site-footer__item {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .site-footer__item {
    margin-bottom: 0;
  }
  .site-footer__item:first-of-type {
    margin-right: 2rem;
  }
}
.site-footer__caption {
  color: #fff;
}
.site-footer__link {
  color: #ff5c00;
  transition: opacity 0.2s;
}
.site-footer__link:hover {
  opacity: 0.5;
}
.site-footer__legal {
  grid-column: main / main;
  font-size: 0.875rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .site-footer__legal {
    grid-column: main / 4;
  }
}
@media only screen and (min-width : 1024px) {
  .site-footer__legal {
    grid-column: main / 8;
  }
}
.site-footer__legal-link {
  color: #ff5c00;
  transition: opacity 0.2s;
}
.site-footer__legal-link:hover {
  opacity: 0.5;
}
.site-footer__legal-text {
  color: #fff;
}
.site-footer__socials {
  grid-column: main / main;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .site-footer__socials {
    grid-column: 4 / main;
    justify-content: flex-end;
  }
}
@media only screen and (min-width : 1024px) {
  .site-footer__socials {
    margin-top: 0;
    grid-column: 8 / main;
  }
}
.site-footer__social {
  margin: 0 2rem 0 0;
  transition: opacity 0.2s;
}
.site-footer__social:hover {
  opacity: 0.5;
}
.site-footer__social:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .site-footer__social {
    margin: 0 1rem 0 0;
  }
  .site-footer__social:last-of-type {
    margin-right: 0;
  }
}
.site-footer__social svg path {
  fill: #fff;
}
.site-footer__social img {
  width: 1.5rem;
  height: auto;
  display: block;
}
.fp {
  font-size: 1.125rem;
  overflow: hidden;
}
.fp-cover {
  background-color: #ff5c00;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding-top: 2rem;
  position: relative;
  width: 100%;
}
@media only screen and (min-width : 1024px) {
  .fp-cover {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .fp-cover {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-cover {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .fp-cover {
    padding-top: 8rem;
  }
}
@media only screen and (max-width : 767px) {
  .fp-cover:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(rgba(154, 197, 255, .75) 0.138vw, transparent 0.138vw);
    background-size: 6vw 6vw;
    background-position: center;
  }
}
.fp-cover__text {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 3rem;
  overflow: hidden;
  left: 0;
  overflow: hidden;
}
.fp-cover__text:after {
  content: 'Prospective';
  left: -2rem;
  width: calc(100% + 4rem);
  color: rgba(255, 255, 255, .1);
  font-size: 22vw;
  font-weight: 700;
}
.fp-cover__title {
  font-weight: 700;
  line-height: 1.2;
  color: #000a2c;
  position: relative;
  font-size: 2rem;
  grid-column: main / main;
  z-index: 1;
  margin: 5rem 0 2rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .fp-cover__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__title {
    font-size: 3.35rem;
  }
}
.fp-cover__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.fp-cover__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.fp-cover__title-text {
  display: block;
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__title {
    margin: 5rem 0 5rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__title {
    grid-column: main / 10;
    margin: 3.25rem 0 5rem;
  }
}
.fp-cover__blur {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__blur {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__blur {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (max-width : 767px) {
  .fp-cover__blur {
    display: none;
  }
}
.fp-cover__blur-inner {
  grid-column: main / main;
  height: 100%;
  position: relative;
  background-color: #231006;
}
.fp-cover__blur-inner:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 6rem;
  z-index: 1;
  background-image: url('../img/dot.svg');
  background-repeat: repeat;
  background-size: 6rem 6rem;
  background-position: left top;
}
@media only screen and (min-width: 768px) {
  .fp-cover__blur-inner {
    grid-column: 5 / full;
  }
}
.fp-cover__blur-container {
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.fp-cover__blur-photo {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 104%;
  height: 104%;
  margin: -2%;
  filter: blur(0.5rem);
  position: relative;
  -webkit-filter: blur(0.5rem);
}
.fp-cover__slider {
  grid-column: full / full;
  position: relative;
  z-index: 1;
  margin-bottom: -6rem;
}
.fp-cover__slider-item {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  align-items: stretch;
  counter-reset: number;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-item {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__slider-item {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
.fp-cover__slider-content {
  grid-column: main / main;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-end;
}
@media mobile {
  .fp-cover__slider-content {
    order: 1;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-content {
    grid-column: main / 6;
    margin-right: -2rem;
    padding-bottom: 3rem;
  }
}
.fp-cover__slider-content-inner {
  height: 17rem;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-content-inner {
    height: 21rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__slider-content-inner {
    height: 23rem;
  }
}
.fp-cover__slider-bg {
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 0;
  height: 18rem;
  background-color: #59260d;
  display: none;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-bg {
    display: block;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-cover__slider-bg {
    height: 20rem;
  }
}
.fp-cover__slider-link {
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  grid-column: main / 7;
}
@media only screen and (min-width : 1280px) {
  .fp-cover__slider-link {
    margin-bottom: -1.5rem;
  }
}
.fp-cover__slider-link svg {
  fill: #fff;
  width: 5rem;
  margin-right: 1rem;
  transition: margin-right 0.2s;
}
.fp-cover__slider-link:hover svg {
  margin-right: 2rem;
}
.fp-cover__slider-photo {
  grid-column: main / main;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-photo {
    grid-column: 6 / main;
    padding-bottom: 3rem;
  }
}
.fp-cover__slider-photo-inner {
  padding-top: 65%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.fp-cover__slider-number {
  font-size: 12vw;
  line-height: 1;
  color: #fff;
  padding: 2rem 0 0 0;
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-number {
    padding: 0 2rem 0 3rem;
  }
}
.fp-cover__slider-text {
  color: #fff;
  line-height: 2;
  transition-delay: 0.2s;
}
@media only screen and (max-width : 1023px) {
  .fp-cover__slider-text {
    margin: 1rem 0;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-cover__slider-text {
    padding: 0 2rem 0 3rem;
  }
}
.fp-cover__slider-prev {
  width: 5rem;
  display: block;
  margin-right: 3.5rem;
  transition: opacity 0.2s;
}
.fp-cover__slider-prev svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #ff5c00;
}
.fp-cover__slider-prev:hover {
  opacity: 0.5;
}
.fp-cover__slider-next {
  width: 5rem;
  display: block;
  transition: opacity 0.2s;
}
.fp-cover__slider-next svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #ff5c00;
}
.fp-cover__slider-next:hover {
  opacity: 0.5;
}
.fp-cover__slider-arrows {
  position: absolute;
  right: calc(10% + .25rem);
  bottom: 0;
  z-index: 1;
  display: flex;
  padding: 0.5rem 0;
}
@media only screen and (max-width : 1023px) {
  .fp-cover__slider-arrows {
    display: none;
  }
}
@media only screen and (min-width : 2000px) {
  .fp-cover__slider-arrows {
    right: calc((100vw - 1671.28px) / 2);
  }
}
.fp-portfolio {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  grid-row-gap: 1rem;
  position: relative;
  width: 100%;
  background-color: #f6f4f0;
  padding-top: 2rem;
}
@media only screen and (min-width : 1024px) {
  .fp-portfolio {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-portfolio {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .fp-portfolio {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-portfolio {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-portfolio {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .fp-portfolio {
    padding-top: 8rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-portfolio {
    grid-row-gap: 2rem;
  }
}
.fp-portfolio__header {
  grid-column: main / main;
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .fp-portfolio__header {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-portfolio__header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.fp-portfolio__title {
  font-weight: 700;
  line-height: 1.2;
  color: #000a2c;
  position: relative;
  font-size: 2rem;
  margin-right: 2rem;
  min-width: calc((100% - 6rem)/4);
}
@media only screen and (min-width: 768px) {
  .fp-portfolio__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-portfolio__title {
    font-size: 3.35rem;
  }
}
.fp-portfolio__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.fp-portfolio__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.fp-portfolio__title-text {
  display: block;
  position: relative;
}
.fp-portfolio__item {
  display: block;
  grid-column: span 2;
  transition: transform 0.2s;
  transform-origin: center bottom;
}
.fp-portfolio__item:nth-of-type(2n - 1) {
  grid-column: main / span 2;
}
.fp-portfolio__item:nth-child(1) {
  animation-delay: 0.1s;
}
.fp-portfolio__item:nth-child(2) {
  animation-delay: 0.2s;
}
.fp-portfolio__item:nth-child(3) {
  animation-delay: 0.3s;
}
.fp-portfolio__item:nth-child(4) {
  animation-delay: 0.4s;
}
.fp-portfolio__item:nth-child(5) {
  animation-delay: 0.5s;
}
.fp-portfolio__item:nth-child(6) {
  animation-delay: 0.6s;
}
.fp-portfolio__item:nth-child(7) {
  animation-delay: 0.7s;
}
.fp-portfolio__item:nth-child(8) {
  animation-delay: 0.8s;
}
.fp-portfolio__item:nth-child(9) {
  animation-delay: 0.9s;
}
@media only screen and (min-width : 1024px) {
  .fp-portfolio__item {
    grid-column: span 2;
  }
  .fp-portfolio__item:nth-of-type(2n - 1) {
    grid-column: span 2;
  }
  .fp-portfolio__item:nth-of-type(4n - 3) {
    grid-column: main / span 2;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-portfolio__item {
    grid-column: span 3;
  }
  .fp-portfolio__item:nth-of-type(2n - 1), .fp-portfolio__item:nth-of-type(3n - 2) {
    grid-column: span 3;
  }
  .fp-portfolio__item:nth-of-type(4n - 3) {
    grid-column: main / span 3;
  }
}
.fp-portfolio__item-inner {
  height: 6rem;
  padding: 1rem;
}
@media only screen and (min-width : 1280px) {
  .fp-portfolio__item-inner {
    padding: 1rem 2rem;
    height: 10rem;
  }
}
.fp-portfolio__item img {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: scale-down;
}
.fp-portfolio__item:hover {
  transform: scale(1.1);
}
.fp-portfolio__link {
  display: flex;
  align-items: center;
  color: #ff5c00;
  margin-top: 0.5rem;
}
.fp-portfolio__link svg {
  width: 5rem;
  margin-right: 1rem;
  fill: #ff5c00;
  transition: margin-right 0.2s;
}
.fp-portfolio__link:hover svg {
  margin-right: 2rem;
}
.fp-team {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .fp-team {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-team {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .fp-team {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-team {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-team {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .fp-team {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .fp-team {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-team {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-team {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .fp-team {
    padding-bottom: 6rem;
  }
}
.fp-team:before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 0;
  width: 30vw;
  height: calc(100% - 2rem);
  background-color: #ff5c00;
  background-image: url('../img/small-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .fp-team:before {
    top: 6rem;
    height: calc(100% - 6rem);
  }
}
.fp-team:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 12rem);
  background-color: #f6f4f0;
  z-index: -1;
}
.fp-team__text {
  width: 100%;
  position: absolute;
  bottom: 7rem;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
@media only screen and (min-width : 1024px) {
  .fp-team__text {
    bottom: 3rem;
  }
}
.fp-team__text:after {
  content: 'Technologies';
  color: rgba(255, 255, 255, .5);
  font-size: 22vw;
  font-weight: 700;
  left: -2rem;
  width: calc(100% + 4rem);
}
.fp-team__slider {
  overflow: visible;
}
.fp-team__cover {
  overflow: hidden;
  width: 100%;
}
.fp-team__cover img {
  width: 100%;
  height: auto;
}
.fp-team__title {
  font-weight: 700;
  line-height: 1.2;
  color: #000a2c;
  position: relative;
  font-size: 2rem;
  margin-bottom: 1rem;
  grid-column: main / main;
  margin-top: 0rem;
}
@media only screen and (min-width: 768px) {
  .fp-team__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-team__title {
    font-size: 3.35rem;
  }
}
.fp-team__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.fp-team__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.fp-team__title-text {
  display: block;
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .fp-team__title {
    margin-bottom: 5rem;
  }
}
.fp-team__items {
  grid-column: main / main;
  margin: 0 -1rem 0 0;
}
@media only screen and (min-width: 768px) {
  .fp-team__items {
    margin: 0 -0.5rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-team__items {
    margin: 0 -1rem;
  }
}
.fp-team__item {
  padding: 0 1rem 0 0;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .fp-team__item {
    padding: 0 0.5rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-team__item {
    padding: 0 1rem;
  }
}
.fp-team__item-inner {
  background-color: #fff;
  display: block;
  box-shadow: 0 1rem 2rem rgba(0, 10, 44, .05);
  height: 100%;
}
.fp-team__item:nth-child(1) img {
  animation-delay: 0.2s;
}
.fp-team__item:nth-child(2) img {
  animation-delay: 0.4s;
}
.fp-team__item:nth-child(3) img {
  animation-delay: 0.6s;
}
.fp-team__item:nth-child(4) img {
  animation-delay: 0.8s;
}
.fp-team__item:nth-child(5) img {
  animation-delay: 1s;
}
.fp-team__item:nth-child(6) img {
  animation-delay: 1.2s;
}
.fp-team__item:nth-child(7) img {
  animation-delay: 1.4s;
}
.fp-team__item:nth-child(8) img {
  animation-delay: 1.6s;
}
.fp-team__item:nth-child(9) img {
  animation-delay: 1.8s;
}
.fp-team__name {
  margin-bottom: 0.5rem;
}
.fp-team__position {
  font-size: 0.875rem;
  color: rgba(0, 10, 44, .5);
}
.fp-team__content {
  padding: 1rem;
}
@media only screen and (min-width : 1024px) {
  .fp-team__content {
    padding: 2rem 2rem 4rem;
  }
}
.fp-team__prev {
  width: 5rem;
  display: block;
  margin-right: 3.5rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .fp-team__prev {
    margin-top: 2rem;
  }
}
.fp-team__prev svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #fff;
}
.fp-team__prev.swiper-button-disabled {
  opacity: 0.5;
}
.fp-team__next {
  width: 5rem;
  display: block;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .fp-team__next {
    margin-top: 2rem;
  }
}
.fp-team__next svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #fff;
}
.fp-team__next.swiper-button-disabled {
  opacity: 0.5;
}
.fp-team__control {
  grid-column: main / main;
  display: flex;
  justify-content: flex-end;
}
.fp-team__pagination {
  position: absolute;
  left: 50%;
  margin-top: 2rem;
  transform: translateX(-50%);
}
.fp-team__pagination span {
  margin: 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  transition: transform 0.2s, background-color 0.2s;
}
.fp-team__pagination span.swiper-pagination-bullet-active {
  background-color: #ff5c00;
  transform: scale(2);
}
.fp-team__pagination span:only-of-type {
  display: none;
}
.fp-team__arrows {
  z-index: 1;
  display: flex;
  padding: 0.5rem 0;
}
@media only screen and (max-width : 767px) {
  .fp-team__arrows {
    display: none;
  }
}
.fp-news {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  grid-column-gap: 1rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 2rem;
}
@media only screen and (min-width : 1024px) {
  .fp-news {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-news {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .fp-news {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-news {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-news {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .fp-news {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1024px) {
  .fp-news {
    grid-column-gap: 2rem;
  }
}
.fp-news__header {
  grid-column: main / main;
  margin-top: 6rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .fp-news__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
}
.fp-news__caption {
  grid-column: main / main;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .fp-news__caption {
    margin-bottom: 2rem;
  }
}
.fp-news__slider {
  grid-column: main / main;
  width: calc(100% + 1rem);
  margin: 0 -1rem 0 0;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .fp-news__slider {
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }
}
.fp-news__title {
  font-weight: 700;
  line-height: 1.2;
  color: #000a2c;
  position: relative;
  font-size: 2rem;
  margin-right: 2rem;
  min-width: calc((100% - 6rem)/4);
}
@media only screen and (min-width: 768px) {
  .fp-news__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width : 1280px) {
  .fp-news__title {
    font-size: 3.35rem;
  }
}
.fp-news__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.fp-news__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.fp-news__title-text {
  display: block;
  position: relative;
}
.fp-news__link {
  display: flex;
  align-items: center;
  color: #ff5c00;
  margin-top: 0.5rem;
}
.fp-news__link svg {
  width: 5rem;
  margin-right: 1rem;
  fill: #ff5c00;
  transition: margin-right 0.2s;
}
.fp-news__link:hover svg {
  margin-right: 2rem;
}
.fp-news-card {
  display: block;
  grid-column: span 6;
  transition: transform 0.2s;
  transform-origin: center bottom;
  padding: 0 1rem 0 0;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .fp-news-card {
    padding: 0 1rem;
  }
}
.fp-news-card__inner {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
  background-color: #fff;
  height: 100%;
}
.fp-news-card:nth-of-type(4n - 3) {
  grid-column: main / span 6;
}
.fp-news-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fp-news-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fp-news-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fp-news-card:nth-child(4) {
  animation-delay: 0.4s;
}
.fp-news-card:nth-child(5) {
  animation-delay: 0.5s;
}
.fp-news-card:nth-child(6) {
  animation-delay: 0.6s;
}
.fp-news-card:nth-child(7) {
  animation-delay: 0.7s;
}
.fp-news-card:nth-child(8) {
  animation-delay: 0.8s;
}
.fp-news-card:nth-child(9) {
  animation-delay: 0.9s;
}
.fp-news-card__cover {
  overflow: hidden;
  width: 100%;
}
.fp-news-card__cover-inner {
  width: 100%;
  overflow: hidden;
  transform: scale(1.1);
  transition: transform 2s;
}
.fp-news-card__cover img {
  width: 100%;
  display: block;
  height: 50vw;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .fp-news-card__cover img {
    height: 24vw;
  }
}
.fp-news-card__content {
  padding: 1rem;
}
@media only screen and (min-width : 1024px) {
  .fp-news-card__content {
    padding: 2rem;
  }
}
.fp-news-card__date {
  font-size: 0.625rem;
  margin-bottom: 0.5rem;
}
.fp-news-card__title {
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.fp-news-card__desc {
  font-size: 0.875rem;
}
.fp-news-card:hover .fp-news-card__cover-inner {
  transform: scale(1);
}
.fp-news-card:hover .fp-news-card__title {
  color: #ff5c00;
}
.site-page__cover {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .site-page__cover {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
.site-page__cover.m-white {
  background-color: #f6f4f0;
  position: relative;
  width: 100%;
  padding-top: 3.5rem;
}
@media only screen and (min-width : 1024px) {
  .site-page__cover.m-white {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover.m-white {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-page__cover.m-white {
    padding-top: 8rem;
  }
}
.site-page__cover.m-orange {
  background-color: #ff5c00;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .site-page__cover.m-orange {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__cover.m-orange {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover.m-orange {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-page__cover.m-orange {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-page__cover.m-orange {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__cover.m-orange {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover.m-orange {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-page__cover.m-orange {
    padding-bottom: 6rem;
  }
}
.site-page__cover-left {
  grid-column: main / main;
  position: relative;
  z-index: 2;
  pointer-events: none;
  padding-top: 5rem;
}
@media only screen and (min-width : 1024px) {
  .site-page__cover-left {
    padding-top: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover-left {
    grid-column: main / span 8;
    padding-top: 0;
  }
}
.site-page__cover-left.m-full {
  grid-column: main / main;
}
.m-news .site-page__cover-left {
  padding-bottom: 4.5rem;
}
@media only screen and (min-width : 1280px) {
  .m-news .site-page__cover-left {
    padding-bottom: calc((100vw - 16vw - 8rem)/3);
  }
}
.m-portfolio .site-page__cover-left {
  padding-bottom: 6rem;
}
.page-contacts .site-page__cover-left {
  padding-bottom: 20rem;
}
.site-page__cover-right {
  grid-column: main / main;
  padding-top: 0rem;
  padding-left: 1rem;
  border-left: 1px dashed rgba(255, 92, 0, .5);
  position: relative;
  z-index: 2;
  height: 100%;
}
@media only screen and (min-width : 1024px) {
  .site-page__cover-right {
    padding-left: 2rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__cover-right {
    padding-left: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover-right {
    padding-top: 5rem;
    grid-column: span 4 / main;
  }
}
.m-orange .site-page__cover-right {
  border-left-color: rgba(255, 255, 255, .5);
}
.m-news .site-page__cover-right {
  padding-bottom: calc((100vw - 16vw - 8rem)/3);
}
.m-portfolio .site-page__cover-right {
  padding-bottom: 6rem;
}
.page-contacts .site-page__cover-right {
  padding-bottom: 20rem;
}
.site-page__cover-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
  overflow: hidden;
}
.site-page__cover-name:after {
  content: 'Prospective';
  width: calc(100% + 4rem);
  margin: 0 -2rem -2rem;
  color: rgba(255, 255, 255, .1);
  font-size: 23vw;
  font-weight: 700;
}
.site-page__cover-bg {
  background-color: #ff5c00;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  grid-column: span 2 / full;
  position: relative;
  height: 125%;
  top: 0rem;
  position: absolute;
  width: 100%;
}
@media only screen and (min-width : 1024px) {
  .site-page__cover-bg {
    height: 100%;
    top: 3.5rem;
    grid-column: span 3 / full;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__cover-bg {
    height: 100%;
    top: 6rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__cover-bg {
    height: 100%;
    top: 6rem;
  }
}
.site-page__cover-dots {
  width: calc(50% - 1rem);
  height: calc(36vw + 1rem);
  position: absolute;
  bottom: -14rem;
  right: 0;
  background-image: url('../img/dot.svg');
  background-repeat: repeat;
  background-size: 6rem 6rem;
  background-position: left bottom;
}
@media only screen and (max-width : 767px) {
  .site-page__cover-dots {
    display: none;
  }
}
.site-page__caption {
  font-size: 1.5rem;
  font-weight: 500;
  color: #231006;
  margin: 1rem 0;
}
@media only screen and (min-width : 1024px) {
  .site-page__caption {
    margin: 3rem 0 1rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__caption {
    margin: 1rem 0;
  }
}
.site-page__title {
  font-weight: 700;
  color: #231006;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .site-page__title {
    font-size: 3rem;
    margin: 0 0 4rem 0;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__title {
    font-size: 3.35rem;
    margin: 0 0 6rem 0;
  }
}
.site-page__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.site-page__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.site-page__title-text {
  display: block;
  position: relative;
}
.m-orange .site-page__title {
  color: #fff;
}
.site-page__desc {
  line-height: 2;
}
.site-page__desc-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.site-page__desc-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.site-page__desc-line:nth-child(1) .site-page__desc-text {
  animation-delay: 0.1s;
}
.site-page__desc-line:nth-child(2) .site-page__desc-text {
  animation-delay: 0.2s;
}
.site-page__desc-line:nth-child(3) .site-page__desc-text {
  animation-delay: 0.3s;
}
.site-page__desc-line:nth-child(4) .site-page__desc-text {
  animation-delay: 0.4s;
}
.site-page__desc-line:nth-child(5) .site-page__desc-text {
  animation-delay: 0.5s;
}
.site-page__desc-line:nth-child(6) .site-page__desc-text {
  animation-delay: 0.6s;
}
.site-page__desc-line:nth-child(7) .site-page__desc-text {
  animation-delay: 0.7s;
}
.site-page__desc-line:nth-child(8) .site-page__desc-text {
  animation-delay: 0.8s;
}
.site-page__desc-line:nth-child(9) .site-page__desc-text {
  animation-delay: 0.9s;
}
.site-page__desc-text {
  display: block;
  position: relative;
}
.site-page__content {
  position: relative;
  z-index: 1;
  min-height: 20rem;
}
.site-page__static {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  font-size: 1.125rem;
}
@media only screen and (min-width : 1024px) {
  .site-page__static {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__static {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-page__static {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__static {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-page__static {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-page__static {
    padding-bottom: 6rem;
  }
}
.m-orange .site-page__static {
  margin-top: 0;
}
.page-contacts .site-page__static {
  margin-top: -20rem;
}
.site-page__static > * {
  grid-column: main / main;
}
.site-page__static h2, .site-page__static h3, .site-page__static h4, .site-page__static h5, .site-page__static h6 {
  font-weight: 500;
  font-weight: 700;
}
.site-page__static h2 {
  font-size: 3rem;
  margin: 3rem 0 2rem;
}
.site-page__static h3 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}
.site-page__static h4 {
  font-size: 1.5rem;
  margin: 3rem 0 1.5rem;
}
@media only screen and (max-width : 1023px) {
  .site-page__static h4.m-not-margin-top {
    margin-top: 3rem !important;
  }
}
.site-page__static p {
  margin: 1rem 0;
}
@media only screen and (min-width: 768px) {
  .site-page__static p {
    margin: 1.5rem 0;
  }
}
.site-page__static p a {
  color: #ff5c00;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: color 0.2s, border-color 0.2s;
}
.site-page__static p a:hover {
  color: #000a2c;
  border-color: transparent;
}
.site-page__static ol {
  counter-reset: list;
}
.site-page__static ol li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}
.site-page__static ol li:before {
  counter-increment: list;
  /* Инкрементирует счетчик*/
  content: "0" counter(list);
  font-size: 3.5rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  color: #ff5c00;
  opacity: 0.25;
  margin-right: 1rem;
  text-align: center;
  width: 5rem;
  flex-shrink: 0;
}
.site-page__static ol li:after {
  width: 0;
  height: calc(100% - 1rem);
  border-right: 1px dashed #ff5c00;
  content: '';
  position: absolute;
  top: 3.75rem;
  left: 2.5rem;
}
.site-page__static ol li:last-of-type {
  margin-bottom: 0;
}
.site-page__static ol li:last-of-type:after {
  display: none;
}
.site-page__static .wp-block-columns {
  margin-bottom: 0;
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-columns {
    margin-bottom: 0rem;
    display: block !important;
  }
  .site-page__static .wp-block-columns:last-of-type {
    margin-bottom: 0rem;
  }
}
.site-page__static .wp-block-columns.m-with-dark-bg {
  position: relative;
  color: #fff;
}
@media only screen and (max-width : 767px) {
  .site-page__static .wp-block-columns.m-with-dark-bg {
    margin: 0 calc(-2.5vw - 1rem);
  }
  .site-page__static .wp-block-columns.m-with-dark-bg h2 {
    margin-left: calc(2.5vw + 1rem);
    margin-right: calc(2.5vw + 1rem);
  }
}
.site-page__static .wp-block-columns.m-with-dark-bg:before {
  content: '';
  position: absolute;
  background-color: #231006;
  background-image: url('../img/aproach.jpg');
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-columns.m-with-dark-bg:before {
    margin-right: calc(-1rem - 2.5vw);
    width: calc(100% + 2rem + 5vw);
    height: 57%;
    bottom: 0;
    right: 0;
    display: none;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__static .wp-block-columns.m-with-dark-bg:before {
    margin-right: calc(-10vw - 2rem);
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
  }
}
.site-page__static .wp-block-columns.m-with-dark-bg:after {
  content: '';
  position: absolute;
  background-color: #f6f4f0;
  z-index: -1;
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-columns.m-with-dark-bg:after {
    width: calc(100% + 2rem + 5vw);
    margin-left: calc(-1rem - 2.5vw);
    height: 100%;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width : 1024px) {
  .site-page__static .wp-block-columns.m-with-dark-bg:after {
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: calc(-10vw - 2rem);
  }
}
.site-page__static .wp-block-columns.m-with-dark-bg .wp-block-column:first-of-type {
  margin-bottom: 0;
}
.site-page__static .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type:before {
  content: '';
  width: 24rem;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: calc(-8vw - 2rem);
  background-image: url('../img/dot.svg');
  background-repeat: repeat;
  background-size: 6rem 6rem;
  background-position: left top;
  pointer-events: none;
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type {
    background-color: #231006;
    padding: 1rem;
  }
}
@media only screen and (max-width : 767px) {
  .site-page__static .wp-block-columns.m-with-dark-bg .wp-block-column:last-of-type {
    padding: calc(1rem + 2.5vw);
    margin-bottom: 0;
  }
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-columns.m-swap-columns {
    display: flex !important;
    flex-flow: column;
  }
  .site-page__static .wp-block-columns.m-swap-columns .wp-block-column:first-of-type {
    order: 2;
  }
  .site-page__static .wp-block-columns.m-swap-columns .wp-block-column:first-of-type h2 {
    margin: 0rem 0 1rem;
  }
}
.site-page__static .wp-block-column {
  position: relative;
}
.site-page__static .wp-block-column p:first-of-type {
  margin-top: 0;
}
.site-page__static .wp-block-column p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width : 1023px) {
  .site-page__static .wp-block-column {
    margin-bottom: calc(2.5vw + 1rem);
    margin-left: 0 !important;
  }
}
.site-page__static .wp-block-column.m-with-map {
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .1);
  background: #fff;
}
.site-page__static .wp-block-column.m-with-map h3 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.site-page__static .wp-block-column.m-with-map p {
  margin-left: 2rem;
  margin-right: 2rem;
  padding-bottom: 2rem;
}
.site-page__static .wp-block-map {
  width: 100%;
  height: 20rem;
  display: block;
}
.site-page__static .wp-block-quote {
  font-size: 1.25em;
  margin: 1.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid;
}
@media only screen and (min-width: 768px) {
  .site-page__static .wp-block-quote {
    margin: 2rem 0;
    border-left: 4px solid;
  }
}
@media only screen and (min-width : 1024px) {
  .m-full-right {
    margin-right: calc(-10vw - 2rem);
  }
}
@media only screen and (min-width : 1024px) {
  .m-full-left {
    margin-left: calc(-10vw - 2rem);
  }
}
.m-padding-top {
  padding-top: 2rem;
}
@media only screen and (min-width : 1024px) {
  .m-padding-top {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .m-padding-top {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .m-padding-top {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .m-padding-top {
    padding-top: 8rem;
  }
}
.m-padding-bottom {
  padding-bottom: 0rem;
}
@media only screen and (min-width : 1024px) {
  .m-padding-bottom {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .m-padding-bottom {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .m-padding-bottom {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .m-padding-bottom {
    padding-bottom: 8rem;
  }
}
.wp-block-image {
  margin-bottom: 0;
  overflow: hidden;
}
@media only screen and (min-width : 1280px) {
  .m-not-margin-top {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width : 1280px) {
  .m-not-margin-bottom {
    margin-bottom: 0 !important;
  }
}
.m-resources {
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .m-resources {
    margin-top: -2rem;
  }
  .m-resources h3 {
    margin: 0 0 3rem;
  }
  .m-resources:before {
    position: absolute;
    top: 0;
    height: 100%;
    content: '';
    background-color: #f6f4f0;
    z-index: -1;
    left: calc(-8vw - 2rem);
    width: calc(100% + 16vw + 4rem);
  }
}
.m-strategy {
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .m-strategy .wp-block-column:last-of-type h4 {
    padding-left: 1.5rem;
  }
}
.m-strategy .tile:first-of-type {
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .1);
  position: relative;
}
.m-strategy .tile:first-of-type:before {
  content: '';
  width: calc(50vw - 1rem);
  height: calc(100% + 6rem);
  position: absolute;
  top: 100%;
  left: 0;
  background-image: url('../img/dot.svg');
  background-repeat: repeat;
  background-size: 6rem 6rem;
  background-position: left bottom;
}
.m-strategy .tiles {
  position: relative;
}
@media only screen and (min-width : 1024px) {
  .m-strategy .tiles:before {
    position: absolute;
    top: 0;
    left: 100%;
    height: 50%;
    content: '';
    background-color: #f6f4f0;
    z-index: -1;
    width: calc(8vw + 2rem);
  }
  .m-strategy .tiles:after {
    position: absolute;
    top: -50%;
    left: 0%;
    height: 50%;
    content: '';
    background-color: #f6f4f0;
    z-index: -1;
    width: calc(100% + 8vw + 2rem);
  }
}
@media only screen and (max-width : 1023px) {
  .wp-block-spacer {
    height: 0 !important;
  }
}
.site-portfolio {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  grid-row-gap: 1rem;
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
  margin-top: -4rem;
}
@media only screen and (min-width : 1024px) {
  .site-portfolio {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-portfolio {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-portfolio {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-portfolio {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-portfolio {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-portfolio {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-portfolio {
    margin-top: -6rem;
    grid-row-gap: 2rem;
  }
}
.site-portfolio__item {
  display: block;
  grid-column: span 2;
  height: 8rem;
  padding: 1rem 2rem;
  transition: transform 0.2s;
}
.site-portfolio__item:nth-of-type(2n - 1) {
  grid-column: main / span 2;
}
.site-portfolio__item:nth-child(1) {
  animation-delay: 0.1s;
}
.site-portfolio__item:nth-child(2) {
  animation-delay: 0.2s;
}
.site-portfolio__item:nth-child(3) {
  animation-delay: 0.3s;
}
.site-portfolio__item:nth-child(4) {
  animation-delay: 0.4s;
}
.site-portfolio__item:nth-child(5) {
  animation-delay: 0.5s;
}
.site-portfolio__item:nth-child(6) {
  animation-delay: 0.6s;
}
.site-portfolio__item:nth-child(7) {
  animation-delay: 0.7s;
}
.site-portfolio__item:nth-child(8) {
  animation-delay: 0.8s;
}
.site-portfolio__item:nth-child(9) {
  animation-delay: 0.9s;
}
@media only screen and (min-width : 1024px) {
  .site-portfolio__item {
    grid-column: span 2;
  }
  .site-portfolio__item:nth-of-type(2n - 1) {
    grid-column: span 2;
  }
  .site-portfolio__item:nth-of-type(4n - 3) {
    grid-column: main / span 2;
  }
}
@media only screen and (min-width : 1280px) {
  .site-portfolio__item {
    grid-column: span 3;
    height: 12rem;
  }
  .site-portfolio__item:nth-of-type(2n - 1) {
    grid-column: span 3;
  }
  .site-portfolio__item:nth-of-type(4n - 3) {
    grid-column: main / span 3;
  }
}
.site-portfolio__item img {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: scale-down;
}
.site-portfolio__item:hover {
  transform: scale(1.1);
}
.site-news {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  grid-gap: 1rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 2rem;
  margin-top: -4.5rem;
}
@media only screen and (min-width : 1024px) {
  .site-news {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-news {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-news {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-news {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-news {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-news {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-news {
    grid-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-news {
    margin-top: calc(((100vw - 16vw - 8rem)/-3)*1.0555);
  }
}
.site-news-card {
  display: block;
  grid-column: span 4;
  transition: transform 0.2s;
  transform-origin: center bottom;
  height: 100%;
  grid-column: main / main;
}
.site-news-card:nth-child(1) {
  animation-delay: 0.1s;
}
.site-news-card:nth-child(2) {
  animation-delay: 0.2s;
}
.site-news-card:nth-child(3) {
  animation-delay: 0.3s;
}
.site-news-card:nth-child(4) {
  animation-delay: 0.4s;
}
.site-news-card:nth-child(5) {
  animation-delay: 0.5s;
}
.site-news-card:nth-child(6) {
  animation-delay: 0.6s;
}
.site-news-card:nth-child(7) {
  animation-delay: 0.7s;
}
.site-news-card:nth-child(8) {
  animation-delay: 0.8s;
}
.site-news-card:nth-child(9) {
  animation-delay: 0.9s;
}
@media only screen and (min-width : 1024px) {
  .site-news-card {
    grid-column: span 4;
  }
  .site-news-card:nth-of-type(2n - 1) {
    grid-column: main / span 4;
  }
}
@media only screen and (min-width : 1280px) {
  .site-news-card {
    grid-column: span 4;
  }
  .site-news-card:nth-of-type(2n - 1) {
    grid-column: span 4;
  }
  .site-news-card:nth-of-type(3n - 2) {
    grid-column: main / span 4;
  }
}
.site-news-card__inner {
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .1);
  background-color: #fff;
  height: 100%;
  display: block;
  transition: box-shadow 0.5s;
}
.site-news-card__inner:hover {
  box-shadow: 0 1.5rem 3rem rgba(255, 92, 0, .2);
}
.site-news-card__inner:hover .site-news-card__title {
  color: #ff5c00;
}
.site-news-card__inner:hover .site-news-card__cover-inner {
  transform: scale(1);
}
.site-news-card__cover {
  overflow: hidden;
  width: 100%;
}
.site-news-card__cover-inner {
  width: 100%;
  overflow: hidden;
  transform: scale(1.1);
  transition: transform 2s;
}
.site-news-card__cover img {
  width: 100%;
  display: block;
  height: auto;
  height: calc(((100vw - 16vw - 8rem)/3)*1.0555);
  object-fit: cover;
}
.site-news-card__content {
  padding: 1rem;
}
@media only screen and (min-width : 1024px) {
  .site-news-card__content {
    padding: 1.5rem;
  }
}
.site-news-card__date {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.site-news-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color 0.5s;
}
.site-article__header {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .site-article__header {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-article__header {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__header {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__header {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-article__header {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-article__header {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__header {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__header {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-article__header {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__header {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
.site-article__header:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #231006;
  opacity: 0.5;
  pointer-events: none;
}
.site-article__link {
  grid-column: main / main;
  position: relative;
  z-index: 1;
  color: #ff5c00;
  display: flex;
  margin-bottom: 4rem;
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .site-article__link {
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__link {
    margin-bottom: 16rem;
    margin-top: 2rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__link {
    margin-bottom: 24rem;
  }
}
.site-article__link svg {
  width: 6rem;
  fill: #ff5c00;
  margin-right: 1rem;
  transition: margin-right 0.2s;
}
.site-article__link:hover svg {
  margin-right: 2rem;
}
.site-article__title {
  font-weight: 700;
  color: #231006;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  font-size: 2rem;
  color: #fff;
  margin: 0 !important;
  position: relative;
  z-index: 1;
  grid-column: main / main;
}
@media only screen and (min-width: 768px) {
  .site-article__title {
    font-size: 3rem;
    margin: 0 0 4rem 0;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__title {
    font-size: 3.35rem;
    margin: 0 0 6rem 0;
  }
}
.site-article__title-line {
  position: relative;
  display: block;
  overflow: hidden;
}
.site-article__title-line:after {
  content: '';
  background-color: #fff;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
}
.site-article__title-text {
  display: block;
  position: relative;
}
.site-article__caption {
  position: relative;
  z-index: 1;
  grid-column: main / main;
}
.site-article__content {
  position: relative;
  z-index: 1;
  min-height: 20rem;
}
.site-article__static {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  grid-column-gap: 1rem;
  -ms-grid-columns: "[full-start] 1rem minmax(2.5%, 1fr) 1rem [main-start] 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [col] 1rem minmax(0px, 110px) 1rem [main-end] 1rem minmax(2.5%, 1fr) 1rem [full-end]";
  grid-template-columns: [full-start] minmax(2.5%, 1fr) [main-start] repeat(4, [col] minmax(0px, 200px)) [main-end] minmax(2.5%, 1fr) [full-end];
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  font-size: 1.125rem;
}
@media only screen and (min-width : 1024px) {
  .site-article__static {
    -ms-grid-columns: "[full-start] 2rem minmax(4%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(4%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(4%, 1fr) [main-start] repeat(8, [col] minmax(0px, 110px)) [main-end] minmax(4%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__static {
    -ms-grid-columns: "[full-start] 2rem minmax(8%, 1fr) 2rem [main-start] 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [col] 2rem minmax(0px, 110px) 2rem [main-end] 2rem minmax(8%, 1fr) 2rem [full-end]";
    grid-template-columns: [full-start] minmax(8%, 1fr) [main-start] repeat(12, [col] minmax(0px, 200px)) [main-end] minmax(8%, 1fr) [full-end];
    grid-column-gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-article__static {
    padding-top: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-article__static {
    padding-top: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__static {
    padding-top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__static {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 768px) {
  .site-article__static {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width : 1024px) {
  .site-article__static {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width : 1280px) {
  .site-article__static {
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__static {
    padding-bottom: 6rem;
  }
}
.site-article__static > * {
  grid-column: main / main;
  margin: 0 0 1rem 0;
  display: block;
}
@media only screen and (min-width : 1280px) {
  .site-article__static > * {
    grid-column: 4 / 12;
  }
}
.site-article__static h1, .site-article__static h2, .site-article__static h3, .site-article__static h4, .site-article__static h5, .site-article__static h6 {
  font-weight: 500;
  font-weight: 700;
  color: #ff5c00;
}
.site-article__static h1 {
  font-size: 3.35rem;
  margin: 3rem 0 1rem;
}
.site-article__static h2 {
  font-size: 3rem;
  margin: 3rem 0 1rem;
}
.site-article__static h3 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}
.site-article__static h4 {
  font-size: 1.5rem;
  margin: 1rem 0;
}
.site-article__static p {
  margin: 0 0 1rem 0;
}
.site-article__static .wp-block-table {
  text-align: left;
}
.site-article__static .wp-block-table table {
  text-align: left;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.site-article__static .wp-block-table thead {
  border-bottom: 2px solid rgba(0, 10, 44, .25);
}
.site-article__static .wp-block-table table caption {
  font-size: 1.5rem;
  margin: 0.5rem 0 0.75rem;
}
.site-article__static .wp-block-table table tr {
  padding: 0.25rem 0;
}
.site-article__static .wp-block-table table th, .site-article__static .wp-block-table table td {
  padding: 0.5rem 0.5rem 0.5rem 0;
  text-align: left;
}
.site-article__static .wp-block-table table th {
  font-weight: 500;
}
@media only screen and (max-width : 767px) {
  .site-article__static .wp-block-table table {
    border: 0;
  }
  .site-article__static .wp-block-table table caption {
    font-size: 1.3em;
  }
  .site-article__static .wp-block-table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .site-article__static .wp-block-table table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  .site-article__static .wp-block-table table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
  }
  .site-article__static .wp-block-table table td::before {
    /*
     * aria-label has no advantage, it won't be read inside a table
     content: attr(aria-label);
     */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .site-article__static .wp-block-table table td:last-child {
    border-bottom: 0;
  }
}
.site-article__static blockquote {
  font-weight: 500;
  color: #ff5c00;
  position: relative;
}
.site-article__static blockquote:before {
  content: '“';
  position: absolute;
  top: -0.25rem;
  left: -5rem;
  font-size: 6rem;
  line-height: 1;
  color: #ff5c00;
  width: 6rem;
  font-weight: 700;
}
.site-article__static blockquote p {
  margin: 0;
}
.site-article__static blockquote cite {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #59260d;
  margin: 0.25rem 0 0 0;
  font-style: normal;
}
.site-article__static blockquote.is-style-large {
  border-left: 0.25rem solid #ff5c00;
}
.site-article__static blockquote.is-style-large:before {
  display: none;
}
.site-article__static blockquote.is-style-large p {
  font-style: normal;
}
.site-article__static blockquote.is-style-large cite {
  font-size: 0.8rem;
}
.site-article__static ol {
  counter-reset: list;
}
.site-article__static ol li {
  position: relative;
  margin-bottom: 0.25rem;
}
.site-article__static ol li:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width : 767px) {
  .site-article__static ol li {
    display: flex;
  }
}
.site-article__static ol li:before {
  counter-increment: list;
  /* Инкрементирует счетчик*/
  content: counter(list) ".";
  margin-right: 0.5rem;
  min-width: 1rem;
  text-align: center;
  display: inline-block;
}
.site-article__static ul li {
  position: relative;
  margin-bottom: 0.25rem;
}
.site-article__static ul li:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width : 767px) {
  .site-article__static ul li {
    display: flex;
  }
}
.site-article__static ul li:before {
  content: '–';
  margin-right: 0.5rem;
  min-width: 1rem;
  text-align: center;
  display: inline-block;
}
.site-article__static .wp-block-image figcaption {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #59260d;
  margin: 1rem 0 0 0;
}
.site-article__share {
  position: relative;
  grid-column: main / main;
}
@media only screen and (min-width : 1280px) {
  .site-article__share {
    grid-column: 2 / 3;
    position: absolute;
    top: 6rem;
  }
}
@media only screen and (min-width : 1440px) {
  .site-article__share {
    top: 8rem;
  }
}
.site-article__share-items {
  display: flex;
}
@media only screen and (min-width : 1280px) {
  .site-article__share-items {
    flex-flow: column;
    align-items: center;
  }
}
.site-article__share-item {
  width: 2rem;
  height: 2rem;
  margin: 0 1rem 0 0;
  padding: 0.25rem;
  cursor: pointer;
}
.site-article__share-item svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: fill 0.2s;
}
.site-article__share-item:hover svg {
  fill: #ff5c00;
}
@media only screen and (min-width : 1280px) {
  .site-article__share-item {
    margin: 0 0 1rem 0;
  }
}
.error {
  width: 100%;
  height: 100vh;
  background-color: #ff5c00;
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.error__title {
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: relative;
  font-size: 6rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .error__title {
    font-size: 15vw;
  }
}
.error__desc {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  animation-delay: 1s;
}
@media only screen and (min-width: 768px) {
  .error__desc {
    font-size: 2vw;
  }
}
.error__btn {
  padding: 1rem 2rem;
  background-color: #fff;
  color: #ff5c00;
  margin-top: 2rem;
  display: inline-block;
  transition: color 0.2s, background-color 0.2s;
  animation-delay: 1.2s;
}
@media only screen and (min-width: 768px) {
  .error__btn {
    padding: 1vw 2vw;
    margin-top: 2vw;
  }
}
.error__btn:hover {
  background-color: #59260d;
  color: #fff;
}
.error404 .site-footer {
  display: none !important;
}
.error404 .site-header {
  display: none !important;
}
.wp-block-contact-form-7-contact-form-selector {
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(255, 92, 0, .1);
  padding: 2rem;
  height: 100%;
}
.sent .site-form {
  display: none;
}
.site-form__row {
  margin-bottom: 0.5rem;
}
.site-form__row:last-of-type {
  margin-bottom: 0;
}
.site-form__label {
  color: #231006;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.site-form__value span {
  display: block;
}
.site-form__value .wpcf7-form-control-wrap {
  padding-bottom: 1rem;
}
.site-form__value input, .site-form__value textarea {
  padding: 0.5rem;
  border: 1px solid #b8b8b8;
  width: 100%;
  resize: none;
  transition: border-color 0.2s;
}
.site-form__value input::placeholder, .site-form__value textarea::placeholder {
  color: #b8b8b8;
}
.site-form__value input:focus, .site-form__value textarea:focus {
  border-color: #ff5c00;
}
.site-form__value .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #f00;
  line-height: 1;
  position: absolute;
  bottom: 0;
}
.site-form__btns {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.site-form__btn {
  position: relative;
  padding: 1rem 2rem;
  background-color: #ff5c00;
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.site-form__btn:hover {
  background-color: #59260d;
}
.site-form__btn-wrap {
  position: relative;
}
.site-form__btn-wrap .ajax-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-image: url('../img/loader.svg') !important;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: center;
  margin: 0 !important;
  background-color: #ff5c00;
  border-radius: 0;
}
.site-form__btn-wrap .ajax-loader:before {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
  margin: 1rem 0 0 0 !important;
  padding: 0 !important;
  font-size: 0.75rem !important;
  color: #b8b8b8;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  color: #ff5c00;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #ff5c00;
  font-size: 1.5rem !important;
  font-weight: 700;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  color: #f00;
}
.wpcf7 form.spam .wpcf7-response-output {
  color: #ff5c00;
}
/*# sourceMappingURL=index.css.map */