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

.animate__animated, .banner .wrapper .punch .mouse-animation {
  -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, .banner .wrapper .punch .mouse-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .banner .wrapper .punch .animate__repeat-1.mouse-animation {
  -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, .banner .wrapper .punch .animate__repeat-2.mouse-animation {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

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

.animate__animated.animate__delay-1s, .banner .wrapper .punch .animate__delay-1s.mouse-animation {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s, .banner .wrapper .punch .animate__delay-2s.mouse-animation {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s, .banner .wrapper .punch .animate__delay-3s.mouse-animation {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s, .banner .wrapper .punch .animate__delay-4s.mouse-animation {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s, .banner .wrapper .punch .animate__delay-5s.mouse-animation {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

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

.animate__animated.animate__fast, .banner .wrapper .punch .animate__fast.mouse-animation {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow, .banner .wrapper .punch .animate__slow.mouse-animation {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower, .banner .wrapper .punch .animate__slower.mouse-animation {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated, .banner .wrapper .punch .mouse-animation {
    -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], .banner .wrapper .punch [class*=Out].mouse-animation {
    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, .banner .wrapper .punch .mouse-animation {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

.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 {
  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, .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 {
  -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 {
    -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
 */
/*
 * Change font size from pixels to rem
 */
/*
 * Colors
 */
/*
 * Fonts
 */
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Black.woff2") format("woff2"), url("../fonts/Graphik-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Bold.woff2") format("woff2"), url("../fonts/Graphik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-BoldItalic.woff2") format("woff2"), url("../fonts/Graphik-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-ExtralightItalic.woff2") format("woff2"), url("../fonts/Graphik-ExtralightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Light.woff2") format("woff2"), url("../fonts/Graphik-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-LightItalic.woff2") format("woff2"), url("../fonts/Graphik-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-BlackItalic.woff2") format("woff2"), url("../fonts/Graphik-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Extralight.woff2") format("woff2"), url("../fonts/Graphik-Extralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik Super";
  src: url("../fonts/Graphik-SuperItalic.woff2") format("woff2"), url("../fonts/Graphik-SuperItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Medium.woff2") format("woff2"), url("../fonts/Graphik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular.woff2") format("woff2"), url("../fonts/Graphik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-SemiboldItalic.woff2") format("woff2"), url("../fonts/Graphik-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-ThinItalic.woff2") format("woff2"), url("../fonts/Graphik-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Thin.woff2") format("woff2"), url("../fonts/Graphik-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Semibold.woff2") format("woff2"), url("../fonts/Graphik-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik Super";
  src: url("../fonts/Graphik-Super.woff2") format("woff2"), url("../fonts/Graphik-Super.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-MediumItalic.woff2") format("woff2"), url("../fonts/Graphik-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-RegularItalic.woff2") format("woff2"), url("../fonts/Graphik-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/*
 * Transitions
 */
/*
 * z-index
 */
html,
body {
  font-family: "Graphik", sans-serif;
  scroll-behavior: smooth;
}
html.active #mobile-nav,
body.active #mobile-nav {
  transform: translateY(0);
}

.ceciestuntest {
  transition: all 250ms ease-in-out;
}

a {
  transition: all 250ms ease-in-out;
}

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

.is-button > a {
  padding: 10px 20px !important;
  text-transform: uppercase;
}

.wrapper {
  position: relative;
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
.wrapper.big {
  width: 100%;
  max-width: none;
  padding: 0 50px;
}
.wrapper.medium {
  max-width: 1000px;
}

.btn, .form-container .gform_footer input[type=submit], .is-button > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 20px 45px;
  font: 700 15px/1em "Graphik", sans-serif;
  letter-spacing: 1px;
  background: var(--color-secondary);
  border-radius: 3px;
  color: #ffffff !important;
  -webkit-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
  transition: background-color 250ms ease-in-out;
}
.btn:hover, .form-container .gform_footer input[type=submit]:hover, .is-button > a:hover {
  background: #ffffff;
  border-color: var(--color-secondary);
  color: var(--color-primary) !important;
}
.btn:hover svg, .form-container .gform_footer input[type=submit]:hover svg, .is-button > a:hover svg {
  transform: scale(1.1);
}
.btn.outline, .form-container .gform_footer input[type=submit], .is-button > a.outline {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-primary) !important;
}
.btn.outline:hover, .form-container .gform_footer input[type=submit]:hover, .is-button > a.outline:hover {
  background: var(--color-secondary);
  color: #ffffff !important;
}
.btn.outline:hover svg path, .form-container .gform_footer input[type=submit]:hover svg path, .is-button > a.outline:hover svg path {
  fill: #ffffff !important;
}
.btn.btn-secondary, .form-container .gform_footer input.btn-secondary[type=submit], .is-button > a.btn-secondary {
  color: var(--color-primary) !important;
  background: #ffffff;
}
.btn.btn-secondary:hover, .form-container .gform_footer input.btn-secondary[type=submit]:hover, .is-button > a.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff !important;
}
.btn.btn-secondary:hover svg path, .form-container .gform_footer input.btn-secondary[type=submit]:hover svg path, .is-button > a.btn-secondary:hover svg path {
  fill: #ffffff;
}
.btn.btn-quote, .form-container .gform_footer input.btn-quote[type=submit], .is-button > a.btn-quote {
  padding: 10px 45px 10px 20px;
}
.btn.has-icon, .form-container .gform_footer input.has-icon[type=submit], .is-button > a.has-icon {
  padding: 20px 45px 20px 20px;
}
.btn svg, .form-container .gform_footer input[type=submit] svg, .is-button > a svg {
  position: relative;
  z-index: 2;
  margin-right: 15px;
  transition: all 250ms ease-in-out;
}
.btn span, .form-container .gform_footer input[type=submit] span, .is-button > a span {
  position: relative;
  z-index: 3;
}

h1 {
  font: normal 60px "Graphik", sans-serif;
}

h2 {
  font: 900 42px "Graphik", sans-serif;
  color: var(--color-primary);
}
h2.t-line:after {
  content: "";
  display: block;
  margin-top: 40px;
  width: 45px;
  height: 3px;
  background-color: var(--color-secondary);
}

h3 {
  font: 900 28px "Graphik", sans-serif;
}

h4 {
  font: 900 23px "Graphik", sans-serif;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

.mt-30 {
  margin-top: 30px;
}

.the-content h4 {
  font: 500 20px/100% proxima-nova, sans-serif;
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.the-content p {
  font: 300 16px/1.65em proxima-nova, sans-serif;
  margin-bottom: 30px;
}
.the-content ul li {
  font: 300 16px/120% proxima-nova, sans-serif;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}
.the-content ul li:before {
  content: "-";
  display: inline-block;
  color: var(--color-secondary);
  margin-right: 10px;
  position: absolute;
  top: -1px;
  left: 0;
}
.the-content.text-center h2:after {
  left: 50%;
  margin-left: -22px;
}

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

.slice-intro svg path {
  fill: var(--color-secondary);
}
.slice-intro h2,
.slice-intro h3 {
  margin: 40px 0 0;
  padding-bottom: 30px;
}

#main {
  position: relative;
  z-index: 2;
  margin-top: 150px;
}

#header {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-accent);
  transition: all 250ms ease-in-out;
}
#header.shrink {
  height: 100px;
}
#header.shrink #site-navs #site-nav-secondary {
  display: none;
}
#header.active #site-controls a {
  transform: translateX(10px);
}
#header.active #site-controls a > span:nth-child(2) {
  opacity: 0;
}
#header.active #site-controls a > span:first-child {
  transform: rotate(45deg) translateY(15px);
}
#header.active #site-controls a > span:last-child {
  transform: rotate(-45deg) translateY(-15px);
}
#header > .wrapper {
  height: 100%;
}
#header #site-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 320px;
}
#header #site-logos > a {
  display: block;
  width: 45%;
}
#header #site-logos > a > img {
  display: block;
}
#header #site-navs {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-left: 50px;
}
#header #site-navs #site-nav-secondary {
  margin-bottom: 30px;
}
#header #site-navs #site-nav-secondary > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header #site-navs #site-nav-secondary > ul > li {
  font: 300 14px/1em proxima-nova, sans-serif;
  margin-right: 30px;
}
#header #site-navs #site-nav-secondary > ul > li:last-child {
  margin-right: 0;
}
#header #site-navs #site-nav-secondary > ul > li > a:hover {
  color: var(--color-secondary);
}
#header #site-navs #site-nav-secondary > ul > li.is-button a:hover svg path,
#header #site-navs #site-nav-secondary > ul > li.is-button a:hover svg rect {
  fill: var(--color-primary);
}
#header #site-navs #site-nav-primary > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header #site-navs #site-nav-primary > ul li {
  font: 900 14px/1em "Graphik", sans-serif;
  margin-right: 30px;
  text-align: center;
}
#header #site-navs #site-nav-primary > ul li:last-child {
  margin-right: 0;
}
#header #site-navs #site-nav-primary > ul li > a {
  letter-spacing: 1px;
}
#header #site-navs #site-nav-primary > ul li > a:hover {
  color: var(--color-secondary);
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children {
  position: relative;
  border-bottom: 3px solid transparent;
  transition: 250ms ease-in-out;
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children .sub-menu {
  background: #ffffff;
  /*-webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);*/
  opacity: 0;
  position: absolute;
  top: calc(100% + 3px);
  left: auto;
  right: 0;
  min-width: 300px;
  padding: 70px 50px 30px;
  pointer-events: none;
  transition: 250ms ease-in-out;
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children .sub-menu li {
  margin-bottom: 20px;
  font: 900 14px/1em "Graphik", sans-serif;
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children .sub-menu li a {
  color: var(--color-tertiary);
  transition: 250ms ease-in-out;
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children .sub-menu li a:hover {
  color: var(--color-primary);
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children:hover {
  border-bottom: 3px solid var(--color-secondary);
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children:hover > a:hover {
  font-style: italic;
  color: var(--color-primary);
}
#header #site-navs #site-nav-primary > ul li.menu-item-has-children:hover .sub-menu {
  pointer-events: all;
  opacity: 1;
}
#header #site-navs #site-nav-primary > ul li.has-submenu-icon > svg {
  display: none;
  opacity: 0;
}
#header #site-navs #site-nav-primary > ul li.has-submenu-icon .dropdown-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 70px;
  left: 35px;
}
#header #site-navs #site-nav-primary > ul li.has-submenu-icon .dropdown-icon svg {
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 250ms ease-in-out;
}
#header #site-navs #site-nav-primary > ul li.has-submenu-icon .dropdown-icon svg path,
#header #site-navs #site-nav-primary > ul li.has-submenu-icon .dropdown-icon svg rect {
  fill: var(--color-secondary);
}
#header #site-navs #site-nav-primary > ul li.has-submenu-icon .sub-menu {
  right: auto;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 70px 50px 30px 150px;
}
#header #site-navs #site-nav-primary > ul li:hover .dropdown-icon svg {
  opacity: 1;
}
#header #site-controls {
  display: none;
}
#header #site-controls a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 25px;
}
#header #site-controls a > span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--color-secondary);
  transition: all 250ms ease-in-out;
  transform-origin: center;
}

#mobile-nav {
  position: fixed;
  z-index: 3;
  top: 80px;
  right: 0;
  bottom: 0;
  width: calc(100% - 50px);
  overflow-y: auto;
  background: #ffffff;
  padding: 25px;
  transform: translateX(100%);
  transition: all 250ms ease-in-out;
}
#mobile-nav > ul {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-accent);
}
#mobile-nav > ul:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#mobile-nav > ul > li {
  font: 900 22px/1em "Graphik", sans-serif;
  margin-bottom: 15px;
}
#mobile-nav > ul > li:last-child {
  margin-bottom: 0;
}
#mobile-nav > ul > li.lang-item-en, #mobile-nav > ul > li.lang-item-fr {
  margin-bottom: 30px;
}
#mobile-nav > ul.mobile-nav-secondary {
  margin-bottom: 20px;
}
#mobile-nav > ul.mobile-nav-secondary > li {
  font: normal 20px/1em "Graphik", sans-serif;
}
#mobile-nav > ul.mobile-nav-secondary > li.is-button a:hover svg path, #mobile-nav > ul.mobile-nav-secondary > li.is-button a:hover svg rect {
  fill: var(--color-primary);
}

.buttons {
  display: inline-flex;
}
.buttons > div,
.buttons > .btn,
.form-container .gform_footer .buttons > input[type=submit],
.is-button.buttons > a {
  margin-right: 20px;
}
.buttons > div:last-child,
.buttons > .btn:last-child,
.form-container .gform_footer .buttons > input[type=submit]:last-child,
.is-button.buttons > a:last-child {
  margin-right: 0;
}

.title, .single-career.page-content .the-content h2,
.product.page-content .the-content h2,
.work.page-content .the-content h2, .product-category-block .bottom .label {
  position: relative;
  font: 900 38px/1.25em "Graphik", sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.4px;
}
.title.small, .single-career.page-content .the-content h2.small,
.product.page-content .the-content h2.small,
.work.page-content .the-content h2.small, .product-category-block .bottom .small.label {
  font: bold 34px/1.25em "Graphik", sans-serif;
}
.title.has-underline:after, .single-career.page-content .the-content h2:after,
.product.page-content .the-content h2:after,
.work.page-content .the-content h2:after, .product-category-block .bottom .has-underline.label:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -22px;
  width: 44px;
  height: 3px;
  background: var(--color-secondary);
}
.title.text-left.has-underline:after, .single-career.page-content .the-content h2.text-left:after,
.product.page-content .the-content h2.text-left:after,
.work.page-content .the-content h2.text-left:after, .product-category-block .bottom .text-left.has-underline.label:after {
  left: 0%;
  margin-left: 0px;
}

.slice {
  padding: 65px 0;
}
.slice.no-p-bottom {
  padding-bottom: 0;
}
.slice.no-p-top {
  padding-top: 0;
}
.slice .slice-intro {
  position: relative;
  margin-bottom: 35px;
}
.slice .slice-intro .decoration {
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -80px;
  width: calc(100% + 160px);
  height: calc(100% + 160px);
  opacity: 0.4;
}
.slice .slice-intro .decoration svg path {
  fill: var(--color-tertiary);
}
.slice .slice-content {
  width: 100%;
}
.slice .slice-content .the-content {
  font: 300 16px/1.65em proxima-nova, sans-serif;
  color: var(--color-tertiary);
}
.slice .slice-content .the-content h2,
.slice .slice-content .the-content h3 {
  color: var(--color-primary);
  margin-bottom: 35px;
}
.slice .slice-outro {
  margin-top: 35px;
}
.slice.page-content {
  max-width: 1690px;
  margin: -100px auto 0;
  background: #fff;
  position: relative;
  z-index: 3;
}
.slice.page-content .social-share {
  float: right;
  margin: -50px 0 0 0;
}

.banner {
  position: relative;
  height: calc(100vh - 150px);
  max-height: 1000px;
  min-height: 600px;
}
.banner > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-primary);
  opacity: 0.47;
  z-index: 1;
  z-index: 2;
}
.banner.home {
  display: flex;
  align-items: center;
}
.banner.home .wrapper .the-content h1 {
  line-height: 1.3em;
}
.banner > .banner-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.banner > .banner-nav .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 3px 3px 0 0;
  height: 95px;
  padding: 0 40px;
}
.banner > .banner-nav .inner .row,
.banner > .banner-nav .inner .tns-outer,
.banner > .banner-nav .inner .tns-ovh,
.banner > .banner-nav .inner .tns-inner,
.banner > .banner-nav .inner .tns-item {
  height: 100%;
}
.banner > .banner-nav .banner-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner > .banner-nav .banner-nav-btn:before {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-secondary);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 250ms ease-in-out;
  opacity: 0;
}
.banner > .banner-nav .banner-nav-btn:hover:before {
  opacity: 1;
}
.banner > .banner-nav .banner-nav-btn:hover .image {
  transform: scale(1.1);
}
.banner > .banner-nav .banner-nav-btn:hover .image svg rect,
.banner > .banner-nav .banner-nav-btn:hover .image svg path {
  fill: var(--color-secondary);
}
.banner > .banner-nav .banner-nav-btn:hover .meta {
  color: var(--color-secondary);
}
.banner > .banner-nav .banner-nav-btn .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 250ms ease-in-out;
}
.banner > .banner-nav .banner-nav-btn .image svg rect,
.banner > .banner-nav .banner-nav-btn .image svg path {
  fill: var(--color-primary);
  transition: all 250ms ease-in-out;
}
.banner > .banner-nav .banner-nav-btn .meta {
  padding-left: 15px;
  color: var(--color-primary);
  transition: all 250ms ease-in-out;
}
.banner > .banner-nav .banner-nav-btn .meta .label {
  font: bold 14px/1em "Graphik", sans-serif;
}
.banner > .decorations {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  overflow: hidden;
}
.banner > .decorations .decoration-1 {
  position: relative;
  position: absolute;
  top: -20%;
  left: -10%;
  width: 40%;
}
.banner > .decorations .decoration-1:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.banner > .decorations .decoration-1 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner > .decorations .decoration-1 svg path {
  fill: #ffffff;
}
.banner > .decorations .decoration-2 {
  position: relative;
  position: absolute;
  right: -5%;
  bottom: -45px;
  width: 30%;
}
.banner > .decorations .decoration-2:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.banner > .decorations .decoration-2 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner > .decorations .decoration-2 svg path {
  fill: var(--color-secondary);
}
.banner.small {
  max-height: 660px;
  display: flex;
  align-items: center;
}
.banner.small .banner-content {
  max-width: 750px;
}
.banner.small .banner-content p {
  font: normal 16px/140% proxima-nova, sans-serif;
}
.banner.small > .decorations .decoration-1 {
  top: auto;
  left: auto;
  bottom: -30%;
  right: -10%;
}
.banner .wrapper {
  z-index: 4;
}
.banner .wrapper .the-content {
  color: #ffffff;
}
.banner .wrapper .the-content h1, .banner .wrapper .the-content h2, .banner .wrapper .the-content h3, .banner .wrapper .the-content h4, .banner .wrapper .the-content h5, .banner .wrapper .the-content h6 {
  font: 900 60px/1.4em "Graphik", sans-serif;
}
.banner .wrapper .the-content h1 em, .banner .wrapper .the-content h2 em, .banner .wrapper .the-content h3 em, .banner .wrapper .the-content h4 em, .banner .wrapper .the-content h5 em, .banner .wrapper .the-content h6 em {
  background: var(--color-secondary);
  padding: 10px 25px;
}
.banner .wrapper .the-content h1 {
  margin-bottom: 30px;
}
.banner .wrapper .punch {
  display: block;
}
.banner .wrapper .punch .mouse-animation {
  width: 20px;
  height: 43px;
  margin: 50px auto 0 auto;
}
.banner > img {
  z-index: 1;
}
.banner .post-metas {
  margin-top: 100px;
  color: #ffffff;
  font: 500 14px proxima-nova, sans-serif;
}
.banner .post-metas img {
  width: 95px;
  margin-right: 25px;
  vertical-align: middle;
  margin-top: -15px;
}
.banner.single-product .banner-meta .buttons {
  width: 100%;
  flex-direction: column;
  align-items: end;
}
.banner.single-product .banner-meta .buttons .btn, .banner.single-product .banner-meta .buttons .form-container .gform_footer input[type=submit], .form-container .gform_footer .banner.single-product .banner-meta .buttons input[type=submit], .banner.single-product .banner-meta .buttons .is-button > a {
  margin-right: 0;
  margin-bottom: 30px;
}
.banner.single-work .post-metas {
  margin-top: 10px;
  color: #ffffff;
  font: bold 16px "Graphik", sans-serif;
}
.banner.single-work .post-metas span {
  display: inline-flex;
}
.banner.single-work .post-metas span svg {
  margin-right: 15px;
}
.banner.single-work .post-metas span svg path,
.banner.single-work .post-metas span svg rect {
  fill: #ffffff;
}
.banner .col-buttons {
  display: flex;
  justify-content: end;
  align-items: end;
}
.banner .col-buttons .buttons {
  display: block;
  text-align: right;
}
.banner .col-buttons .buttons .btn, .banner .col-buttons .buttons .form-container .gform_footer input[type=submit], .form-container .gform_footer .banner .col-buttons .buttons input[type=submit], .banner .col-buttons .buttons .is-button > a {
  margin-bottom: 25px;
  margin-right: 0px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.banner .col-buttons .buttons .btn:last-child, .banner .col-buttons .buttons .form-container .gform_footer input[type=submit]:last-child, .form-container .gform_footer .banner .col-buttons .buttons input[type=submit]:last-child, .banner .col-buttons .buttons .is-button > a:last-child {
  margin-bottom: 0;
}
.banner .col-buttons .buttons .btn:hover, .banner .col-buttons .buttons .form-container .gform_footer input[type=submit]:hover, .form-container .gform_footer .banner .col-buttons .buttons input[type=submit]:hover, .banner .col-buttons .buttons .is-button > a:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.banner .col-buttons .buttons .btn:hover span, .banner .col-buttons .buttons .form-container .gform_footer input[type=submit]:hover span, .form-container .gform_footer .banner .col-buttons .buttons input[type=submit]:hover span, .banner .col-buttons .buttons .is-button > a:hover span {
  color: #fff;
}

.product-category-block {
  text-align: center;
}
.product-category-block .top {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
}
.product-category-block .top:before {
  content: "";
  display: block;
  padding-top: 70%;
}
.product-category-block .top:before {
  transition: all 250ms ease-in-out;
}
.product-category-block .top .image {
  position: relative;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.4;
  transform-origin: center;
  transform: scale(0.8);
  transition: all 250ms ease-in-out;
}
.product-category-block .top .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-category-block .bottom {
  margin-top: 10px;
  transition: all 250ms ease-in-out;
}
.product-category-block .bottom .label {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: all 250ms ease-in-out;
}
.product-category-block .bottom img {
  max-height: 40px;
}
.product-category-block:hover .image {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

#home-about,
.tax-product-industry .page-content {
  overflow: hidden;
  padding: 250px 0 180px;
  position: relative;
  background-repeat: no-repeat;
}
#home-about .wrapper,
.tax-product-industry .page-content .wrapper {
  position: relative;
  z-index: 2;
}
#home-about .wrapper .slice-content .the-content h2, #home-about .wrapper .slice-content .the-content h3, #home-about .wrapper .slice-content .the-content h4,
.tax-product-industry .page-content .wrapper .slice-content .the-content h2,
.tax-product-industry .page-content .wrapper .slice-content .the-content h3,
.tax-product-industry .page-content .wrapper .slice-content .the-content h4 {
  font: 500 20px/100% proxima-nova, sans-serif;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
#home-about .img-hex-container,
.tax-product-industry .page-content .img-hex-container {
  position: relative;
  z-index: 1;
  position: absolute;
  top: 0;
  right: -50px;
  width: 75%;
  max-width: 1000px;
}
#home-about .img-hex-container:before,
.tax-product-industry .page-content .img-hex-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#home-about .img-hex-container .hex-image,
.tax-product-industry .page-content .img-hex-container .hex-image {
  position: absolute;
  width: 50%;
  height: 50%;
}
#home-about .img-hex-container .hex-image img,
.tax-product-industry .page-content .img-hex-container .hex-image img {
  -webkit-mask-image: url("../images/icon-hexagon-mask.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  width: 110%;
  height: 110%;
}
#home-about .img-hex-container .hex-image#hex-image-1,
.tax-product-industry .page-content .img-hex-container .hex-image#hex-image-1 {
  top: 0;
  right: 0;
}
#home-about .img-hex-container .hex-image#hex-image-2,
.tax-product-industry .page-content .img-hex-container .hex-image#hex-image-2 {
  top: 0;
  right: 0;
}
#home-about .img-hex-container .hex-image#hex-image-3,
.tax-product-industry .page-content .img-hex-container .hex-image#hex-image-3 {
  width: 40%;
  left: 0%;
  bottom: 7%;
}

#home-about {
  margin-top: 75px;
}
#home-about .img-hex-container {
  right: 0;
}
#home-about .img-hex-container .hex-image#hex-image-1 {
  right: 4%;
  top: 5%;
}
#home-about .img-hex-container .hex-image#hex-image-2 {
  left: 0;
  right: unset;
  top: 5%;
}
#home-about .img-hex-container .hex-image#hex-image-3 {
  left: 28%;
  bottom: 8%;
}
#home-about .img-hex-container .hex-image img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
}

.news.home {
  padding-top: 50px;
  padding-bottom: 160px;
}
.news.page-content .news-block {
  margin-bottom: 50px;
}

.about-text-block .white-box {
  width: 100%;
}

.news-block .cat-label {
  font: 500 13px proxima-nova, sans-serif;
  color: #a5a5a5;
  display: inline-block;
  margin-bottom: 10px;
}
.news-block .image {
  position: relative;
  position: relative;
  background-color: var(--color-primary);
  display: block;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
}
.news-block .image:before {
  content: "";
  display: block;
  padding-top: 58%;
}
.news-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-block .image img {
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1;
  transition: 250ms ease-in-out;
}
.news-block .image svg {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.news-block .image svg .hexagon {
  fill: #ffffff;
  transition: 250ms ease-in-out;
}
.news-block .image svg .arrow {
  fill: var(--color-secondary);
  transition: 250ms ease-in-out;
}
.news-block .image:hover img {
  opacity: 0.6;
}
.news-block .image:hover svg .hexagon {
  fill: var(--color-secondary);
}
.news-block .image:hover svg .arrow {
  fill: #ffffff;
}
.news-block .text h4 {
  font: 500 20px proxima-nova, sans-serif;
  margin-bottom: 20px;
}
.news-block .text h4 a {
  color: var(--color-secondary);
}
.news-block .text .excerpt {
  font: 300 16px/140% proxima-nova, sans-serif;
  margin-bottom: 50px;
  color: var(--color-tertiary);
}
.news-block .text .metas {
  color: var(--color-tertiary);
  font: 300 13px proxima-nova, sans-serif;
}
.news-block .text .metas img {
  vertical-align: sub;
  display: inline-block;
  max-height: 30px;
  margin-right: 15px;
}
.news-block.small {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
.news-block.small .image {
  order: 2;
  width: 30%;
  min-width: 30%;
  margin-bottom: 0;
}
.news-block.small .image svg {
  bottom: 5px;
  right: 5px;
}
.news-block.spotlight {
  padding-bottom: 50px;
  border-bottom: 1px solid #CBCBCB;
}
.news-block.spotlight h4 {
  font: bold 38px "Graphik", sans-serif;
  margin-bottom: 50px;
}
.news-block.spotlight h4 a {
  color: var(--color-primary);
}
.news-block.spotlight .metas {
  margin-bottom: 50px;
}

.pagination > span {
  color: var(--color-primary);
  padding: 0 10px;
  font-weight: 500;
}
.pagination a {
  color: #a5a5a5;
  padding: 0 10px;
}
.pagination a svg {
  vertical-align: top;
}
.pagination a svg path {
  fill: var(--color-primary);
}
.pagination a:hover {
  font-weight: 500;
}
.pagination .arrow-prev svg {
  transform: rotateZ(180deg);
}

.white-box {
  padding: 60px 40px;
  background: #ffffff;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
}
.white-box > svg {
  width: 65px;
  display: block;
  margin: -86px auto 0;
}

.tax-filters {
  padding: 15px 60px;
}
.tax-filters li {
  padding: 25px 0;
  border-bottom: 1px solid #CBCBCB;
}
.tax-filters li a {
  display: flex;
  align-items: center;
  justify-content: start;
  font: bold 16px "Graphik", sans-serif;
  color: var(--color-primary);
}
.tax-filters li a.active {
  color: var(--color-secondary);
}
.tax-filters li a.active svg {
  display: inline-block;
  margin-right: 15px;
}
.tax-filters li:last-child {
  border-bottom: 0px;
}

.category-filter-dropdown {
  display: none;
}
.category-filter-dropdown .chosen-container {
  width: 100% !important;
  background: #ffffff;
}
.category-filter-dropdown .chosen-container .chosen-single {
  background: transparent;
  border-radius: 3px;
  display: block;
  padding: 20px 25px;
  border: 2px solid var(--color-primary);
  width: 100% !important;
  height: 100%;
  font: normal 16px "Graphik", sans-serif;
  box-shadow: none;
}
.category-filter-dropdown .chosen-container .chosen-single > div {
  width: 40px;
}
.category-filter-dropdown .chosen-container .chosen-single > div b {
  background: none !important;
  width: 14px;
  height: 14px;
}
.category-filter-dropdown .chosen-container .chosen-single > div b:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: var(--color-secondary) transparent transparent transparent;
}
.category-filter-dropdown .chosen-container .chosen-single > div b:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 6px));
  width: 14px;
  height: 3px;
  border-style: solid;
  border-width: 3px 7px 0 7px;
  border-color: #ffffff transparent transparent transparent;
}
.category-filter-dropdown .chosen-container .chosen-search-input {
  background: #EFF1F8;
  padding: 10px;
  border-radius: 3px;
  width: 100%;
}
.category-filter-dropdown .chosen-container .chosen-search {
  padding: 10px;
  margin-bottom: 10px;
}
.category-filter-dropdown .chosen-container .chosen-drop {
  min-width: 250px;
  padding: 10px 0;
  border: 0px;
  background: #ffffff;
}
.category-filter-dropdown .chosen-container .chosen-drop .chosen-results li.no-results {
  background: #ffffff;
}
.category-filter-dropdown .chosen-container .chosen-drop .chosen-results .active-result {
  padding: 15px;
}
.category-filter-dropdown .chosen-container .chosen-drop .chosen-results .highlighted {
  background: var(--color-primary);
}

.single-post .page-content .the-content {
  max-width: 900px;
  margin: 0px auto;
  padding-top: 100px;
}
.single-post .page-content .the-content.intro {
  font-weight: normal;
  margin: 75px auto;
}
.single-post .page-content .the-content.intro p {
  color: black;
}
.single-post .page-content .the-content h3 {
  color: var(--color-secondary);
  font: 500 20px/120% proxima-nova, sans-serif;
  margin-bottom: 30px;
}
.single-post .page-content .the-content p {
  font: normal 16px/140% proxima-nova, sans-serif;
  margin-bottom: 30px;
}

.social-share ul li {
  color: #a5a5a5;
  margin-right: 20px;
}

.social-icon svg path {
  fill: var(--color-primary);
}

.page-template-a-propos .page-content .the-content {
  max-width: 900px;
  margin: 0 auto;
}

.timeline .slice-intro h3 {
  margin-bottom: 30px;
}
.timeline .slice-content {
  position: relative;
}

.slider-controls {
  width: 110%;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.slider-controls span {
  display: block;
  pointer-events: all;
  cursor: pointer;
}
.slider-controls span svg {
  display: block;
}
.slider-controls span svg .hexagon {
  fill: var(--color-secondary);
}
.slider-controls span svg .arrow {
  fill: #ffffff;
}
.slider-controls .prev {
  transform: rotateZ(180deg);
}
.slider-controls#timeline-controls {
  width: calc(100% + 100px);
  padding: 0 150px;
  left: 50%;
  translate: -50% 0;
}
.slider-controls#work-slider-controls {
  width: 130px;
  top: auto;
  bottom: 60px;
  right: 10px;
  left: auto;
}
.slider-controls#work-slider-controls span svg .hexagon {
  fill: #ffffff;
}
.slider-controls#work-slider-controls span svg .arrow {
  fill: var(--color-secondary);
}

#timeline-slider-ow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: -100px auto 0;
  background-image: url("../images/decoration-hex-grey.svg"), url("../images/decoration-hex-grey.svg");
  background-position: left bottom, right top;
  background-size: 40% auto, 40% auto;
  background-repeat: no-repeat, no-repeat;
}

.timeline-block {
  position: relative;
  padding-top: 100px;
}
.timeline-block .year {
  position: relative;
  background: url("../images/white-hexagon.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  font: bold 32px/1.25em "Graphik", sans-serif;
  color: var(--color-primary);
  z-index: 1;
}
.timeline-block .year:before {
  content: "";
  display: block;
  padding-top: 87%;
}
.timeline-block .timeline-block-content {
  position: relative;
  position: relative;
  top: 70px;
}
.timeline-block .timeline-block-content:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.timeline-block .timeline-block-content > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.timeline-block .timeline-block-content .text {
  position: relative;
  z-index: 2;
  width: 50%;
  min-width: 400px;
}
.timeline-block .timeline-block-content .text.has-bg {
  background-color: rgba(24, 47, 87, 0.8);
  border: 1px solid var(--color-primary);
  padding: 40px 20px;
}
.timeline-block .timeline-block-content .text h3 {
  color: #ffffff;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.timeline-block .timeline-block-content .text .the-content *, .timeline-block .timeline-block-content .text .the-content p, .timeline-block .timeline-block-content .text .the-content span {
  color: #ffffff;
}

.page-template-career .page-content {
  overflow: hidden;
  padding: 250px 0 180px;
  position: relative;
  background-repeat: no-repeat;
}
.page-template-career .page-content + .page-content {
  padding-top: 100px;
  margin-top: 10px;
}
.page-template-career .page-content .career-text {
  position: relative;
  z-index: 2;
}
.page-template-career .page-content .career-text .slice-content .the-content h2, .page-template-career .page-content .career-text .slice-content .the-content h3, .page-template-career .page-content .career-text .slice-content .the-content h4 {
  font: 500 20px/100% proxima-nova, sans-serif;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.page-template-career .page-content .img-hex-container {
  position: relative;
  z-index: 1;
  position: absolute;
  max-width: 100%;
  top: 30px;
  left: 0;
  height: 100%;
  width: 100%;
}
.page-template-career .page-content .img-hex-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.page-template-career .page-content .img-hex-container .hex-image {
  position: absolute;
  width: 50%;
  height: auto;
}
.page-template-career .page-content .img-hex-container .hex-image img {
  -webkit-mask-image: url("../images/icon-hexagon-mask.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.page-template-career .page-content .img-hex-container .hex-image#hex-image-1 {
  top: 0;
  right: 0;
  height: auto;
  width: 75%;
  max-width: 565px;
}
.page-template-career .page-content .img-hex-container .hex-image#hex-image-2 {
  top: auto;
  bottom: 50px;
  right: 20px;
  width: 27%;
  max-width: 400px;
}
.page-template-career .page-content .img-hex-container .hex-image#hex-image-3 {
  width: 40%;
  left: 0%;
  bottom: 10%;
}
.page-template-career .page-content:before {
  content: "";
  width: calc(100% + 2px);
  max-width: 1690px;
  height: 100px;
  display: block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.career-block {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #CBCBCB;
  gap: 50px;
}
.career-block h3 {
  color: var(--color-primary);
}

#pop-up-form {
  display: none;
  width: 95%;
  border-radius: 10px;
}
#pop-up-form #fancy-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#pop-up-form .fancybox-close-small {
  opacity: 0;
}
#pop-up-form .form-container {
  max-width: 1024px;
  margin: 0 auto;
}
#pop-up-form .form-container .gform_footer {
  display: flex;
  justify-content: end;
  width: calc(100% - 300px);
  float: right;
}
#pop-up-form .slice-intro {
  padding-top: 0;
}
#pop-up-form .slice-intro h2 {
  margin-bottom: 40px;
}

.form-container h3 {
  font: 900 20px/130% "Graphik", sans-serif;
  color: var(--color-primary);
  padding-left: 70px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}
.form-container h3 svg {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(calc(-50% - 20px));
  display: inline-block;
  margin-right: 30px;
}
.form-container .gform_validation_errors h2 {
  color: var(--color-primary);
  font: normal 16px proxima-nova, sans-serif;
}
.form-container .gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form-container .gform_wrapper .gfield {
  width: 100%;
}
.form-container .gform_wrapper .gfield.upload-en .ginput_container .gform_drop_area .gform_drop_instructions:before {
  content: "Drop your files here";
}
.form-container .gform_wrapper .gfield.gfield--width-half {
  width: calc(50% - 8px);
}
.form-container .gform_wrapper .gfield .ginput_container > input,
.form-container .gform_wrapper .gfield .ginput_container_address > span > input {
  background: #EFF1F8;
  padding: 20px 25px;
  border-radius: 3px;
}
.form-container .gform_wrapper .gfield .ginput_container > input::placeholder,
.form-container .gform_wrapper .gfield .ginput_container_address > span > input::placeholder {
  color: var(--color-primary);
}
.form-container .gform_wrapper .gfield .ginput_container textarea,
.form-container .gform_wrapper .gfield .ginput_container_address > span textarea {
  background: #EFF1F8;
  padding: 20px 25px;
  border-radius: 3px;
  font: normal 16px "Graphik", sans-serif;
  width: 100%;
  border: 0px;
}
.form-container .gform_wrapper .gfield .ginput_container textarea::placeholder,
.form-container .gform_wrapper .gfield .ginput_container_address > span textarea::placeholder {
  color: var(--color-primary);
}
.form-container .gform_wrapper .gfield .ginput_container select,
.form-container .gform_wrapper .gfield .ginput_container_address > span select {
  background: #EFF1F8;
  padding: 20px 25px;
  border-radius: 3px;
  border: 0px;
  width: 100%;
  font: normal 16px "Graphik", sans-serif;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container {
  max-width: 100%;
  width: 100% !important;
  background: #EFF1F8;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-single,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-single {
  background: transparent;
  border-radius: 3px;
  display: block;
  padding: 20px 25px;
  border: 0px;
  width: 100%;
  height: 100%;
  font: normal 16px "Graphik", sans-serif;
  box-shadow: none;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-single > div,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-single > div {
  width: 40px;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-single > div b,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-single > div b {
  background: none !important;
  width: 14px;
  height: 14px;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-single > div b:before,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-single > div b:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: var(--color-primary) transparent transparent transparent;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-single > div b:after,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-single > div b:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 6px));
  width: 14px;
  height: 3px;
  border-style: solid;
  border-width: 3px 7px 0 7px;
  border-color: #EFF1F8 transparent transparent transparent;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-search-input,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-search-input {
  background: #ffffff;
  padding: 10px;
  border-radius: 3px;
  width: 100%;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-drop,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-drop {
  border: 0px;
  background: #EFF1F8;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-drop .chosen-results .active-result,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-drop .chosen-results .active-result {
  padding: 15px;
}
.form-container .gform_wrapper .gfield .ginput_container .chosen-container .chosen-drop .chosen-results .highlighted,
.form-container .gform_wrapper .gfield .ginput_container_address > span .chosen-container .chosen-drop .chosen-results .highlighted {
  background: var(--color-primary);
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_complex,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_complex {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_complex .ginput_full,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_complex .ginput_full {
  flex: 0 0 100%;
  max-width: 100%;
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_complex .ginput_left,
.form-container .gform_wrapper .gfield .ginput_container.ginput_complex .ginput_right,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_complex .ginput_left,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_complex .ginput_right {
  flex: 0 0 50%;
  max-width: calc(50% - 8px);
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload {
  float: left;
  width: calc(50% - 8px);
  max-width: 275px;
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload + div {
  float: left;
  width: calc(50% - 8px);
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div .ginput_preview strong,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload + div .ginput_preview strong {
  font: normal 16px proxima-nova, sans-serif;
  color: #a5a5a5;
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div .ginput_preview .gform_delete_file,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload + div .ginput_preview .gform_delete_file {
  border: 0px solid transparent;
  background: transparent;
  cursor: pointer;
}
.form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div .ginput_preview .gform_delete_file .dashicons,
.form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload + div .ginput_preview .gform_delete_file .dashicons {
  color: var(--color-primary);
  font-size: 16px;
  padding-top: 0;
  vertical-align: middle;
}
.form-container .gform_wrapper .gfield .ginput_container .gform_drop_area,
.form-container .gform_wrapper .gfield .ginput_container_address > span .gform_drop_area {
  background: var(--color-primary);
  border-radius: 3px;
  padding: 20px 25px 20px 50px;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  background: var(--color-primary) url("../images/icon-upload.svg") no-repeat 20px center;
  background-size: 20px auto;
  font: 500 15px proxima-nova, sans-serif;
  white-space: nowrap;
}
.form-container .gform_wrapper .gfield .ginput_container .gform_drop_area .gform_drop_instructions,
.form-container .gform_wrapper .gfield .ginput_container_address > span .gform_drop_area .gform_drop_instructions {
  font-size: 0px;
}
.form-container .gform_wrapper .gfield .ginput_container .gform_drop_area .gform_drop_instructions:before,
.form-container .gform_wrapper .gfield .ginput_container_address > span .gform_drop_area .gform_drop_instructions:before {
  content: "Déposez des fichier ici";
  font: 500 15px proxima-nova, sans-serif;
}
.form-container .gform_wrapper .gfield .ginput_container .gform_drop_area .gform_button_select_files,
.form-container .gform_wrapper .gfield .ginput_container_address > span .gform_drop_area .gform_button_select_files {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0px;
  width: 100%;
  heighT: 100%;
  border: 0px;
  opacity: 0;
  cursor: pointer;
}
.form-container .gform_wrapper .gfield .ginput_container .gform_fileupload_rules,
.form-container .gform_wrapper .gfield .ginput_container_address > span .gform_fileupload_rules {
  display: none;
}
.form-container .gform_wrapper fieldset.gfield {
  border: 0px;
  padding: 0;
}
.form-container .gform_wrapper fieldset.gfield legend {
  display: none;
}
.form-container .gform_footer {
  display: flex;
  justify-content: end;
  width: calc(100% - 300px);
  float: right;
  margin-top: -62px;
}
.single-career.page-content .the-content:not(.text-center) h2:after,
.product.page-content .the-content:not(.text-center) h2:after,
.work.page-content .the-content:not(.text-center) h2:after {
  margin-left: 0;
  left: 0;
}
.single-career.page-content .the-content h2,
.product.page-content .the-content h2,
.work.page-content .the-content h2 {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.industry-block {
  margin-bottom: 100px;
}
.industry-block h3 {
  color: var(--color-primary);
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 30px;
}
.industry-block h3 .svg-container {
  margin-right: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 92px;
}
.industry-block h3 .svg-container svg {
  display: inline-block;
}
.industry-block h3 .svg-container svg:first-child {
  position: absolute;
  top: 0;
  left: 0;
}
.industry-block h3 .svg-container svg:first-child path,
.industry-block h3 .svg-container svg:first-child rect {
  fill: var(--color-primary);
}
.industry-block h3 .svg-container svg:last-child path,
.industry-block h3 .svg-container svg:last-child rect {
  fill: var(--color-secondary);
}
.industry-block p {
  margin-bottom: 30px;
  color: var(--color-tertiary);
  font: 300 16px/1.65em proxima-nova, sans-serif;
}

.cta-industry .cta-content {
  flex-wrap: wrap;
}
.cta-industry h2 {
  color: var(--color-secondary);
  font: 900 33px "Graphik", sans-serif;
  margin-bottom: 35px;
}
.cta-industry h3 {
  color: var(--color-primary);
  font: 900 22px "Graphik", sans-serif;
  margin-bottom: 35px;
}

.tax-product-industry .banner .banner-meta .buttons {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tax-product-industry .slice.page-content:before {
  content: "";
  width: calc(100% + 2px);
  max-width: 1690px;
  height: 100px;
  display: block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tax-product-industry .slice.page-content .img-hex-container {
  height: 100%;
  width: 100%;
  max-width: 100%;
  top: 30px;
  left: 0;
}
.tax-product-industry .slice.page-content .img-hex-container #hex-image-1 {
  height: auto;
  width: 75%;
  max-width: 565px;
}
.tax-product-industry .slice.page-content .img-hex-container #hex-image-2 {
  top: auto;
  bottom: -60px;
  right: 20px;
  width: 27%;
  max-width: 250px;
}

#product-slider-ow {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px !important;
}

.slice.related-works {
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
}
.slice.related-works .mobile-only {
  display: none;
}
.slice.related-works .mobile-only .text-container {
  position: relative;
  z-index: 2;
}
.slice.related-works .text-container {
  position: relative;
  z-index: 2;
}
.slice.related-works .work-slider-container {
  position: relative;
  width: 75%;
  max-width: 1240px;
}
.slice.related-works .work-slider-container .text-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(75%) translateY(-50%);
  z-index: 2;
}

.featured-work-block {
  overflow: hidden;
  position: relative;
}
.featured-work-block:before {
  content: "";
  display: block;
  padding-top: 85%;
}
.featured-work-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color-primary) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, var(--color-primary) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--color-primary) 100%);
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
}
.featured-work-block .block-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: right;
  padding: 20px;
}
.featured-work-block .block-content h3 {
  font: bold 28px "Graphik", sans-serif;
  margin-bottom: 15px;
  color: #ffffff;
}
.featured-work-block .block-content span {
  color: #ffffff;
}
.featured-work-block:hover:before {
  transform: translateY(0);
}

.work-block {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 80px);
}
.work-block .image {
  position: relative;
  position: relative;
  position: relative;
  background-color: var(--color-primary);
  display: block;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 25px;
}
.work-block .image:before {
  content: "";
  display: block;
  padding-top: 58%;
}
.work-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-block .image img {
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1;
  transition: 250ms ease-in-out;
}
.work-block .image svg {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.work-block .image svg .hexagon {
  fill: #ffffff;
  transition: 250ms ease-in-out;
}
.work-block .image svg .arrow {
  fill: var(--color-secondary);
  transition: 250ms ease-in-out;
}
.work-block .image:hover img {
  opacity: 0.6;
}
.work-block .image:hover svg .hexagon {
  fill: var(--color-secondary);
}
.work-block .image:hover svg .arrow {
  fill: #ffffff;
}
.work-block .block-content h3 {
  margin-bottom: 15px;
}
.work-block .block-content h3 a {
  color: var(--color-primary);
  font: 900 23px/140% "Graphik", sans-serif;
}
.work-block .block-content .industry-label {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}
.work-block .block-content .industry-label svg {
  margin-right: 15px;
  height: 30px;
}
.work-block .block-content .industry-label svg path,
.work-block .block-content .industry-label svg rect {
  fill: var(--color-secondary);
  transition: 250ms ease-in-out;
}
.work-block .block-content .industry-label span,
.work-block .block-content .industry-label a {
  color: var(--color-secondary);
  font: bold 14px proxima-nova, sans-serif;
  transition: 250ms ease-in-out;
}
.work-block .block-content .industry-label span:hover,
.work-block .block-content .industry-label a:hover {
  color: var(--color-primary);
}
.work-block .block-content .industry-label span:hover svg path,
.work-block .block-content .industry-label span:hover svg rect,
.work-block .block-content .industry-label a:hover svg path,
.work-block .block-content .industry-label a:hover svg rect {
  fill: var(--color-primary);
}
.work-block .block-content .product-label {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  width: 50%;
}
.work-block .block-content .product-label a,
.work-block .block-content .product-label span {
  color: var(--color-primary);
  font: normal 14px/100% proxima-nova, sans-serif;
  margin-right: 10px;
}
.work-block .block-content .product-label a.top-label,
.work-block .block-content .product-label span.top-label {
  display: block;
  margin-right: 0;
  width: 100%;
  color: var(--color-secondary);
  font: 900 14px/100% "Graphik", sans-serif;
}
.work-block .block-content .product-label a:hover {
  color: var(--color-secondary);
}
.work-block .block-content p {
  color: var(--color-tertiary);
  font: 300 16px/1.65em proxima-nova, sans-serif;
  margin-bottom: 40px;
}
.work-block .btn, .work-block .is-button > a, .work-block .form-container .gform_footer input[type=submit], .form-container .gform_footer .work-block input[type=submit] {
  margin-top: auto;
  width: fit-content;
}

.product-block {
  padding-bottom: 5px;
}
.product-block .image {
  position: relative;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.product-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-block .image img {
  object-position: center;
  transition: 250ms ease-in-out;
  transform: scale(0.9);
}
.product-block .image:hover img {
  transform: scale(1);
}
.product-block .block-content h3 {
  margin-bottom: 15px;
}
.product-block .block-content h3 a {
  color: var(--color-primary);
  font: 900 22px/140% "Graphik", sans-serif;
}
.product-block .block-content .category-label {
  display: block;
  margin-bottom: 15px;
  font: normal 14px proxima-nova, sans-serif;
  color: var(--color-tertiary);
}
.product-block .block-content .category-label a {
  color: var(--color-secondary);
}
.product-block .block-content .industry-label {
  position: relative;
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 15px;
}
.product-block .block-content .industry-label svg {
  height: 30px;
}
.product-block .block-content .industry-label svg path,
.product-block .block-content .industry-label svg rect {
  fill: var(--color-secondary);
  transition: 250ms ease-in-out;
}
.product-block .block-content .industry-label .label {
  position: relative;
}
.product-block .block-content .industry-label .label .tooltip {
  pointer-events: none;
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--color-accent);
  color: var(--color-primary);
  font: 500 14px proxima-nova, sans-serif;
  padding: 5px 25px;
  text-align: center;
  transition: 250ms ease-in-out;
  opacity: 0;
  white-space: nowrap;
}
.product-block .block-content .industry-label .label .tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: var(--color-accent) transparent transparent transparent;
}
.product-block .block-content .industry-label .label:hover .tooltip {
  transform: translateX(-50%) scale(1);
  bottom: calc(100% + 20px);
  opacity: 1;
}
.product-block .block-content .industry-label .label:hover svg path,
.product-block .block-content .industry-label .label:hover svg rect {
  fill: var(--color-primary);
}
.product-block .block-content p {
  color: var(--color-tertiary);
  font: 300 16px/1.65em proxima-nova, sans-serif;
  margin-bottom: 35px;
}

.page-content.products .product-block {
  margin-bottom: 60px;
}
.page-content.products .slice-intro {
  margin: 50px auto 80px;
}
.page-content.products .slice-intro .title, .page-content.products .slice-intro .product-category-block .bottom .label, .product-category-block .bottom .page-content.products .slice-intro .label, .page-content.products .slice-intro .single-career.page-content .the-content h2, .single-career.page-content .the-content .page-content.products .slice-intro h2,
.page-content.products .slice-intro .product.page-content .the-content h2,
.product.page-content .the-content .page-content.products .slice-intro h2,
.page-content.products .slice-intro .work.page-content .the-content h2,
.work.page-content .the-content .page-content.products .slice-intro h2 {
  font-size: 45px;
}

.single-product .banner .post-metas {
  margin-top: 0;
}
.single-product .banner .the-content {
  padding-top: 60px;
}
.single-product .page-content .industry-label {
  flex-wrap: wrap;
  margin-top: -50px;
  width: 70%;
}
.single-product .page-content .industry-label a,
.single-product .page-content .industry-label span {
  display: inline-block;
  color: var(--color-secondary);
  margin-right: 50px;
  margin-bottom: 30px;
  font: bold 14px proxima-nova, sans-serif;
  transition: 250ms ease-in-out;
}
.single-product .page-content .industry-label a svg,
.single-product .page-content .industry-label span svg {
  margin-right: 15px;
}
.single-product .page-content .industry-label a svg path,
.single-product .page-content .industry-label a svg rect,
.single-product .page-content .industry-label span svg path,
.single-product .page-content .industry-label span svg rect {
  fill: var(--color-secondary);
  transition: 250ms ease-in-out;
}
.single-product .page-content .industry-label a.top-label,
.single-product .page-content .industry-label span.top-label {
  font: 500 14px proxima-nova, sans-serif;
  color: #a5a5a5;
  display: block;
  width: 100%;
}
.single-product .page-content .industry-label a:not(span):hover,
.single-product .page-content .industry-label span:not(span):hover {
  color: var(--color-primary);
}
.single-product .page-content .industry-label a:not(span):hover svg path,
.single-product .page-content .industry-label a:not(span):hover svg rect,
.single-product .page-content .industry-label span:not(span):hover svg path,
.single-product .page-content .industry-label span:not(span):hover svg rect {
  fill: var(--color-primary);
}
.single-product .page-content .social-share {
  margin-top: 0;
}
.single-product .the-content {
  padding-top: 75px;
}
.single-product .button-block {
  margin-top: 50px;
  flex-direction: column;
  gap: 30px;
}

.single-work .page-content .social-share {
  margin-top: 0;
}
.single-work .page-content .product-label {
  align-items: start;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  width: 50%;
  max-width: 450px;
  margin-top: -50px;
}
.single-work .page-content .product-label span {
  color: var(--color-primary);
  font: normal 14px proxima-nova, sans-serif;
  margin-right: 10px;
}
.single-work .page-content .product-label span.top-label {
  display: block;
  margin-right: 0;
  color: var(--color-secondary);
  font: bold 14px proxima-nova, sans-serif;
}
.single-work .page-content .row.gutter-60 > div {
  margin-bottom: 60px;
}
.single-work .page-content .slice-content .the-content {
  max-width: 900px;
  margin: 0px auto;
  padding-top: 100px;
}
.single-work .page-content .gallery-item {
  position: relative;
  position: relative;
  display: block;
}
.single-work .page-content .gallery-item:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.single-work .page-content .gallery-item > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-work #work-about {
  overflow: hidden;
  padding: 300px 0 180px;
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../images/bg-about-us-accueil.png);
}
.single-work #work-about .wrapper {
  position: relative;
  z-index: 2;
}
.single-work #work-about .wrapper .text-caontainer {
  pointer-events: all;
}
.single-work #work-about .wrapper .slice-content .the-content h2, .single-work #work-about .wrapper .slice-content .the-content h3, .single-work #work-about .wrapper .slice-content .the-content h4 {
  font: 500 20px/100% proxima-nova, sans-serif;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.single-work #work-about .img-hex-container {
  position: relative;
  z-index: 1;
  position: absolute;
  top: 0;
  left: -10px;
  width: 75%;
  max-width: 865px;
}
.single-work #work-about .img-hex-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.single-work #work-about .img-hex-container .hex-image {
  display: block !important;
  position: absolute;
  width: 50%;
  height: 50%;
}
.single-work #work-about .img-hex-container .hex-image img {
  -webkit-mask-image: url("../images/icon-hexagon-mask.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  width: 110%;
  height: 110%;
}
.single-work #work-about .img-hex-container .hex-image#hex-image-1 {
  top: 0;
  left: 0;
}
.single-work #work-about .img-hex-container .hex-image#hex-image-2 {
  top: 0;
  right: 0;
}
.single-work #work-about .img-hex-container .hex-image#hex-image-3 {
  left: 25%;
  bottom: 7%;
}
.single-work .servs-slice {
  background-color: #F6F7F9;
  margin: 0 auto;
  padding: 130px 0 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.single-work .servs-slice:after {
  content: "";
  width: 90%;
  max-width: 1500px;
  border-bottom: 1px solid var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-work .servs-slice .slice-intro h3 {
  color: var(--color-secondary);
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-work .servs-slice .slice-intro h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-work .servs-slice .col-services:nth-child(3) .service-block, .single-work .servs-slice .col-services:nth-child(4) .service-block {
  margin-bottom: 0;
}
.single-work .servs-slice .service-block {
  margin-bottom: 85px;
  align-items: center;
}
.single-work .servs-slice .service-block .icon-container {
  position: relative;
  position: relative;
  width: 85px;
  min-width: 85px;
  margin-right: 45px;
}
.single-work .servs-slice .service-block .icon-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.single-work .servs-slice .service-block .icon-container > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.single-work .servs-slice .service-block h4 {
  color: var(--color-primary);
  font: 900 22px/100% "Graphik", sans-serif;
}
.single-work .related-work {
  background-color: #F6F7F9;
}
.single-work .fancybox-container .fancybox-content img {
  max-height: calc(100vh - 105px);
}

.get-a-quote .slice-intro {
  width: 100%;
}
.get-a-quote .form-container {
  max-width: 1000px;
  margin: 0 auto;
}
.get-a-quote .form-container .gform_footer {
  margin-top: -76px;
}

.hiddenSubmit {
  display: none;
}

.filters-container {
  margin-bottom: 50px;
}
.filters-container input[type=text] {
  background: var(--color-accent);
  display: block;
  padding: 20px 25px;
  border: 0px;
  width: 100% !important;
  height: 100%;
  font: normal 16px "Graphik", sans-serif;
  box-shadow: none;
  outline: none;
}
.filters-container .chosen-container {
  width: 100% !important;
  background: #ffffff;
}
.filters-container .chosen-container .chosen-single {
  background: transparent;
  border-radius: 3px;
  display: block;
  padding: 20px 25px;
  border: 2px solid var(--color-primary);
  width: 100% !important;
  height: 100%;
  font: normal 16px "Graphik", sans-serif;
  box-shadow: none;
}
.filters-container .chosen-container .chosen-single > div {
  width: 40px;
}
.filters-container .chosen-container .chosen-single > div b {
  background: none !important;
  width: 14px;
  height: 14px;
}
.filters-container .chosen-container .chosen-single > div b:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: var(--color-secondary) transparent transparent transparent;
}
.filters-container .chosen-container .chosen-single > div b:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 6px));
  width: 14px;
  height: 3px;
  border-style: solid;
  border-width: 3px 7px 0 7px;
  border-color: #ffffff transparent transparent transparent;
}
.filters-container .chosen-container .chosen-search-input {
  background: #EFF1F8;
  padding: 10px;
  border-radius: 3px;
  width: 100%;
}
.filters-container .chosen-container .chosen-search {
  padding: 10px;
  margin-bottom: 10px;
}
.filters-container .chosen-container .chosen-drop {
  min-width: 250px;
  padding: 10px 0;
  border: 0px;
  background: #ffffff;
}
.filters-container .chosen-container .chosen-drop .chosen-results li.no-results {
  background: #ffffff;
}
.filters-container .chosen-container .chosen-drop .chosen-results .active-result {
  padding: 15px;
}
.filters-container .chosen-container .chosen-drop .chosen-results .highlighted {
  background: var(--color-primary);
}

.contact-block {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-block .image {
  position: relative;
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
}
.contact-block .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.contact-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.contact-block .the-content a {
  color: var(--color-primary);
  font: bold 16px proxima-nova, sans-serif;
}

.map-container .google-map {
  height: 750px;
  border-radius: 5px;
}

.distributor-block {
  margin-bottom: 60px;
}
.distributor-block h3 {
  font: 900 22px "Graphik", sans-serif;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.distributor-block .category-label {
  color: var(--color-tertiary);
  font: normal 14px proxima-nova, sans-serif;
  margin-bottom: 40px;
  display: block;
}
.distributor-block .category-label svg {
  height: 20px;
  margin-right: 5px;
  margin-top: -4px;
  vertical-align: middle;
}
.distributor-block .category-label svg path,
.distributor-block .category-label svg rect {
  fill: var(--color-secondary);
}
.distributor-block .dist-metas {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 20px;
  color: var(--color-tertiary);
  padding-left: 40px;
}
.distributor-block .dist-metas a {
  color: var(--color-tertiary);
}
.distributor-block .dist-metas a:hover {
  font-style: italic;
}
.distributor-block .dist-metas strong a {
  font-weight: 500;
}
.distributor-block .dist-metas svg {
  position: absolute;
  left: 0;
  top: -2px;
  width: 25px;
  max-height: 25px;
  margin-right: 15px;
}
.distributor-block .dist-metas svg path {
  transition: 250ms ease-in-out;
}
.distributor-block .dist-metas.has-svg:hover svg #Polygone_30 path {
  fill: var(--color-secondary) !important;
}

/*- footer -*/
.gform_wrapper .gfield.hidden_label label {
  display: none;
}
.gform_wrapper .gfield .ginput_container input {
  width: 100%;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 20px;
  border: 0px;
  -webkit-appearance: none;
  outline: none;
  font: normal 16px "Graphik", sans-serif;
}
.gform_wrapper .gfield .gfield_validation_message,
.gform_wrapper .gfield .validation_message {
  text-align: left;
  padding: 10px 0;
  color: var(--color-secondary);
}

.gform_validation_errors {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid var(--color-secondary);
}
.gform_validation_errors h2 {
  color: white;
  font: normal 16px proxima-nova, sans-serif;
}

#footer {
  z-index: 1;
}
#footer p, #footer a {
  color: white;
  font: normal 14px proxima-nova, sans-serif;
}
#footer form {
  display: flex;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}
#footer form .gform_body {
  flex: 0 2 auto;
  width: 75%;
}
#footer form .gform_body .gfield .ginput_container input {
  width: 100%;
  height: 60px;
  -webkit-appearance: none;
}
#footer form .gform_footer {
  width: 25%;
  min-width: 130px;
}
#footer form .gform_footer .gform_button {
  color: white;
  border-radius: 0px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: var(--color-secondary);
  font: 900 16px "Graphik", sans-serif;
  text-align: center;
  padding: 20px;
  border: 0px;
  width: 100%;
  height: 60px;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 250ms ease-in-out;
}
#footer form .gform_footer .gform_button:hover {
  background: var(--color-primary);
  color: #ffffff;
}
#footer .footer-content {
  padding: 100px 0;
  background-color: var(--color-primary);
}
#footer .footer-content .col-newsletter h3 {
  color: white;
  font: 900 20px "Graphik", sans-serif;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
#footer .footer-content .col-socials p {
  font: normal 16px proxima-nova, sans-serif;
  margin-right: 15px;
}
#footer .footer-content .col-socials .socials-icon {
  display: inline-block;
}
#footer .footer-content .col-socials .socials-icon li {
  width: 65px;
  height: 55px;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#footer .footer-content .col-socials .socials-icon li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#footer .footer-content .col-socials .socials-icon li svg path {
  transition: all 0.3s ease-in-out;
  fill: var(--color-secondary);
}
#footer .footer-content .col-socials .socials-icon li a {
  cursor: pointer;
  display: inline-block;
  padding-right: 3px;
  font: italic 900 16px "Graphik", sans-serif;
  transition: all 0.3s ease-in-out;
}
#footer .footer-content .col-socials .socials-icon li a:hover {
  color: var(--color-secondary);
}
#footer .footer-content .col-socials .socials-icon li a:hover + svg path {
  fill: #ffffff;
}
#footer .footer-metas {
  padding: 25px 0;
  background-color: var(--color-secondary);
}
#footer .footer-metas .col-nav nav ul li {
  display: inline-block;
  margin-right: 30px;
}
#footer .footer-metas .col-nav nav ul li:last-child {
  margin-right: 0;
}
#footer .footer-metas a:hover {
  text-decoration: underline;
}
#footer .footer-metas #rubik-api-copyright {
  justify-content: end;
  font: normal 16px proxima-nova, sans-serif;
}
#footer .footer-metas #rubik-api-copyright svg {
  vertical-align: middle;
}

.product-img {
  position: sticky;
  top: 100px;
  display: flex;
}

#home-intro {
  overflow-x: hidden;
}

.video-wrap {
  position: relative;
  max-height: 600px;
  width: 1100px;
}
.video-wrap .btn-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.video-wrap .btn-video:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.video-wrap .btn-video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.video-wrap .btn-video > svg {
  position: absolute;
  z-index: 2;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  width: 80px;
  height: 80px;
  fill: white;
}
.video-wrap .decorations {
  z-index: 3;
  width: 50%;
  height: 60%;
  position: absolute;
  left: 83%;
  top: -70px;
}

.video-slice {
  overflow: hidden;
  padding: 70px 0 !important;
}

.single-work .page-content .white-box .slice-content .the-content {
  padding-top: 0;
  text-align: center;
}
.single-work .page-content .white-box .slice-content .the-content ul {
  text-align: left;
}

@media (max-width: 1700px) {
  #header #site-navs #site-nav-primary > ul > li {
    margin-right: 20px;
  }
  .slice.related-works .work-slider-container .text-container {
    right: 0;
    transform: translateY(-50%) translateX(50%);
  }
}
@media (max-width: 1620px) {
  #header #site-navs #site-nav-primary > ul > li {
    font-size: 14px;
    margin-right: 15px;
  }
}
@media (max-width: 1439px) {
  #header {
    height: 80px;
  }
  #header #site-navs {
    display: none;
  }
  #header #site-controls {
    display: block;
  }
  #main {
    margin-top: 80px;
  }
  .banner {
    height: calc(100vh - 80px);
  }
  .banner .wrapper .the-content h1, .banner .wrapper .the-content h2, .banner .wrapper .the-content h3, .banner .wrapper .the-content h4, .banner .wrapper .the-content h5, .banner .wrapper .the-content h6 {
    font-size: 45px;
  }
  .mobile-nav-primary .sub-menu {
    display: none;
  }
}
@media (max-width: 1400px) {
  .slider-controls#timeline-controls {
    width: 112%;
    padding: 0 50px;
    left: -6%;
  }
  .tax-filters {
    padding: 15px 30px;
  }
  .form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload,
  .form-container .gform_wrapper .gfield .ginput_container_address > span.ginput_container_fileupload {
    width: 100%;
    float: none;
    max-width: 225px;
  }
  .form-container .gform_footer {
    width: 100%;
    margin-top: 15px;
    float: none;
  }
}
@media (max-width: 1365px) {
  .mobile-slider {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .tns-outer {
    width: 100% !important;
  }
  .banner > .banner-nav .inner {
    padding: 0;
  }
  .banner > .banner-nav .banner-nav-btn {
    justify-content: center;
  }
}
@media (max-width: 1280px) {
  #home-about .img-hex-container {
    right: -150px;
  }
  .tax-product-industry .slice.page-content {
    padding: 300px 0 30px 0;
  }
  .slice.related-works .work-slider-container .text-container {
    transform: translateY(-60%) translateX(50%);
  }
  .single-work .servs-slice {
    padding: 25px 0 50px;
  }
  .single-work .servs-slice .service-block .icon-container {
    margin-right: 20px;
  }
  .single-work #work-about {
    padding: 300px 0 50px;
  }
  .single-work .related-work {
    padding-top: 80px;
  }
}
@media (max-width: 1199px) {
  .tax-filters {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .row.gutter-160 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.gutter-160 > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row.gutter-100 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.gutter-100 > div[class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .row.gutter-60 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.gutter-60 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .news.home {
    padding-bottom: 50px;
  }
  #home-about,
  .tax-product-industry .page-content {
    padding-bottom: 50px;
  }
  .tax-filters {
    display: none;
  }
  .category-filter-dropdown {
    display: block;
    margin-bottom: 40px;
  }
  .timeline-block .year {
    width: 200px;
  }
  .tax-product-industry .slice.page-content {
    /*.img-hex-container{
    	#hex-image-1{
    		top: auto;
    		left: auto;
    		bottom: 0;
    		right: 0;
    	}
    	#hex-image-2{
    		top: 0;
    		bottom: auto;
    		right: auto;
    		left: 10%;
    	}

    }*/
  }
  .slice {
    padding: 25px 0;
  }
  .slice.related-works {
    padding-top: 50px;
  }
  .slice.related-works .mobile-only {
    display: block;
  }
  .slice.related-works .mobile-only .text-container {
    margin: 0 auto;
  }
  .slice.related-works .work-slider-container {
    width: 85%;
  }
  .slice.related-works .work-slider-container .desktop-only {
    display: none !important;
  }
  .slice.social-share {
    float: none;
    margin: 0px 0 0 0;
    position: absolute;
    top: -50px;
    right: 0;
  }
  .slice.career.page-content {
    padding-top: 50px;
  }
  .single-product .banner .the-content {
    padding: 30px 0;
  }
  .single-product .page-content .industry-label {
    margin-top: 0px;
    padding-top: 30px;
    width: 100%;
  }
  .single-product .page-content .industry-label span {
    margin-right: 30px;
    margin-bottom: 20px;
  }
  .single-product .page-content .the-content {
    padding-top: 20px;
  }
  .single-product .page-content .the-content h2 br, .single-product .page-content .the-content h3 br, .single-product .page-content .the-content h4 br {
    display: none;
  }
  .single-product .page-content .social-share {
    float: none;
    position: absolute;
    margin-top: 0px;
    top: 0px;
    right: 0;
  }
  .single-work .page-content .product-label {
    margin-top: 0;
  }
  .single-work .page-content .row.gutter-60 > div {
    margin-bottom: 30px;
  }
  .single-work .page-content .slice-content .the-content {
    padding-top: 50px;
  }
  .work-block .block-content .product-label {
    width: 100%;
  }
  .work-block .block-content p {
    font: 300 16px/1.65em "Montserrat", sans-serif;
    margin-bottom: 30px;
  }
  .career-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .career-block h3 {
    font-size: 24px;
  }
  .chosen-select select {
    border-radius: 3px;
    border: 2px solid var(--color-primary);
    padding: 20px 25px;
    font: normal 16px "Graphik", sans-serif;
    width: 100%;
    background: #ffffff;
  }
}
@media (max-width: 991px) {
  #home-about {
    padding: 100px 0 0;
  }
  #home-about .img-hex-container {
    position: relative;
    margin-inline: auto;
    right: 0px;
  }
  .news.home {
    padding-bottom: 50px;
  }
  .news.home .col-featured-block {
    margin-bottom: 75px;
  }
  .news-block .image {
    margin-bottom: 30px;
  }
  .news-block .text .excerpt {
    margin-bottom: 30px;
  }
  .news-block.small {
    margin-bottom: 40px;
  }
  .slice.about-text-block {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .slice.about-text-block .text-container {
    width: 100%;
    margin-bottom: 80px;
  }
  .slice.about-text-block + .slice {
    padding-top: 0px;
  }
  .slice.related-works {
    padding: 50px 0;
  }
  .slice.related-works .work-slider-container {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0 20px;
    margin: 50px auto 0;
  }
  .slice.single-career .slice-content .the-content {
    margin-bottom: 50px;
  }
  .slice.related-works .wrapper {
    width: 100%;
    padding: 0 20px;
  }
  .slice.related-works .wrapper .row {
    margin-left: 0;
    margin-right: 0;
  }
  .slice.related-articles .wrapper {
    width: calc(100% - 40px);
  }
  .white-box {
    padding: 30px 40px;
    margin-bottom: 30px;
  }
  .timeline-block .timeline-block-content .text h3 {
    font-size: 28px;
  }
  #product-slider-ow {
    padding: 0 50px !important;
  }
  .slider-controls span svg {
    width: 50px;
  }
  .slider-controls#work-slider-controls {
    width: 100px;
    right: 45px;
  }
  .filters-container > div {
    margin-bottom: 30px;
  }
  .single-work .servs-slice .service-block {
    margin-bottom: 50px;
  }
  #footer .footer-content {
    padding: 50px 0;
  }
  #footer .footer-content .col-logo {
    text-align: center;
  }
  #footer .footer-content .col-newsletter {
    padding: 30px 0;
  }
  #footer .footer-content .col-socials {
    justify-content: center !important;
  }
  #footer .footer-metas .col-nav {
    margin-bottom: 20px;
  }
  #footer .footer-metas .col-nav ul {
    text-align: center;
  }
  #footer .footer-metas .col-copyrights {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .news.home .slice-intro {
    text-align: center !important;
  }
  .news.home .slice-intro h2 {
    text-align: center !important;
  }
  .news.home .slice-intro h2:after {
    margin: 40px auto 0;
  }
  .slice-intro h2 {
    font-size: 28px;
  }
  .wrapper.big {
    padding: 0 25px;
  }
  .banner {
    max-height: 100%;
    height: 60vh;
    min-height: 400px;
  }
  .banner > .decorations {
    mix-blend-mode: normal;
  }
  .banner > .decorations .decoration-1 {
    top: 0;
    left: 0;
    width: 75%;
  }
  .banner > .decorations .decoration-2 {
    display: none;
  }
  .banner .post-metas {
    margin-top: 50px;
  }
  .banner .wrapper .the-content h1, .banner .wrapper .the-content h2, .banner .wrapper .the-content h3, .banner .wrapper .the-content h4, .banner .wrapper .the-content h5, .banner .wrapper .the-content h6 {
    margin-top: 30px;
    font-size: 30px;
    line-height: 120%;
  }
  .banner .wrapper .the-content h1 em, .banner .wrapper .the-content h2 em, .banner .wrapper .the-content h3 em, .banner .wrapper .the-content h4 em, .banner .wrapper .the-content h5 em, .banner .wrapper .the-content h6 em {
    padding: 5px 14px;
  }
  .banner.small {
    height: auto;
    max-height: 100%;
  }
  .banner .banner-meta {
    width: 100%;
    margin-bottom: 20px;
  }
  .buttons {
    display: block;
  }
  .buttons > div,
  .buttons > .btn,
  .is-button.buttons > a,
  .form-container .gform_footer .buttons > input[type=submit] {
    margin: 0 0 15px 0;
  }
  .buttons > div:last-child,
  .buttons > .btn:last-child,
  .is-button.buttons > a:last-child,
  .form-container .gform_footer .buttons > input[type=submit]:last-child {
    margin-bottom: 0;
  }
  .buttons .btn, .buttons .is-button > a, .buttons .form-container .gform_footer input[type=submit], .form-container .gform_footer .buttons input[type=submit] {
    width: 100%;
  }
  .title, .product-category-block .bottom .label, .single-career.page-content .the-content h2,
  .product.page-content .the-content h2,
  .work.page-content .the-content h2 {
    font-size: 28px;
  }
  .news-block .text h4 {
    font-size: 20px;
  }
  .news-block.spotlight h4 {
    font-size: 28px;
  }
  #pop-up-form {
    padding: 40px 20px;
  }
  .slice.page-content {
    margin-top: 0px;
  }
  .slice.get-a-quote .form-container {
    padding: 0 15px;
  }
  .slice.related-articles .col-featured-block {
    margin-bottom: 50px;
  }
  .tax-product-industry .slice.page-content {
    padding: 300px 0px 0px 0px;
    margin-top: 100px;
  }
  .featured-work-block .block-content h3 {
    font-size: 22px;
  }
  .single-post .page-content .the-content {
    padding-top: 50px;
  }
  #pop-up-form .form-container .gform_footer,
  .form-container .gform_footer {
    width: 100% !important;
    margin-top: 0px !important;
  }
  .page-content.products .slice-intro {
    margin: 50px auto 60px;
  }
  .page-content.products .slice-intro .title, .page-content.products .slice-intro .product-category-block .bottom .label, .product-category-block .bottom .page-content.products .slice-intro .label, .page-content.products .slice-intro .single-career.page-content .the-content h2, .single-career.page-content .the-content .page-content.products .slice-intro h2,
  .page-content.products .slice-intro .product.page-content .the-content h2,
  .product.page-content .the-content .page-content.products .slice-intro h2,
  .page-content.products .slice-intro .work.page-content .the-content h2,
  .work.page-content .the-content .page-content.products .slice-intro h2 {
    font-size: 40px;
  }
  .single-work .servs-slice .service-block {
    margin-bottom: 35px !important;
  }
  .single-work .servs-slice .service-block:last-child {
    margin-bottom: px !important;
  }
}
@media (max-width: 640px) {
  #header #site-logos {
    width: 230px;
  }
  .white-box {
    padding: 30px 20px;
  }
  #mobile-nav {
    padding-top: 50px;
  }
  #mobile-nav > ul > li {
    font: bold 20px/1em "Graphik", sans-serif;
  }
  .the-content * br {
    display: none;
  }
  .banner.home {
    height: 80vh;
  }
  .banner.small .banner-content p {
    font: normal 16px/140% proxima-nova, sans-serif;
  }
  .contact-block .the-content p br {
    display: block !important;
  }
  #home-about {
    padding: 100px 0 0;
  }
  #home-about .img-hex-container {
    width: 90%;
  }
  .slice.page-content {
    padding: 50px 20px;
  }
  .slice.page-content .wrapper {
    width: 100%;
  }
  .slice.page-content .social-share {
    float: left;
    margin: -30px 0px 0 0px;
  }
  .slice.timeline .wrapper {
    width: 100%;
    padding: 0 35px;
  }
  .social-share ul li:last-child {
    margin-right: 0;
  }
  .slice-intro h2 {
    font-size: 28px;
  }
  .filters-container {
    margin-bottom: 20px;
  }
  .single-work .page-content .social-share {
    float: none;
    margin: 0px 30px 0 0px;
  }
  .single-work .page-content .product-label {
    margin-top: 30px;
    width: 100%;
  }
  .tax-product-industry .slice.page-content {
    padding: 300px 35px 0px 35px;
  }
  .product-text .wrapper {
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
  }
  .product-text .wrapper .slice-content {
    text-align: left !important;
  }
  #timeline-slider-ow {
    margin-top: -50px;
  }
  .timeline-block .year {
    font-size: 25px;
    top: 10px;
  }
  .timeline-block .timeline-block-content {
    padding: 60px 20px;
    position: relative;
  }
  .timeline-block .timeline-block-content:before {
    content: "";
    display: block;
    padding-top: 103%;
  }
  .timeline-block .timeline-block-content .text {
    width: 90%;
    min-width: 90%;
  }
  .timeline-block .timeline-block-content .text.has-bg {
    background-color: transparent;
    border: none;
    padding: 0;
  }
  #timeline-controls {
    top: 53%;
  }
  .form-container .gform_wrapper .gfield .ginput_container.ginput_complex .ginput_right,
  .form-container .gform_wrapper .gfield .ginput_container.ginput_complex .ginput_left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .form-container h3 {
    display: flex;
    flex-direction: column;
  }
  .form-container h3 svg {
    position: relative;
    margin-inline: auto;
  }
}
@media (max-width: 550px) {
  .banner .post-metas img {
    width: 75px;
    margin-right: 15px;
  }
  .product-category-block {
    margin-bottom: 20px;
    display: block;
  }
  .product-category-block .bottom .label {
    font-size: 20px;
  }
  .single-product .page-content .industry-label a {
    width: 100%;
    justify-content: start !important;
  }
  .row.gutter-160 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.gutter-160 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.gutter-100 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.gutter-100 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.gutter-60 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.gutter-60 > div[class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .single-work .page-content .row.gutter-60 > div {
    margin-bottom: 10px;
  }
  .slice .slice-intro {
    text-align: center !important;
  }
  .slice .slice-intro .text-left {
    text-align: center !important;
  }
  .slice .slice-intro h2 {
    text-align: center !important;
  }
  .slice .slice-intro h2:after {
    margin: 40px auto 0;
  }
  .slice .slice-intro h2.has-underline:after, .slice .slice-intro .single-career.page-content .the-content h2:after, .single-career.page-content .the-content .slice .slice-intro h2:after,
  .slice .slice-intro .product.page-content .the-content h2:after,
  .product.page-content .the-content .slice .slice-intro h2:after,
  .slice .slice-intro .work.page-content .the-content h2:after,
  .work.page-content .the-content .slice .slice-intro h2:after {
    margin: 0 0 0 -22px !important;
  }
  .news-block.small {
    flex-wrap: wrap;
  }
  .news-block.small .image {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .news-block.small .text {
    order: 2;
  }
  .form-container .gform_wrapper .gfield.gfield--width-half {
    width: 100%;
  }
  .form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload {
    float: none;
    width: 100% !important;
  }
  .form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .form-container .gform_wrapper .gfield .ginput_container.ginput_container_fileupload + div .ginput_preview {
    padding: 5px 0;
  }
  .timeline-block .year {
    width: 150px;
  }
  .timeline-block .timeline-content {
    position: relative;
  }
  .timeline-block .timeline-content:before {
    content: "";
    display: block;
    padding-top: 115%;
  }
  .slider-controls#timeline-controls {
    top: 0;
    transform: translate(0);
    width: 100px !important;
  }
  .single-product .button-block a {
    width: 100%;
  }
  .product-block .block-content .industry-label {
    flex-wrap: wrap;
  }
  .product-block .block-content .industry-label .label .tooltip {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .banner .wrapper .the-content h1 em {
    white-space: nowrap;
  }
  .timeline-block .timeline-block-content:before {
    display: none;
  }
  .timeline-block .timeline-block-content > img {
    display: none;
  }
  .timeline-block .timeline-block-content .text {
    width: 100%;
    min-width: 100%;
  }
  .timeline-block .timeline-block-content .text h3 {
    font-size: 22px;
  }
  .timeline-block .timeline-block-content .text * {
    color: var(--color-primary) !important;
  }
  #footer form {
    flex-wrap: wrap;
  }
  #footer form .gform_body {
    flex: 0 2 auto;
    width: 100%;
    margin-bottom: 20px;
  }
  #footer form .gform_body .gfield .ginput_container input {
    text-align: center !important;
  }
  #footer form .gform_body .gfield .ginput_container input::placeholder {
    text-align: center !important;
  }
  #footer form .gform_footer {
    width: 100%;
    min-width: 130px;
  }
  .page-content.products .slice-intro {
    margin: 50px auto;
  }
  .page-content.products .slice-intro .title, .page-content.products .slice-intro .product-category-block .bottom .label, .product-category-block .bottom .page-content.products .slice-intro .label, .page-content.products .slice-intro .single-career.page-content .the-content h2, .single-career.page-content .the-content .page-content.products .slice-intro h2,
  .page-content.products .slice-intro .product.page-content .the-content h2,
  .product.page-content .the-content .page-content.products .slice-intro h2,
  .page-content.products .slice-intro .work.page-content .the-content h2,
  .work.page-content .the-content .page-content.products .slice-intro h2 {
    font-size: 35px;
  }
}
@media (max-width: 420px) {
  .form-container h3 {
    padding-left: 0px;
    padding-top: 85px;
  }
  .career-block {
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .career-block h3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .slice.related-articles:last-child {
    padding-bottom: 60px;
  }
  #footer .footer-metas .col-nav nav ul li {
    display: block;
    margin-right: 0;
  }
  #footer .footer-metas #rubik-api-copyright {
    justify-content: center;
  }
}

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