@import url(https://use.typekit.net/ujm1fki.css);

@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

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

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

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

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

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

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

@font-face {
	font-family: "tmbr-icons";
	src: url(../assets/fonts/tmbr-icons.woff2?7c9f839af11f79fa32aae1037c8bca1c) format("woff2"),
url(../assets/fonts/tmbr-icons.woff?fe451579c64c2d3fb7eca9127a1c81ca) format("woff"),
url(../assets/fonts/tmbr-icons.svg?6627e2473bb25de6c768e63a33d2b353#tmbr-icons) format("svg");
}

.icon {
	line-height: 1;
}

.icon:before {
	font-family: tmbr-icons !important;
	font-style: normal;
	font-weight: normal !important;
	vertical-align: top;
}

.icon-arrow-left:before {
	content: "\f101";
}
.icon-arrow-right:before {
	content: "\f102";
}
.icon-dot:before {
	content: "\f103";
}
.icon-phone:before {
	content: "\f104";
}
.icon-facebook:before {
	content: "\f105";
}
.icon-instagram:before {
	content: "\f106";
}
.icon-mail:before {
	content: "\f107";
}
.icon-pin:before {
	content: "\f108";
}
.icon-twitter:before {
	content: "\f109";
}
.icon-plus:before {
	content: "\f10a";
}
.icon-minus:before {
	content: "\f10b";
}
.icon-video:before {
	content: "\f10c";
}
.icon-search:before {
	content: "\f10d";
}
.icon-warning:before {
	content: "\f10e";
}

@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, p, figure {
  margin: 0;
  padding: 0;
}

article, aside, audio, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, video {
  display: block;
}

img, embed, iframe, object, audio, video {
  max-width: 100%;
  height: auto;
  border: 0;
}

button, input, select, textarea {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
}

ol, ul {
  list-style: none;
}

template, [hidden] {
  display: none !important;
}

:active,
:focus {
  outline: none;
}

::-moz-focus-inner,
a::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

:focus {
  outline: none !important;
}

::-moz-focus-inner {
  border: 0;
}

input:not([type=checkbox]),
input:not([type=radio]),
textarea,
select,
button {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

@font-face {
  font-family: "Quinta";
  src: url(../assets/fonts/BwQuintaPro-Bold.woff2?aff62186af080163e1056331c4e750cd) format("woff2"), url(../assets/fonts/BwQuintaPro-Bold.woff?c131fc2373c7582069ee581be9dc5e47) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quinta";
  src: url(../assets/fonts/BwQuintaPro-Black.woff2?857d5e12b495f868d987bd66ef1bec04) format("woff2"), url(../assets/fonts/BwQuintaPro-Black.woff?9c31d839006e9c0cd5ef270c47fb8ac8) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quinta";
  src: url(../assets/fonts/BwQuintaPro-Medium.woff2?e8728de44c5d1cb16c6a581eb74df25e) format("woff2"), url(../assets/fonts/BwQuintaPro-Medium.woff?229e1193d8dc2885153a9e386fec1014) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quinta";
  src: url(../assets/fonts/BwQuintaPro-MediumItalic.woff2?4ac91d8e988d0c191347556acdb819f8) format("woff2"), url(../assets/fonts/BwQuintaPro-MediumItalic.woff?02e4264d3fd8330eb0feaa208ee04e3c) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/* COLORS */
/* FONTS */
/* FONT WEIGHTS */
/* GUTTER */
/* SCREEN SIZE */
/* GLOBAL DIMENSIONS */
/* INTERACTION */
/* SLICK ICONS */
/*
Transform
@include transform(translateY(-50%));
--------------------- */
/*
transition
@include transition(transitionY(-50%));
--------------------- */
/*
Set Border radious for any element
@include border-radius(0px);
--------------------- */
/*
Background size with broswer prefix for cover image
@include cover-background(path/to/img.jpg);
--------------------- */
/*
Background size with broswer prefix for cover
@include background-cover(cover);
--------------------- */
/*
Positioning - Absolute / Fixed / Relative
Set position (top, right, bottom, left ) & z-index
@include absolute($t:50%, $l:0, $z: 9999);
@include relative;
--------------------- */
/*
Placeholder
--------------------- */
/*
Inline Gravity Form
#gform_wrapper_ID {
  @include inline-gform;
}
--------------------- */
/*
Style Links & Visited in one
a.link {
  @include a-link {
    color: $white;
    background: $black;
  }
}
--------------------- */
/*
Style All Active Psuedo States
a.link {
  @include a-hover {
    color: $red;
    background: $white;
  }
}
--------------------- */
/*
Style Hover State only on no-touch
a.link {
  @include no-touch {
    color: $red;
    background: $white;
  }
}
--------------------- */
html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Quinta", sans-serif;
  font-weight: normal;
  color: #737376;
  background-image: url(../assets/images/bg-texture-03.jpg?76e0617da1386ea88b3fbd42565164ed);
  background-color: #f8f8f4;
}

section {
  display: inline-block;
  width: 100%;
}

:root {
  --ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
  --ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  --ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
  --ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  --ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
  --ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
  --ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335);
  --ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045);
  --ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  --ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  --ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
  --ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  --ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  --ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
  --ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275);
  --ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  --ease-in-out-quart: cubic-bezier(0.770, 0.000, 0.175, 1.000);
  --ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  --ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550);
}

[data-animate] {
  transition-delay: 0;
  transition-duration: var(--animate-duration, 1000ms);
  transition-timing-function: var(--animate-ease, var(--ease-out-quad));
}

[data-animate~=fade-in] {
  opacity: 0;
  transition-property: opacity;
}
[data-animate~=fade-in].animate {
  opacity: 1;
}

[data-animate~=fade-up] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition-property: opacity, transform;
}
[data-animate~=fade-up].animate {
  opacity: 1;
  transform: none;
}

[data-animate~=fade-down] {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
  transition-property: opacity, transform;
}
[data-animate~=fade-down].animate {
  opacity: 1;
  transform: none;
}

[data-animate~=fade-left] {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition-property: opacity, transform;
}
[data-animate~=fade-left].animate {
  opacity: 1;
  transform: none;
}

[data-animate~=fade-right] {
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition-property: opacity, transform;
}
[data-animate~=fade-right].animate {
  opacity: 1;
  transform: none;
}

/* FONT SIZES */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6 {
  margin: 0 0 1rem 0;
  line-height: 1.1;
  font-family: grad, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: #455E56;
}

h1,
.h1 {
  font-size: 5.5rem;
  /* 4em */
}
@media all and (max-width: 991px) {
  h1,
.h1 {
    font-size: 4.5rem;
  }
}
@media all and (max-width: 599px) {
  h1,
.h1 {
    font-size: 3.5rem;
  }
}

h2,
.h2 {
  font-size: 3.5rem;
}
@media all and (max-width: 991px) {
  h2,
.h2 {
    font-size: 3rem;
  }
}
@media all and (max-width: 599px) {
  h2,
.h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}
@media all and (max-width: 767px) {
  h3,
.h3 {
    font-size: 1.5rem;
  }
}

h4,
.h4 {
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  font-weight: normal;
}
@media all and (max-width: 767px) {
  h4,
.h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}

p {
  font-family: "Quinta", sans-serif;
  font-weight: normal;
  color: #737376;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.small {
  font-size: 0.875rem;
}

.lead,
.lead p {
  font-size: 1.25rem;
}

a {
  color: #002654;
  line-height: 1.75rem;
  text-decoration: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
a:hover, a:focus, a:active {
  text-decoration: underline;
  outline: none;
}

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

i,
em {
  font-style: italic;
}

.icon {
  line-height: 1.8;
}

::-moz-selection {
  background: #455E56;
  color: #FFF;
}

::selection {
  background: #455E56;
  color: #FFF;
}

mark {
  color: #FFF;
  background-color: #002654;
}

.center {
  text-align: center;
}

.subhead {
  text-transform: uppercase;
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  color: #002654;
}
.subhead:before {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: -7rem;
  height: 7px;
  width: 6rem;
  content: "";
  background-color: #002654;
}
@media all and (max-width: 767px) {
  .subhead {
    margin-bottom: 3rem;
  }
  .subhead:before {
    left: 0;
    top: 2rem;
  }
}

.drop-shadow {
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

.arrow-link {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.arrow-link:after {
  font-family: "tmbr-icons";
  content: "";
  font-size: 0.8rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: -1.5rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.arrow-link:hover {
  text-decoration: none;
}
.arrow-link:hover:after {
  right: -2rem;
}

.slick-arrow {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  color: #002654;
  cursor: pointer;
  height: 25px;
  width: 25px;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  z-index: 5;
}
.slick-arrow:hover {
  color: #455E56;
}
.slick-arrow.slick-next {
  right: -30px;
}
.slick-arrow.slick-prev {
  left: -30px;
}

.post-edit-link {
  text-align: center;
  padding: 8px 20px;
  text-transform: uppercase;
  bottom: 0;
  left: 50%;
  z-index: 10000;
  position: fixed;
  margin-left: -75px;
  width: 150px;
  display: inline-block;
  background-color: #455E56;
  color: #FFF;
  font-weight: bold;
}

/* INPUTS
.gf_wrapper input[type=text] {
  @extend %input;
}
======================== */
textarea,
select,
input[type=text] {
  color: #002654;
}
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder {
  color: #002654;
  text-transform: uppercase;
}
textarea:-moz-placeholder,
select:-moz-placeholder,
input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  color: #002654;
  text-transform: uppercase;
}
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  color: #002654;
  text-transform: uppercase;
}
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder {
  color: #002654;
  text-transform: uppercase;
}

textarea,
select,
input[type=text] {
  border: 1px solid #ddd;
}

input[type=text] {
  height: 3rem;
}

input::-moz-focus-inner {
  border: 0;
}

select,
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

textarea,
input[type=text],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

select option {
  color: #000;
}
select option:checked {
  color: #455E56;
}
select::-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type=submit] {
  padding: 10px 45px !important;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.flex-form .gform_wrapper .gfield, .flex-wave-section .gform_wrapper .gfield, .form-modal .gform_wrapper .gfield {
  padding: 10px 0;
  margin-top: 0;
}
.flex-form .gform_wrapper .gfield .gfield_label, .flex-wave-section .gform_wrapper .gfield .gfield_label, .form-modal .gform_wrapper .gfield .gfield_label {
  display: none !important;
}
.flex-form .gform_wrapper .gfield .ginput_container_name label, .flex-wave-section .gform_wrapper .gfield .ginput_container_name label, .form-modal .gform_wrapper .gfield .ginput_container_name label {
  display: none !important;
}
.flex-form .gform_wrapper .gfield.visible_label .gfield_label, .flex-wave-section .gform_wrapper .gfield.visible_label .gfield_label, .form-modal .gform_wrapper .gfield.visible_label .gfield_label {
  display: inline-block !important;
}
.flex-form .gform_wrapper .gfield.visible_label .ginput_container_name label, .flex-wave-section .gform_wrapper .gfield.visible_label .ginput_container_name label, .form-modal .gform_wrapper .gfield.visible_label .ginput_container_name label {
  display: inline-block !important;
}
.flex-form .gform_wrapper .gfield_checkbox li label, .flex-wave-section .gform_wrapper .gfield_checkbox li label, .form-modal .gform_wrapper .gfield_checkbox li label {
  margin: 8px 0 0 5px;
  font-size: 1.1rem;
}
.flex-form .gform_wrapper .ginput_container_radio, .flex-wave-section .gform_wrapper .ginput_container_radio, .form-modal .gform_wrapper .ginput_container_radio {
  margin-top: 0 !important;
}
.flex-form .gform_wrapper .gfield_radio li, .flex-wave-section .gform_wrapper .gfield_radio li, .form-modal .gform_wrapper .gfield_radio li {
  margin-right: 25px !important;
  margin-bottom: 0 !important;
}
.flex-form .gform_wrapper .gfield_radio li label, .flex-wave-section .gform_wrapper .gfield_radio li label, .form-modal .gform_wrapper .gfield_radio li label {
  margin: 8px 0 0 10px;
  font-size: 1.1rem;
  color: #FFF;
}
@media all and (max-width: 991px) {
  .flex-form .gform_wrapper .gfield_radio li, .flex-wave-section .gform_wrapper .gfield_radio li, .form-modal .gform_wrapper .gfield_radio li {
    width: 100%;
  }
}
.flex-form .gform_wrapper .gform_fields .ginput_container input, .flex-wave-section .gform_wrapper .gform_fields .ginput_container input, .form-modal .gform_wrapper .gform_fields .ginput_container input {
  padding: 0;
  padding-left: 15px;
  line-height: 40px;
  height: 40px;
}

#gform_wrapper_5 .gform_wrapper .gfield .gfield_label {
  display: inline-block !important;
}

.search-form {
  width: 100%;
  height: 100%;
}
.search-form .screen-reader-text {
  display: none;
}
.search-form .search-field {
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #002654;
  border: none;
  padding: 0 2rem;
}
.search-form .search-field::-webkit-input-placeholder {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.search-form .search-field:-moz-placeholder {
  /* Firefox 18- */
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.search-form .search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.search-form .search-field:-ms-input-placeholder {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.search-form .search-submit {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 1.5rem;
  background-color: transparent;
  color: #FFF;
}

.bg-image {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}

.btn, input[type=submit] {
  background-color: #002654;
  color: #FFF;
  display: inline-block;
  padding: 10px 35px;
  border: none;
  font-size: 1rem;
  font-weight: 900;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  line-height: 1.8rem;
}
.btn:after, input[type=submit]:after {
  font-family: "tmbr-icons";
  content: "";
  font-size: 0.7rem;
  margin-left: 10px;
}

.btn.active, .btn:hover, .btn:active, .btn:focus, input[type=submit]:hover {
  color: #FFF;
  padding: 10px 45px;
  text-decoration: none;
}

.btn-white {
  background-color: #FFF;
  color: #002654;
}
.btn-white:hover, .btn-white:active, .btn-white:focus {
  color: #002654;
}

.btn-green {
  background-color: #455E56;
}

.btn-light-green {
  background-color: #7A958D;
}

.btn-arrow {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 10px 16px;
  position: absolute;
  transform-origin: center;
  color: #FFF;
}
.btn-arrow:after {
  display: none;
}
.btn-arrow:hover, .btn-arrow:active, .btn-arrow:focus {
  padding: 10px 15px;
  transform: scale(1.2);
}

.social-links ul li {
  font-size: 1.5rem;
  display: inline-block;
  margin: 0 5px;
}

.post-nav {
  text-align: center;
  padding-bottom: 4rem;
}
.post-nav .pager li {
  display: inline-block;
  padding: 0 15px;
}
.post-nav .pager li a, .post-nav .pager li span {
  font-size: 2rem;
}
.post-nav .pager li.next, .post-nav .pager li.previous {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.75;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.6;
}
.slick-prev:before,
.slick-next:before {
  font-family: "tmbr-icons";
  font-size: 32px;
  line-height: 1;
  color: #002654;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

.timeline-slider .slick-prev,
.timeline-slider .slick-next {
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  top: -3rem;
  padding: 15px;
  background-color: #002654;
  border-radius: 50% 50%;
}
.timeline-slider .slick-prev:hover:before, .timeline-slider .slick-prev:focus:before,
.timeline-slider .slick-next:hover:before,
.timeline-slider .slick-next:focus:before {
  opacity: 0.8;
}
.timeline-slider .slick-prev.slick-disabled:before,
.timeline-slider .slick-next.slick-disabled:before {
  opacity: 1;
}
.timeline-slider .slick-prev:before,
.timeline-slider .slick-next:before {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 20px;
  height: 40px;
}
.timeline-slider .slick-prev {
  left: auto;
  right: 9rem;
}
.timeline-slider .slick-prev:before {
  content: url(../assets/images/arrow-left.svg?31d1b3f52c1f72b8bc5f1bb435cc458f);
}
.timeline-slider .slick-next {
  right: 5rem;
}
.timeline-slider .slick-next:before {
  content: url(../assets/images/arrow-right.svg?52516290b8b98de28691696691fce808);
}
@media all and (max-width: 991px) {
  .timeline-slider .slick-prev {
    left: 1rem;
    right: auto;
  }
  .timeline-slider .slick-next {
    right: auto;
    left: 5rem;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 120px;
  list-style: none;
  display: block;
  text-align: left;
  padding: 0;
  margin: 0;
  width: 100%;
  padding-left: 4rem;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: 0 5px;
  padding: 8px;
  cursor: pointer;
}
.slick-dots li button {
  background-color: #FFF;
  display: block;
  height: 3px;
  width: 30px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  padding: 3px;
  opacity: 0.6;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button {
  background-color: #FFF;
  opacity: 1;
}
@media all and (max-width: 991px) {
  .slick-dots {
    display: none !important;
  }
}

.form-modal {
  background-color: #455E56;
  padding: 4rem;
  margin-bottom: -5px;
  position: relative;
  width: auto;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}
.form-modal .form-wrap {
  width: 100%;
}
.form-modal .form-wrap .gform_wrapper .gform_fields .gfield {
  width: 100% !important;
}
.form-modal .form-wrap .gform_wrapper .gform_fields .gfield input {
  width: 100%;
}

.post-navigation {
  display: flex;
  flex-wrap: wrap;
  height: 600px;
  position: relative;
}
.post-navigation .page-link {
  display: block;
  position: relative;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.post-navigation .page-link .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.post-navigation .page-link .text-content {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  margin: 0;
}
.post-navigation .page-link:hover .overlay {
  background-color: rgba(34, 61, 67, 0.7);
}
@media all and (max-width: 991px) {
  .post-navigation .page-link {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .post-navigation .page-link {
    width: 100%;
  }
}

.contact-bar {
  background-color: #455E56;
  padding: 4rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-bar h2 {
  color: #FFF;
  text-align: center;
  margin-bottom: 0;
  font-size: 3rem;
  margin-right: 2rem;
}
.contact-bar .btn {
  line-height: 2rem;
}
@media all and (max-width: 1199px) {
  .contact-bar span {
    width: 100%;
  }
}
@media all and (max-width: 991px) {
  .contact-bar {
    padding: 6rem 0;
    width: 100%;
    display: inline-block;
    text-align: center;
  }
  .contact-bar h2 {
    margin-bottom: 2rem;
    margin-right: 0;
    font-size: 2rem;
  }
}

.breadcrumbs {
  padding: 4rem 8rem 0;
  margin-bottom: -4rem;
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  display: block;
  position: relative;
}
@media all and (max-width: 1199px) {
  .breadcrumbs {
    padding: 4rem;
    margin-bottom: -2rem;
  }
}
@media all and (max-width: 767px) {
  .breadcrumbs {
    padding: 2rem 6rem 1rem;
  }
}
@media all and (max-width: 599px) {
  .breadcrumbs {
    padding: 2rem 2rem 1rem;
  }
}

.related-posts {
  padding: 4rem 8rem;
}
.related-posts .section-title {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}
.related-posts .loop-item .loop-meta {
  color: #002654;
}
@media all and (max-width: 991px) {
  .related-posts {
    padding: 4rem;
  }
}
@media all and (max-width: 767px) {
  .related-posts {
    padding: 4rem 2rem;
  }
}

.navbar {
  border: none;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  top: 0;
  z-index: 50;
  display: block;
  /* RESPONSIVE */
  /* SCROLLED  */
}
.navbar .navbar-main {
  height: 60px;
  background-color: #FFF;
  position: relative;
}
.navbar .navbar-main .scrolled-logo {
  display: none;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin-left: 2rem;
  width: 80px;
  padding-top: 8px;
}
.navbar .navbar-main .navbar-hamburger {
  display: none;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 5rem;
  width: 30px;
}
.navbar .navbar-main .navbar-hamburger:after, .navbar .navbar-main .navbar-hamburger:before, .navbar .navbar-main .navbar-hamburger span {
  background-color: #002654;
  border-radius: 3px;
  content: "";
  display: block;
  height: 3px;
  margin: 7px 0;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-main .navbar-hamburger.-collapsed:before {
  transform: translateY(10px) rotate(135deg);
}
.navbar .navbar-main .navbar-hamburger.-collapsed:after {
  transform: translateY(-10px) rotate(-135deg);
}
.navbar .navbar-main .navbar-hamburger.-collapsed span {
  transform: scale(0);
}
.navbar .navbar-main .navbar-menu {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 4rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.navbar .navbar-main .navbar-menu .parent-menu {
  float: right;
  margin-top: -1px;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item {
  display: inline-block;
  padding: 0 1rem;
  position: relative;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item a {
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  font-weight: 900;
  color: #002654;
  line-height: 60px;
  display: block;
  position: relative;
  z-index: 10;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu {
  width: 0;
  visibility: hidden;
  opacity: 0;
  right: 0;
  position: absolute;
  background: #002654;
  padding: 1rem 2rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition-delay: 100ms;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu > .menu-item a {
  width: calc(240px - 4rem);
  color: #FFF;
  pointer-events: none;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu > .menu-item a:hover {
  color: #9BC1D9;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children > a:after {
  content: "‹";
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: -15px;
  font-size: 1.4rem;
  transform: translateY(-50%) rotate(-90deg);
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item:hover a {
  text-decoration: none;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item:hover.menu-item-has-children .sub-menu {
  width: 240px;
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item:hover.menu-item-has-children .sub-menu > .menu-item a {
  pointer-events: auto;
}
.navbar .navbar-main .navbar-menu .parent-menu > .menu-item.active:after {
  width: 100%;
}
.navbar .navbar-main .nav-search {
  display: inline-block;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 30px;
}
.navbar .navbar-main .search-bar {
  top: 60px;
  right: 0;
  position: absolute;
  width: 400px;
  background-color: #002654;
  height: 50px;
  display: none;
  z-index: 15;
}
.navbar .navbar-main .search-bar.-open {
  display: inline-block;
}
@media all and (max-width: 1199px) {
  .navbar .navbar-main .navbar-hamburger {
    display: inline-block;
  }
  .navbar .navbar-main .navbar-brand {
    display: none;
  }
  .navbar .navbar-main .nav-wrap {
    position: relative;
    background: white;
    height: 4rem;
  }
  .navbar .navbar-main .scrolled-logo {
    display: inline-block;
  }
  .navbar .navbar-main .navbar-menu {
    display: none;
  }
  .navbar .navbar-main .navbar-menu.-open {
    display: inline-block;
    width: 100%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: 60px;
    margin-top: -5px;
    background-color: #002654;
    -webkit-overflow-scrolling: touch;
  }
  .navbar .navbar-main .navbar-menu .parent-menu {
    float: left;
    width: 100%;
    height: 100%;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item {
    width: 100%;
    display: block;
    border-top: 1px solid #ddd;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item a {
    font-size: 1.2rem;
    color: #FFF;
    line-height: 60px;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item:after {
    display: none;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item:hover a {
    color: #FFF;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children a:after {
    right: 0;
    font-size: 1.9rem;
    transform: translateY(-50%) rotate(180deg);
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children.-open a:after {
    transform: translateY(-50%) rotate(270deg);
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu {
    background-color: #002654;
    display: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    position: relative;
    text-align: left;
    padding: 0 0 15px 15px;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu .menu-item a {
    color: #FFF;
    line-height: 30px;
  }
  .navbar .navbar-main .navbar-menu .parent-menu > .menu-item.menu-item-has-children .sub-menu.-open {
    display: block;
  }
}
@media all and (max-width: 767px) {
  .navbar .navbar-main .search-bar {
    top: 30px;
    right: 0;
    position: absolute;
    width: 100%;
    background-color: #002654;
    height: 50px;
    display: none;
    z-index: 15;
  }
  .navbar .navbar-main .search-bar.-open {
    display: inline-block;
  }
}
.navbar.scrolled {
  position: fixed;
  background-color: #002654;
}
.navbar.scrolled .navbar-brand {
  display: none;
}

.navbar-brand {
  height: auto;
  padding: 0;
  bottom: -7rem;
  left: 5rem;
  position: absolute;
  z-index: 15;
  width: 230px;
}
.navbar-brand .logo {
  max-width: 100%;
  opacity: 1;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.navbar-brand .logo:hover {
  opacity: 0.6;
}
@media all and (max-width: 1199px) {
  .navbar-brand {
    display: none;
  }
}

.home-hero {
  width: 100%;
  height: 85vh;
  min-height: 760px;
  position: relative;
}
.home-hero .hero-slide {
  height: 85vh;
  min-height: 760px;
  position: relative;
  width: 100%;
}
.home-hero .hero-slide .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
}
.home-hero .hero-slide .hero-caption {
  z-index: 2;
  padding: 0 2rem 0 12rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  margin-top: -2rem;
}
.home-hero .hero-slide .hero-caption .subhead {
  color: #FFF;
}
.home-hero .hero-slide .hero-caption .hero-title {
  width: 100%;
  color: #FFF;
  margin: 0;
  font-size: 5rem;
}
.home-hero .hero-slide .hero-caption .hero-title .indent {
  margin-left: 8rem;
}
@media all and (min-width: 1680px) {
  .home-hero .hero-slide .hero-caption .hero-title .indent {
    margin-left: 10rem;
  }
}
@media all and (max-width: 1199px) {
  .home-hero .hero-slide .hero-caption {
    padding: 0 2rem 0 8rem;
  }
  .home-hero .hero-slide .hero-caption .hero-title .indent {
    margin-left: 6rem;
  }
}
@media all and (max-width: 767px) {
  .home-hero {
    min-height: initial;
    height: auto;
  }
  .home-hero .hero-slide {
    min-height: initial;
    height: 450px;
  }
  .home-hero .hero-slide .hero-caption {
    padding: 0 2rem;
    margin-top: 4rem;
  }
  .home-hero .hero-slide .hero-caption .hero-title {
    font-size: 2.5rem;
  }
  .home-hero .hero-slide .hero-caption .hero-title .indent {
    margin-left: 0;
  }
  .home-hero .hero-slide .hero-caption .btn {
    margin-top: 2rem;
    float: right;
    position: relative;
  }
}

.full-widgets {
  display: block;
  width: calc(100% - 16rem);
  height: 450px;
  margin: -100px auto 0;
  background-color: #E8E8E4;
  position: relative;
}
.full-widgets .widget-tabs {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #455E56;
  position: relative;
}
.full-widgets .widget-tabs .widget-link {
  display: contents;
}
.full-widgets .widget-tabs .widget-link:hover {
  text-decoration: none;
}
.full-widgets .widget-tabs .tab-widget {
  height: 33.333%;
  width: 100%;
  padding: 2.5rem;
  display: flex;
}
.full-widgets .widget-tabs .tab-widget .widget-icon {
  width: 28%;
  position: relative;
}
.full-widgets .widget-tabs .tab-widget .widget-icon:after {
  content: "";
  top: 0;
  right: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid white;
  background-color: #36A988;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}
.full-widgets .widget-tabs .tab-widget .widget-icon.-yellow:after {
  background-color: #EBA721;
}
.full-widgets .widget-tabs .tab-widget .widget-icon.-red:after {
  background-color: #EB2121;
}
.full-widgets .widget-tabs .tab-widget .widget-content {
  margin-left: 2rem;
}
.full-widgets .widget-tabs .tab-widget .widget-content h5 {
  color: #FFF;
  margin-bottom: 0.5rem;
}
.full-widgets .widget-tabs .tab-widget .widget-content p {
  font-size: 1.2rem;
  color: #9BC1D9;
}
.full-widgets .widget-tabs .tab-widget.schedule-widget .widget-icon {
  width: 22%;
}
.full-widgets .widget-tabs .tab-widget.schedule-widget .widget-icon:after {
  display: none;
}
.full-widgets .widget-tabs .tab-widget.parking-widget {
  background-color: #5b7b71;
}
.full-widgets .widget-tabs .tab-widget.parking-widget .widget-icon {
  top: 0.5rem;
}
.full-widgets .widget-tabs .tab-widget.parking-widget .widget-icon:after {
  top: -5px;
  right: 20px;
  position: absolute;
}
.full-widgets .widget-tabs .tab-widget.weather-widget {
  background-color: #506d63;
}
.full-widgets .widget-tabs .tab-widget.weather-widget .widget-icon:after {
  display: none;
}
.full-widgets .widget-tabs .tab-widget.weather-widget .wi {
  font-size: 3.5rem;
  color: #FFF;
  margin-left: 1rem;
}
@media all and (min-width: 1680px) {
  .full-widgets .widget-tabs .tab-widget .widget-icon {
    width: 22%;
  }
}
@media all and (max-width: 1199px) {
  .full-widgets {
    width: 100%;
  }
}
@media all and (max-width: 991px) {
  .full-widgets .widget-tabs .tab-widget .widget-icon:after {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    right: -5px;
  }
  .full-widgets .widget-tabs .tab-widget.parking-widget .widget-icon:after {
    right: 15px;
  }
}
@media all and (max-width: 767px) {
  .full-widgets {
    height: auto;
    margin-top: -3rem;
  }
  .full-widgets .widget-tabs {
    width: 100%;
  }
  .full-widgets .widget-tabs .tab-widget {
    height: auto;
    padding: 2rem 4rem;
    justify-content: center;
  }
  .full-widgets .widget-tabs .tab-widget .widget-icon {
    width: 20%;
  }
  .full-widgets .widget-tabs .tab-widget .widget-icon:after {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    right: 0;
  }
  .full-widgets .widget-tabs .tab-widget.parking-widget .widget-icon:after {
    right: 30px;
  }
  .full-widgets .widget-tabs .tab-widget.schedule-widget .widget-icon {
    width: 15%;
  }
}
@media all and (max-width: 599px) {
  .full-widgets .widget-tabs .tab-widget p {
    margin-bottom: 0;
  }
  .full-widgets .widget-tabs .tab-widget .widget-icon {
    width: 50%;
  }
  .full-widgets .widget-tabs .tab-widget .widget-icon:after {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    right: 10px;
  }
  .full-widgets .widget-tabs .tab-widget.schedule-widget .widget-icon {
    width: 25%;
  }
  .full-widgets .widget-tabs .tab-widget.parking-widget .widget-icon:after {
    right: 60px;
  }
}

.mfp-container {
  padding: 0;
}
.mfp-container .mfp-close {
  color: #455E56;
  font-size: 5rem;
  right: 1rem;
  top: 1rem;
}

.widget-popup {
  height: 100vh;
  width: 100%;
  background-color: #E8E8E4;
  position: relative;
}
.widget-popup .popup-wrap {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding: 0 10rem;
  width: 100%;
}
.widget-popup .popup-cta {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: #002654;
  padding: 2rem 8rem;
}
.widget-popup .popup-cta h3 {
  color: #FFF;
}
.widget-popup .popup-cta a {
  color: #9BC1D9;
}
@media all and (max-width: 991px) {
  .widget-popup .popup-wrap {
    padding: 0 8rem;
  }
}
@media all and (max-width: 767px) {
  .widget-popup .popup-wrap {
    padding: 0 2rem;
    max-width: 100%;
  }
  .widget-popup .popup-cta {
    display: none;
  }
}

.parking-popup .parking-lots {
  margin-top: 3em;
  margin-bottom: 3em;
  display: flex;
  gap: 3em;
}
.parking-popup .parking-lots h3 {
  white-space: nowrap;
}
.parking-popup .parking-lots h5 {
  font-size: 1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.parking-popup .parking-lots h5:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #36A988;
}
.parking-popup .parking-lots h5.-yellow:before {
  background-color: #EBA721;
}
.parking-popup .parking-lots h5.-red:before {
  background-color: #EB2121;
}
.parking-popup .popup-wrap {
  margin-top: -5rem;
}
.parking-popup .chart-wrap {
  display: flex;
  margin: 2rem 0;
}
.parking-popup .chart-wrap .lot-wrap {
  margin-right: 6rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.parking-popup .chart-wrap .lot-wrap .svg-wrap {
  position: relative;
  width: 160px;
  margin-right: 2rem;
}
.parking-popup .chart-wrap .lot-wrap .svg-wrap .lot-title {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
}
.parking-popup .chart-wrap .lot-wrap .svg-wrap svg {
  max-width: 100%;
  height: auto;
}
.parking-popup .chart-wrap .lot-wrap .lot-content {
  position: relative;
}
.parking-popup .chart-wrap .lot-wrap .lot-content .percentage {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.parking-popup .chart-wrap .lot-wrap .lot-content h4 {
  font-size: 1rem;
  font-weight: bold;
}
@media all and (max-width: 767px) {
  .parking-popup .popup-wrap {
    margin-top: 0;
  }
  .parking-popup .chart-wrap .lot-wrap {
    width: 50%;
    margin-right: 1rem;
  }
  .parking-popup .chart-wrap .lot-wrap .svg-wrap {
    width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
  .parking-popup .chart-wrap .lot-wrap .svg-wrap .lot-title {
    font-size: 1rem;
  }
  .parking-popup .chart-wrap .lot-wrap .lot-content {
    text-align: center;
    padding-left: 0.5rem;
    width: 100%;
  }
  .parking-popup .chart-wrap .lot-wrap .lot-content .percentage {
    font-size: 3rem;
    margin-top: 0.5rem;
  }
  .parking-popup .chart-wrap .lot-wrap .lot-content h4 {
    font-size: 1.5rem;
  }
}

.laz-widget {
  margin-top: 1rem;
  width: 100%;
  margin-bottom: -1rem;
}
.laz-widget #LAZ_WidgetHeader {
  width: 100% !important;
  background-color: #002654 !important;
}
.laz-widget #LAZ_WidgetHeader .LAZ_WidgetHeader_Content {
  font-family: "Quinta", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}
.laz-widget #WidgetFaceDiv {
  width: auto !important;
}
.laz-widget #park_location_chosen {
  width: 100% !important;
  padding: 0 1rem !important;
  margin-top: 1rem !important;
}
@media all and (max-width: 991px) {
  .laz-widget {
    margin-top: 2rem;
    width: 100%;
  }
}

.weather-popup h2 {
  max-width: 60%;
}
.weather-popup .popup-wrap {
  padding-right: 0;
}
.weather-popup .weather-wrap {
  display: flex;
  margin: 2rem 0;
  width: 100%;
}
.weather-popup .weather-wrap .current-weather {
  padding-right: 6rem;
  position: relative;
}
.weather-popup .weather-wrap .current-weather p {
  color: #002654;
  text-transform: uppercase;
}
.weather-popup .weather-wrap .current-weather .current-title {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
}
.weather-popup .weather-wrap .current-weather .current-wrap {
  display: flex;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding-top: 1rem;
}
.weather-popup .weather-wrap .current-weather .current-wrap .wi {
  font-size: 5rem;
  margin-right: 3rem;
  color: #002654;
}
.weather-popup .weather-wrap .current-weather .current-wrap .current-temp {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.weather-popup .weather-wrap .current-weather .current-wrap .current-cond {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
}
.weather-popup .weather-wrap .weather-forecast {
  display: flex;
  border-left: 1px solid #7A958D;
  padding-left: 4rem;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast {
  padding-right: 6rem;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast p {
  color: #455E56;
  text-transform: uppercase;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast .wi {
  font-size: 3.5rem;
  margin: 1rem 0 2rem;
  color: #455E56;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast .weather-day {
  font-size: 1rem;
  letter-spacing: 0.15rem;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast .weather-temp {
  font-weight: bold;
  font-size: 1.5rem;
}
.weather-popup .weather-wrap .weather-forecast .day-forecast .weather-cond {
  font-size: 0.9rem;
  letter-spacing: 0.15rem;
}
.weather-popup .weather-wrap .weather-forecast div:last-of-type {
  padding-right: 0;
}
@media all and (max-width: 1199px) {
  .weather-popup .weather-wrap .weather-forecast {
    flex-wrap: wrap;
  }
  .weather-popup .weather-wrap .weather-forecast .day-forecast {
    width: 50%;
    padding-right: 2rem;
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 767px) {
  .weather-popup h2 {
    max-width: 100%;
  }
  .weather-popup .weather-wrap {
    display: inline-block;
    margin: 1rem 0;
  }
  .weather-popup .weather-wrap .current-weather {
    height: 170px;
    padding-right: 0;
  }
  .weather-popup .weather-wrap .current-weather .current-wrap {
    padding-top: 0;
  }
  .weather-popup .weather-wrap .current-weather .current-wrap .current-cond {
    margin-bottom: 0;
  }
  .weather-popup .weather-wrap .weather-forecast {
    border-left: none;
    padding-left: 0;
  }
  .weather-popup .weather-wrap .weather-forecast .day-forecast {
    padding-right: 1rem;
    margin-bottom: 0;
    width: 25%;
  }
  .weather-popup .weather-wrap .weather-forecast .day-forecast .weather-day {
    margin-bottom: 0;
  }
  .weather-popup .weather-wrap .weather-forecast .day-forecast .wi {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .weather-popup .weather-wrap .weather-forecast .day-forecast .weather-temp {
    font-size: 1.2rem;
  }
}

.page-hero {
  width: 100%;
  height: 60vh;
  min-height: 600px;
  position: relative;
}
.page-hero .bg-image {
  background-position: center center;
}
.page-hero .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-hero .hero-caption {
  z-index: 2;
  position: relative;
  padding: 0 12rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.page-hero .hero-caption .subhead {
  color: #FFF;
}
.page-hero .hero-caption .hero-title {
  width: 100%;
  color: #FFF;
  margin: 0;
}
@media all and (min-width: 1680px) {
  .page-hero {
    height: 85vh;
    min-height: 760px;
  }
}
@media all and (max-width: 1199px) {
  .page-hero .hero-caption {
    padding: 0 2rem 0 8rem;
  }
  .page-hero .hero-caption .hero-title .indent {
    margin-left: 6rem;
  }
}
@media all and (max-width: 767px) {
  .page-hero {
    min-height: initial;
    height: 400px;
  }
  .page-hero .hero-caption {
    padding: 0 2rem;
  }
}

.hero-bar {
  background-color: #7A958D;
  height: 240px;
  width: 100%;
}
@media all and (max-width: 767px) {
  .hero-bar {
    height: 120px;
  }
}

.search-results li {
  list-style: none;
  margin: 2rem 0 3rem;
}

.flight-wigdet {
  width: 65%;
  height: 100%;
  float: left;
  padding: 1.5rem;
  display: flex;
  position: relative;
}
.flight-wigdet .current-time {
  top: 0.5rem;
  right: 1rem;
  position: absolute;
  text-align: right;
  font-family: "Helvetica";
  background-color: #E8E8E4;
  padding-left: 1rem;
}
.flight-wigdet .current-time span {
  color: #002654;
  font-weight: bold;
  font-size: 1.3rem;
}
.flight-wigdet .current-time p {
  color: #002654;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.flight-wigdet iframe {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .flight-wigdet {
    width: 100%;
    padding: 2rem 1rem;
    height: 400px;
  }
  .flight-wigdet .current-time {
    display: none;
  }
}

.flight-page {
  padding: 8rem;
}
@media all and (max-width: 1199px) {
  .flight-page {
    padding: 4rem;
  }
}
@media all and (max-width: 599px) {
  .flight-page {
    padding: 2rem;
  }
}

.footer {
  padding: 8rem 4rem 8rem 8rem;
  width: 100%;
  background-color: #002654;
  color: #FFF;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
  line-height: 1.8rem;
  position: relative;
}
.footer a:not(.btn), .footer p {
  font-weight: 600;
  color: #FFF;
}
.footer .footer-contact {
  width: 25%;
}
.footer .footer-contact .logo {
  width: 200px;
  margin-bottom: 2rem;
}
.footer .footer-contact .btn {
  margin-top: 2rem;
}
.footer .footer-links {
  margin-top: 2rem;
}
.footer .footer-links a {
  margin-right: 1rem;
}
.footer .footer-menu-wrap {
  width: 75%;
}
.footer .footer-menu-wrap .footer-menu {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-menu-wrap .footer-menu > .menu-item {
  width: 25%;
  padding: 0 1rem;
  line-height: 2.5;
  margin-bottom: 2rem;
}
.footer .footer-menu-wrap .footer-menu > .menu-item.hidden-footer {
  display: none;
}
.footer .footer-menu-wrap .footer-menu .sub-menu > .menu-item a {
  font-size: 1rem;
  line-height: 2.5;
  color: #9BC1D9;
}
.footer .footer-menu-wrap .footer-menu .sub-menu > .menu-item a:hover {
  color: #FFF;
  text-decoration: none;
}
.footer .copyright {
  color: #FFF;
  margin-top: 2rem;
  width: 100%;
  font-size: 0.9rem;
}
.footer .copyright a {
  text-decoration: underline;
}
@media all and (max-width: 1199px) {
  .footer .footer-menu-wrap {
    padding: 0 4rem;
  }
  .footer .footer-menu-wrap .footer-menu > .menu-item {
    width: 50%;
  }
}
@media all and (max-width: 991px) {
  .footer {
    padding: 4rem 2rem;
    display: inline-block;
    text-align: center;
  }
  .footer .footer-menu-wrap {
    padding: 0 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }
  .footer .footer-menu-wrap .footer-menu {
    justify-content: center;
  }
  .footer .footer-menu-wrap .footer-menu > .menu-item {
    width: 33%;
  }
  .footer .footer-contact {
    text-align: center;
    width: 100%;
  }
  .footer .footer-contact .btn {
    margin-bottom: 0;
  }
  .footer .footer-links {
    margin-bottom: 2rem;
  }
  .footer .copyright {
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 0 2rem;
  }
}
@media all and (max-width: 767px) {
  .footer .footer-menu-wrap {
    padding: 0 1rem;
    width: 100%;
  }
  .footer .footer-menu-wrap .footer-menu > .menu-item {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .footer-menu-wrap .footer-menu > .menu-item .sub-menu {
    display: none;
  }
}

.header-message {
  text-align: left;
  position: relative;
  height: 60px;
  width: 40%;
  float: left;
  background-color: #002654;
  z-index: 150;
}
.header-message .message-text {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: #FFF;
  width: 100%;
  padding: 0 2rem;
  margin-bottom: 0;
  font-weight: bold;
}
.header-message .message-text:after {
  font-family: "tmbr-icons";
  content: "";
  font-size: 0.8rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: auto;
  margin-left: 1rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.header-message .message-text a {
  color: #FFF;
}
.header-message .message-text .icon {
  color: #FFF;
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.header-message .message-text:hover .icon {
  margin-right: 1.5rem;
}
@media all and (max-width: 1199px) {
  .header-message {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    height: 3rem;
    width: 100%;
    float: none;
    text-align: center;
  }
  .header-message .alert-text {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 599px) {
  .header-message .alert-text .icon {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}

.alert-bar {
  width: 100%;
  padding: 0.5rem 1rem;
  position: relative;
  background-color: #db751e;
  z-index: 150;
  display: block;
}
.alert-bar .alert-text {
  text-align: center;
  color: #FFF;
  width: 100%;
  margin-bottom: 0;
  font-weight: bold;
}
.alert-bar .alert-text a {
  color: #FFF;
}
.alert-bar .alert-text .icon {
  color: #FFF;
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.alert-bar .alert-text .arrow-link {
  margin-left: 1rem;
}
.alert-bar:hover {
  text-decoration: none;
}

.bg-green-wrap {
  background-image: url(../assets/images/bg-texture-green-03.jpg?b8b41d350b0c1624c4a866e780832deb);
}

.flex-container {
  background-size: 100%;
  background-repeat: no-repeat;
}
.flex-container ul, .flex-container ol {
  list-style: initial;
  margin-left: 2rem;
}
.flex-container.bg-green p, .flex-container.bg-green a, .flex-container.bg-green h1, .flex-container.bg-green h2, .flex-container.bg-green h3, .flex-container.bg-green h4, .flex-container.bg-green h5, .flex-container.bg-green li, .flex-container.bg-green span {
  color: #FFF;
}
.flex-container.bg-green .subhead {
  color: #FFF;
}
.flex-container.bg-green .subhead:before {
  background-color: #FFF;
}
.flex-container.bg-green .flex-collapse .collapse-wrap .collapse-item .collapse-title:before {
  background-color: #FFF;
}
.flex-container.bg-green .flex-columns .column-wrap .column.-icon .column-title {
  color: #FFF;
}
.flex-container.bg-green .flex-columns .column-wrap .column.-icon .arrow-link {
  color: #FFF;
}

.flex-wysiwyg {
  padding: 6rem 8rem;
}
.flex-wysiwyg .wysiwyg-content {
  padding: 0 7rem;
  max-width: 80%;
}
.flex-wysiwyg ol, .flex-wysiwyg ul {
  list-style: inherit;
  padding-left: 2rem;
  line-height: 2;
}
.flex-wysiwyg hr {
  background-color: #002654;
  height: 7px;
  width: 6rem;
  margin: 3rem 0 1rem;
}
@media all and (max-width: 1199px) {
  .flex-wysiwyg {
    padding: 4rem;
  }
  .flex-wysiwyg .wysiwyg-content {
    max-width: 100%;
  }
}
@media all and (max-width: 767px) {
  .flex-wysiwyg {
    padding: 4rem 2rem;
  }
  .flex-wysiwyg .wysiwyg-content {
    padding: 0 4rem;
    max-width: 100%;
  }
}
@media all and (max-width: 599px) {
  .flex-wysiwyg {
    padding: 2rem 2rem;
  }
  .flex-wysiwyg .wysiwyg-content {
    padding: 0;
  }
}

.flex-split {
  padding: 6rem 8rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.flex-split .split-image {
  width: 40%;
  position: relative;
}
.flex-split .split-image img {
  width: 100%;
}
.flex-split .split-content {
  width: 60%;
  padding: 0 4rem;
}
.flex-split .split-content .subhead {
  color: #002654;
}
.flex-split .traveler-tip {
  position: relative;
}
.flex-split .traveler-tip p {
  background: #002654;
  width: 100px;
  height: 80px;
  font-family: "Quinta", sans-serif;
  font-weight: normal;
  color: #737376;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  color: #FFF;
  text-align: center;
  bottom: -2rem;
  left: 2rem;
  position: absolute;
  padding-top: 5px;
}
.flex-split .traveler-tip span {
  color: #7A958D;
  font-weight: bold;
  top: 2rem;
  left: 4rem;
  position: absolute;
  width: 250px;
  font-size: 1.3rem;
}
.flex-split .traveler-tip span a {
  color: #7A958D;
}
.flex-split .traveler-tip span a:after {
  font-family: "tmbr-icons";
  color: #002654;
  content: "";
  font-size: 0.8rem;
  bottom: -2rem;
  left: 0;
  position: absolute;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.flex-split .traveler-tip span:hover a {
  text-decoration: none;
}
.flex-split .traveler-tip span:hover a:after {
  left: 1rem;
}
.flex-split .btn {
  margin-top: 1rem;
}
.flex-split .sub-links {
  margin: 3rem 0;
  line-height: 2;
}
.flex-split .sub-links a {
  margin-right: 4rem;
  margin-bottom: 1rem;
}
.flex-split.-right {
  flex-direction: row-reverse;
}
.flex-split.-right .split-content {
  padding: 0 4rem 0 5rem;
}
.flex-split .parking-split {
  margin-top: 8rem;
  margin-bottom: -8rem;
}
.flex-split .parking-split .parking-lots {
  justify-content: center;
}
.flex-split .parking-split .parking-widget {
  width: 100%;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
}
.flex-split .parking-split .parking-text {
  margin-top: 40px;
}
.flex-split .parking-split .parking-text ol, .flex-split .parking-split .parking-text ul {
  list-style: inherit;
  padding-left: 2rem;
  line-height: 2;
  font-size: 1.2rem;
}
.flex-split .parking-split .parking-popup .chart-wrap {
  margin: 0;
}
.flex-split .parking-split .parking-popup .chart-wrap .lot-wrap .svg-wrap {
  margin: 1rem auto 0;
  width: 180px;
}
.flex-split .parking-split .parking-popup .chart-wrap .lot-wrap .lot-content {
  width: 100%;
}
@media all and (min-width: 1680px) {
  .flex-split.-right .split-content {
    padding: 0 4rem 0 7rem;
  }
}
@media all and (max-width: 1199px) {
  .flex-split {
    padding: 4rem;
  }
  .flex-split .split-content {
    padding: 0 2rem;
  }
  .flex-split.-right .split-content {
    padding: 0 2rem 0 4rem;
  }
}
@media all and (max-width: 1199px) {
  .flex-split .parking-split {
    display: inline-block;
  }
  .flex-split .parking-split .parking-popup {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .flex-split .split-image {
    width: 100%;
  }
  .flex-split .split-content {
    width: 100%;
    margin-top: 4rem;
    padding: 0 2rem;
  }
  .flex-split.-right .split-content {
    padding: 0 2rem;
  }
  .flex-split .traveler-tip {
    display: none;
  }
  .flex-split .sub-links a {
    font-size: 1.3rem;
  }
  .flex-split .parking-split {
    margin-top: 2rem;
    margin-bottom: -6rem;
  }
  .flex-split .parking-split .parking-popup .chart-wrap .lot-wrap .svg-wrap .lot-title {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 599px) {
  .flex-split {
    padding: 2rem 2rem 2rem;
  }
  .flex-split .split-content {
    width: 100%;
    margin-top: 4rem;
    padding: 0;
  }
  .flex-split.-right .split-content {
    padding: 0;
  }
}

.flex-columns {
  padding: 6rem 8rem;
}
.flex-columns.-image {
  padding: 4rem 0;
}
.flex-columns .column-content {
  padding: 0 7rem;
  max-width: 80%;
}
.flex-columns .column-wrap {
  padding: 1rem 5rem;
  display: flex;
  flex-wrap: wrap;
}
.flex-columns .column-wrap .column {
  margin: 2rem;
  width: calc(25% - 4rem);
}
.flex-columns .column-wrap .column.-text {
  width: auto;
}
.flex-columns .column-wrap .column .column-title {
  font-size: 1.2rem;
  color: #455E56;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.flex-columns .column-wrap .column .arrow-link {
  font-size: 1.2rem;
  color: #455E56;
}
.flex-columns .column-wrap .column.-icon .icon {
  width: 80px;
  margin-bottom: 1rem;
}
.flex-columns .column-wrap .column.-icon .column-text {
  margin-top: 1rem;
}
.flex-columns .column-wrap .column.-logo .logo-wrap {
  height: 160px;
  position: relative;
}
.flex-columns .column-wrap .column.-logo .logo-wrap .logo {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media all and (max-width: 1199px) {
  .flex-columns {
    padding: 8rem 4rem;
  }
  .flex-columns .column-content {
    max-width: 100%;
  }
  .flex-columns .column-wrap {
    padding: 1rem 3rem;
  }
}
@media all and (max-width: 991px) {
  .flex-columns .column-wrap .column {
    width: calc(50% - 4rem);
  }
}
@media all and (max-width: 767px) {
  .flex-columns {
    padding: 4rem 2rem;
  }
  .flex-columns .column-content {
    padding: 0 4rem;
  }
  .flex-columns .column-wrap {
    padding: 1rem 3rem;
  }
  .flex-columns .column-wrap .column {
    width: 100%;
    margin: 2rem 0;
  }
  .flex-columns .column-wrap .column.-icon .icon {
    width: 100px;
  }
  .flex-columns .column-wrap .column.-logo {
    text-align: center;
    font-size: 1.2rem;
  }
}
@media all and (max-width: 599px) {
  .flex-columns {
    padding: 2rem 2rem;
  }
  .flex-columns .column-content {
    padding: 0;
  }
  .flex-columns .column-wrap {
    padding: 1rem 0;
  }
}

.flex-collapse {
  padding: 10rem 15rem;
}
.flex-collapse .collapse-content {
  max-width: 60%;
}
.flex-collapse .collapse-wrap {
  max-width: 80%;
}
.flex-collapse .collapse-wrap .collapse-item {
  margin: 5rem 0;
  position: relative;
}
.flex-collapse .collapse-wrap .collapse-item .collapse-title {
  cursor: pointer;
  position: relative;
  padding-left: 2rem;
}
.flex-collapse .collapse-wrap .collapse-item .collapse-title:before {
  top: -2rem;
  left: 0;
  position: absolute;
  height: 7px;
  width: 6rem;
  content: "";
  background-color: #455E56;
}
.flex-collapse .collapse-wrap .collapse-item .collapse-title:after {
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  font-family: "tmbr-icons";
  content: "";
  font-size: 1rem;
}
.flex-collapse .collapse-wrap .collapse-item .collapse-text {
  display: none;
  padding: 1rem 0;
}
.flex-collapse .collapse-wrap .collapse-item .collapse-text ol, .flex-collapse .collapse-wrap .collapse-item .collapse-text ul {
  list-style: inherit;
  padding-left: 2rem;
  line-height: 2;
}
.flex-collapse .collapse-wrap .collapse-item.-open .collapse-text {
  display: block;
}
.flex-collapse .collapse-wrap .collapse-item.-open .collapse-title:after {
  content: "";
}
@media all and (max-width: 1199px) {
  .flex-collapse {
    padding: 8rem 11rem;
  }
  .flex-collapse .collapse-content {
    max-width: 100%;
  }
  .flex-collapse .collapse-wrap {
    max-width: 100%;
  }
}
@media all and (max-width: 991px) {
  .flex-collapse {
    padding: 4rem 8rem;
  }
  .flex-collapse .collapse-content {
    padding: 0 4rem;
  }
}
@media all and (max-width: 767px) {
  .flex-collapse {
    padding: 4rem;
  }
  .flex-collapse .collapse-content {
    padding: 0 2rem;
  }
}
@media all and (max-width: 599px) {
  .flex-collapse {
    padding: 2rem 2rem;
  }
  .flex-collapse .collapse-content {
    padding: 0;
  }
}

.flex-image-columns {
  padding: 4rem 0;
}
.flex-image-columns .column-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-image-columns .column-wrap .column {
  margin: 1rem;
  width: calc(25% - 2rem);
  overflow: hidden;
  position: relative;
}
.flex-image-columns .column-wrap .column .column-image {
  display: block;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.flex-image-columns .column-wrap .column .column-image .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
}
.flex-image-columns .column-wrap .column .column-image:hover {
  transform: scale(1.05);
}
.flex-image-columns .column-wrap .column h3 {
  color: #FFF;
  margin-bottom: 0;
  width: 50%;
  letter-spacing: 0;
  bottom: 2rem;
  left: 2rem;
  position: absolute;
}
@media all and (min-width: 1680px) {
  .flex-image-columns .column-wrap .column .column-image {
    height: 600px;
  }
}
@media all and (max-width: 1199px) {
  .flex-image-columns .column-wrap .column .column-image {
    height: 400px;
  }
}
@media all and (max-width: 991px) {
  .flex-image-columns .column-wrap .column {
    width: calc(50% - 2rem);
  }
  .flex-image-columns .column-wrap .column .column-image {
    height: 300px;
  }
}
@media all and (max-width: 767px) {
  .flex-image-columns .column-wrap .column {
    width: 100%;
  }
  .flex-image-columns .column-wrap .column h3 {
    font-size: 2rem;
  }
}

.flex-image-overlay {
  margin: 4rem 0;
  padding: 2rem 4rem;
}
.flex-image-overlay .overlay-content {
  height: 600px;
  position: relative;
}
.flex-image-overlay .overlay-content .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
}
.flex-image-overlay .overlay-content .overlay-text {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
.flex-image-overlay .overlay-content .overlay-text h2 {
  color: #FFF;
}
.flex-image-overlay .overlay-content .overlay-text .icon {
  color: #FFF;
  font-size: 4rem;
  margin-bottom: 2rem;
  opacity: 1;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
.flex-image-overlay .overlay-content .overlay-text:hover .icon {
  opacity: 0.6;
}
@media all and (max-width: 991px) {
  .flex-image-overlay .overlay-content {
    height: 400px;
  }
}
@media all and (max-width: 767px) {
  .flex-image-overlay {
    padding: 2rem;
  }
  .flex-image-overlay .overlay-content {
    height: 300px;
  }
}

.flex-gallery {
  padding: 6rem 8rem;
}
.flex-gallery .gallery-content {
  padding: 0 7rem;
  max-width: 80%;
}
.flex-gallery .gallery-mosaic {
  margin-top: 3rem;
}
.flex-gallery .gallery-mosaic .mosaic-image {
  display: block;
  width: 33%;
  padding: 0 0.5rem 1rem;
  position: relative;
}
.flex-gallery .gallery-mosaic .mosaic-image img {
  width: 100%;
  opacity: 1;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  cursor: zoom-in;
}
.flex-gallery .gallery-mosaic .mosaic-image:hover img {
  opacity: 0.5;
}
@media all and (max-width: 1199px) {
  .flex-gallery {
    padding: 8rem 4rem;
  }
  .flex-gallery .gallery-content {
    max-width: 100%;
  }
}
@media all and (max-width: 991px) {
  .flex-gallery .gallery-mosaic .mosaic-image {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .flex-gallery {
    padding: 4rem 2rem;
  }
  .flex-gallery .gallery-content {
    padding: 0 4rem;
  }
  .flex-gallery .gallery-mosaic .mosaic-image {
    width: 100%;
  }
}
@media all and (max-width: 599px) {
  .flex-gallery {
    padding: 2rem 2rem;
  }
  .flex-gallery .gallery-content {
    padding: 0;
  }
}

.flex-about {
  margin-top: 160px;
  padding: 0rem 8rem 6rem;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.flex-about .about-images {
  margin-top: -160px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.flex-about .about-images .first-image {
  position: relative;
  width: 60%;
}
.flex-about .about-images .second-image {
  width: 40%;
  padding: 0 1rem;
}
.flex-about .about-images .second-image img {
  margin-bottom: 1rem;
}
.flex-about .about-images .second-image .third-image {
  margin-bottom: 0;
}
.flex-about .about-content {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.flex-about .about-content .subhead {
  color: #455E56;
}
.flex-about .about-content .subhead:before {
  display: none;
}
.flex-about .about-content h2, .flex-about .about-content p {
  color: #FFF;
}
@media all and (max-width: 991px) {
  .flex-about {
    padding: 0rem 4rem 8rem;
  }
  .flex-about .about-content {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .flex-about {
    padding: 0rem 4rem 8rem;
  }
  .flex-about .about-images .first-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
  }
  .flex-about .about-images .second-image {
    display: none;
  }
}
@media all and (max-width: 599px) {
  .flex-about {
    padding: 3rem 2rem 3rem;
  }
  .flex-about .about-images {
    margin-bottom: 2rem;
  }
  .flex-about .about-images .first-image {
    margin-bottom: 2rem;
  }
  .flex-about .about-images .second-image {
    display: none;
  }
}

.flex-docs {
  padding: 6rem 8rem;
}
.flex-docs .docs-content {
  padding: 0 7rem;
  max-width: 80%;
}
.flex-docs .docs-wrap {
  padding: 1rem 5rem;
  display: flex;
  flex-wrap: wrap;
}
.flex-docs .docs-wrap .docs-column {
  margin: 2rem;
  width: calc(50% - 4rem);
}
.flex-docs .docs-wrap .docs-column li {
  line-height: 2;
  font-weight: bold;
}
@media all and (max-width: 1199px) {
  .flex-docs {
    padding: 8rem 4rem;
  }
  .flex-docs .docs-content {
    max-width: 100%;
  }
  .flex-docs .docs-wrap {
    padding: 1rem 3rem;
  }
}
@media all and (max-width: 767px) {
  .flex-docs {
    padding: 4rem 2rem;
  }
  .flex-docs .docs-content {
    padding: 0 4rem;
  }
  .flex-docs .docs-wrap {
    padding: 1rem 3rem;
  }
  .flex-docs .docs-wrap .docs-column {
    width: 100%;
    margin: 2rem 0;
  }
}
@media all and (max-width: 599px) {
  .flex-docs {
    padding: 2rem 2rem;
  }
  .flex-docs .docs-content {
    padding: 0;
  }
  .flex-docs .docs-wrap {
    padding: 1rem 0;
  }
}

.flex-cta-bar .cta-bar {
  background-color: #455E56;
  display: block;
  padding: 4rem 0;
  position: relative;
  text-align: center;
}
.flex-cta-bar .cta-bar a {
  display: inline-block;
}
.flex-cta-bar .cta-bar h2 {
  color: #FFF;
  float: left;
  margin-bottom: 0;
  font-size: 3rem;
}
.flex-cta-bar div:nth-of-type(1) {
  background-color: #658a7e;
}
.flex-cta-bar div:nth-of-type(2) {
  background-color: #5b7b71;
}
.flex-cta-bar div:nth-of-type(3) {
  background-color: #506d63;
}
@media all and (max-width: 991px) {
  .flex-cta-bar .cta-bar {
    padding: 4rem 2rem;
  }
  .flex-cta-bar .cta-bar h2 {
    font-size: 2rem;
  }
}

.flex-recent-posts {
  padding: 6rem 8rem;
}
.flex-recent-posts .recent-content {
  padding: 0 7rem;
  max-width: 80%;
}
@media all and (max-width: 1199px) {
  .flex-recent-posts {
    padding: 8rem 4rem;
  }
  .flex-recent-posts .recent-content {
    max-width: 100%;
  }
}
@media all and (max-width: 767px) {
  .flex-recent-posts {
    padding: 4rem 2rem;
  }
  .flex-recent-posts .recent-content {
    padding: 0 4rem;
  }
}
@media all and (max-width: 599px) {
  .flex-recent-posts {
    padding: 2rem 2rem;
  }
  .flex-recent-posts .recent-content {
    padding: 0;
  }
}

.flex-timeline {
  padding: 10rem 0 10rem 15rem;
}
.flex-timeline .timeline-content {
  max-width: 60%;
}
.flex-timeline .timeline-slider {
  margin-top: 6rem;
  border-top: 4px solid #002654;
}
.flex-timeline .timeline-slider .timeline-card {
  padding-left: 2rem;
  position: relative;
  margin-top: 8rem;
}
.flex-timeline .timeline-slider .timeline-card .timeline-date {
  top: -2rem;
  left: 2rem;
  position: absolute;
}
.flex-timeline .timeline-slider .timeline-card:before {
  content: "";
  width: 4px;
  top: -8rem;
  left: calc(2rem + 13px);
  position: absolute;
  height: 60px;
  background-color: #002654;
}
.flex-timeline .timeline-slider .timeline-card:after {
  content: "";
  width: 30px;
  height: 30px;
  top: -4.5rem;
  left: 2rem;
  position: absolute;
  border: 4px solid #002654;
  border-radius: 50% 50%;
  background-color: white;
}
@media all and (max-width: 1199px) {
  .flex-timeline {
    padding: 8rem 0 8rem 11rem;
  }
  .flex-timeline .timeline-content {
    max-width: 100%;
  }
}
@media all and (max-width: 991px) {
  .flex-timeline {
    padding: 4rem 0 4rem 8rem;
  }
  .flex-timeline .timeline-content {
    padding: 0 4rem;
  }
}
@media all and (max-width: 767px) {
  .flex-timeline {
    padding: 4rem 0 4rem 4rem;
  }
  .flex-timeline .collapse-content {
    padding: 0 2rem;
  }
}
@media all and (max-width: 599px) {
  .flex-timeline {
    padding: 2rem 0 2rem 2rem;
  }
  .flex-timeline .timeline-content {
    padding: 0;
  }
}

.content-wrap {
  padding: 8rem 8rem;
}
.content-wrap .post-content {
  padding: 0 7rem;
  max-width: 80%;
}
.content-wrap .post-content ol, .content-wrap .post-content ul {
  list-style: inherit;
  padding-left: 2rem;
  line-height: 2;
}
.content-wrap .post-content hr {
  background-color: #002654;
  height: 7px;
  width: 6rem;
  margin: 3rem 0 1rem;
}
.content-wrap .post-content .post-meta {
  color: #002654;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media all and (max-width: 1199px) {
  .content-wrap {
    padding: 4rem;
  }
  .content-wrap .post-content {
    max-width: 100%;
  }
}
@media all and (max-width: 767px) {
  .content-wrap {
    padding: 4rem 2rem;
  }
  .content-wrap .post-content {
    padding: 0 4rem;
    max-width: 100%;
  }
}
@media all and (max-width: 599px) {
  .content-wrap {
    padding: 4rem 2rem;
  }
  .content-wrap .post-content {
    padding: 0;
  }
}

.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
@media all and (max-width: 767px) {
  .alignleft {
    float: none;
  }
}

.alignright {
  float: right;
  margin: 0 0 15px 15px;
}
@media all and (max-width: 767px) {
  .alignright {
    float: none;
  }
}

.content-404 .pagenav {
  list-style: none;
  font-size: 1.1rem;
  line-height: 2.5;
}
.content-404 .pagenav ul {
  padding-left: 0;
}
.content-404 .pagenav .children {
  display: none;
}

.page-main {
  position: relative;
  width: 100%;
}

.loop-wrap, .related-posts, .recent-posts {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 991px) {
  .loop-wrap, .related-posts, .recent-posts {
    display: inline-block;
  }
}

.blog-wrap {
  padding: 4rem 8rem;
}
.blog-wrap .page-title {
  width: 100%;
  margin-bottom: 2rem;
}
.blog-wrap .loop-item .loop-meta {
  color: #002654;
}
@media all and (max-width: 991px) {
  .blog-wrap {
    padding: 4rem;
  }
}
@media all and (max-width: 767px) {
  .blog-wrap {
    padding: 4rem 2rem;
  }
}

.loop-item {
  width: 33%;
  padding: 0 1rem;
  margin-bottom: 3rem;
}
.loop-item .subhead:before {
  left: 8rem;
}
.loop-item .loop-meta {
  color: #455E56;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.loop-item .loop-title a {
  color: #455E56;
}
.loop-item .loop-title a:hover {
  text-decoration: none;
}
.loop-item .loop-content {
  margin-bottom: 0.5rem;
}
@media all and (max-width: 1199px) {
  .loop-item {
    width: 50%;
    margin-bottom: 4rem;
  }
}
@media all and (max-width: 991px) {
  .loop-item {
    width: 100%;
    padding: 0;
  }
}
@media all and (max-width: 767px) {
  .loop-item .subhead {
    margin-bottom: 1rem;
  }
  .loop-item .subhead:before {
    left: 8rem;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}

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