@import url("https://use.typekit.net/hfi0hdl.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: calc(1 * 2);
  animation-iteration-count: calc(1 * 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: calc(1 * 3);
  animation-iteration-count: calc(1 * 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: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body {
  padding: 0;
  margin: 0;
}

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

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

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

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

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

.row, form .gform_body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

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

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

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

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

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

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

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

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

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

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

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

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

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

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

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

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

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

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

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

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

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

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

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

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

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

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

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

  .col-lg-6, form .gform_body .gform_fields .gfield.gfield--width-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

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

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

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

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

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

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

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

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

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

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

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

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

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

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

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

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul li, .the-content ol li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 0.5em;
  line-height: 1.6em;
}
.the-content ul li:before, .the-content ol li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 14px;
  background-image: url("../images/valtech-shape.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content p {
  margin-bottom: 1em;
}
.the-content p sup {
  display: inline;
  line-height: 0em;
  font-size: 12px;
}
.the-content p img {
  position: relative;
  display: block;
  margin: 2em auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.the-content blockquote {
  position: relative;
  font: 900 35px/1.42em "neue-haas-unica", sans-serif;
  width: calc(100% + 500px);
  left: -500px;
  transform: translateX(250px);
  padding: 130px 0;
  margin: 0 0;
  text-align: center;
  color: #ffffff !important;
}
.the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
  font: 900 30px/1.07em "neue-haas-unica", sans-serif;
  margin-bottom: 0.9em;
  color: inherit;
}

::-moz-selection {
  color: #0072AD;
  background: #0B2939;
}

::selection {
  color: #0072AD;
  background: #0B2939;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 150px;
}

html, body {
  font: 500 16px/1.875em "urbane", sans-serif;
  color: #161616;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: transparent;
}
html.active #mobile-nav, body.active #mobile-nav {
  transform: translateX(0);
}
html.active #site-burger > svg:first-child, body.active #site-burger > svg:first-child {
  display: none;
}
html.active #site-burger > svg:last-child, body.active #site-burger > svg:last-child {
  display: block;
}
html.active #site-burger > svg line, body.active #site-burger > svg line {
  stroke: #0B2939;
}

a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  color: inherit;
}
a:focus, a:active {
  outline: none;
}

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

#main {
  position: relative;
  margin-top: 95px;
}

.wrapper {
  position: relative;
  max-width: 1680px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.wrapper.small {
  max-width: 1385px;
}
.wrapper.ex-sm {
  max-width: 860px;
}
.wrapper.offset {
  max-width: 1550px;
  margin-left: auto;
  margin-right: 0;
}
.wrapper.offset-xl {
  max-width: 1800px;
  margin-left: auto;
  margin-right: 0;
}

.btn, .documents .tab .bottom li a.btn, .sub-content .text-container li a.btn, form .gform_footer button, .dark-form form .gform_footer button {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #0072AD;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 16px 40px;
  min-width: 310px;
  font: 700 14px/1em "urbane", sans-serif;
  color: #0B2939;
  overflow: hidden;
  margin-right: -2px;
  margin-top: -2px;
  text-transform: uppercase;
  transition: all 150ms ease-in-out;
}
.btn:hover, .documents .tab .bottom li a.btn:hover, .sub-content .text-container li a.btn:hover, form .gform_footer button:hover {
  color: #ffffff;
  border-color: #0B2939;
}
.btn:hover:before, .documents .tab .bottom li a.btn:hover:before, .sub-content .text-container li a.btn:hover:before, form .gform_footer button:hover:before {
  transform: skew(-30deg) translateX(-20%);
  transform-origin: 0% 50%;
}
.btn:before, .documents .tab .bottom li a.btn:before, .sub-content .text-container li a.btn:before, form .gform_footer button:before, .dark-form form .gform_footer button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -4px;
  height: 120%;
  width: 140%;
  transform-origin: 100% 50%;
  z-index: 0;
  transition: 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  background: #0B2939;
  transform: skew(-30deg) translateX(-120%);
}
.btn span, .documents .tab .bottom li a.btn span, .sub-content .text-container li a.btn span, form .gform_footer button span, .dark-form form .gform_footer button span {
  position: relative;
  z-index: 1;
}
.btn.dark-blue, .documents .tab .bottom li a.dark-blue.btn, .sub-content .text-container li a.btn, .sub-content .text-container .documents .tab .bottom li a.btn, .documents .tab .bottom .sub-content .text-container li a.btn, .gform_confirmation_wrapper .gform_confirmation_message p.btn, .gform_confirmation_wrapper .btn.gform_confirmation_message, .gform_confirmation_wrapper .documents .tab .bottom li a.gform_confirmation_message.btn, .documents .tab .bottom li .gform_confirmation_wrapper a.gform_confirmation_message.btn, form .gform_footer button.dark-blue, form .gform_footer .gform_confirmation_wrapper button.gform_confirmation_message, .gform_confirmation_wrapper form .gform_footer button.gform_confirmation_message, .dark-form form .gform_footer button {
  background: #0B2939;
  color: #ffffff;
}
.btn.dark-blue:hover, .documents .tab .bottom li a.dark-blue.btn:hover, .sub-content .text-container li a.btn:hover, .gform_confirmation_wrapper .gform_confirmation_message p.btn:hover, .gform_confirmation_wrapper .btn.gform_confirmation_message:hover, .gform_confirmation_wrapper .documents .tab .bottom li a.gform_confirmation_message.btn:hover, .documents .tab .bottom li .gform_confirmation_wrapper a.gform_confirmation_message.btn:hover, form .gform_footer button.dark-blue:hover, form .gform_footer .gform_confirmation_wrapper button.gform_confirmation_message:hover, .gform_confirmation_wrapper form .gform_footer button.gform_confirmation_message:hover, .dark-form form .gform_footer button:hover {
  color: #0072AD;
  border-color: #ffffff;
}
.btn.dark-blue:before, .documents .tab .bottom li a.dark-blue.btn:before, .sub-content .text-container li a.btn:before, .sub-content .text-container .documents .tab .bottom li a.btn:before, .documents .tab .bottom .sub-content .text-container li a.btn:before, .gform_confirmation_wrapper .gform_confirmation_message p.btn:before, .gform_confirmation_wrapper .btn.gform_confirmation_message:before, .gform_confirmation_wrapper .documents .tab .bottom li a.gform_confirmation_message.btn:before, .documents .tab .bottom li .gform_confirmation_wrapper a.gform_confirmation_message.btn:before, form .gform_footer button.dark-blue:before, form .gform_footer .gform_confirmation_wrapper button.gform_confirmation_message:before, .gform_confirmation_wrapper form .gform_footer button.gform_confirmation_message:before, .dark-form form .gform_footer button:before {
  background: #ffffff;
}
.btn.transparent, .documents .tab .bottom li a.transparent.btn, .sub-content .text-container li a.transparent.btn, form .gform_footer button.transparent {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.btn.transparent:hover, .documents .tab .bottom li a.transparent.btn:hover, .sub-content .text-container li a.transparent.btn:hover, form .gform_footer button.transparent:hover {
  border-color: #0B2939;
}
.btn.transparent:hover:before, .documents .tab .bottom li a.transparent.btn:hover:before, .sub-content .text-container li a.transparent.btn:hover:before, form .gform_footer button.transparent:hover:before {
  background: #0B2939;
}
.btn.with-icon svg, .documents .tab .bottom li a.with-icon.btn svg, .sub-content .text-container li a.with-icon.btn svg, form .gform_footer button.with-icon svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  position: relative;
  left: -18px;
}

.buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blue {
  color: #0072AD;
}

.yellow {
  color: #FCD934;
}

.dark-blue, .sub-content .text-container li a.btn, .sub-content .text-container .documents .tab .bottom li a.btn, .documents .tab .bottom .sub-content .text-container li a.btn, .gform_confirmation_wrapper .gform_confirmation_message p, .gform_confirmation_wrapper .gform_confirmation_message, .dark-form form .gform_footer button {
  color: #0B2939;
}

.white {
  color: #ffffff;
}

.grey-blue {
  color: #808E9D;
}

.grey {
  color: #B8C4D3;
}

.dark-grey {
  color: #66727E;
}

.light-grey-blue {
  color: #B8C4D3;
}

.bold {
  display: inline-block;
  font: 900 160px/1em "neue-haas-unica", sans-serif;
  color: #0072AD;
  width: max-content;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 95px;
  width: 100%;
  background: white;
  z-index: 99;
  transition: all 150ms ease-in-out;
}
#header.shrink {
  box-shadow: 0 0 6px rgba(11, 41, 57, 0.15);
}
#header.shrink .header-left #site-logo {
  width: 175px;
  height: 60px;
}
#header > .wrapper {
  height: 100%;
}
#header .header-left #site-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  height: 90px;
  transition: all 150ms ease-in-out;
}
#header .header-left #site-logo > svg {
  display: block;
  width: 100%;
  height: 100%;
}
#header .header-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: calc(100% - 175px);
  padding-left: 50px;
}
#header .header-right nav ul {
  display: flex;
  align-items: center;
}
#header .header-right nav ul li {
  position: relative;
  margin-right: 40px;
}
#header .header-right nav ul li:last-child {
  margin-right: 0;
}
#header .header-right nav ul li.current-menu-parent .sub-menu li.current-menu-item a {
  color: #0072AD;
}
#header .header-right nav ul li.current-menu-parent a {
  top: 8px;
}
#header .header-right nav ul li.current-menu-parent a:before {
  top: -4px;
}
#header .header-right nav ul li.current-menu-parent a:after {
  width: 104%;
  top: -7px;
}
#header .header-right nav ul li.current-menu-item a {
  top: 8px;
}
#header .header-right nav ul li.current-menu-item a:before {
  top: -4px;
  border-color: #0072AD;
}
#header .header-right nav ul li.current-menu-item a:after {
  width: 104%;
  top: -7px;
  background: #0072AD;
}
#header .header-right nav ul li.menu-item-has-children:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  background: #E9EEF5;
  padding: 20px;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li {
  margin-right: 0;
  margin-bottom: 20px;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li.is-logo a img, #header .header-right nav ul li.menu-item-has-children .sub-menu li.is-logo a picture, #header .header-right nav ul li.menu-item-has-children .sub-menu li.is-logo a svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 150px;
  max-width: 100%;
  max-height: 100%;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li.is-logo a span {
  display: none;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li a {
  padding: 0 0 0 0;
  top: 0 !important;
  left: 0;
  color: #0B2939;
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li a:hover {
  color: #0072AD;
  padding: 0 0 0 0;
  transform: translateX(10px);
}
#header .header-right nav ul li.menu-item-has-children .sub-menu li a:before, #header .header-right nav ul li.menu-item-has-children .sub-menu li a:after {
  content: none;
  display: none;
}
#header .header-right nav ul li.menu-item-has-children:hover .sub-menu, #header .header-right nav ul li.menu-item-has-children.active .sub-menu {
  display: block;
}
#header .header-right nav ul li.menu-item-has-children:hover a, #header .header-right nav ul li.menu-item-has-children.active a {
  top: 8px;
}
#header .header-right nav ul li.menu-item-has-children:hover a:before, #header .header-right nav ul li.menu-item-has-children.active a:before {
  top: -4px;
}
#header .header-right nav ul li.menu-item-has-children:hover a:after, #header .header-right nav ul li.menu-item-has-children.active a:after {
  width: 104%;
  top: -7px;
}
#header .header-right nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: max-content;
  padding: 8px 2px 4px;
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0B2939;
  top: 4px;
  z-index: 5;
  transition: all 150ms ease-in-out;
}
#header .header-right nav ul li a:hover, #header .header-right nav ul li a.active {
  top: 8px;
}
#header .header-right nav ul li a:hover:before, #header .header-right nav ul li a.active:before {
  top: -4px;
  border-color: #0072AD;
}
#header .header-right nav ul li a:hover:after, #header .header-right nav ul li a.active:after {
  width: 104%;
  top: -7px;
  background: #0072AD;
}
#header .header-right nav ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-top: 1px solid #0B2939;
  transition: all 150ms ease-in-out;
}
#header .header-right nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -2%;
  width: 12px;
  height: 4px;
  transform: skew(-30deg);
  background: #0B2939;
  transform-origin: left;
  transition: all 150ms ease-in-out;
}

#site-burger {
  display: none;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}
#site-burger > svg {
  display: block;
  height: 40px;
  width: 40px;
  transition: all 150ms ease-in-out;
}
#site-burger > svg:last-child {
  display: none;
}
#site-burger > svg line {
  transition: all 150ms ease-in-out;
}

#mobile-nav {
  display: none;
  transform: translateX(100%);
  position: fixed;
  top: 95px;
  right: 0;
  z-index: 110;
  height: 100%;
  overflow-y: scroll;
  width: 400px;
  padding: 40px 65px 40px 40px;
  background: #0B2939;
  transition: all 150ms ease-in-out;
}
#mobile-nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#mobile-nav ul li {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
#mobile-nav ul li:last-child {
  margin-bottom: 0;
}
#mobile-nav ul li.current-menu-parent .sub-menu li.current-menu-item a {
  color: #E9EEF5;
}
#mobile-nav ul li.current-menu-parent a {
  top: 8px;
}
#mobile-nav ul li.current-menu-parent a:before {
  top: -4px;
}
#mobile-nav ul li.current-menu-parent a:after {
  width: 104%;
  top: -7px;
}
#mobile-nav ul li.current-menu-item a {
  top: 8px;
}
#mobile-nav ul li.current-menu-item a:before {
  top: -4px;
}
#mobile-nav ul li.current-menu-item a:after {
  width: 104%;
  top: -7px;
}
#mobile-nav ul li.menu-item-has-children:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 20px;
  height: 15px;
  width: 15px;
  background-image: url("../images/chev-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 150ms ease-in-out;
}
#mobile-nav ul li.menu-item-has-children .sub-menu {
  display: none;
  position: relative;
  top: 0;
  padding: 20px;
  margin-top: 20px;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li {
  margin-right: 0;
  margin-bottom: 20px;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li.current-menu-item a {
  color: #0072AD;
  transform: translateX(10px);
}
#mobile-nav ul li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li.is-logo {
  position: relative;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li.is-logo:before {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: 0;
  height: calc(100% + 22px);
  width: 100%;
  background: #E9EEF5;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li.is-logo a {
  justify-content: center;
  align-items: center;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li a {
  padding: 0 0 0 0;
  top: 0 !important;
  left: 0;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ffffff;
}
#mobile-nav ul li.menu-item-has-children .sub-menu li a:hover {
  color: #0072AD;
  padding: 0 0 0 0;
  transform: translateX(10px);
}
#mobile-nav ul li.menu-item-has-children .sub-menu li a:before, #mobile-nav ul li.menu-item-has-children .sub-menu li a:after {
  content: none;
  display: none;
}
#mobile-nav ul li.menu-item-has-children.active:after {
  transform: rotate(180deg);
}
#mobile-nav ul li.menu-item-has-children.active a {
  top: 8px;
}
#mobile-nav ul li.menu-item-has-children.active a:before {
  top: -4px;
}
#mobile-nav ul li.menu-item-has-children.active a:after {
  width: 104%;
  top: -7px;
}
#mobile-nav ul li.is-logo a {
  justify-content: center;
  align-items: center;
}
#mobile-nav ul li.is-logo a img, #mobile-nav ul li.is-logo a picture, #mobile-nav ul li.is-logo a svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 100px;
  max-width: 100%;
  max-height: 100%;
}
#mobile-nav ul li.is-logo a span {
  display: none;
}
#mobile-nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: max-content;
  padding: 8px 2px 4px;
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  top: 4px;
  z-index: 5;
  transition: all 150ms ease-in-out;
}
#mobile-nav ul li a:hover, #mobile-nav ul li a.active {
  top: 8px;
}
#mobile-nav ul li a:hover:before, #mobile-nav ul li a.active:before {
  top: -4px;
}
#mobile-nav ul li a:hover:after, #mobile-nav ul li a.active:after {
  width: 104%;
  top: -7px;
}
#mobile-nav ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-top: 1px solid #ffffff;
  transition: all 150ms ease-in-out;
}
#mobile-nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -2%;
  width: 12px;
  height: 4px;
  background: #ffffff;
  transform-origin: left;
  transition: all 150ms ease-in-out;
}

.gutter-70 {
  margin-left: -35px;
  margin-right: -35px;
}
.gutter-70 > div[class*=col-] {
  padding-left: 35px;
  padding-right: 35px;
}

.gutter-150 {
  margin-left: -75px;
  margin-right: -75px;
}
.gutter-150 > div[class*=col-] {
  padding-left: 75px;
  padding-right: 75px;
}

#page {
  position: relative;
  padding: 120px 0 0;
}

.slice {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
.slice.no-pt {
  padding-top: 0;
}
.slice.no-pb {
  padding-bottom: 0;
}
.slice.pt-lg {
  padding-top: 180px;
}
.slice.pb-lg {
  padding-bottom: 180px;
}
.slice.pt-xl {
  padding-top: 240px;
}
.slice.pb-xl {
  padding-bottom: 240px;
}
.slice.pt-sm {
  padding-top: 60px;
}
.slice.pb-sm {
  padding-bottom: 60px;
}
.slice.bg-dark-blue {
  background-color: #0B2939;
}
.slice.bg-with-noise {
  background-color: #0B2939;
  overflow: hidden;
}
.slice.bg-with-noise:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 200%;
  background-image: url("../images/noise-transparent.png");
  background-repeat: repeat;
  animation: bg-animation 30ms infinite;
  opacity: 0.7;
  visibility: visible;
  z-index: 0;
}
@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}
.slice.with-tick:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 250px 200px 0 0;
  border-color: #0B2939 transparent transparent;
  z-index: 10;
  pointer-events: none;
}
.slice.with-tick-blue:before {
  content: "";
  display: block;
  position: absolute;
  top: -250px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 250px 150px;
  border-color: transparent transparent #0B2939;
  z-index: 10;
  pointer-events: none;
}

.centered, .gform_confirmation_wrapper, .gform_wrapper .gform_validation_errors {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.title, #single-project-details .values .block h3 {
  display: block;
  font: 900 70px/1.07em "neue-haas-unica", sans-serif;
  transition: all 150ms ease-in-out;
}
.title.mb, #single-project-details .values .block h3.mb, #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
  margin-bottom: 60px;
}
.title.mb-small, #single-project-details .values .block h3.mb-small {
  margin-bottom: 35px;
}
.title.mb-xl, #single-project-details .values .block h3.mb-xl {
  margin-bottom: 145px;
}
.title.main, #single-project-details .values .block h3 {
  font: 900 60px/1.05em "neue-haas-unica", sans-serif;
}
.title.single, #single-project-details .values .block h3.single {
  font: 500 50px/1.07em "urbane", sans-serif;
}
.title.medium, #single-project-details .values .block h3.medium {
  font: 900 40px/1.05em "neue-haas-unica", sans-serif;
}

.label, .gform_confirmation_wrapper .gform_confirmation_message p, .gform_confirmation_wrapper .gform_confirmation_message, .gform_wrapper .gform_validation_errors h2 {
  font: 500 18px/1.07em "urbane", sans-serif;
  color: #66727E;
}
.label.mb, .gform_confirmation_wrapper .gform_confirmation_message p.mb, .gform_confirmation_wrapper .mb.gform_confirmation_message, .gform_wrapper .gform_validation_errors h2.mb, #home-projects .label.title, #home-projects #single-project-details .values .block h3.label, #single-project-details .values .block #home-projects h3.label, #home-projects .gform_confirmation_wrapper .gform_confirmation_message p.title, .gform_confirmation_wrapper .gform_confirmation_message #home-projects p.title, #home-projects .gform_confirmation_wrapper .title.gform_confirmation_message, #home-projects .gform_confirmation_wrapper #single-project-details .values .block h3.gform_confirmation_message, #single-project-details .values .block #home-projects .gform_confirmation_wrapper h3.gform_confirmation_message, .gform_confirmation_wrapper #home-projects .title.gform_confirmation_message, .gform_confirmation_wrapper #home-projects #single-project-details .values .block h3.gform_confirmation_message, #single-project-details .values .block .gform_confirmation_wrapper #home-projects h3.gform_confirmation_message, #home-projects .gform_wrapper .gform_validation_errors h2.title, .gform_wrapper .gform_validation_errors #home-projects h2.title {
  margin-bottom: 40px;
}
.label.lg, .gform_confirmation_wrapper .gform_confirmation_message p.lg, .gform_confirmation_wrapper .lg.gform_confirmation_message, .gform_wrapper .gform_validation_errors h2.lg {
  font-size: 20px;
}

.decorations {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.decorations .decoration {
  position: absolute;
}
.decorations .decoration svg {
  width: auto;
}

.banner {
  position: relative;
  position: relative;
  padding: 150px 0 250px;
  height: 100%;
}
.banner > img, .banner > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner .text-container {
  position: relative;
  width: 100%;
  max-width: 44%;
  z-index: 10;
  padding-right: 18px;
}
.banner .text-container h1 {
  display: block;
  width: 99%;
}
.banner .text-container h1 span {
  display: block;
  margin-bottom: 30px;
}
.banner .text-container > .the-content {
  width: 95%;
}
.banner .text-container > .buttons {
  margin-top: 90px;
  width: 100%;
  max-width: 620px;
}
.banner > img, .banner > picture {
  left: inherit;
  width: 56%;
  max-width: 1080px;
  z-index: -1;
}
.banner .video {
  overflow: hidden;
  width: 56%;
  max-width: 1080px;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.banner .video video {
  z-index: 2;
  mix-blend-mode: multiply;
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.banner .video a {
  position: absolute;
  bottom: 3%;
  right: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 150ms ease-in-out;
  z-index: 10;
}
.banner .video a svg {
  display: block;
  height: 82px;
  width: 82px;
  transition: all 150ms ease-in-out;
}
.banner .video a svg path {
  fill: #ffffff;
}
.banner .video a span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font: 700 11px/1em "urbane", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
.banner .scroll-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: calc(100% - 120px);
  left: 39%;
  z-index: 15;
}
.banner .scroll-block span {
  display: block;
  width: 100%;
  padding-right: 8px;
  font: 700 11px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0072AD;
  letter-spacing: 0.025em;
  text-align: right;
}
.banner .scroll-block span.scroll {
  display: block;
  width: inherit;
  position: absolute;
  right: -20px;
}
.banner .scroll-block span.scroll svg {
  display: block;
  height: 100%;
  width: 100%;
  max-height: 60px;
  max-width: 9px;
}
.banner .decorations {
  bottom: 0;
  right: 0;
}
.banner .decorations .decoration.decoration-1 {
  bottom: -90px;
  right: -100px;
}
.banner .decorations .decoration.decoration-2 {
  bottom: -160px;
  right: 75px;
}
.banner .decorations .decoration.decoration-3 {
  bottom: -160px;
  right: -50px;
}
.banner .decorations .decoration.decoration-4 {
  bottom: -160px;
  right: -100px;
}

.action-block .text-container {
  position: relative;
}
.action-block .text-container .decoration {
  top: 0;
  left: 0;
  z-index: 1;
}
.action-block .text-container .decoration.decoration-1 {
  left: -175px;
  top: -100px;
  height: 260px;
}
.action-block .text-container h3 {
  position: relative;
  z-index: 5;
}
.action-block .text-container > .the-content {
  width: 100%;
  max-width: 700px;
}
.action-block .text-container > .buttons {
  margin-top: 90px;
}
.action-block .image {
  position: relative;
  display: block;
}

#home-introduction.action-block .image {
  position: relative;
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#home-introduction.action-block .image:before {
  content: "";
  display: block;
  padding-top: 68%;
}
#home-introduction.action-block .image > img, #home-introduction.action-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#home-team .decorations {
  bottom: 0;
  left: 0;
}
#home-team .decorations .decoration.decoration-1 {
  top: -120px;
  left: -250px;
  height: 415px;
  z-index: 1;
}
#home-team .decorations .decoration.decoration-2 {
  top: 80px;
  left: -100px;
  height: 450px;
  z-index: 0;
}

#home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
  position: relative;
  z-index: 5;
}
#home-projects .buttons {
  position: relative;
  left: 120px;
  margin-top: 110px;
}

.google-map {
  position: relative;
  width: 100%;
  height: 730px;
}
.google-map .acf-map img {
  max-width: inherit !important;
}

.splide .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: -90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.splide .splide__arrows button {
  outline: none;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  background-color: transparent;
  transition: all 150ms ease-in-out;
}
.splide .splide__arrows button.splide__arrow--next span {
  text-align: left;
}
.splide .splide__arrows button span {
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font: 700 11px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0072AD;
  letter-spacing: 0.025em;
  text-align: right;
}
.splide .splide__arrows button svg {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 65px;
  max-height: 10px;
}

#projects {
  position: relative;
  width: 100%;
  height: 100%;
  left: 120px;
}
#projects .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: -90px;
}
#projects .splide__arrows button {
  padding: 0;
  margin: 0;
}
#projects .splide__arrows button.splide__arrow--prev {
  position: relative;
  right: 0;
}
#projects .splide__arrows button.splide__arrow--prev span {
  text-align: left;
}
#projects .splide__arrows button span {
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font: 700 11px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0072AD;
  letter-spacing: 0.025em;
  text-align: right;
}
#projects.splide .splide__track .splide__list .splide__slide {
  max-width: 1160px;
}

.project-categories {
  position: relative;
  margin-bottom: 100px;
  padding-top: 100px;
}
.project-categories p {
  display: block;
  margin-bottom: 20px;
  font: 500 15px/1em "urbane", sans-serif;
}
.project-categories .filter-container {
  position: relative;
}
.project-categories select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 370px;
  max-height: 70px;
  height: 100%;
  padding: 25px 40px;
  border: 2px solid #ffffff;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: 600 14px/1em "urbane", sans-serif;
  color: #ffffff;
  transition: all 150ms ease-in-out;
}
.project-categories .chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #0072AD;
}
.project-categories .chosen-container-active.chosen-with-drop .chosen-single div {
  border-color: #0072AD;
}
.project-categories .chosen-container-single .chosen-single {
  border-color: #ffffff;
  background: transparent !important;
  max-width: 370px;
  max-height: 100%;
  height: 70px;
  padding: 14px 25px;
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}
.project-categories .chosen-container-single .chosen-single span {
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}
.project-categories .chosen-container-single .chosen-single div {
  border-color: #ffffff;
  height: 70px;
}
.project-categories .chosen-container-single .chosen-single div:before {
  background-image: url("../images/chev-down.svg");
}
.project-categories .chosen-container-single .chosen-drop {
  max-width: 370px;
  border-color: #0072AD;
}

.blog-categories {
  position: relative;
  margin-bottom: 50px;
  z-index: 10;
}
.blog-categories p {
  display: block;
  margin-bottom: 20px;
  font: 500 15px/1em "urbane", sans-serif;
}
.blog-categories .filter-container {
  position: relative;
}
.blog-categories select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 370px;
  max-height: 70px;
  height: 100%;
  padding: 25px 40px;
  border: 2px solid #0072AD;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: 600 14px/1em "urbane", sans-serif;
  color: #0B2939;
  transition: all 150ms ease-in-out;
}
.blog-categories .chosen-container-active.chosen-with-drop .chosen-single {
  border-color: #0072AD;
}
.blog-categories .chosen-container-active.chosen-with-drop .chosen-single div {
  border-color: #0072AD;
}
.blog-categories .chosen-container-single .chosen-single {
  border-color: #0072AD;
  background: transparent !important;
  max-width: 370px;
  max-height: 100%;
  height: 70px;
  padding: 14px 25px;
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0B2939;
}
.blog-categories .chosen-container-single .chosen-single span {
  font: 700 14px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0B2939;
}
.blog-categories .chosen-container-single .chosen-single div {
  border-color: #0072AD;
  height: 70px;
}
.blog-categories .chosen-container-single .chosen-single div:before {
  background-image: url("../images/chev-down-blue.svg");
}
.blog-categories .chosen-container-single .chosen-drop {
  max-width: 370px;
  border-color: #0072AD;
}

.project.block {
  position: relative;
}
.project.block.grid {
  margin-bottom: 110px;
}
.project.block.grid .image {
  position: relative;
  display: block;
  width: 100%;
  position: relative;
  position: relative;
}
.project.block.grid .image:before {
  content: "";
  display: block;
  padding-top: 64%;
}
.project.block.grid .image > img, .project.block.grid .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project.block.grid .meta {
  display: block;
  position: absolute;
  bottom: 0;
  left: inherit;
  background: rgba(11, 41, 57, 0.8);
  width: calc(100% - 70px);
  padding: 30px 25px;
}
.project.block.grid .meta h3 {
  display: block;
  font: 600 25px/1em "urbane", sans-serif;
  margin-bottom: 8px;
}
.project.block.grid .meta h4 {
  display: block;
  font: 500 22px/1em "urbane", sans-serif;
  margin-bottom: 20px;
}
.project.block.grid .meta p {
  display: block;
  font: 500 12px/1em "urbane", sans-serif;
  color: #B8C4D3 !important;
}
.project.block.grid .meta p span {
  margin-right: 120px;
}
.project.block.grid .meta p span:last-child {
  margin-right: 0;
}
.project.block.slider {
  margin-right: 65px;
}
.project.block.slider .image {
  position: relative;
  position: relative;
  position: relative;
  display: block;
  width: 100%;
  max-width: 1160px;
  transition: all 150ms ease-in-out;
}
.project.block.slider .image > img, .project.block.slider .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project.block.slider .image:before {
  content: "";
  display: block;
  padding-top: 58%;
}
.project.block.slider .image:hover:after {
  opacity: 0;
}
.project.block.slider .image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  transition: all 150ms ease-in-out;
}
.project.block.slider .image > img, .project.block.slider .image > picture {
  z-index: 0;
}
.project.block.slider .meta {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 5;
  padding: 30px;
}
.project.block.slider .meta h3 {
  display: block;
  font: 600 25px/1em "urbane", sans-serif;
  margin-bottom: 10px;
}
.project.block.slider .meta h4 {
  display: block;
  font: 500 25px/1em "urbane", sans-serif;
  margin-bottom: 20px;
}
.project.block.slider .meta p {
  display: block;
  font: 500 17px/1em "urbane", sans-serif;
}
.project.block.slider .meta p span {
  margin-right: 120px;
}
.project.block.slider .meta p span:last-child {
  margin-right: 0;
}

#projects-top {
  position: relative;
  min-height: 860px;
  margin-bottom: -300px;
  padding-top: 20px;
}
#projects-top .google-map {
  position: relative;
  top: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 790px;
  width: 90%;
  max-width: 1385px;
  z-index: 10;
  margin-top: 100px;
}
#projects-top .google-map .gm-style .gm-style-iw-c {
  border-radius: 0 !important;
  padding: 0 0 !important;
}
#projects-top .google-map .gm-style .gm-style-iw-t:after {
  content: none;
  display: none;
}
#projects-top .google-map .marker-inner {
  display: block;
  padding: 15px;
}
#projects-top .google-map .marker-inner h4 {
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
}
#projects-top .google-map .marker-inner h4.no-mb {
  margin-bottom: 0;
  font-size: 26px;
}
#projects-top .google-map .marker-inner .meta {
  margin-top: 15px;
}
#projects-top .google-map .marker-inner .meta .block {
  margin-bottom: 10px;
}
#projects-top .google-map .marker-inner .meta .block:last-child {
  margin-bottom: 0;
}
#projects-top .google-map .marker-inner .meta .block p {
  font-size: 14px;
}
#projects-top .google-map .marker-inner .meta .block p strong {
  font-weight: 900;
}
#projects-top .google-map .marker-inner .meta .block p strong br {
  display: none;
}
#projects-top .google-map .marker-inner .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 100%;
  width: 300px;
  margin: 8px auto;
}
#projects-top .google-map .marker-inner .image > img, #projects-top .google-map .marker-inner .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#projects-top .google-map .marker-inner .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#projects-top svg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  opacity: 0.25;
  height: 725px;
  width: 1400px;
}
#projects-top svg g g path {
  fill: #B8C4D3;
}

#projects-grid > .wrapper {
  margin-top: 220px;
}

#home-success .buttons {
  margin-top: 90px;
}
#home-success .values .col-12:last-child .block h3:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-full:last-child .block h3:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-full:last-child .block h3:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-half:last-child .block h3:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-half:last-child .block h3:before {
  content: "+";
  display: block;
  position: absolute;
  top: 0;
  left: -60px;
}
#home-success .values .col-12:last-child .block h3.en:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-full:last-child .block h3.en:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-full:last-child .block h3.en:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-half:last-child .block h3.en:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-half:last-child .block h3.en:before {
  right: -60px;
  left: auto;
}

.values {
  position: relative;
  padding: 50px 0;
}
.values .block h3 {
  position: relative;
  font-size: 80px;
  margin-bottom: 90px;
}
.values .block h3:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 45px);
  left: 50%;
  transform: translate(-50%, -50%);
  height: 45px;
  width: 10px;
  background-image: url("../images/icon-arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.values .block h4 {
  display: block;
  font: 700 17px/1.47em "urbane", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

#home-posts .text-container {
  max-width: 460px;
  width: 100%;
  padding-right: 5px;
}
#home-posts .text-container .buttons {
  margin-top: 60px;
}

#posts {
  left: 120px;
}
#posts .splide__arrows {
  position: absolute;
  top: 30px;
  transform: none;
  width: 100%;
  left: -90px;
}
#posts .splide__arrows button.splide__arrow--next span {
  text-align: right;
}
#posts.splide .splide__track .splide__list .splide__slide {
  max-width: 515px;
  margin-right: 70px;
}

#blog-grid .blog.block, #single-related-posts .blog.block {
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 90px;
}
#blog-grid .blog.block .image, #single-related-posts .blog.block .image {
  max-width: 100%;
  width: 100%;
}
#blog-grid .blog.block .image:before, #single-related-posts .blog.block .image:before {
  padding-top: 52%;
}
#blog-grid .blog.block .image > img, #blog-grid .blog.block .image > picture, #single-related-posts .blog.block .image > img, #single-related-posts .blog.block .image > picture {
  object-position: top center;
}
#blog-grid .blog.block .meta, #single-related-posts .blog.block .meta {
  width: 100%;
}
#blog-grid .blog.block .meta h3, #single-related-posts .blog.block .meta h3 {
  font: 500 22px/1.59em "urbane", sans-serif;
  margin-bottom: 70px;
}

#single-related-posts .blog.block {
  margin-bottom: 30px !important;
}

#single-related-posts .buttons {
  margin-top: 90px;
  justify-content: center;
}

.blog.block {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 70px;
  max-width: 515px;
  width: 100%;
}
.blog.block .image {
  position: relative;
  position: relative;
  display: block;
  width: 100%;
  max-width: 515px;
  overflow: hidden;
  transition: all 150ms ease-in-out;
}
.blog.block .image:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.blog.block .image > img, .blog.block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog.block .image:hover > img, .blog.block .image:hover > picture {
  transform: scale(1.05);
}
.blog.block .image:hover:after {
  transform: translateX(0);
}
.blog.block .image:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 105px 65px;
  border-color: transparent transparent #0072AD;
  transition: all 100ms ease-in-out;
  pointer-events: none;
  opacity: 1;
  transform: translateX(100%);
  z-index: 5;
}
.blog.block .image > img, .blog.block .image > picture {
  transition: all 150ms ease-in-out;
}
.blog.block .meta {
  padding: 30px 40px 40px;
  background: #0B2939;
}
.blog.block .meta p {
  display: block;
  font: 500 17px/1em "urbane", sans-serif;
  margin-bottom: 40px;
}
.blog.block .meta h3 {
  display: block;
  font: 600 25px/1.4em "urbane", sans-serif;
  margin-bottom: 25px;
  transition: all 150ms ease-in-out;
}
.blog.block .meta h3 a {
  transition: all 150ms ease-in-out;
}
.blog.block .meta h3 a:hover {
  color: #0072AD;
}
.blog.block .meta .the-content {
  margin-bottom: 30px;
}
.blog.block .meta > a {
  position: relative;
  display: flex;
  align-items: center;
  font: 500 17px/1em "urbane", sans-serif;
  color: #ffffff;
  transition: all 150ms ease-in-out;
  padding-left: 25px;
}
.blog.block .meta > a:hover {
  transform: translateX(10px);
  color: #0072AD;
}
.blog.block .meta > a:hover:before {
  left: -10px;
}
.blog.block .meta > a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 18px;
  width: 18px;
  transition: all 150ms ease-in-out;
  background-image: url("../images/valtech-shape.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.splide .splide__track .splide__list .splide__slide {
  width: 100%;
  max-width: 100%;
}

#footer {
  position: relative;
  width: 100%;
}
#footer .top {
  background: #0B2939;
  padding: 40px 0;
}
#footer .top .footer-content h4 {
  display: block;
  margin-bottom: 25px;
  font: 900 20px/1.05em "neue-haas-unica", sans-serif;
}
#footer .top .footer-content > .col-12:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-full:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-full:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-half:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-half:first-child {
  margin-bottom: 100px;
}
#footer .top .footer-content > .col-12:first-child:after, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-full:first-child:after, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-full:first-child:after, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-half:first-child:after, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-half:first-child:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 50px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}
#footer .top .footer-content .row, #footer .top .footer-content form .gform_body .gform_fields, form .gform_body #footer .top .footer-content .gform_fields {
  margin-left: 90px;
  width: 100%;
}
#footer .top svg#logo-valtech {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 110px;
  max-width: 110px;
  margin-right: 10px;
  width: 100%;
  height: 100%;
}
#footer .top nav {
  display: block;
}
#footer .top nav h3 {
  position: relative;
  display: block;
  font: 700 25px/1em "neue-haas-unica", sans-serif;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
  padding-left: 30px;
}
#footer .top nav h3:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  height: 18px;
  width: 18px;
  background-image: url("../images/valtech-shape-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .top nav ul li {
  display: block;
  margin-bottom: 20px;
}
#footer .top nav ul li:last-child {
  margin-bottom: 0;
}
#footer .top nav ul li a {
  display: block;
  font: 500 16px/1em "urbane", sans-serif;
  color: #ffffff;
  width: max-content;
  max-width: 100%;
  transition: all 150ms ease-in-out;
}
#footer .top nav ul li a:hover {
  transform: translateX(10px);
  color: #0072AD;
}
#footer .top .groups-row.row, #footer .top form .gform_body .groups-row.gform_fields, form .gform_body #footer .top .groups-row.gform_fields {
  margin-left: 0 !important;
}
#footer .top .groups-row a {
  display: block;
}
#footer .top .groups-row img, #footer .top .groups-row picture, #footer .top .groups-row svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .top .socials {
  display: block;
  width: 40%;
}
#footer .top .socials .social {
  display: flex;
  align-items: center;
}
#footer .top .socials .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  margin-right: 16px;
  transition: all 150ms ease-in-out;
}
#footer .top .socials .social a:last-child {
  margin-right: 0;
}
#footer .top .socials .social a:hover {
  transform: scale(1.1);
}
#footer .top .socials .social a:hover svg path {
  fill: #0072AD;
}
#footer .top .socials .social a svg {
  display: block;
  height: 25px;
  width: 25px;
  transition: all 150ms ease-in-out;
}
#footer .top .socials .social a svg path {
  transition: all 150ms ease-in-out;
}
#footer .bottom {
  background: #ffffff;
  padding: 40px 0;
}
#footer .bottom .login-link {
  display: flex;
  align-items: center;
  transition: all 150ms ease-in-out;
}
#footer .bottom .login-link:hover span {
  color: #0072AD;
  transform: translateX(5px);
}
#footer .bottom .login-link:hover svg path {
  fill: #0B2939;
}
#footer .bottom .login-link svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  width: 14px;
  transition: all 150ms ease-in-out;
}
#footer .bottom .login-link svg path {
  transition: all 150ms ease-in-out;
}
#footer .bottom .login-link span {
  font: 600 12px/1em "urbane", sans-serif;
  color: #0B2939;
  margin-left: 6px;
  transition: all 150ms ease-in-out;
  text-transform: uppercase;
}

.col-action {
  position: static;
}
.col-action .action {
  position: absolute;
  top: -40px;
  right: 0;
  margin-right: -120px;
  height: calc(100% + 80px);
  width: 38%;
}
.col-action .action .image {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.col-action .action .image > img, .col-action .action .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.col-action .action .image .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.col-action .action .image .overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0072AD;
  opacity: 1;
  z-index: 3;
  mix-blend-mode: color;
}
.col-action .action .image .overlay:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0072AD;
  opacity: 0.8;
  z-index: 5;
}
.col-action .action .inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.col-action .action .inner h4 {
  position: relative;
  display: block;
  font: 900 40px/1.04em "neue-haas-unica", sans-serif;
}
.col-action .action .inner a {
  margin-top: 45px;
}

#rubik-api-copyright {
  align-items: center !important;
  transition: all 150ms ease-in-out;
}
#rubik-api-copyright:hover span {
  color: #0072AD !important;
}
#rubik-api-copyright a {
  width: 70px !important;
  transition: all 150ms ease-in-out;
}
#rubik-api-copyright span {
  color: #0B2939 !important;
  transition: all 150ms ease-in-out;
}

.fancybox-bg {
  background: #0b2939;
  background0-color: #0b2939;
  opacity: 0.98 !important;
}

.dark-form form .gform_body .gform_fields .gfield .gfield_label {
  color: #ffffff;
}
.dark-form form .gform_body .gform_fields .gfield .ginput_container input, .dark-form form .gform_body .gform_fields .gfield .ginput_container textarea, .dark-form form .gform_body .gform_fields .gfield .ginput_container select {
  color: #ffffff;
  background: #041C29;
}
.dark-form form .gform_body .gform_fields .gfield .ginput_container input::placeholder, .dark-form form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder, .dark-form form .gform_body .gform_fields .gfield .ginput_container select::placeholder {
  color: #ffffff !important;
}
.dark-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span {
  color: #808E9D;
}
.dark-form form .gform_footer button {
  cursor: pointer;
  color: #ffffff;
}

form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: 500 15px/1.2em "urbane", sans-serif;
  margin-bottom: 12px;
  color: #0B2939;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: inline-block;
  font-size: 1em;
  line-height: 0;
}
form .gform_body .gform_fields .gfield.hidden_label label {
  display: none;
}
form .gform_body .gform_fields .gfield.gform_hidden {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: none;
  font: 500 15px/1em "urbane", sans-serif;
  font-size: 14px;
  color: #0B2939;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  display: block;
  font: 500 12px/1em "urbane", sans-serif;
  color: #ad0000;
  margin-top: 4px;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description.validation_message {
  display: block;
  font: 500 12px/1em "urbane", sans-serif;
  color: #ad0000;
  margin-top: 4px;
}
form .gform_body .gform_fields .gfield.gfield_error .instruction {
  display: none;
}
form .gform_body .gform_fields .gfield.gfield_error .ginput_container input, form .gform_body .gform_fields .gfield.gfield_error .ginput_container textarea, form .gform_body .gform_fields .gfield.gfield_error .ginput_container select {
  border-color: #ad0000;
}
form .gform_body .gform_fields .gfield.gfield_error .ginput_container .chosen-container-single .chosen-single {
  border-color: #ad0000 !important;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
  margin-bottom: 25px;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=hidden] {
  display: none;
  padding: 0 0;
  margin: 0 0;
  pointer-events: none;
}
form .gform_body .gform_fields .gfield .ginput_container input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 52px;
  border: 0;
  border-radius: 0;
  padding: 20px 18px;
  font: 500 15px/1em "urbane", sans-serif;
  color: #0072AD;
  background: #E9EEF5;
  transition: all 150ms ease-in-out;
}
form .gform_body .gform_fields .gfield .ginput_container input::placeholder {
  color: #0072AD !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 210px;
  resize: none;
  padding: 20px 18px;
  font: 500 15px/1.875em "urbane", sans-serif;
  color: #0072AD;
  background: #E9EEF5;
  transition: all 150ms ease-in-out;
}
form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #0072AD !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span {
  display: block;
  font: 500 12px/1.125em "urbane", sans-serif;
  color: #0072AD;
  margin-top: 6px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input {
  max-height: 62px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice:last-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice input[type=checkbox],
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice input[type=radio], form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox],
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=radio], form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=checkbox],
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio], form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice input[type=checkbox],
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice input[type=checkbox]:checked + label:after,
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice input[type=radio]:checked + label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after,
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=radio]:checked + label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=checkbox]:checked + label:after,
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after,
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice label, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 500 15px/1em "urbane", sans-serif;
  letter-spacing: 0.025em;
  color: #0072AD;
  padding-left: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice label:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border: 2px solid #0B2939;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_radio .gchoice label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 14px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 26px;
  width: 26px;
  background-image: url("../images/check-solid.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 150ms ease-in-out;
}
form .gform_footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 70px;
}
form .gform_footer button {
  cursor: pointer;
}
form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  outline: none;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 52px;
  background: #E9EEF5;
  color: #0072AD;
  padding: 20px 18px;
  font: 500 15px/1em "urbane", sans-serif;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
select::placeholder {
  color: #0072AD !important;
  opacity: 1 !important;
}
select option {
  padding: 14px;
  outline: none;
  font: 500 14px/1.125em "urbane", sans-serif;
  color: #0B2939;
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 2px solid #0B2939;
  box-shadow: none;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  background: unset;
  border: 2px solid #0B2939;
}

.chosen-container-single {
  width: 100% !important;
}
.chosen-container-single.chosen-with-drop .chosen-single div:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.chosen-container-single .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff !important;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  width: 100%;
  max-height: 52px;
  height: 100%;
  border: 2px solid #0072AD;
  padding: 20px 18px;
  font: 500 15px/1em "urbane", sans-serif;
  color: #0B2939;
  transition: all 150ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.chosen-container-single .chosen-single span {
  font: 500 15px/1.125em "urbane", sans-serif;
  color: #0072AD;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  border: 2px solid #0072AD;
  top: -2px;
  bottom: -2px;
  right: -2px;
  height: 52px;
  width: 60px;
  transition: all 150ms ease-in-out;
}
.chosen-container-single .chosen-single div:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("../images/chev-down-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  transform: translate(-50%, -50%);
  transition: all 150ms ease-in-out;
}
.chosen-container-single .chosen-single div b {
  display: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-drop {
  display: none;
  position: absolute;
  width: 100%;
  transition: all 150ms ease-in-out;
  margin: 0 0;
  box-shadow: none;
  z-index: 1;
  top: calc(100% - 2px);
  border-radius: 0 0;
  border: 2px solid #0B2939;
}
.chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results {
  border: 0;
  background: #ffffff;
  border-radius: 0;
  max-height: 200px;
  overflow-y: scroll;
  height: auto;
  padding: 0 0;
  margin: 0 0;
}
.chosen-container-single .chosen-drop .chosen-results li {
  position: relative;
  display: block;
  padding: 20px 18px 20px 30px;
  color: #0B2939;
  font: 400 14px/1em "urbane", sans-serif;
  cursor: pointer;
  text-align: left;
  transition: all 150ms ease-in-out;
}
.chosen-container-single .chosen-drop .chosen-results li.disabled-result {
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: #0B2939;
  background-color: #0B2939;
  color: #ffffff;
}

.gform_wrapper .gform_validation_errors {
  position: relative;
  margin-bottom: 50px;
}
.gform_wrapper .gform_validation_errors h2 {
  color: #ad0000;
}

.gform_confirmation_wrapper {
  position: relative;
  margin: 50px 0;
}
#contact-top .decorations {
  z-index: 0;
  bottom: 0;
  left: 0;
}
#contact-top .decorations .decoration.decoration-1 {
  bottom: -15px;
  left: 25px;
  height: 315px;
}
#contact-top .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#contact-top .decorations .decoration.decoration-2 {
  bottom: 100px;
  left: 190px;
  height: 240px;
}
#contact-top h4 {
  display: block;
  font: 900 30px/1em "neue-haas-unica", sans-serif;
  margin-bottom: 25px;
}
#contact-top .address {
  margin-bottom: 90px;
}
#contact-top .address a {
  display: block;
  width: max-content;
  font: 500 17px/1.5em "urbane", sans-serif;
  text-decoration: underline;
  color: #0072AD;
  transition: all 150ms ease-in-out;
}
#contact-top .address a:hover {
  color: #0B2939;
}
#contact-top .informations h4 {
  margin-bottom: 40px;
}
#contact-top .informations .info {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
#contact-top .informations .info:last-child {
  margin-bottom: 0;
}
#contact-top .informations .info svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
#contact-top .informations .info .meta {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 25px;
}
#contact-top .informations .info .meta p {
  display: block;
  font: 500 10px/1em "urbane", sans-serif;
  text-transform: uppercase;
  color: #0072AD;
}
#contact-top .informations .info .meta a {
  display: block;
  width: max-content;
  font: 500 17px/1.76em "urbane", sans-serif;
  color: #66727E;
  transition: all 150ms ease-in-out;
}
#contact-top .informations .info .meta a:hover {
  color: #0B2939;
}

.hero {
  position: relative;
  position: relative;
  padding: 150px 0 250px;
  min-height: 985px;
  height: 100%;
}
.hero > img, .hero > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 40%;
  max-width: 1080px;
  z-index: 10;
  padding-right: 30px;
}
.hero .text-container h1 {
  display: block;
  width: 99%;
}
.hero .text-container > .buttons {
  margin-top: 60px;
}
.hero .text-container > .buttons a {
  min-width: 360px;
}
.hero .image {
  position: relative;
  position: relative;
  top: 0;
  right: 0;
  margin-left: auto;
  height: 615px;
  z-index: 0;
  width: 100%;
  max-width: 60%;
}
.hero .image > img, .hero .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.hero .image a {
  position: absolute;
  bottom: 3%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 150ms ease-in-out;
  z-index: 15;
}
.hero .image a svg {
  display: block;
  height: 82px;
  width: 82px;
  transition: all 150ms ease-in-out;
}
.hero .image a svg path {
  fill: #ffffff;
}
.hero .image a span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font: 700 11px/1em "urbane", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
.hero .video {
  position: relative;
  overflow: hidden;
  top: 0;
  right: 0;
  margin-left: auto;
  height: 615px;
  z-index: 0;
  width: 100%;
  max-width: 60%;
}
.hero .video .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero .video .overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #161616;
  opacity: 0.2;
  z-index: 3;
  mix-blend-mode: normal;
}
.hero .video video {
  z-index: 2;
  mix-blend-mode: multiply;
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.hero .video a {
  position: absolute;
  bottom: 3%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 150ms ease-in-out;
  z-index: 15;
}
.hero .video a svg {
  display: block;
  height: 82px;
  width: 82px;
  transition: all 150ms ease-in-out;
}
.hero .video a svg path {
  fill: #ffffff;
}
.hero .video a span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font: 700 11px/1em "urbane", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}

.single-hero {
  position: relative;
  padding-top: 30px;
}
.single-hero .text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.single-hero .text-container .buttons {
  margin-top: 90px;
}
.single-hero .decorations {
  bottom: 0;
  left: 0;
}
.single-hero .decorations .decoration.decoration-1 {
  bottom: -50px;
  left: 50px;
  height: 240px;
}
.single-hero .decorations .decoration.decoration-2 {
  bottom: 30px;
  left: -75px;
}
.single-hero .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 1385px;
  width: 100%;
  margin-top: 100px;
  margin-bottom: -500px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.single-hero .image > img, .single-hero .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-hero .image:before {
  content: "";
  display: block;
  padding-top: 56%;
}

.single-related .decorations {
  top: 0;
  right: 0;
}
.single-related .decorations .decoration.decoration-1 {
  top: -80px;
  right: -120px;
  height: 300px;
}
.single-related .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
.single-related .decorations .decoration.decoration-2 {
  top: -380px;
  right: -180px;
}

#single-project-details > img {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  z-index: -1;
  object-fit: cover;
  object-position: center;
  opacity: 0.05;
}
#single-project-details .values {
  width: 100%;
}
#single-project-details .values .block h3 {
  text-align: center;
}

#single-project-content .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 1385px;
  width: 100%;
  margin-top: -500px;
  margin-left: auto;
  margin-right: auto;
}
#single-project-content .image > img, #single-project-content .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#single-project-content .image:before {
  content: "";
  display: block;
  padding-top: 56%;
}
#single-project-content .text-container .buttons {
  margin-top: 90px;
  justify-content: center;
}

#single-related-projects .project.block .meta {
  background-color: #ffffff;
}
#single-related-projects .project.block .meta h3 {
  color: #0B2939 !important;
}
#single-related-projects .project.block .meta h4 {
  color: #0072AD !important;
}
#single-related-projects .buttons {
  margin-top: 90px;
  justify-content: center;
}

#single-post-details > img {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  z-index: -1;
  object-fit: cover;
  object-position: center;
  opacity: 0.05;
}
#single-post-details .text-container h1 {
  text-align: center;
}
#single-post-details .text-container .label, #single-post-details .text-container .gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors #single-post-details .text-container h2, #single-post-details .text-container .gform_confirmation_wrapper .gform_confirmation_message, .gform_confirmation_wrapper #single-post-details .text-container .gform_confirmation_message, #single-post-details .text-container .gform_confirmation_wrapper .gform_confirmation_message p, .gform_confirmation_wrapper .gform_confirmation_message #single-post-details .text-container p {
  color: #0072AD;
}

#single-post-content .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 1385px;
  width: 100%;
  margin-top: -500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
#single-post-content .image > img, #single-post-content .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#single-post-content .image:before {
  content: "";
  display: block;
  padding-top: 62%;
}
#single-post-content .image > img, #single-post-content .image > picture {
  object-position: top center;
}
#single-post-content .text-container {
  position: relative;
  margin-top: 65px;
}
#single-post-content .text-container .buttons {
  position: relative;
  width: calc(100% + 500px);
  left: -500px;
  transform: translateX(250px);
  margin-top: 150px;
  justify-content: space-between;
  align-items: flex-end;
}

#single-project-content .text-container {
  position: relative;
  margin-top: 65px;
}

#blog-top {
  padding-top: 120px;
  padding-bottom: 200px;
  min-height: 100%;
}
#blog-top.hero .text-container {
  width: 50%;
}
#blog-top.hero .text-container h1 {
  width: 100%;
}
#blog-top .decorations {
  bottom: 0;
  right: 0;
  z-index: 0;
}
#blog-top .decorations .decoration.decoration-1 {
  height: 290px;
  bottom: 0;
  right: 150px;
}
#blog-top .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#blog-top .decorations .decoration.decoration-2 {
  height: 490px;
  bottom: -260px;
  right: -60px;
}

#social-video-module .video-module {
  position: relative;
  position: relative;
  max-width: 100%;
  max-height: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#social-video-module .video-module:before {
  content: "";
  display: block;
  padding-top: 56%;
}
#social-video-module .video-module > img, #social-video-module .video-module > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#social-video-module .video-module .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#social-video-module .video-module .overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #161616;
  opacity: 0.2;
  z-index: 3;
  mix-blend-mode: normal;
}
#social-video-module .video-module video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
#social-video-module .video-module a {
  position: absolute;
  bottom: 3%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 150ms ease-in-out;
  z-index: 15;
}
#social-video-module .video-module a svg {
  display: block;
  height: 82px;
  width: 82px;
  transition: all 150ms ease-in-out;
}
#social-video-module .video-module a svg path {
  fill: #ffffff;
}
#social-video-module .video-module a span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font: 700 11px/1em "urbane", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}

.social-share {
  display: flex;
  align-items: center;
}
.social-share p {
  display: block;
  font: 600 14px/1.42em "urbane", sans-serif;
  color: #ffffff;
  margin-right: 40px;
  text-transform: uppercase;
}
.social-share .social-icons {
  display: flex;
  align-items: center;
}
.social-share .social-icons li {
  margin-right: 12px;
}
.social-share .social-icons li:last-child {
  margin-right: 0;
}
.social-share .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  width: 33px;
  transition: all 150ms ease-in-out;
}
.social-share .social-icons li a:hover svg path {
  fill: #ffffff;
}
.social-share .social-icons li a svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 150ms ease-in-out;
}
.social-share .social-icons li a svg path {
  transition: all 150ms ease-in-out;
}

#timeline.static .the-timeline {
  margin-bottom: 200px;
}
#timeline .splide__arrows {
  flex-direction: column;
  position: absolute;
  top: -100px;
  height: 100%;
  max-height: 800px;
  width: 55px;
  left: 50%;
  transform: translateX(-50%);
}
#timeline .splide__arrows button {
  position: relative;
  padding: 0;
  margin: 0;
}
#timeline .splide__arrows button:hover svg circle {
  fill: #808E9D;
}
#timeline .splide__arrows button svg {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 45px;
  max-height: 45px;
  transition: all 150ms ease-in-out;
}
#timeline .splide__arrows button svg circle {
  transition: all 150ms ease-in-out;
}
#timeline .splide__arrows button.splide__arrow--next {
  display: flex;
}
#timeline .splide__track .splide__list .splide__slide {
  margin-bottom: 2rem !important;
  height: calc(100% + 0rem) !important;
}
#timeline .the-timeline {
  position: relative;
}
#timeline .the-timeline .image {
  position: relative;
  position: relative;
  display: block;
  max-width: 1000px;
  height: 100%;
  margin-right: auto;
  border: 2px solid #0072AD;
}
#timeline .the-timeline .image:before {
  content: "";
  display: block;
  padding-top: 60%;
}
#timeline .the-timeline .image > img, #timeline .the-timeline .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#timeline .the-timeline .meta {
  position: relative;
}
#timeline .the-timeline .meta > .the-content.light-grey-blue h1, #timeline .the-timeline .meta > .the-content.light-grey-blue h2, #timeline .the-timeline .meta > .the-content.light-grey-blue h3, #timeline .the-timeline .meta > .the-content.light-grey-blue h4, #timeline .the-timeline .meta > .the-content.light-grey-blue h5, #timeline .the-timeline .meta > .the-content.light-grey-blue h6, #timeline .the-timeline .meta > .the-content.grey h1, #timeline .the-timeline .meta > .the-content.grey h2, #timeline .the-timeline .meta > .the-content.grey h3, #timeline .the-timeline .meta > .the-content.grey h4, #timeline .the-timeline .meta > .the-content.grey h5, #timeline .the-timeline .meta > .the-content.grey h6 {
  color: #0072AD !important;
}
#timeline .the-timeline .meta > .buttons {
  margin-top: 90px;
}

#about-intro > .wrapper {
  z-index: 10;
}
#about-intro .decorations {
  bottom: 0;
  right: 0;
}
#about-intro .decorations .decoration.decoration-1 {
  bottom: -10px;
  right: 35px;
}
#about-intro .decorations .decoration.decoration-2 {
  right: 240px;
  bottom: -170px;
}

#about-timeline .decorations .decoration.decoration-1 {
  bottom: -20px;
  left: -120px;
  height: 260px;
  width: 325px;
}
#about-timeline .decorations .decoration.decoration-2 {
  bottom: -175px;
  left: -120px;
  height: 450px;
  width: 575px;
}

.line {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background-color: #0072AD;
  pointer-events: none;
  z-index: 0;
}

.offset-images .image {
  display: block;
  position: relative;
  position: relative;
  width: 100%;
}
.offset-images .image > img, .offset-images .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.offset-images .image:before {
  content: "";
  display: block;
  padding-top: 68%;
}
.offset-images .image.image-1 {
  top: -80px;
}
.offset-images .image.image-2 {
  top: -120px;
}

#history-images .offset-images {
  position: relative;
  top: -120px;
}
#history-images .decorations {
  top: 0;
  left: 0;
}
#history-images .decorations .decoration.decoration-1 {
  top: -220px;
  left: -100px;
  height: 260px;
}
#history-images .decorations .decoration.decoration-1 svg path {
  opacity: 0.98;
}
#history-images .decorations .decoration.decoration-2 {
  top: -275px;
  left: -100px;
}

#history-intro .decorations {
  top: 0;
  right: 0;
}
#history-intro .decorations .decoration.decoration-1 {
  top: -330px;
  right: -180px;
  height: 290px;
}
#history-intro .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#history-intro .decorations .decoration.decoration-2 {
  top: -330px;
  right: -180px;
  height: 290px;
}
#history-intro .buttons {
  margin-top: 120px;
}

#history-content .groups-row {
  position: relative;
  padding: 85px 0;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
#history-content .groups-row img, #history-content .groups-row svg, #history-content .groups-row picture {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-height: 120px;
  max-width: 200px;
}
#history-content .content-row .image {
  position: relative;
  position: relative;
  display: block;
  position: absolute !important;
  margin-top: -280px;
  margin-bottom: 280px;
  left: 75px;
  max-width: 615px;
  width: 45%;
  padding-left: 75px;
  padding-right: 75px;
  margin-right: -75px;
  margin-left: -75px;
}
#history-content .content-row .image:before {
  content: "";
  display: block;
  padding-top: 92%;
}
#history-content .content-row .image > img, #history-content .content-row .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#history-content .buttons {
  margin-top: 120px;
}

#about-team .decorations {
  top: 0;
  right: 0;
}
#about-team .decorations .decoration.decoration-1 {
  top: 115px;
  right: -125px;
  height: 360px;
}
#about-team .decorations .decoration.decoration-2 {
  top: -160px;
  right: -200px;
}
#about-team .buttons {
  margin-top: 90px;
}
#about-team .full-image {
  display: block;
  position: relative;
  padding-bottom: 170px;
}
#about-team .teams-section > .row, #about-team form .gform_body .teams-section > .gform_fields, form .gform_body #about-team .teams-section > .gform_fields {
  margin-bottom: 80px;
}
#about-team .teams-section > .row:last-child, #about-team form .gform_body .teams-section > .gform_fields:last-child, form .gform_body #about-team .teams-section > .gform_fields:last-child {
  margin-bottom: 0;
}

#work-intro .decorations {
  bottom: 0;
  right: 0;
}
#work-intro .decorations .decoration.decoration-1 {
  bottom: -75px;
  right: -60px;
  height: 240px;
}
#work-intro .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#work-intro .decorations .decoration.decoration-2 {
  bottom: -40px;
  right: -180px;
}

.workshops {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.workshops .block {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 200px 0;
}
.workshops .block:first-child {
  margin-top: 0;
}
.workshops .block:nth-child(even) {
  margin-right: 193px;
}
.workshops .block .image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 768px;
}
.workshops .block .meta {
  position: relative;
  width: 650px;
  max-width: 100%;
  z-index: 1;
  padding-left: 60px;
}
.workshops .block .meta .title, .workshops #single-project-details .values .block .meta h3, #single-project-details .values .workshops .block .meta h3 {
  position: relative;
  top: 0;
  z-index: 5;
}
.workshops .block .meta .title .bold, .workshops #single-project-details .values .block .meta h3 .bold, #single-project-details .values .workshops .block .meta h3 .bold {
  margin-top: -20px;
}
.workshops .block .meta > .the-content {
  width: 100%;
  max-width: 680px;
  margin-bottom: 50px;
}
.workshops .block .meta > .the-content.grey h1, .workshops .block .meta > .the-content.grey h2, .workshops .block .meta > .the-content.grey h3, .workshops .block .meta > .the-content.grey h4, .workshops .block .meta > .the-content.grey h5, .workshops .block .meta > .the-content.grey h6 {
  color: #0072AD;
}
.workshops .block .meta .details li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.workshops .block .meta .details li:last-child {
  margin-bottom: 0;
}
.workshops .block .meta .details li span {
  display: inline-block;
  margin-right: 4px;
}
.workshops .block .meta .details li span:first-child {
  font: 600 17px/1em "urbane", sans-serif;
  color: #0072AD;
  margin-right: 4px;
}
.workshops .block .meta .details li span:last-child {
  font: 500 16px/1em "urbane", sans-serif;
  color: #B8C4D3;
}

.sidebar, .sidebar-static {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.sidebar .sidebar__inner .text-container, .sidebar-static .sidebar__inner .text-container {
  position: relative;
  z-index: 1;
}
.sidebar .sidebar__inner .text-container .decorations, .sidebar-static .sidebar__inner .text-container .decorations {
  z-index: -1;
}
.sidebar .sidebar__inner .text-container .decorations .decoration.decoration-1, .sidebar-static .sidebar__inner .text-container .decorations .decoration.decoration-1 {
  top: -80px;
  left: -120px;
}
.sidebar .sidebar__inner .text-container h4, .sidebar-static .sidebar__inner .text-container h4 {
  font-weight: 900 !important;
}
.sidebar .sidebar__inner .text-container .buttons, .sidebar-static .sidebar__inner .text-container .buttons {
  margin-top: 60px;
}

#careers-intro > .wrapper {
  z-index: 1;
}
#careers-intro .decorations {
  bottom: 0;
  right: 0;
  z-index: 0;
}
#careers-intro .decorations .decoration.decoration-1 {
  bottom: 320px;
  right: -60px;
  height: 240px;
}
#careers-intro .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#careers-intro .decorations .decoration.decoration-2 {
  bottom: 400px;
  right: -180px;
}

.careers {
  position: relative;
  z-index: 1;
}
.careers .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px 16px 16px;
  border: 2px solid #ffffff;
  border-radius: 0;
  outline: none;
  height: 100%;
  min-height: 80px;
  max-height: 80px;
  margin-bottom: 60px;
  background: #0B2939;
}
.careers .block .left {
  position: relative;
  width: calc(100%);
  padding-right: 5px;
  display: flex;
  align-items: center;
}
.careers .block .left .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin-right: 25px;
}
.careers .block .left .icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.careers .block .left h3 {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  font: 900 20px/1em "neue-haas-unica", sans-serif;
  transition: all 150ms ease-in-out;
}
.careers .block .left h3:hover {
  transform: translateX(10px);
}
.careers .block .left h3:hover a {
  color: #0072AD;
}
.careers .block .left h3 a {
  font: 900 20px/1em "neue-haas-unica", sans-serif;
  transition: all 150ms ease-in-out;
}
.careers .block .right {
  position: relative;
  padding-right: 5px;
}
.careers .block .right a {
  display: block;
  font: 600 14px/1em "urbane", sans-serif;
  color: #0072AD;
  text-transform: uppercase;
  transition: all 150ms ease-in-out;
}
.careers .block .right a:hover {
  color: #ffffff;
}

#culture-action .text-container {
  border: 2px solid #0072AD;
  padding: 100px;
}

.contents-row {
  position: relative;
}
.contents-row .block {
  margin-bottom: 20px;
}
.contents-row .block:last-child {
  margin-bottom: 20px;
}
.contents-row .block:nth-child(even) {
  flex-direction: row-reverse !important;
}
.contents-row .block:nth-child(even) .text-container {
  padding-left: 80px;
  padding-right: 145px;
}
.contents-row .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 805px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contents-row .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.contents-row .image > img, .contents-row .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contents-row .text-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-left: 145px;
  padding-right: 80px;
}
.contents-row .text-container h4 {
  font-size: 50px;
}

.s-values .social-values {
  position: relative;
}
.s-values .social-values .block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 150px;
}
.s-values .social-values .block h4 {
  display: block;
  font: 900 35px/1em "neue-haas-unica", sans-serif;
  margin-top: 40px;
}
.s-values .social-values .block .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 140px;
  width: 140px;
}
.s-values .social-values .block .icon svg {
  display: block;
  max-width: 100%;
}

.c-values {
  position: relative;
}
.c-values .block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 150px;
}
.c-values .block h4 {
  text-align: left;
  display: block;
  font: 900 35px/1em "neue-haas-unica", sans-serif;
  margin-bottom: 15px;
}
.c-values .block .the-content {
  text-align: left;
}
.c-values .block .meta {
  position: relative;
  padding-left: 15px;
  width: calc(100% - 155px);
}
.c-values .block .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 140px;
  width: 140px;
}
.c-values .block .icon svg {
  display: block;
  max-width: 100%;
}

.teams .block {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 60px;
}
.teams .block .image {
  position: relative;
  position: relative;
  display: block;
  max-height: 580px;
  height: 100%;
  width: 100%;
  margin: 0 auto 30px;
  pointer-events: none;
  transition: all 150ms ease-in-out;
}
.teams .block .image:before {
  content: "";
  display: block;
  padding-top: 150%;
}
.teams .block .image > img, .teams .block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.teams .block .image:hover > p {
  opacity: 1;
}
.teams .block .image:hover .overlay {
  opacity: 1;
}
.teams .block .image > p {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  letter-spacing: 0.05em;
  z-index: 5;
  width: max-content;
  width: -moz-max-content;
  transition: all 150ms ease-in-out;
}
.teams .block .image > p:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 2px);
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.teams .block .image .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(11, 41, 57, 0.85);
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
  z-index: 3;
  transition: all 150ms ease-in-out;
}
.teams .block .image > img, .teams .block .image > picture {
  transition: all 150ms ease-in-out;
  z-index: 1;
}
.teams .block .meta h4 {
  display: block;
  font: 500 25px/1em "urbane", sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.teams .block .meta p {
  display: block;
  font: 500 15px/1em "urbane", sans-serif;
}

.bio-pop {
  display: none;
  height: 100%;
  width: 100%;
  background: transparent;
}
.bio-pop .wrapper {
  max-width: 1180px;
}
.bio-pop .wrapper .image {
  display: block;
  position: relative;
  position: relative;
  max-width: 500px;
  width: 100%;
}
.bio-pop .wrapper .image:before {
  content: "";
  display: block;
  padding-top: 140%;
}
.bio-pop .wrapper .image > img, .bio-pop .wrapper .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bio-pop .wrapper .text-container {
  margin-left: 90px;
}
.bio-pop .wrapper .text-container .the-content {
  margin-top: 45px;
}
.bio-pop .wrapper .text-container h4 {
  display: block;
  font: 500 25px/1em "urbane", sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.bio-pop .wrapper .text-container > p {
  display: block;
  font: 500 15px/1em "urbane", sans-serif;
}

#social-colleagues .decorations {
  top: 0;
  right: 0;
}
#social-colleagues .decorations .decoration.decoration-1 {
  top: -80px;
  right: -120px;
  height: 240px;
}
#social-colleagues .decorations .decoration.decoration-1 svg path {
  opacity: 0.7;
}
#social-colleagues .decorations .decoration.decoration-2 {
  top: -440px;
  right: -260px;
}
#social-colleagues .teams {
  padding-top: 150px;
}
#social-colleagues .teams .block .image {
  max-height: 540px;
}
#social-colleagues .teams .block .image > img, #social-colleagues .teams .block .image > picture {
  object-position: top;
}
#social-colleagues .buttons {
  justify-content: center;
  margin-top: 90px;
}

#portal {
  min-height: 100vh;
}
#portal .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(11, 41, 57, 0.95);
  z-index: 5;
}
#portal > img, #portal > picture {
  z-index: 1;
}
#portal > .wrapper {
  z-index: 10;
}

.form {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.form.loading .form-row {
  opacity: 0.5;
}
.form.loading .form-actions:after {
  display: block;
}
.form.error .message {
  display: block;
  color: #ad0000;
  margin-bottom: 5px;
}
.form.error .form-row input {
  -webkit-box-shadow: 0px 0px 5px 0px #ad0000;
  box-shadow: 0px 0px 5px 0px #ad0000;
}
.form .message {
  display: none;
}
.form .form-row {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.form .form-row a {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  font: 500 15px/1em "urbane", sans-serif;
  color: #0072AD;
  text-decoration: underline;
  transition: all 150ms ease-in-out;
}
.form .form-row a:hover {
  color: #0B2939;
}
.form .form-row label {
  display: block;
  text-align: left;
  font: 500 15px/1.2em "urbane", sans-serif;
  margin-bottom: 12px;
  color: #0B2939;
}
.form .form-row input[type=text],
.form .form-row input[type=email],
.form .form-row input[type=password],
.form .form-row input[type=number] {
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 52px;
  border: 0;
  border-radius: 0;
  padding: 20px 18px;
  font: 500 15px/1em "urbane", sans-serif;
  color: #0072AD;
  background: #E9EEF5;
  transition: all 150ms ease-in-out;
}
.form .form-row input[type=text]::placeholder,
.form .form-row input[type=email]::placeholder,
.form .form-row input[type=password]::placeholder,
.form .form-row input[type=number]::placeholder {
  color: #0072AD !important;
  opacity: 1 !important;
}
.form .form-row input[type=number] {
  -moz-appearance: textfield;
}
.form .form-row input::-webkit-outer-spin-button,
.form .form-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form .form-row input[type=submit] {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #0072AD;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 16px 40px;
  min-width: 310px;
  font: 700 14px/1em "urbane", sans-serif;
  color: #0B2939;
  overflow: hidden;
  text-transform: uppercase;
  transition: all 150ms ease-in-out;
  cursor: pointer;
  max-width: 310px;
}
.form .form-row input[type=submit]:hover {
  color: #ffffff;
  border-color: #0B2939;
  background: #0B2939;
}
.form .form-row button {
  cursor: pointer;
  max-width: 310px;
  margin-top: 50px;
}

#spontaneous {
  height: 100%;
  width: 100%;
  background: transparent;
  display: none;
}
#spontaneous .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

#forgot-password {
  height: 100%;
  width: 100%;
  background: transparent;
  display: none;
}
#forgot-password .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
#forgot-password .text-container > img, #forgot-password .text-container > picture, #forgot-password .text-container > svg {
  display: block;
  margin-bottom: 45px;
}
#forgot-password .text-container .title.mb-xl, #forgot-password .text-container #single-project-details .values .block h3.mb-xl, #single-project-details .values .block #forgot-password .text-container h3.mb-xl {
  margin-bottom: 100px;
}

.sub-content {
  height: 100%;
  width: 100%;
  background: transparent;
  display: none;
}
.sub-content .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sub-content .text-container li {
  position: relative;
  margin-bottom: 25px;
  list-style: none;
}
.sub-content .text-container li:last-child {
  margin-bottom: 0;
}
.sub-content .text-container li a {
  display: inline-block;
  font: 500 18px/1em "urbane", sans-serif;
  text-decoration: underline;
  color: #ffffff;
  transition: all 150ms ease-in-out;
}
.sub-content .text-container li a:hover {
  color: #0072AD;
  transform: translateX(10px);
}
.sub-content .text-container li a.btn, .sub-content .text-container .documents .tab .bottom li a.btn, .documents .tab .bottom .sub-content .text-container li a.btn {
  color: #ffffff;
  text-decoration: none;
  min-width: 100% !important;
}
.sub-content .text-container li a.btn:hover {
  transform: none;
  color: #0072AD;
}

.page-template-login-portal .fancybox-content, .page-template-dashboard .fancybox-content {
  padding: 0 0;
  background: transparent;
  height: 100%;
  width: 100%;
}

.fancybox-button {
  background: transparent;
}
.fancybox-button.fancybox-button--zoom, .fancybox-button.fancybox-button--play, .fancybox-button.fancybox-button--thumbs {
  display: none !important;
}
.fancybox-button.fancybox-button--close, .fancybox-button.fancybox-close-small {
  padding: 0px;
  right: 30px;
  top: 30px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 1 !important;
  transition: all 150ms ease-in-out;
}
.fancybox-button.fancybox-button--close:hover, .fancybox-button.fancybox-close-small:hover {
  transform: scale(1.125);
  transform-origin: center;
}
.fancybox-button.fancybox-button--close:after, .fancybox-button.fancybox-close-small:after {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  height: 36px;
  width: 36px;
  background-image: url("../images/close-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.fancybox-button.fancybox-button--close svg, .fancybox-button.fancybox-close-small svg {
  display: none;
}
.fancybox-button svg {
  display: none;
}

.documents {
  position: relative;
}
.documents .tab .top {
  background: #0B2939;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 30px;
}
.documents .tab .top h4 {
  display: block;
  text-align: center;
  font: 900 30px/1.05em "neue-haas-unica", sans-serif;
  color: #ffffff;
  margin-top: 20px;
}
.documents .tab .top svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 75px;
}
.documents .tab .bottom {
  position: relative;
  padding: 35px;
  background: #E9EEF5;
}
.documents .tab .bottom li {
  position: relative;
  margin-bottom: 25px;
  list-style: none;
}
.documents .tab .bottom li:last-child {
  margin-bottom: 0;
}
.documents .tab .bottom li a {
  display: inline-block;
  font: 500 18px/1em "urbane", sans-serif;
  text-decoration: underline;
  color: #0072AD;
  transition: all 150ms ease-in-out;
}
.documents .tab .bottom li a:hover {
  color: #0B2939;
  transform: translateX(10px);
}
.documents .tab .bottom li a.btn {
  text-decoration: none;
  min-width: 100% !important;
}
.documents .tab .bottom li a.btn:hover {
  transform: none;
}

#dashboard-documents .break {
  margin: 50px 0;
}
#dashboard-documents .links h4 {
  display: block;
  font: 900 30px/1.05em "neue-haas-unica", sans-serif;
  margin-bottom: 40px;
  color: #0B2939;
}
#dashboard-documents .links a {
  display: inline-block;
  font: 500 18px/1em "urbane", sans-serif;
  text-decoration: underline;
  color: #0072AD;
  transition: all 150ms ease-in-out;
}
#dashboard-documents .links a:hover {
  color: #0B2939;
  transform: translateX(10px);
}

.gallery {
  position: relative;
  min-height: 100%;
  margin: 75px 0;
}
.gallery .gallery-item {
  display: block;
}
.gallery .gallery-item:first-child {
  padding-top: 85px;
}
.gallery .gallery-item:nth-child(3) {
  padding-top: 85px;
}
.gallery .gallery-item a {
  display: block;
  padding: 0 15px;
  margin-bottom: 30px;
}
.gallery .gallery-item a > img, .gallery .gallery-item a > picture, .gallery .gallery-item a > svg {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  object-position: center;
}

.pagination {
  display: none !important;
}

#single-career-details .sidebar {
  max-width: 730px;
}
#single-career-details #career-form {
  position: sticky;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 100%;
  padding: 70px 65px;
  background: #0B2939;
}
#single-career-details #career-form h4 {
  font: 900 20px/1.05em "neue-haas-unica", sans-serif;
  margin-bottom: 60px;
}

#single-career-content {
  position: relative;
}
#single-career-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50%;
  width: calc(200vw);
  height: 100%;
  background: #0B2939;
}

#single-related-careers .sidebar .sidebar__inner .text-container .title, #single-related-careers .sidebar .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #single-related-careers .sidebar .sidebar__inner .text-container h3, #single-related-careers .sidebar-static .sidebar__inner .text-container .title, #single-related-careers .sidebar-static .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #single-related-careers .sidebar-static .sidebar__inner .text-container h3 {
  color: #0B2939 !important;
}
#single-related-careers .sidebar .sidebar__inner .text-container .the-content, #single-related-careers .sidebar-static .sidebar__inner .text-container .the-content {
  color: #0072AD !important;
}

.privacy-policy #main ul {
  margin-left: 20px !important;
}
.privacy-policy #main table {
  border-collapse: collapse;
}
.privacy-policy #main table tr:nth-child(even) {
  background-color: #dce5f1;
}
.privacy-policy #main table tr:first-child {
  background-color: #5980bc;
  font-weight: bold;
  color: white;
}
.privacy-policy #main table tr:first-child td {
  min-width: 300px;
}
.privacy-policy #main table tr {
  border: 1px solid #5980bc;
}
.privacy-policy #main table td {
  border: 1px solid #5980bc;
}
.privacy-policy #main table td {
  padding: 20px;
  text-align: center;
}

@media (max-width: 1919px) {
  .title, #single-project-details .values .block h3 {
    font-size: 64px;
  }

  #header .header-right {
    width: calc(100% - 150px);
    padding-left: 25px;
  }
  #header .header-right nav ul li {
    margin-right: 30px;
  }
  #header .header-right nav ul li a {
    font-size: 11px;
  }

  .sub-content .text-container li {
    margin-bottom: 20px;
  }
  .sub-content .text-container li a {
    font-size: 16px;
  }

  .documents .tab .top svg {
    height: 60px;
    width: 60px;
  }
  .documents .tab .top h4 {
    font-size: 25px;
  }
  .documents .tab .bottom {
    padding: 30px;
  }
  .documents .tab .bottom li {
    margin-bottom: 20px;
  }
  .documents .tab .bottom li a {
    font-size: 16px;
  }

  #dashboard-documents .links h4 {
    font-size: 25px;
  }
  #dashboard-documents .links a {
    font-size: 16px;
  }
}
@media (max-width: 1555px) {
  #single-career-details #career-form {
    padding: 50px;
  }

  .action-block .text-container .decorations .decoration.decoration-1 {
    height: 200px;
    left: -100px;
  }

  #single-related-posts .buttons, #single-related-projects .buttons {
    margin-top: 50px;
  }

  .single-hero .image {
    margin-bottom: -400px;
  }

  .s-values .social-values .block {
    margin-bottom: 90px;
  }
  .s-values .social-values .block .icon {
    height: 100px;
    width: 100px;
  }
  .s-values .social-values .block h4 {
    font-size: 25px;
    margin-top: 30px;
  }

  .c-values {
    position: relative;
  }
  .c-values .block {
    margin-bottom: 90px;
  }
  .c-values .block .icon {
    height: 100px;
    width: 100px;
  }
  .c-values .block h4 {
    font-size: 25px;
  }
  .c-values .block .meta {
    width: calc(100% - 115px);
  }

  .bold {
    font-size: 130px;
  }

  #history-intro .buttons {
    margin-top: 50px;
  }

  #social-colleagues .buttons {
    margin-top: 50px;
  }

  .slice {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .slice.pt-lg {
    padding-top: 156px;
  }
  .slice.pb-lg {
    padding-bottom: 156px;
  }
  .slice.pt-xl {
    padding-top: 203px;
  }
  .slice.pb-xl {
    padding-bottom: 203px;
  }

  .single-hero .decorations .decoration.decoration-1 {
    bottom: -80px;
    left: -60px;
    height: 180px;
  }
  .single-hero .decorations .decoration.decoration-2 {
    bottom: -40px;
    left: -100px;
    height: 240px;
  }

  .single-related .decorations .decoration.decoration-1 {
    top: -40px;
    right: -80px;
    height: 220px;
  }
  .single-related .decorations .decoration.decoration-2 {
    top: -180px;
    right: -100px;
    height: 300px;
  }

  #forgot-password .text-container .title.mb-xl, #forgot-password .text-container #single-project-details .values .block h3.mb-xl, #single-project-details .values .block #forgot-password .text-container h3.mb-xl {
    margin-bottom: 90px;
  }

  .gutter-70 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutter-70 > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .gutter-150 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .gutter-150 > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }

  #header .header-left #site-logo {
    width: 175px;
    height: 60px;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 58px;
  }
  .title.mb, #single-project-details .values .block h3.mb, #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
    margin-bottom: 50px;
  }
  .title.mb-small, #single-project-details .values .block h3.mb-small {
    margin-bottom: 30px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 48px;
  }
  .title.mb-xl, #single-project-details .values .block h3.mb-xl {
    margin-bottom: 100px;
  }
  .title.medium, #single-project-details .values .block h3.medium {
    font-size: 36px;
  }

  .label.mb, .gform_wrapper .gform_validation_errors h2.mb, .gform_confirmation_wrapper .mb.gform_confirmation_message, .gform_confirmation_wrapper .gform_confirmation_message p.mb, #home-projects .label.title, .gform_wrapper .gform_validation_errors #home-projects h2.title, #home-projects .gform_wrapper .gform_validation_errors h2.title, .gform_confirmation_wrapper #home-projects .gform_confirmation_message.title, #home-projects .gform_confirmation_wrapper .gform_confirmation_message.title, .gform_confirmation_wrapper .gform_confirmation_message #home-projects p.title, #home-projects .gform_confirmation_wrapper .gform_confirmation_message p.title, #home-projects #single-project-details .values .block h3.label, .gform_confirmation_wrapper #home-projects #single-project-details .values .block h3.gform_confirmation_message, #home-projects #single-project-details .values .block .gform_confirmation_wrapper h3.gform_confirmation_message, #single-project-details .values .block #home-projects h3.label, .gform_confirmation_wrapper #single-project-details .values .block #home-projects h3.gform_confirmation_message, #single-project-details .values .block #home-projects .gform_confirmation_wrapper h3.gform_confirmation_message {
    margin-bottom: 30px;
  }

  .btn, .dark-form form .gform_footer button, form .gform_footer button, .sub-content .text-container li a.btn, .documents .tab .bottom li a.btn {
    font-size: 13px;
    padding: 14px 20px;
    min-width: 300px;
  }
  .btn.with-icon svg, form .gform_footer button.with-icon svg, .sub-content .text-container li a.with-icon.btn svg, .documents .tab .bottom li a.with-icon.btn svg {
    height: 22px;
    width: 22px;
    left: -10px;
  }

  .banner .text-container > .buttons {
    margin-top: 70px;
  }

  #home-projects .buttons {
    margin-top: 50px;
  }

  #home-success .buttons {
    margin-top: 50px;
  }

  .values {
    padding-bottom: 0;
  }
  .values .block h3 {
    font-size: 70px;
  }

  .col-action .action {
    margin-right: -80px;
  }

  #timeline .the-timeline .meta > .buttons {
    margin-top: 70px;
  }
  #timeline .the-timeline .image {
    margin-left: auto;
  }

  #about-team .buttons {
    margin-top: 75px;
  }

  .workshops .block {
    margin: 145px 0;
  }

  #timeline.static .the-timeline {
    margin-bottom: 145px;
  }

  .single-hero .image {
    width: 90%;
  }

  #single-post-content .text-container .buttons {
    width: 100%;
    left: inherit;
    transform: none;
    margin-top: 90px;
  }

  #single-related-posts .buttons, #single-related-projects .buttons {
    margin-top: 70px;
  }

  .contents-row .text-container h4 {
    font-size: 48px;
  }
}
@media (max-width: 1440px) {
  .careers .block {
    margin-bottom: 40px;
    min-height: 100%;
    padding: 12px 24px 12px 12px;
  }
  .careers .block .left .icon {
    height: 34px;
    width: 34px;
    margin-right: 20px;
  }
  .careers .block .left h3 {
    font-size: 18px;
  }
  .careers .block .left h3 a {
    font-size: 18px;
  }

  .project.block.grid .meta {
    width: calc(100% - 60px);
  }

  .gallery {
    margin: 50px 0;
  }

  .documents.row.gutter-70, form .gform_body .documents.gutter-70.gform_fields {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .documents.row.gutter-70 > div[class*=col-], form .gform_body .documents.gutter-70.gform_fields > div[class*=col-] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .documents .tab .top {
    padding: 30px 15px;
  }
  .documents .tab .top h4 {
    font-size: 22px;
  }
  .documents .tab .bottom {
    padding: 30px 15px;
  }
  .documents .tab .bottom li {
    margin-bottom: 15px;
  }
  .documents .tab .bottom li a {
    font-size: 15px;
  }

  .sub-content .text-container li {
    margin-bottom: 15px;
  }
  .sub-content .text-container li a {
    font-size: 15px;
  }

  #dashboard-documents .links h4 {
    font-size: 22px;
  }
  #dashboard-documents .links a {
    font-size: 15px;
  }

  .the-content blockquote {
    padding: 80px 0;
    width: calc(100% + 300px);
    left: -50%;
    transform: translateX(25%);
    font-size: 26px;
  }

  #footer .top .groups-row {
    margin-left: 0;
  }
  #footer .top svg#logo-valtech {
    max-height: 70px;
    max-width: 70px;
  }
  #footer .top nav h3 {
    font-size: 18px;
    padding-left: 24px;
  }
  #footer .top nav h3:before {
    top: 0;
  }
  #footer .top nav ul li a {
    font-size: 12px;
  }
  #footer .top .footer-content h4 {
    font-size: 18px;
  }
  #footer .top .footer-content .row, #footer .top .footer-content form .gform_body .gform_fields, form .gform_body #footer .top .footer-content .gform_fields {
    margin-left: 30px;
  }
  #footer .top .footer-content .row > .col-lg-6, #footer .top .footer-content form .gform_body .gform_fields > .col-lg-6, form .gform_body #footer .top .footer-content .gform_fields > .col-lg-6, #footer .top .footer-content form .gform_body .gform_fields .row > .gfield.gfield--width-half, form .gform_body .gform_fields #footer .top .footer-content .row > .gfield.gfield--width-half, #footer .top .footer-content form .gform_body .gform_fields > .gfield.gfield--width-half, form .gform_body #footer .top .footer-content .gform_fields > .gfield.gfield--width-half {
    padding-right: 60px;
  }
  #footer .top .footer-content .row > .col-lg-6:last-child, #footer .top .footer-content form .gform_body .gform_fields > .col-lg-6:last-child, form .gform_body #footer .top .footer-content .gform_fields > .col-lg-6:last-child, #footer .top .footer-content form .gform_body .gform_fields .row > .gfield.gfield--width-half:last-child, form .gform_body .gform_fields #footer .top .footer-content .row > .gfield.gfield--width-half:last-child, #footer .top .footer-content form .gform_body .gform_fields > .gfield.gfield--width-half:last-child, form .gform_body #footer .top .footer-content .gform_fields > .gfield.gfield--width-half:last-child {
    padding-right: 0;
  }
  #footer .top .groups-row img, #footer .top .groups-row svg, #footer .top .groups-row picture {
    max-width: 80%;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 52px;
  }

  .project.block.slider {
    margin-right: 50px;
  }
  .project.block.slider .image {
    max-width: 960px;
  }

  #projects-top {
    min-height: 600px;
  }
  #projects-top svg {
    max-width: 960px;
    width: 100%;
  }

  .workshops .block:nth-child(even) {
    margin-right: 148px;
  }

  #social-introduction .action-block .col-image .image {
    width: 56%;
  }

  #about-team .decorations .decoration.decoration-1 {
    top: 40px;
    right: -40px;
    height: 240px;
  }
  #about-team .decorations .decoration.decoration-2 {
    top: -60px;
    height: 300px;
    right: -60px;
  }

  #about-intro .decorations .decoration.decoration-1 {
    bottom: 0;
    right: -20px;
    height: 500px;
  }
  #about-intro .decorations .decoration.decoration-2 {
    right: 80px;
    bottom: -40px;
    height: 300px;
  }

  #history-images .offset-images {
    top: -80px;
  }
  #history-images .decorations .decoration.decoration-1 {
    top: -160px;
    left: -40px;
    height: 220px;
  }
  #history-images .decorations .decoration.decoration-2 {
    top: -80px;
    left: -80px;
    height: 300px;
  }

  #history-intro .decorations .decoration.decoration-1 {
    top: -200px;
    right: -120px;
    height: 260px;
  }
  #history-intro .decorations .decoration.decoration-2 {
    top: -220px;
    right: -40px;
    height: 220px;
  }

  #careers-intro .decorations .decoration.decoration-1 {
    bottom: 40px;
    right: -40px;
    height: 200px;
  }
  #careers-intro .decorations .decoration.decoration-2 {
    bottom: 160px;
    right: -80px;
    height: 300px;
  }

  #work-intro .decorations .decoration.decoration-2 {
    bottom: 20px;
    right: -60px;
    height: 280px;
  }

  #social-colleagues .decorations .decoration.decoration-2 {
    top: -200px;
    right: -100px;
    height: 280px;
  }

  #blog-top .decorations .decoration.decoration-1 {
    height: 200px;
    right: 20px;
  }
  #blog-top .decorations .decoration.decoration-2 {
    height: 340px;
    bottom: -80px;
    right: 40px;
  }
}
@media (max-width: 1365px) {
  .action-block .text-container .decorations .decoration.decoration-1 {
    height: 150px;
    left: -75px;
    top: -75px;
  }
  .action-block .text-container > .buttons {
    margin-top: 75px;
  }

  .project.block.grid {
    margin-bottom: 75px;
  }

  .s-values .social-values .block {
    margin-bottom: 75px;
  }
  .s-values .social-values .block .icon {
    height: 90px;
    width: 90px;
  }
  .s-values .social-values .block h4 {
    font-size: 22px;
    margin-top: 20px;
  }

  .c-values {
    position: relative;
  }
  .c-values .block {
    margin-bottom: 75px;
  }
  .c-values .block .icon {
    height: 90px;
    width: 90px;
  }
  .c-values .block .meta {
    width: calc(100% - 105px);
  }

  .workshops .block .meta > .the-content {
    margin-bottom: 30px;
  }

  #single-related-posts .buttons, #single-related-projects .buttons {
    margin-top: 50px;
  }

  #social-colleagues .buttons {
    margin-top: 50px;
  }

  #history-intro .buttons {
    margin-top: 50px;
  }

  #about-team .buttons {
    margin-top: 50px;
  }

  .single-hero .image {
    margin-top: 50px;
    margin-bottom: -300px;
  }

  #single-post-content .text-container, #single-project-content .text-container {
    margin-top: 30px;
  }

  .slice {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .slice.pt-lg {
    padding-top: 125px;
  }
  .slice.pb-lg {
    padding-bottom: 125px;
  }
  .slice.pt-xl {
    padding-top: 160px;
  }
  .slice.pb-xl {
    padding-bottom: 160px;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 44px;
  }
  .title.mb, #single-project-details .values .block h3.mb, #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
    margin-bottom: 40px;
  }
  .title.mb-small, #single-project-details .values .block h3.mb-small {
    margin-bottom: 20px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 34px;
  }
  .title.medium, #single-project-details .values .block h3.medium {
    font-size: 30px;
  }

  .label, .gform_wrapper .gform_validation_errors h2, .gform_confirmation_wrapper .gform_confirmation_message, .gform_confirmation_wrapper .gform_confirmation_message p {
    font-size: 17px;
  }
  .label.mb, .gform_wrapper .gform_validation_errors h2.mb, .gform_confirmation_wrapper .mb.gform_confirmation_message, .gform_confirmation_wrapper .gform_confirmation_message p.mb, #home-projects .label.title, .gform_wrapper .gform_validation_errors #home-projects h2.title, #home-projects .gform_wrapper .gform_validation_errors h2.title, .gform_confirmation_wrapper #home-projects .gform_confirmation_message.title, #home-projects .gform_confirmation_wrapper .gform_confirmation_message.title, .gform_confirmation_wrapper .gform_confirmation_message #home-projects p.title, #home-projects .gform_confirmation_wrapper .gform_confirmation_message p.title, #home-projects #single-project-details .values .block h3.label, .gform_confirmation_wrapper #home-projects #single-project-details .values .block h3.gform_confirmation_message, #home-projects #single-project-details .values .block .gform_confirmation_wrapper h3.gform_confirmation_message, #single-project-details .values .block #home-projects h3.label, .gform_confirmation_wrapper #single-project-details .values .block #home-projects h3.gform_confirmation_message, #single-project-details .values .block #home-projects .gform_confirmation_wrapper h3.gform_confirmation_message {
    margin-bottom: 20px;
  }

  .banner .decorations .decoration.decoration-1 {
    bottom: 0;
    right: -15px;
    height: 400px;
  }
  .banner .text-container {
    max-width: 52%;
  }
  .banner .video {
    width: 48%;
  }
  .banner .video a {
    right: 230px;
  }
  .banner > img, .banner > picture {
    width: 48%;
  }

  #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
    top: 30px;
  }

  .values .block h3 {
    font-size: 60px;
  }

  .col-action .action {
    margin-right: -80px;
  }
  .col-action .action .inner h4 {
    font-size: 34px;
  }

  #projects-top {
    margin-bottom: -240px;
  }
  #projects-top .google-map {
    height: 680px;
  }

  .google-map {
    height: 680px;
  }

  #projects-grid > .wrapper {
    margin-top: 120px;
  }

  .project.block.grid .meta {
    bottom: -75px;
    min-width: 400px;
  }
  .project.block.grid .meta h3 {
    font-size: 20px;
  }
  .project.block.grid .meta h4 {
    font-size: 22px;
  }

  #blog-grid .blog.block, #single-related-posts .blog.block {
    margin-bottom: 70px;
  }
  #blog-grid .blog.block .meta h3, #single-related-posts .blog.block .meta h3 {
    font-size: 20px;
  }

  .contents-row .block:nth-child(even) .text-container {
    padding-right: 80px;
  }
  .contents-row .text-container {
    padding-left: 80px;
  }
  .contents-row .text-container h4 {
    font-size: 34px;
  }

  #home-team .decorations .decoration.decoration-1 {
    top: -80px;
    left: -140px;
    height: 260px;
  }
  #home-team .decorations .decoration.decoration-2 {
    top: -100px;
    left: -20px;
    height: 220px;
  }
}
@media (max-width: 1280px) {
  .action-block .text-container > .buttons {
    margin-top: 50px;
  }

  .project-categories {
    margin-bottom: 50px;
  }

  .the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
    font-size: 25px;
  }

  #home-success .values .col-12:last-child .block h3:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-half:last-child .block h3:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-half:last-child .block h3:before, #home-success .values form .gform_body .gform_fields .gfield.gfield--width-full:last-child .block h3:before, form .gform_body .gform_fields #home-success .values .gfield.gfield--width-full:last-child .block h3:before {
    left: -30px;
  }

  .bio-pop .wrapper .text-container {
    margin-left: 50px;
  }

  .single-hero .image {
    margin-bottom: -300px;
  }

  #forgot-password .text-container .title.mb-xl, #forgot-password .text-container #single-project-details .values .block h3.mb-xl, #single-project-details .values .block #forgot-password .text-container h3.mb-xl {
    margin-bottom: 70px;
  }

  .documents .tab .top h4 {
    font-size: 20px;
  }
  .documents .tab .bottom li a {
    font-size: 14px;
  }

  .sub-content .text-container li a {
    font-size: 14px;
  }

  #dashboard-documents .links h4 {
    font-size: 20px;
  }
  #dashboard-documents .links a {
    font-size: 14px;
  }

  .the-content blockquote {
    padding: 50px 0;
    width: calc(100%);
    font-size: 24px;
    left: inherit;
    transform: none;
  }

  .slice.pt-lg {
    padding-top: 125px;
  }
  .slice.pb-lg {
    padding-bottom: 125px;
  }
  .slice.pt-xl {
    padding-top: 160px;
  }
  .slice.pb-xl {
    padding-bottom: 160px;
  }
  .slice.with-tick:before {
    border-width: 200px 150px 0 0;
  }

  .bold {
    font-size: 80px;
  }

  .gutter-70 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutter-70 > div[class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
  }

  .gutter-150 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .gutter-150 > div[class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
  }

  #page {
    padding-top: 80px;
  }

  html, body {
    font-size: 15px;
  }

  .btn, .dark-form form .gform_footer button, form .gform_footer button, .sub-content .text-container li a.btn, .documents .tab .bottom li a.btn {
    font-size: 12px;
    min-width: 275px;
  }
  .btn.with-icon svg, form .gform_footer button.with-icon svg, .sub-content .text-container li a.with-icon.btn svg, .documents .tab .bottom li a.with-icon.btn svg {
    height: 20px;
    width: 20px;
    left: -8px;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 38px;
  }
  .title.mb, #single-project-details .values .block h3.mb, #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
    margin-bottom: 30px;
  }
  .title.mb-small, #single-project-details .values .block h3.mb-small {
    margin-bottom: 20px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 28px;
  }
  .title.medium, #single-project-details .values .block h3.medium {
    font-size: 24px;
  }

  .label, .gform_wrapper .gform_validation_errors h2, .gform_confirmation_wrapper .gform_confirmation_message, .gform_confirmation_wrapper .gform_confirmation_message p {
    font-size: 16px;
  }

  #mobile-nav {
    display: block;
  }

  #header .header-left #site-logo {
    width: 175px;
  }
  #header .header-right nav {
    display: none;
  }
  #header .header-right #site-burger {
    display: flex;
  }

  .banner {
    padding: 120px 0 200px;
  }
  .banner .text-container {
    padding-right: 15px;
  }
  .banner .text-container > .buttons {
    margin-top: 50px;
  }

  .hero {
    padding: 120px 0 160px;
    min-height: 900px;
  }
  .hero .text-container {
    padding-right: 15px;
  }
  .hero .text-container > .the-content {
    max-width: 380px;
  }
  .hero .text-container > .buttons {
    margin-top: 50px;
  }
  .hero .text-container > .buttons a {
    min-width: 300px;
  }
  .hero .video {
    height: 580px;
    max-width: 58%;
  }

  .project.block.slider .image {
    max-width: 860px;
  }
  .project.block.slider .meta {
    min-width: 425px;
  }
  .project.block.slider .meta h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .project.block.slider .meta h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .project.block.slider .meta p {
    font-size: 16px;
  }
  .project.block.grid {
    min-width: 365px;
  }
  .project.block.grid .meta h3 {
    font-size: 16px;
  }
  .project.block.grid .meta h4 {
    font-size: 20px;
  }

  #blog-grid .blog.block, #single-related-posts .blog.block {
    margin-bottom: 50px;
  }
  #blog-grid .blog.block .meta p span, #single-related-posts .blog.block .meta p span {
    font-size: 15px;
  }
  #blog-grid .blog.block .meta h3, #single-related-posts .blog.block .meta h3 {
    margin-bottom: 50px;
  }

  .blog.block .meta h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .blog.block .meta p {
    margin-bottom: 30px;
  }

  #home-projects .buttons {
    margin-top: 25px;
  }

  #home-success .buttons {
    margin-top: 50px;
  }

  .values .block h3 {
    font-size: 44px;
    margin-bottom: 70px;
  }
  .values .block h3:after {
    top: calc(100% + 35px);
    height: 35px;
  }

  .col-action .action {
    margin-right: -60px;
  }
  .col-action .action .inner h4 {
    font-size: 28px;
  }

  #timeline .the-timeline .meta > .buttons {
    margin-top: 50px;
  }
  #timeline .splide__arrows {
    max-height: 600px;
  }
  #timeline .splide__arrows button svg {
    height: 40px;
    width: 40px;
  }

  #history-content .content-row .image {
    margin-top: -230px;
    margin-bottom: 50px;
  }
  #history-content .groups-row {
    padding: 50px 0;
  }

  .teams .block .meta h4 {
    font-size: 22px;
  }

  #about-team .full-image {
    padding-bottom: 50px;
  }

  .teams .block .image {
    max-width: 100%;
  }

  #social-colleagues .teams {
    padding-top: 50px;
  }

  #timeline.static .the-timeline {
    margin-bottom: 90px;
  }

  .workshops .block {
    margin: 90px 0;
  }
  .workshops .block:nth-child(even) {
    margin-right: 0px;
  }
  .workshops .block .meta .title .bold, .workshops #single-project-details .values .block .meta h3 .bold, #single-project-details .values .workshops .block .meta h3 .bold {
    margin-top: -10px;
  }

  .single-hero .text-container .buttons {
    margin-top: 50px;
  }
  .single-hero .image {
    margin-bottom: -300px;
  }

  #single-post-content .text-container .buttons {
    margin-top: 70px;
  }

  #single-related-posts .buttons, #single-related-projects .buttons {
    margin-top: 50px;
  }

  .contents-row .block:nth-child(even) .text-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .contents-row .text-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .contents-row .text-container h4 {
    font-size: 28px;
  }

  #culture-action .text-container {
    padding: 100px 50px;
  }

  #social-introduction .action-block {
    margin-bottom: 50px;
  }
  #social-introduction .action-block .text-container {
    max-width: 90%;
    padding-right: 15px;
    width: 100%;
  }
  #social-introduction .social-values {
    padding-top: 70px;
  }
  #social-introduction .social-values .block {
    margin-bottom: 90px;
  }
  #social-introduction .social-values .block .icon {
    height: 100px;
    width: 100px;
  }
  #social-introduction .social-values .block h4 {
    font-size: 25px;
    margin-top: 30px;
  }
  #social-introduction .buttons {
    margin-top: 70px;
  }

  #projects-top .google-map {
    top: calc(100% - 225px);
  }
}
@media (max-width: 991px) {
  #single-career-details .sidebar, #single-career-details .sidebar-static {
    max-width: 960px;
    margin-top: 50px;
  }
  #single-career-details #career-form {
    padding: 30px;
  }

  #careers-posting .sidebar, #careers-posting .sidebar-static, #single-related-careers .sidebar, #single-related-careers .sidebar-static {
    margin-top: 50px;
  }
  #careers-posting .sidebar .sidebar__inner .text-container, #careers-posting .sidebar-static .sidebar__inner .text-container, #single-related-careers .sidebar .sidebar__inner .text-container, #single-related-careers .sidebar-static .sidebar__inner .text-container {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  #careers-posting .sidebar .sidebar__inner .text-container .decorations, #careers-posting .sidebar-static .sidebar__inner .text-container .decorations, #single-related-careers .sidebar .sidebar__inner .text-container .decorations, #single-related-careers .sidebar-static .sidebar__inner .text-container .decorations {
    display: none;
  }
  #careers-posting .sidebar .sidebar__inner .text-container .title, #careers-posting .sidebar .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #careers-posting .sidebar .sidebar__inner .text-container h3, #careers-posting .sidebar-static .sidebar__inner .text-container .title, #careers-posting .sidebar-static .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #careers-posting .sidebar-static .sidebar__inner .text-container h3, #single-related-careers .sidebar .sidebar__inner .text-container .title, #single-related-careers .sidebar .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #single-related-careers .sidebar .sidebar__inner .text-container h3, #single-related-careers .sidebar-static .sidebar__inner .text-container .title, #single-related-careers .sidebar-static .sidebar__inner .text-container #single-project-details .values .block h3, #single-project-details .values .block #single-related-careers .sidebar-static .sidebar__inner .text-container h3 {
    text-align: center;
  }
  #careers-posting .sidebar .sidebar__inner .text-container .buttons, #careers-posting .sidebar-static .sidebar__inner .text-container .buttons, #single-related-careers .sidebar .sidebar__inner .text-container .buttons, #single-related-careers .sidebar-static .sidebar__inner .text-container .buttons {
    justify-content: center;
  }

  .sidebar, .sidebar-static {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .sidebar .sidebar__inner .text-container .title br, .sidebar .sidebar__inner .text-container #single-project-details .values .block h3 br, #single-project-details .values .block .sidebar .sidebar__inner .text-container h3 br, .sidebar-static .sidebar__inner .text-container .title br, .sidebar-static .sidebar__inner .text-container #single-project-details .values .block h3 br, #single-project-details .values .block .sidebar-static .sidebar__inner .text-container h3 br {
    display: none;
  }

  #work-intro .buttons a.btn:before {
    z-index: 1;
  }
  #work-intro .buttons a.btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: 0;
  }

  #careers-intro .decorations .decoration.decoration-2 {
    bottom: 60px;
    right: 0px;
    height: 200px;
  }

  .the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
    font-size: 20px;
    margin-bottom: 0.8em;
  }

  #about-intro .decorations .decoration.decoration-1 {
    height: 420px;
    right: 20px;
  }

  #home-introduction.action-block .image {
    max-width: 100%;
    margin: 30px auto 0;
  }

  .gallery {
    margin: 30px 0;
  }

  #single-related-posts .buttons, #single-related-projects .buttons {
    margin-top: 30px;
  }

  #about-intro .decorations {
    z-index: -1;
  }

  #blog-top .text-container {
    margin-bottom: 0;
  }
  #blog-top .text-container h1, #blog-top .text-container .title, #blog-top .text-container #single-project-details .values .block h3, #single-project-details .values .block #blog-top .text-container h3 {
    margin-bottom: 0;
  }

  .hero {
    padding: 100px 0 140px;
  }
  .hero .text-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
    top: inherit;
    transform: none;
  }
  .hero .text-container h1 {
    width: 100%;
  }
  .hero .text-container .title .blue, .hero .text-container #single-project-details .values .block h3 .blue, #single-project-details .values .block .hero .text-container h3 .blue {
    display: block;
  }
  .hero .text-container .title br, .hero .text-container #single-project-details .values .block h3 br, #single-project-details .values .block .hero .text-container h3 br {
    display: none;
  }
  .hero .text-container > .the-content {
    max-width: 100%;
  }
  .hero .text-container > .buttons a {
    min-width: 100%;
  }
  .hero .image {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
    height: 100%;
  }
  .hero .video {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
    height: 475px;
  }
  .hero .video video {
    opacity: 1;
  }
  .hero .video video a svg {
    height: 50px;
    width: 50px;
  }

  #social-video-module .video-module a svg {
    height: 50px;
    width: 50px;
  }

  .projects-grid .col-12:last-child .project.block.grid, .projects-grid form .gform_body .gform_fields .gfield.gfield--width-half:last-child .project.block.grid, form .gform_body .gform_fields .projects-grid .gfield.gfield--width-half:last-child .project.block.grid, .projects-grid form .gform_body .gform_fields .gfield.gfield--width-full:last-child .project.block.grid, form .gform_body .gform_fields .projects-grid .gfield.gfield--width-full:last-child .project.block.grid {
    margin-bottom: 0;
  }

  .project-categories {
    margin-bottom: 30px;
  }

  .project.block.grid {
    margin-bottom: 50px;
  }
  .project.block.grid:last-child {
    margin-bottom: 0;
  }
  .project.block.grid .meta {
    position: relative;
    max-width: 100%;
    min-width: 100%;
    bottom: inherit;
    padding: 30px 15px;
  }

  .s-values .social-values .block {
    margin-bottom: 50px;
  }
  .s-values .social-values .block .icon {
    height: 80px;
    width: 80px;
  }
  .s-values .social-values .block h4 {
    font-size: 20px;
  }

  .c-values {
    position: relative;
  }
  .c-values .block {
    margin-bottom: 50px;
  }
  .c-values .block .icon {
    height: 80px;
    width: 80px;
  }
  .c-values .block .meta {
    width: calc(100% - 95px);
  }

  .bold {
    font-size: 65px;
  }

  #history-intro .buttons {
    margin-top: 30px;
  }

  #social-colleagues .buttons {
    margin-top: 30px;
  }

  #about-team .buttons {
    margin-top: 30px;
  }

  .single-hero .image {
    margin-top: 30px;
  }

  #blog-top {
    padding: 100px 0;
  }

  .action-block .text-container > .buttons {
    margin-top: 30px;
  }
  .action-block .text-container .decorations .decoration.decoration-1 {
    height: 120px;
  }

  .banner .video a {
    right: 170px;
  }
  .banner .decorations .decoration.decoration-1 {
    bottom: 0;
    right: 20px;
    height: 260px;
  }
  .banner .decorations .decoration.decoration-2 {
    bottom: -60px;
    right: 60px;
    height: 180px;
  }
  .banner .decorations .decoration.decoration-3 {
    bottom: -60px;
    height: 160px;
    right: 0px;
  }
  .banner .decorations .decoration.decoration-4 {
    bottom: -60px;
    right: -20px;
    height: 160px;
  }

  .bio-pop .wrapper .image {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
  .bio-pop .wrapper .image > img, .bio-pop .wrapper .image > picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .bio-pop .wrapper .image:before {
    content: none;
  }
  .bio-pop .wrapper .text-container {
    margin-left: 0px;
  }
  .bio-pop .wrapper .text-container h4 {
    font-size: 18px;
  }
  .bio-pop .wrapper .text-container > p {
    font-size: 14px;
  }

  .single-hero .image {
    margin-bottom: -250px;
  }

  #dashboard {
    padding-bottom: 50px;
  }
  #dashboard .text-container {
    flex-direction: column !important;
  }
  #dashboard .text-container .buttons {
    margin-top: 30px;
  }

  #dashboard-documents .break {
    margin: 15px 0;
  }
  #dashboard-documents .links {
    margin-bottom: 30px;
  }
  #dashboard-documents .links h4 {
    margin-bottom: 20px;
  }

  .documents .tab {
    margin-bottom: 50px;
  }
  .documents .tab .top {
    padding: 30px;
  }
  .documents .tab .bottom {
    padding: 30px;
  }

  .slice.pt-lg {
    padding-top: 100px;
  }
  .slice.pb-lg {
    padding-bottom: 100px;
  }
  .slice.pt-xl {
    padding-top: 130px;
  }
  .slice.pb-xl {
    padding-bottom: 130px;
  }
  .slice.with-tick:before {
    border-width: 150px 100px 0 0;
  }

  html, body {
    font-size: 14px;
  }

  .gutter-70 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .gutter-70 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gutter-150 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .gutter-150 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }

  #page {
    padding: 60px 0 0;
  }

  .wrapper.offset {
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper.offset-xl {
    margin-left: auto;
    margin-right: auto;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 32px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 24px;
  }
  .title.mb-xl, #single-project-details .values .block h3.mb-xl {
    margin-bottom: 80px;
  }

  .banner .text-container {
    max-width: 50%;
  }
  .banner .text-container h1 {
    width: 100%;
  }
  .banner > img, .banner > picture {
    width: 50%;
  }
  .banner .video {
    width: 50%;
  }

  #home-introduction .image {
    display: block;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #home-introduction .text-container {
    margin-bottom: 30px;
  }
  #home-introduction .text-container h3 {
    left: 0;
  }
  #home-introduction .text-container > .the-content {
    max-width: 100%;
  }
  #home-introduction .text-container > .buttons {
    margin-top: 30px;
  }

  #home-projects .title, #home-projects #single-project-details .values .block h3, #single-project-details .values .block #home-projects h3 {
    top: 0;
    margin-bottom: 30px;
  }
  #home-projects .buttons {
    left: 0;
  }

  #projects-top svg {
    left: 0;
    width: 100%;
  }
  #projects-top .google-map .marker-inner h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #projects-top .google-map .marker-inner .meta {
    margin-top: 10px;
  }
  #projects-top .google-map .marker-inner .meta .block {
    margin-bottom: 5px;
  }
  #projects-top .google-map .marker-inner .meta .block:last-child {
    margin-bottom: 0;
  }
  #projects-top .google-map .marker-inner .meta .block p {
    font-size: 11px;
  }
  #projects-top .google-map .marker-inner .image {
    width: 100%;
    margin: 4px auto;
  }

  #projects {
    left: 0;
  }
  #projects .splide__arrows {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 15px 0 30px 0;
  }
  #projects .splide__arrows button.splide__arrow--next {
    display: flex;
    right: 0;
  }
  #projects.splide .splide__track .splide__list .splide__slide {
    max-width: 100%;
  }

  .project.block.slider {
    margin-right: 0;
  }
  .project.block.slider .image {
    max-width: 100%;
  }
  .project.block.slider .meta {
    min-width: 375px;
  }
  .project.block.slider .meta h3 {
    font-size: 18px;
  }
  .project.block.slider .meta h4 {
    font-size: 20px;
  }
  .project.block.slider .meta p {
    font-size: 16px;
  }

  .blog.block {
    max-width: 100%;
  }
  .blog.block .image {
    max-width: 100%;
  }
  .blog.block .meta {
    padding: 30px;
  }
  .blog.block .meta h3 {
    font-size: 20px;
  }
  .blog.block .meta p {
    font-size: 15px;
  }
  .blog.block .meta > a {
    font-size: 16px;
  }

  .values {
    padding-bottom: 0;
  }
  .values .block {
    margin-bottom: 30px;
  }
  .values .block h3 {
    font-size: 34px;
    margin-bottom: 50px;
  }
  .values .block h3:after {
    top: calc(100% + 25px);
    height: 25px;
  }
  .values .block h4 {
    font-size: 16px;
  }

  #posts {
    left: 0;
  }
  #posts .splide__arrows {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 15px 0 30px 0;
  }
  #posts .splide__arrows button {
    padding: 0;
    margin: 0;
  }
  #posts .splide__arrows button.splide__arrow--next {
    display: flex;
  }
  #posts.splide .splide__track .splide__list .splide__slide {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .single-hero .decorations .decoration.decoration-1 {
    bottom: -100px;
    left: -100px;
    height: 140px;
  }
  .single-hero .decorations .decoration.decoration-2 {
    bottom: -80px;
    left: -80px;
    height: 200px;
  }

  .single-related .decorations .decoration.decoration-1 {
    top: -20px;
    right: -100px;
    height: 180px;
  }
  .single-related .decorations .decoration.decoration-2 {
    top: -100px;
    right: -140px;
    height: 240px;
  }

  #blog-top .decorations .decoration.decoration-1 {
    bottom: 80px;
  }
  #blog-top .decorations .decoration.decoration-2 {
    bottom: 40px;
    right: 40px;
  }

  #about-team .decorations .decoration.decoration-1 {
    top: 20px;
    right: -60px;
    height: 160px;
  }
  #about-team .decorations .decoration.decoration-2 {
    top: 40px;
    height: 180px;
    right: -20px;
  }

  #work-intro .decorations {
    z-index: -1;
  }

  #home-team .decorations .decoration.decoration-1 {
    top: -60px;
    left: -120px;
    height: 180px;
  }
  #home-team .decorations .decoration.decoration-2 {
    top: -80px;
    left: -60px;
    height: 180px;
  }

  #home-posts .text-container {
    margin-bottom: 50px;
    max-width: 100%;
  }
  #home-posts .text-container .title br, #home-posts .text-container #single-project-details .values .block h3 br, #single-project-details .values .block #home-posts .text-container h3 br {
    display: none;
  }
  #home-posts .text-container .buttons {
    margin-top: 50px;
  }
  .col-action {
    position: relative;
    top: -40px;
    margin-bottom: 0px;
  }
  .col-action .action {
    position: relative;
    top: 0;
    left: -40px;
    right: 0;
    bottom: 0;
    height: 100%;
    width: calc(100% + 80px);
    margin-right: 0px;
  }
  .col-action .action .image {
    position: relative;
  }
  .col-action .action .image:before {
    content: "";
    display: block;
    padding-top: 64%;
  }
  .col-action .action .inner a {
    min-width: 275px !important;
  }
  .col-action .action .inner h4 {
    font-size: 25px;
  }

  #contact-top #contact-form {
    position: relative;
    margin-top: 50px;
  }
  #contact-top h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #contact-top .address {
    margin-bottom: 50px;
  }

  #projects-top {
    min-height: 100%;
    margin-bottom: -200px;
  }
  #projects-top .google-map {
    height: 420px;
  }

  #projects-grid > .wrapper {
    margin-top: 60px;
  }

  #timeline .the-timeline .image:before {
    padding-top: 80%;
  }

  .offset-images .image.image-2 {
    top: -60px;
  }

  #history-content .content-row .image {
    margin-top: -230px;
    margin-bottom: 50px;
    position: relative !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: inherit;
  }

  #facilities-action .image {
    display: block;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #facilities-action .text-container {
    margin-bottom: 70px;
  }
  #facilities-action .text-container h3 {
    left: 0;
  }
  #facilities-action .text-container > .the-content {
    max-width: 100%;
  }
  #facilities-action .text-container > .buttons {
    margin-top: 50px;
  }
  #footer .top .socials {
    width: 100%;
    margin-bottom: 30px;
  }
  #footer .top .groups-row {
    margin-left: 0;
  }
  #footer .top .groups-row img, #footer .top .groups-row picture, #footer .top .groups-row svg {
    margin-bottom: 25px;
  }
  #footer .top svg#logo-valtech {
    max-height: 90px;
    max-width: 90px;
    margin-bottom: 50px;
    margin-right: 0;
  }
  #footer .top nav {
    margin-bottom: 30px;
  }
  #footer .top nav h3 {
    font-size: 16px;
    padding-left: 20px;
  }
  #footer .top nav ul li a {
    font-size: 12px;
  }
  #footer .top .footer-content > .col-12:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-half:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-half:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-full:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-full:first-child {
    margin-bottom: 50px;
  }
  #footer .top .footer-content > .col-12:first-child:after, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-half:first-child:after, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-half:first-child:after, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-full:first-child:after, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-full:first-child:after {
    content: none;
    display: none;
  }
  #footer .top .footer-content h4 {
    font-size: 18px;
  }
  #footer .top .footer-content .row, #footer .top .footer-content form .gform_body .gform_fields, form .gform_body #footer .top .footer-content .gform_fields {
    margin-left: 0px;
  }
  #footer .top .footer-content .row > .col-lg-6, #footer .top .footer-content form .gform_body .gform_fields > .col-lg-6, form .gform_body #footer .top .footer-content .gform_fields > .col-lg-6, #footer .top .footer-content form .gform_body .gform_fields .row > .gfield.gfield--width-half, form .gform_body .gform_fields #footer .top .footer-content .row > .gfield.gfield--width-half, #footer .top .footer-content form .gform_body .gform_fields > .gfield.gfield--width-half, form .gform_body #footer .top .footer-content .gform_fields > .gfield.gfield--width-half {
    padding-right: 0px;
  }
  #footer .top .footer-content .row > .col-lg-6:last-child, #footer .top .footer-content form .gform_body .gform_fields > .col-lg-6:last-child, form .gform_body #footer .top .footer-content .gform_fields > .col-lg-6:last-child, #footer .top .footer-content form .gform_body .gform_fields .row > .gfield.gfield--width-half:last-child, form .gform_body .gform_fields #footer .top .footer-content .row > .gfield.gfield--width-half:last-child, #footer .top .footer-content form .gform_body .gform_fields > .gfield.gfield--width-half:last-child, form .gform_body #footer .top .footer-content .gform_fields > .gfield.gfield--width-half:last-child {
    padding-right: 0;
  }

  .google-map {
    height: 475px;
  }

  #blog-grid .blog.block .meta p, #single-related-posts .blog.block .meta p {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-bottom: 15px;
  }
  #blog-grid .blog.block .meta p span, #single-related-posts .blog.block .meta p span {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #blog-grid .blog.block .meta h3, #single-related-posts .blog.block .meta h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  #blog-grid .blog.block .meta > a, #single-related-posts .blog.block .meta > a {
    font-size: 15px;
  }

  #single-post-content .text-container .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  #single-post-content .text-container .buttons > a {
    margin-top: 50px;
  }

  .social-share {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-share p {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contents-row .block {
    margin-bottom: 50px;
  }
  .contents-row .block:nth-child(even) .text-container {
    padding: 50px;
  }
  .contents-row .image {
    max-width: 100%;
  }
  .contents-row .text-container {
    padding: 50px;
    background: #ffffff;
  }
  .contents-row .text-container h4 {
    font-size: 24px;
  }

  .action-block h3 {
    width: calc(100%);
  }

  #social-introduction .action-block .text-container {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
  #social-introduction .action-block .text-container > .the-content {
    max-width: 100%;
    width: 100%;
  }
  #social-introduction .action-block .text-container .buttons {
    margin-top: 50px;
  }
  #social-introduction .action-block .col-image {
    position: relative;
    margin-bottom: 50px;
  }
  #social-introduction .action-block .col-image .image {
    position: relative !important;
    max-width: 100%;
    width: 100%;
  }
  #social-introduction .social-values {
    padding-bottom: 0;
    padding-top: 50px;
  }
  #social-introduction .social-values .block {
    margin-bottom: 50px;
  }
  #social-introduction .social-values .block .icon {
    height: 80px;
    width: 80px;
  }
  #social-introduction .social-values .block h4 {
    font-size: 20px;
    margin-top: 25px;
  }
  #social-introduction .buttons {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .careers .block {
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px;
    max-height: 100%;
  }
  .careers .block .left {
    width: 100%;
    padding-right: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .careers .block .left .icon {
    height: 34px;
    width: 34px;
    margin-bottom: 8px;
  }
  .careers .block .left h3 {
    text-align: center;
    font-size: 16px;
  }
  .careers .block .left h3 a {
    text-align: center;
    font-size: 16px;
  }
  .careers .block .right {
    text-align: center;
    margin-top: 15px;
  }

  #site-burger > svg {
    height: 36px;
    width: 36px;
  }
  #site-burger > svg line {
    stroke-width: 3.7;
  }
  #site-burger > svg:last-child line {
    stroke-width: 1;
  }

  .form .form-row input[type=submit] {
    background: #ffffff;
    color: #0072AD;
    border-color: #0072AD;
  }
  .form .form-row input[type=submit]:hover {
    background: #0072AD;
    color: #ffffff;
  }

  html, body {
    line-height: 1.6em;
  }

  #timeline .the-timeline .meta > h3 {
    font-size: 24px;
  }

  .s-values .social-values {
    margin: 15px 0;
  }
  .s-values .social-values .block {
    margin-bottom: 30px;
  }
  .s-values .social-values .block .icon {
    height: 75px;
    width: 75px;
  }
  .s-values .social-values .block h4 {
    font-size: 18px;
  }

  .blog.block .meta {
    padding: 30px 15px;
  }

  #single-post-details .text-container h1 {
    margin-bottom: 15px !important;
  }

  #blog-grid .blog.block, #single-related-posts .blog.block {
    padding: 0 0;
  }
  #blog-grid .row .col-12:last-child .blog.block, #blog-grid form .gform_body .gform_fields .col-12:last-child .blog.block, form .gform_body #blog-grid .gform_fields .col-12:last-child .blog.block, form .gform_body .gform_fields #blog-grid .row .gfield.gfield--width-half:last-child .blog.block, #blog-grid form .gform_body .gform_fields .gfield.gfield--width-half:last-child .blog.block, form .gform_body #blog-grid .gform_fields .gfield.gfield--width-half:last-child .blog.block, form .gform_body .gform_fields #blog-grid .row .gfield.gfield--width-full:last-child .blog.block, #blog-grid form .gform_body .gform_fields .gfield.gfield--width-full:last-child .blog.block, form .gform_body #blog-grid .gform_fields .gfield.gfield--width-full:last-child .blog.block, #single-related-posts .row .col-12:last-child .blog.block, #single-related-posts form .gform_body .gform_fields .col-12:last-child .blog.block, form .gform_body #single-related-posts .gform_fields .col-12:last-child .blog.block, form .gform_body .gform_fields #single-related-posts .row .gfield.gfield--width-half:last-child .blog.block, #single-related-posts form .gform_body .gform_fields .gfield.gfield--width-half:last-child .blog.block, form .gform_body #single-related-posts .gform_fields .gfield.gfield--width-half:last-child .blog.block, form .gform_body .gform_fields #single-related-posts .row .gfield.gfield--width-full:last-child .blog.block, #single-related-posts form .gform_body .gform_fields .gfield.gfield--width-full:last-child .blog.block, form .gform_body #single-related-posts .gform_fields .gfield.gfield--width-full:last-child .blog.block {
    margin-bottom: 0;
  }

  .project-categories .filter-container:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 26px;
    width: 26px;
    background-image: url("../images/chev-down.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .project-categories select {
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }
  .project-categories .chosen-container-single .chosen-single div {
    display: none;
  }

  .blog-categories .filter-container:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 26px;
    width: 26px;
    background-image: url("../images/chev-down-blue.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .blog-categories select {
    padding: 20px;
    max-width: 100%;
    width: 100%;
  }
  .blog-categories .chosen-container-single .chosen-single div {
    display: none;
  }

  #single-related-posts .decorations, #single-related-projects .decorations {
    display: none;
  }

  #home-team .decorations {
    display: none;
  }

  #single-project-details .values {
    padding-top: 30px;
  }
  #single-project-details .text-container h2 {
    text-align: center;
  }

  .single-hero .image {
    margin-bottom: -200px;
  }

  #forgot-password .text-container .title.mb-xl, #forgot-password .text-container #single-project-details .values .block h3.mb-xl, #single-project-details .values .block #forgot-password .text-container h3.mb-xl {
    margin-bottom: 50px;
  }

  #portal .overlay {
    display: block;
  }
  #portal .form .form-row label {
    color: #B8C4D3;
  }
  #portal .form .form-row button {
    background: #0B2939;
    color: #ffffff;
  }
  #portal .form .form-row button:hover {
    color: #0072AD;
    border-color: #ffffff;
  }
  #portal .form .form-row button:before {
    background: #ffffff;
  }

  .gallery .gallery-item:first-child {
    padding-top: 30px;
  }
  .gallery .gallery-item:nth-child(3) {
    padding-top: 0;
  }
  .gallery .gallery-item a {
    padding: 0 7px;
    margin-bottom: 14px;
  }

  .btn, .dark-form form .gform_footer button, form .gform_footer button, .sub-content .text-container li a.btn, .documents .tab .bottom li a.btn {
    min-width: 100%;
    padding: 13px 16px;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 28px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 22px;
  }
  .title.mb-xl, #single-project-details .values .block h3.mb-xl {
    margin-bottom: 50px;
  }
  .title.medium, #single-project-details .values .block h3.medium {
    font-size: 22px;
  }

  .label, .gform_wrapper .gform_validation_errors h2, .gform_confirmation_wrapper .gform_confirmation_message, .gform_confirmation_wrapper .gform_confirmation_message p {
    font-size: 15px;
  }

  .slice {
    padding: 75px 0;
  }
  .slice.pt-lg {
    padding-top: 90px;
  }
  .slice.pb-lg {
    padding-bottom: 90px;
  }
  .slice.pt-xl {
    padding-top: 90px;
  }
  .slice.pb-xl {
    padding-bottom: 90px;
  }
  .slice.with-tick:before {
    border-width: 0;
  }

  #mobile-nav {
    width: 100%;
    padding: 50px 30px;
  }
  #mobile-nav ul li.menu-item-has-children:after {
    right: 0px;
  }

  .banner {
    padding: 80px 0 160px;
  }
  .banner .text-container {
    max-width: 100%;
    padding-right: 0;
    mix-blend-mode: normal;
    background-blend-mode: normal;
  }
  .banner .text-container h1, .banner .text-container h2, .banner .text-container .the-content {
    color: #ffffff;
  }
  .banner .text-container > .buttons .btn, .banner .text-container > .buttons form .gform_footer button, form .gform_footer .banner .text-container > .buttons button, .banner .text-container > .buttons .documents .tab .bottom li a.btn, .documents .tab .bottom li .banner .text-container > .buttons a.btn {
    background: #0B2939;
    color: #ffffff;
  }
  .banner .text-container > .buttons .btn:hover, .banner .text-container > .buttons form .gform_footer button:hover, form .gform_footer .banner .text-container > .buttons button:hover {
    color: #0072AD;
    border-color: #ffffff;
  }
  .banner .text-container > .buttons .btn:before, .banner .text-container > .buttons form .gform_footer button:before, form .gform_footer .banner .text-container > .buttons button:before, .banner .text-container > .buttons .documents .tab .bottom li a.btn:before, .documents .tab .bottom li .banner .text-container > .buttons a.btn:before {
    background: #ffffff;
  }
  .banner > img, .banner > picture {
    width: 100%;
  }
  .banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: #0B2939;
    opacity: 0.95;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    z-index: 0;
  }
  .banner .video {
    width: 100%;
  }
  .banner .video a {
    width: max-content;
    bottom: 30px;
    right: inherit;
    left: 30px;
  }
  .banner .video a svg {
    height: 50px;
    width: 50px;
  }
  .banner .video a span {
    font-size: 8px;
    margin-top: 8px;
  }
  .banner .scroll-block {
    top: inherit;
    left: inherit;
    z-index: 5;
    bottom: 60px;
    right: 30px;
  }
  .banner .scroll-block span {
    color: #ffffff;
  }
  .banner .scroll-block span.scroll svg path {
    fill: #ffffff;
    stroke: #ffffff;
  }

  .project.block.slider .image {
    position: relative;
    position: relative;
    max-width: 100%;
    width: 767px;
  }
  .project.block.slider .image:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .project.block.slider .image > img, .project.block.slider .image > picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .project.block.slider .meta {
    min-width: inherit !important;
    width: 100%;
    max-width: 767px;
    padding: 25px 10px;
    position: relative;
    bottom: inherit;
    left: inherit;
  }

  #contact-top h4 {
    font-size: 20px;
  }

  #history-images .offset-images {
    top: 0;
  }

  #history-intro .title br, #history-intro #single-project-details .values .block h3 br, #single-project-details .values .block #history-intro h3 br {
    display: none;
  }

  #timeline .splide__track .splide__list .splide__slide {
    height: 100% !important;
  }
  #timeline .splide__arrows {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    bottom: 0;
    max-height: 0;
    position: relative;
    margin: 5px 0 35px;
  }
  #timeline .splide__arrows button {
    margin: 0 15px;
  }
  #timeline .splide__arrows button.splide__arrow--next, #timeline .splide__arrows button.splide__arrow--prev {
    transform: rotate(-90deg);
  }
  #timeline .the-timeline {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #timeline .the-timeline .image {
    margin-bottom: 50px;
    width: 100%;
    height: auto;
  }
  #timeline .the-timeline .image:before {
    padding-top: 56%;
  }
  #timeline .the-timeline .meta {
    top: 0;
    transform: none;
    padding-left: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  #history-images .offset-images .image.image-2 {
    top: -80px;
  }
  #history-images .decorations {
    display: none;
  }

  #history-content .decorations {
    display: none;
  }
  #history-content .content-row .image {
    margin-top: -90px;
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
    max-width: none;
  }
  #history-content .groups-row {
    flex-direction: column !important;
    padding: 30px 0;
  }
  #history-content .groups-row .col {
    -ms-flex-preferred-size: inherit;
    flex-basis: inherit;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    margin-bottom: 50px;
  }
  #history-content .groups-row .col:last-child {
    margin-bottom: 0;
  }

  #history-intro .decorations {
    display: none;
  }

  #about-team .decorations {
    display: none;
  }

  .workshops .block {
    margin-top: 0;
    margin-bottom: 45px;
    flex-direction: column;
  }
  .workshops .block:last-child {
    margin-bottom: 0;
  }
  .workshops .block .image {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .workshops .block .meta {
    padding-left: 0;
    width: 100%;
  }
  .workshops .block .meta .title, .workshops #single-project-details .values .block .meta h3, #single-project-details .values .workshops .block .meta h3 {
    left: inherit;
  }

  #timeline.static .the-timeline {
    margin-bottom: 45px;
  }

  .contents-row .block:nth-child(even) .text-container {
    padding: 30px;
  }
  .contents-row .text-container {
    padding: 30px;
  }
  .contents-row .text-container h4 {
    font-size: 22px;
  }

  #culture-action .text-container {
    padding: 50px 30px;
  }

  #about-team .teams-section > .row, #about-team form .gform_body .teams-section > .gform_fields, form .gform_body #about-team .teams-section > .gform_fields {
    margin-bottom: 40px;
  }

  .teams .block .image {
    margin-bottom: 15px;
  }
  .teams .block .meta h4 {
    font-size: 17px;
  }
  .teams .block .meta p {
    font-size: 13px;
  }

  .values .col-12:last-child .block, .values form .gform_body .gform_fields .gfield.gfield--width-half:last-child .block, form .gform_body .gform_fields .values .gfield.gfield--width-half:last-child .block, .values form .gform_body .gform_fields .gfield.gfield--width-full:last-child .block, form .gform_body .gform_fields .values .gfield.gfield--width-full:last-child .block {
    margin-bottom: 0;
  }

  #footer .top {
    text-align: center;
    justify-content: center !important;
  }
  #footer .top nav h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }
  #footer .top nav h3:before {
    position: relative;
    left: -6px;
  }
  #footer .top .socials .social {
    justify-content: center;
  }

  #blog-top {
    padding: 60px 0 20px;
  }
  #blog-top .decorations {
    display: none;
  }
}
@media (max-width: 576px) {
  .c-values {
    position: relative;
  }
  .c-values .block {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .c-values .block .icon {
    height: 75px;
    width: 75px;
    margin-bottom: 15px;
  }
  .c-values .block .meta {
    width: calc(100%);
    padding: 0 0;
  }
  .c-values .block h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .action-block .text-container .decorations {
    display: none;
  }

  .hero {
    min-height: auto;
  }
  .hero .video {
    height: 320px;
  }

  #single-post-content .text-container > p {
    margin-bottom: 30px !important;
  }

  .banner .decorations .decoration.decoration-2, .banner .decorations .decoration.decoration-3, .banner .decorations .decoration.decoration-4 {
    display: none;
  }

  #social-colleagues .decorations {
    display: none;
  }

  .s-values .social-values {
    margin: 0 0 15px 0;
  }
  .s-values .social-values .block h4 {
    font-size: 17px;
  }

  #contact-top .decorations {
    display: none;
  }
  #contact-top h1 {
    text-align: center;
  }
  #contact-top .text-container .address {
    margin-bottom: 30px;
  }
  #contact-top .text-container .address h4 {
    text-align: center;
    margin-bottom: 15px;
  }
  #contact-top .text-container .address a {
    width: 100%;
    text-align: center;
  }
  #contact-top .text-container .informations h4 {
    margin-bottom: 15px;
    text-align: center;
  }
  #contact-top .text-container .informations .info {
    position: relative;
    justify-content: center;
    width: max-content;
    width: -moz-max-content;
    margin-left: auto;
    margin-right: auto;
  }
  #contact-top .text-container .informations .info .meta {
    width: auto;
    text-align: center;
    padding-left: 0;
  }
  #contact-top .text-container .informations .info svg {
    position: absolute;
    left: -60px;
  }

  #about-team .teams-section > .row, #about-team form .gform_body .teams-section > .gform_fields, form .gform_body #about-team .teams-section > .gform_fields {
    margin-bottom: 15px;
  }

  #history-content .content-row .image {
    margin-top: -59px;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    max-width: none;
  }

  #page {
    padding-top: 0;
  }

  .hero {
    padding: 80px 0;
  }

  .slice {
    padding: 50px 0;
  }
  .slice.pt-lg {
    padding-top: 50px;
  }
  .slice.pb-lg {
    padding-bottom: 50px;
  }
  .slice.pt-xl {
    padding-top: 50px;
  }
  .slice.pb-xl {
    padding-bottom: 50px;
  }
  .slice.pt-sm {
    padding-top: 30px;
  }
  .slice.pb-sm {
    padding-bottom: 30px;
  }
  .slice.with-tick:before {
    border-width: 0;
  }

  #projects .splide__arrows {
    margin: 0 0 15px 0;
  }

  .btn, .dark-form form .gform_footer button, form .gform_footer button, .sub-content .text-container li a.btn, .documents .tab .bottom li a.btn {
    font-size: 11px;
  }

  .title, #single-project-details .values .block h3 {
    font-size: 25px;
  }
  .title.main, #single-project-details .values .block h3, .title.single {
    font-size: 20px;
  }
  .title.medium, #single-project-details .values .block h3.medium {
    font-size: 20px;
  }

  .banner {
    padding: 60px 0 120px;
  }

  .project.block.slider .meta h3 {
    font-size: 17px;
  }
  .project.block.slider .meta h4 {
    font-size: 18px;
  }
  .project.block.slider .meta p {
    font-size: 15px;
  }
  .project.block.grid {
    min-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
  .project.block.grid .meta {
    position: relative;
    bottom: inherit;
    width: 100%;
    min-width: 100%;
    padding-bottom: 0;
    height: auto;
    padding-top: 30px;
  }
  .project.block.grid .meta h3 {
    font-size: 15px;
  }
  .project.block.grid .meta h4 {
    font-size: 18px;
  }
  .project.block.grid .meta p {
    font-size: 15px;
  }

  .blog.block .meta h3 {
    font-size: 18px;
  }
  .blog.block .meta p {
    font-size: 14px;
  }
  .blog.block .meta > a {
    font-size: 15px;
  }

  .col-action .action .inner {
    left: 50%;
    width: 75%;
    transform: translateX(-50%);
  }
  .col-action .action .inner h4 {
    font-size: 20px;
  }
  .col-action .action .inner a {
    min-width: 100% !important;
  }

  .single-hero .decorations {
    display: none;
  }
  .single-hero.slice.pb-xl {
    padding-bottom: 180px;
  }
  .single-hero .image {
    margin-bottom: -200px;
  }

  #dashboard .text-container .buttons a {
    font-size: 10px;
  }

  .teams .block {
    margin: 10px 0 15px;
  }
  .teams .block .meta {
    height: 100% !important;
  }
  .teams .block .meta h4 {
    font-size: 16px;
    height: 100% !important;
  }
  .teams .block .meta p {
    font-size: 11px;
  }

  #footer .bottom .login-link {
    margin-bottom: 15px;
  }
  #footer .top .groups-row .col-12:last-child svg, #footer .top .groups-row form .gform_body .gform_fields .gfield.gfield--width-half:last-child svg, form .gform_body .gform_fields #footer .top .groups-row .gfield.gfield--width-half:last-child svg, #footer .top .groups-row form .gform_body .gform_fields .gfield.gfield--width-full:last-child svg, form .gform_body .gform_fields #footer .top .groups-row .gfield.gfield--width-full:last-child svg {
    margin-bottom: 0;
  }
  #footer .top .groups-row svg {
    margin-bottom: 15px;
  }
  #footer .top nav {
    margin-bottom: 15px;
  }
  #footer .top nav h3 {
    margin: 15px 0;
  }
  #footer .top .footer-content h4 {
    margin-bottom: 18px;
  }
  #footer .top .footer-content > .col-12:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-half:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-half:first-child, #footer .top form .gform_body .gform_fields .footer-content > .gfield.gfield--width-full:first-child, form .gform_body .gform_fields #footer .top .footer-content > .gfield.gfield--width-full:first-child {
    margin-bottom: 30px;
  }
}

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