@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*===================
BASE STYLING
===================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: auto;
  background-color: #000;
  font-family: "Roboto", sans-serif;
  min-height: 100%;
  font-size: 62.5%;
}

body.bg-light {
  background-color: #fff;
}

html {
  height: 100%;
}

ul,
li {
  text-decoration: none;
  list-style-type: none;
}

/*===================
TYPOGRAPHY
===================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: #fff;
  margin: 0;
}

p,
a,
ul,
li,
button {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: #fff;
  margin: 0;
}

h1 {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.1;
}
@media only screen and (max-width: 87.4375em) {
  h1 {
    font-size: 4.7rem;
  }
}

h2 {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 87.4375em) {
  h2 {
    font-size: 4rem;
  }
}

h3 {
  font-family: "Playfair", serif;
  font-size: 3.6rem;
  font-weight: normal;
  line-height: 1.1;
}
@media only screen and (max-width: 87.4375em) {
  h3 {
    font-size: 3.2rem;
  }
}

h4 {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.5;
}

h5 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

p {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
}

.sub-label {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
}

a {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: none;
}
a:hover {
  color: #1a6280;
}

/*====================
ANIMATIONS
====================*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 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);
    -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);
    transform: translate3d(0, -30px, 0);
  }
  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);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 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);
    -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);
    transform: translate3d(0, -30px, 0);
  }
  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);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.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;
  }
}
.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);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

@-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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  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);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.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);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  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);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.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);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  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);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.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);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  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);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

@-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;
  }
}
.animated.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);
  }
}
.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);
  }
}
.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;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  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 lightSpeedIn {
  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);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.animated.delay-120ms {
  -webkit-animation-delay: 120ms;
  animation-delay: 120ms;
}

.animated.delay-140ms {
  -webkit-animation-delay: 140ms;
  animation-delay: 140ms;
}

.animated.delay-160ms {
  -webkit-animation-delay: 160ms;
  animation-delay: 160ms;
}

.animated.delay-300ms {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

.animated.delay-400ms {
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.animated.delay-500ms {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}

.animated.delay-700ms {
  -webkit-animation-delay: 700ms;
  animation-delay: 700ms;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*====================
CUSTOM ANIMATIONS
====================*/
/* Hover Effects */
.thumb-grow {
  transition: all 0.2s ease-in-out;
}
.thumb-grow:hover {
  transform: scale(1.07);
  text-decoration: none;
}
.thumb-grow-small {
  transition: all 0.2s ease-in-out;
}
.thumb-grow-small:hover {
  transform: scale(1.02);
  text-decoration: none;
}

/*===================
BUTTONS
===================*/
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  width: 100%;
  max-width: 20.5rem;
  padding: 18px 20px 17px;
}
.btn span {
  position: relative;
  z-index: 10;
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.btn::before {
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}
.btn:hover::before {
  content: "";
  opacity: 1;
  top: -1px;
  right: -2px;
  bottom: -1px;
  left: -2px;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.btn-primary {
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  border: transparent;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(26, 98, 128, 0.45);
}
.btn-primary::before {
  background-image: linear-gradient(to right, #067f61, #1a6280);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #067f61, #1a6280);
  border-radius: 12px;
  top: -1px;
  right: 102%;
  bottom: -1px;
  left: -2px;
}
.btn-primary:hover::before {
  background-image: linear-gradient(to right, #067f61, #1a6280);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #067f61, #1a6280);
  border-radius: 12px;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #067f61;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(6, 127, 97, 0.45);
}
.btn-secondary:hover {
  background: transparent;
  border: 2px solid #067f61;
}
.btn-secondary::before {
  background-color: #067f61;
  border: 2px solid #067f61;
  top: -1px;
  right: -2px;
  bottom: -1px;
  left: 102%;
}
.btn-secondary:hover::before {
  background-color: #067f61;
  border: 2px solid #067f61;
}

a.link {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #067f61;
  width: fit-content;
  padding-right: 31px;
}
a.link img {
  margin-left: 15px;
}
a.link::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 18px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
a.link:hover {
  color: #1a6280;
}
a.link:hover::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 18px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-right-primary.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#back-to-top {
  display: inline-block;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  position: fixed;
  bottom: 20px;
  right: 15px;
  background-color: #1a6280;
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
  transition: background-color 0.4s, opacity 0.4s, visibility 0.4s, transform 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transform: scale(1);
  box-shadow: 0px 0px 12px rgba(26, 98, 128, 0.45);
}
@media only screen and (min-width: 160em) {
  #back-to-top {
    right: 40px;
  }
}
@media only screen and (min-width: 120em) {
  #back-to-top {
    right: 40px;
  }
}
@media only screen and (max-width: 87.4375em) {
  #back-to-top {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 61.9375em) {
  #back-to-top {
    right: 30px;
  }
}
@media only screen and (max-width: 47.9375em) {
  #back-to-top {
    right: 25px;
  }
}
@media only screen and (max-width: 35.9375em) {
  #back-to-top {
    right: 20px;
    width: 47px;
    height: 47px;
  }
}
#back-to-top::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("../images/icons/ico-arrow-up.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease-in-out;
}
#back-to-top:hover, #back-to-top:active {
  cursor: pointer;
  border: none;
  transform: scale(1.1);
  background-color: #1a6280;
  background-image: linear-gradient(to bottom, #067f61, #1a6280);
  transition: all 0.4s ease-in-out;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/*===================
CONTACT CTA
===================*/
.contact-cta {
  margin-top: 20rem;
}
@media only screen and (max-width: 47.9375em) {
  .contact-cta {
    margin-top: 15.5rem;
  }
}
.contact-cta__container {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 11rem;
}
.contact-cta__container h2 {
  position: relative;
  font-size: 6.2rem;
  font-weight: 500;
  line-height: 1.3;
  z-index: 99;
}
@media only screen and (max-width: 47.9375em) {
  .contact-cta__container h2 {
    font-size: 5.5rem;
    line-height: 1.1;
  }
}
.contact-cta__container h2 span {
  display: block;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  font-size: 10.2rem;
  font-weight: 500;
  line-height: 1.3;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -18px;
}
@media only screen and (max-width: 47.9375em) {
  .contact-cta__container h2 span {
    font-size: 8.5rem;
  }
}
.contact-cta__container p {
  position: relative;
  margin: 20px 0 45px;
  z-index: 99;
}
@media only screen and (max-width: 47.9375em) {
  .contact-cta__container p br {
    display: none;
  }
}
.contact-cta__container img {
  position: relative;
  z-index: 10;
}
.contact-cta__container canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.6;
}
.contact-cta__buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  z-index: 99;
}
@media only screen and (max-width: 470px) {
  .contact-cta__container h2 {
    font-size: 4.5rem;
  }
  .contact-cta__container h2 span {
    font-size: 5.5rem;
    margin-top: -5px;
  }
  .contact-cta__container canvas {
    width: 30rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  border: 1px solid #1f1f1f;
  padding: 2rem;
  background-color: #1f1f1f;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  z-index: 9999;
  max-width: 38.5rem;
}
.cookie-banner span {
  display: block;
}
.cookie-banner .privacy-link {
  color: #067f61;
}
.cookie-banner .privacy-link:hover {
  color: #1a6280;
}
.cookie-banner__buttons {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
}
.cookie-banner__buttons .btn-secondary {
  margin-left: 15px;
}
.cookie-banner__buttons .btn-secondary span {
  color: #fff;
}
.cookie-banner__buttons .btn-secondary:hover span {
  color: #fff;
}

/*===================
NEWSLETTER
===================*/
.newsletter {
  position: relative;
  margin-top: 23.5rem;
}
.newsletter .card__mailchimp {
  background: transparent;
}
.newsletter::before {
  position: absolute;
  content: "";
  width: 25rem;
  height: 25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-filter: blur(70px);
  filter: blur(70px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
}
.newsletter__card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 70px;
  border-radius: 12px;
  background-color: #1f1f1f;
  z-index: 10;
}
@media only screen and (min-width: 75em) {
  .newsletter__card br {
    display: none;
  }
}
@media only screen and (max-width: 74.9375em) {
  .newsletter__card {
    padding: 3rem;
  }
}
.newsletter__card--heading {
  background: transparent;
  border: none;
}
.newsletter__card--form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: none;
}
.newsletter__card--form label {
  display: none;
}
@media only screen and (max-width: 74.9375em) {
  .newsletter__card--form {
    gap: 5px;
  }
}
.newsletter__card--input {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  padding: 12px 34px 13px 35px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 30px 5px rgba(26, 98, 128, 0.45);
  background-color: #000;
  width: 42.5rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 74.9375em) {
  .newsletter__card--input {
    font-size: 1.8rem;
    width: 35.5rem;
  }
}
.newsletter__card--input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__card--input:focus, .newsletter__card--input:focus-visible {
  border: none;
  outline: none;
}
.newsletter__card .btn-primary {
  height: 55px;
  width: 20.5rem;
}

.share-dropdown .btn-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  width: 100%;
  max-width: 20.5rem;
  padding: 18px 20px 17px 50px;
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  border: transparent;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(26, 98, 128, 0.45);
}
.share-dropdown .btn-share::before {
  background-image: linear-gradient(to right, #067f61, #1a6280);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #067f61, #1a6280);
  border-radius: 12px;
  top: -1px;
  right: 101%;
  bottom: -1px;
  left: -1px;
}
.share-dropdown .btn-share:hover::before {
  background-image: linear-gradient(to right, #067f61, #1a6280);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #067f61, #1a6280);
  border-radius: 12px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}
.share-dropdown .btn-share.active, .share-dropdown .btn-share.show, .share-dropdown .btn-share:first-child:active, .share-dropdown .btn-share:not(.btn-check) + .btn:active {
  background-color: #1a6280;
}
.share-dropdown .btn-share::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-share.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  transition: all 0.4s ease-in-out;
}
.share-dropdown .btn-share:hover::after {
  background-image: url("../images/icons/ico-share.svg");
  transition: all 0.4s ease-in-out;
}
.share-dropdown .btn-share ~ .dropdown-menu {
  background: none;
  border: none;
}
.share-dropdown .btn-share ~ .dropdown-menu .share-buttons {
  display: flex;
  padding: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 2px 4px 26px 0 rgba(0, 0, 0, 0.09);
  background-color: #1f1f1f;
  border-radius: 15px;
  gap: 15px;
}
.share-dropdown .btn-share ~ .dropdown-menu .share-buttons .share-button {
  background: none;
  border: none;
}
.share-dropdown .btn-share ~ .dropdown-menu .share-buttons .share-button.whatsapp i {
  font-weight: 600;
}
.share-dropdown .btn-share ~ .dropdown-menu .share-buttons .share-button.email i {
  font-weight: 500;
}
.share-dropdown .btn-share ~ .dropdown-menu .share-buttons .share-button i {
  font-size: 2.4rem;
}

/*===================
MAIN NAVIGATION
===================*/
.navigation {
  position: relative;
  padding-top: 3.5rem;
  z-index: 999;
}
@media only screen and (max-width: 119.9375em) {
  .navigation .top-navigation {
    margin-bottom: 15px;
  }
}
.navigation .top-navigation ul {
  display: flex;
  padding: 0;
  text-align: right;
  align-items: center;
  justify-content: right;
}
.navigation .top-navigation ul li {
  display: flex;
  align-items: center;
}
.navigation .top-navigation ul li:not(:last-of-type) {
  margin-right: 15px;
  padding: 6px 15px 5px 0;
  border-right: 1px solid #fff;
}
.navigation .top-navigation ul li.socials a:not(:last-of-type) {
  margin-right: 15px;
}
.navigation .top-navigation ul li.socials a img {
  height: 25px;
}
.navigation .top-navigation ul li.socials a:hover img {
  filter: invert(36%) sepia(28%) saturate(747%) hue-rotate(161deg) brightness(95%) contrast(90%);
}
.navigation .main-navigation .navbar-brand {
  display: block;
}
.navigation .main-navigation .navbar-brand img {
  height: 7.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .navigation .main-navigation .navbar-brand img {
    height: 6rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .navigation .main-navigation .navbar-brand img {
    height: 5rem;
  }
}
.navigation .main-navigation .navbar-collapse {
  justify-content: flex-end;
}
@media only screen and (min-width: 62em) {
  .navigation .main-navigation .navbar-collapse__navbar-brand {
    display: none;
  }
}
.navigation .main-navigation .navbar-nav {
  align-items: center;
}
.navigation .main-navigation .navbar .nav-item:not(:last-of-type) {
  margin-right: 28px;
}
@media only screen and (max-width: 74.9375em) {
  .navigation .main-navigation .navbar .nav-item:not(:last-of-type) {
    margin-right: 15px;
  }
}
.navigation .main-navigation .navbar .nav-item .btn {
  min-width: 20.5rem;
}
.navigation .main-navigation .navbar .nav-link {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  padding: 0;
}
.navigation .main-navigation .navbar .nav-link::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 3px;
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  border-radius: 12px;
  transition: 0.15s ease-in-out;
}
.navigation .main-navigation .navbar .nav-link:hover, .navigation .main-navigation .navbar .nav-link:focus {
  background: linear-gradient(to right, #1a6280, #067f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigation .main-navigation .navbar .nav-link:hover::before, .navigation .main-navigation .navbar .nav-link:focus::before {
  position: absolute;
  content: "";
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  border-radius: 12px;
  transition: 0.15s ease-in-out;
}
.navigation .main-navigation .navbar .nav-link.active {
  font-weight: 500;
  background: linear-gradient(to right, #1a6280, #067f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigation .main-navigation .navbar .nav-link.active::before {
  position: absolute;
  content: "";
  opacity: 1;
  left: 50%;
  bottom: -10px;
  width: 5px;
  height: 5px;
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61);
  border-radius: 100%;
}
.navigation .main-navigation .navbar .dropdown {
  margin-right: 28px !important;
}
@media only screen and (max-width: 119.9375em) {
  .navigation .main-navigation .navbar .dropdown {
    margin-right: 15px !important;
  }
}
.navigation .main-navigation .navbar .dropdown-menu {
  padding-top: 15px;
  background: transparent;
}
.navigation .main-navigation .navbar .dropdown-menu__container {
  padding: 15px;
  border-radius: 12px;
  background-color: #1f1f1f;
}
.navigation .main-navigation .navbar .dropdown-menu__container li {
  padding: 3px 0;
}
.navigation .main-navigation .navbar .dropdown-menu__container li a {
  color: #fff;
}
.navigation .main-navigation .navbar .dropdown-menu__container li a:hover {
  background: linear-gradient(to right, #1a6280, #067f61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigation .main-navigation .navbar .dropdown-toggle {
  margin-right: 18px;
}
.navigation .main-navigation .navbar .dropdown-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  transition: 0.15s ease-in-out;
  margin-left: 0;
  padding-left: 25px;
}
.navigation .main-navigation .navbar .dropdown .dropdown-toggle:hover::after,
.navigation .main-navigation .navbar .dropdown .dropdown-toggle:focus::after,
.navigation .main-navigation .navbar .dropdown .dropdown-toggle:focus-visible::after,
.navigation .main-navigation .navbar .dropdown .dropdown-toggle.active::after {
  background-image: url("../images/icons/ico-arrow-down-secondary.svg");
  transition: 0.15s ease-in-out;
}
@media only screen and (min-width: 62em) {
  .navigation .main-navigation__socials {
    display: none;
  }
}

/*===================
HOME PAGE
===================*/
.hero-banner {
  position: relative;
  padding-top: 9.5rem;
}
.hero-banner::before {
  position: absolute;
  content: "";
  width: 68rem;
  height: 68rem;
  top: 0;
  left: -50%;
  transform: translate(80%, -20%);
  -webkit-filter: blur(110px);
  filter: blur(110px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  z-index: 10;
  border-radius: 100%;
}
.hero-banner h1 {
  position: relative;
  margin-bottom: 3rem;
  z-index: 99;
}
.hero-banner h1 span {
  display: block;
  font-weight: 500;
  font-style: italic;
}
.hero-banner p {
  position: relative;
  margin-right: 10rem;
  z-index: 99;
}
.hero-banner__cta {
  position: relative;
  display: flex;
  margin-top: 3rem;
  gap: 15px;
  z-index: 99;
}
.hero-banner__img {
  position: relative;
}
@media only screen and (min-width: 62em) {
  .hero-banner__img .responsive {
    display: none;
  }
}
.hero-banner__img img {
  position: relative;
  z-index: 10;
}
.hero-banner__img canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 119.9375em) {
  .hero-banner__img canvas {
    height: 55.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .hero-banner__img canvas {
    height: 46.5rem;
  }
}

.home-our-services {
  position: relative;
  margin-top: 18.5rem;
}
.home-our-services::before {
  position: absolute;
  content: "";
  width: 45rem;
  height: 45rem;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  -webkit-filter: blur(110px);
  filter: blur(110px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  z-index: 10;
  border-radius: 100%;
}
.home-our-services__card {
  position: relative;
  padding: 3rem;
  background-color: #1f1f1f;
  border-radius: 12px;
  border: none;
  z-index: 10;
}
@media only screen and (max-width: 87.4375em) {
  .home-our-services__card {
    padding: 3.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-our-services__card {
    padding: 1.5rem;
  }
}
.home-our-services__card:not(:last-of-type) {
  margin-bottom: 15px;
}
.home-our-services__card img {
  margin: 0 auto 3rem 0;
}
.home-our-services__card p {
  margin-top: 15px;
}
.home-our-services h2 {
  margin-bottom: 15px;
}
.home-our-services .btn {
  margin-top: 20px;
}

.home-about {
  margin-top: 18.5rem;
}
.home-about p {
  margin: 2rem 0 3rem;
}
.home-about__img {
  position: relative;
}
.home-about__img img {
  position: relative;
  z-index: 10;
}
@media only screen and (min-width: 62em) {
  .home-about__img .responsive {
    display: none;
  }
}
.home-about__img canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 87.4375em) {
  .home-about__img canvas {
    height: 55.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-about__img canvas {
    height: 46.5rem;
  }
}

.home-our-process {
  margin-top: 18.5rem;
}
.home-our-process h2 {
  margin-bottom: 15px;
}
.home-our-process__steps {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 0 15rem;
  justify-content: center;
}
.home-our-process__steps .connecting-line ~ canvas {
  position: absolute;
  top: 7rem;
  left: 50%;
  transform: translateX(-55%);
}
.home-our-process__card {
  position: relative;
  flex-direction: row;
  padding: 30px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.15);
  background-color: #000;
  width: 100%;
  max-width: 53.5rem;
  height: fit-content;
  text-align: left;
  z-index: 10;
}
@media only screen and (max-width: 119.9375em) {
  .home-our-process__card {
    max-width: 48.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-our-process__card {
    max-width: 39.5rem;
  }
}
.home-our-process__card:nth-of-type(2) {
  margin-top: 11.5rem;
}
.home-our-process__card:nth-of-type(3) {
  margin-top: 36px;
}
@media only screen and (max-width: 74.9375em) {
  .home-our-process__card:nth-of-type(3) {
    margin-top: -6rem;
  }
}
.home-our-process__card:nth-of-type(4) {
  padding-right: 9px;
  margin-top: 15.1rem;
}
.home-our-process__card--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-our-process__card img {
  margin-right: 3rem;
  height: 16.8rem;
}
@media only screen and (max-width: 119.9375em) {
  .home-our-process__card img {
    height: 14rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-our-process__card img {
    height: 12rem;
  }
}
.home-our-process__card h4 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 74.9375em) {
  .home-our-process__card h4 {
    line-height: 1.2;
  }
}
.home-our-process__card p {
  margin-bottom: 20px;
}

.home-projects {
  margin-top: 18.5rem;
  overflow: hidden;
}
.home-projects h2 {
  line-height: 1.1;
}
.home-projects p {
  margin: 20px 0 30px;
}
.home-projects .carousel-wrapper {
  -webkit-clip-path: polygon(-1px 0, 100vw 0, 100vw 100%, -1px 100%);
  clip-path: polygon(-1px 0, 100vw 0, 100vw 100%, -1px 100%);
}
.home-projects .carousel-wrapper .owl-theme {
  position: relative;
}
.home-projects .carousel-wrapper .owl-theme .owl-stage-outer {
  overflow: visible !important;
  padding: 65px 0 65px 12px;
}
.home-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  min-height: 30rem;
}
@media only screen and (max-width: 87.4375em) {
  .home-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
    min-height: 25rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
    min-height: 20rem;
  }
}
.home-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container img {
  border-radius: 15px;
}
.home-projects .carousel-wrapper .owl-theme .owl-stage-outer a.item img {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  transition: filter 0.3s ease;
}
.home-projects .carousel-wrapper .owl-theme .owl-stage-outer a.item:hover img {
  filter: grayscale(0%) !important;
  -webkit-filter: grayscale(0%) !important;
}
.home-projects .carousel-wrapper .owl-theme .owl-nav {
  position: absolute;
  left: 12px;
  bottom: 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  z-index: 99;
}
.home-projects .carousel-wrapper .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
}
.home-projects .carousel-wrapper .owl-theme .owl-nav .owl-prev {
  margin-left: -5px;
}
.home-projects .carousel-wrapper .owl-theme .owl-nav .owl-next {
  margin-right: -5px;
}
.home-projects .carousel-wrapper .owl-theme .nav-arrow {
  width: 45px;
  height: 45px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.home-projects .carousel-wrapper .owl-theme .nav-arrow.prev-slide {
  background-image: url("../images/icons/ico-arrow-nav-left.svg");
}
.home-projects .carousel-wrapper .owl-theme .nav-arrow.next-slide {
  background-image: url("../images/icons/ico-arrow-nav-right.svg");
}
.home-projects .static-carousel {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.home-projects .static-carousel .item {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}
.home-projects .static-carousel .item img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .home-projects .static-carousel .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.home-global-network {
  margin-top: 18.5rem;
}
@media only screen and (max-width: 74.9375em) {
  .home-global-network #chartdiv {
    margin-top: -7rem;
  }
}
.home-global-network__card {
  text-align: left;
  justify-content: flex-start;
  padding: 3rem;
  background-color: #1f1f1f;
  border: none;
  border-radius: 12px;
  min-height: 24.8rem;
}
@media only screen and (max-width: 119.9375em) {
  .home-global-network__card {
    padding: 2rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-global-network__card {
    height: 100%;
  }
}
.home-global-network__card .card__heading {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.home-global-network__card .card__heading span {
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
  font-family: "Montserrat", sans-serif;
  font-size: 7rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-global-network__card a.link {
  margin-top: 25px;
}

/*===================
ABOUT PAGE
===================*/
.about-hero {
  position: relative;
  margin-top: 12rem;
  padding-top: 6.5rem;
}
.about-hero .container {
  position: relative;
}
.about-hero::before {
  position: absolute;
  content: "";
  width: 55rem;
  height: 55rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  flex-grow: 0;
  -webkit-filter: blur(20rem);
  filter: blur(20rem);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
}
.about-hero h2 {
  margin-bottom: 3rem;
}
.about-hero img {
  margin-top: 11.5rem;
}

.about-benefits {
  margin-top: 18.5rem;
}
.about-benefits img {
  margin-bottom: 3rem;
}
.about-benefits h5 {
  margin-bottom: 15px;
}

.divider {
  position: relative;
  margin-top: 13.5rem;
  padding-top: 5rem;
}
.divider::before {
  position: absolute;
  content: "";
  width: 70rem;
  height: 70rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-filter: blur(130px);
  filter: blur(130px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
}
.divider img {
  position: relative;
  z-index: 10;
}

.about-importance {
  position: relative;
  margin-top: 3rem;
  padding-top: 15.5rem;
}
.about-importance::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 12.5rem;
  flex-grow: 0;
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
}
.about-importance h3 {
  margin-bottom: 2rem;
}
.about-importance__container {
  position: relative;
  padding-top: 8rem;
}
.about-importance__container::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5rem;
  flex-grow: 0;
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
}
.about-importance__img {
  --offset: var(--space);
  position: sticky;
  top: 3rem;
  height: fit-content;
}
.about-importance__icons {
  display: flex;
  flex-direction: column;
  position: relative;
}
.about-importance__icons--img {
  display: flex;
  justify-content: center;
}
.about-importance__icons--img:not(:first-of-type) {
  position: relative;
  margin-top: 9rem;
}
.about-importance__icons--img:not(:first-of-type)::before {
  position: absolute;
  content: "";
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 3rem;
  flex-grow: 0;
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
}
.about-importance ul {
  padding: 0;
}
.about-importance ul h5 {
  margin-bottom: 10px;
}

.about-global-hosting {
  margin-top: 18.5rem;
}
.about-global-hosting h3 {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 74.9375em) {
  .about-global-hosting #chartdiv {
    margin-top: -7rem;
  }
}
.about-global-hosting .card {
  padding: 28px 50px 29px;
  border-radius: 12px;
  background-color: #1f1f1f;
}

/*===================
SERVICES PAGE
===================*/
.services-hero-banner {
  margin-top: 18.5rem;
}
.services-hero-banner h2 {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 62em) {
  .services-hero-banner h2 br {
    display: none;
  }
}
.services-hero-banner__img {
  position: relative;
  padding-top: 11.5rem;
}
.services-hero-banner__img::before {
  position: absolute;
  content: "";
  width: 70rem;
  height: 70rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-filter: blur(110px);
  filter: blur(110px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
}
.services-hero-banner__img img {
  position: relative;
  z-index: 10;
}

.services {
  position: relative;
  margin-top: 18.5rem;
  z-index: 99;
}
.services h3 {
  margin-bottom: 2rem;
}
.services__card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 12px;
  background-color: #1f1f1f;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 74.9375em) {
  .services__card {
    padding: 2rem;
  }
}
.services__card h5 {
  margin-bottom: 2rem;
}
.services__card p {
  margin-bottom: 3rem;
}
.services__card--labels {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.services__card span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
  color: #fff;
  padding: 10px 20px 11px 21px;
  border-radius: 12px;
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.45), rgba(6, 127, 97, 0.45));
}
@media only screen and (max-width: 87.4375em) {
  .services__card span {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .services__card span {
    font-size: 1.4rem;
    padding: 10px 12px 11px 13px;
  }
}
.services hr {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.services__graphic, .services__hosting {
  margin-top: 9rem;
}

.home-services-projects {
  position: relative;
  padding-top: 18.5rem;
  z-index: 99;
}
.home-services-projects::before {
  position: absolute;
  content: "";
  width: 70rem;
  height: 70rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-filter: blur(110px);
  filter: blur(110px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
}
.home-services-projects h2 {
  position: relative;
  z-index: 10;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.home-services-projects p {
  position: relative;
  z-index: 10;
}
.home-services-projects .btn-primary {
  margin-left: auto;
  position: relative;
  z-index: 10;
}
.home-services-projects .carousel-wrapper .owl-theme {
  position: relative;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer {
  padding: 70px 0 65px;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  min-height: 30rem;
}
@media only screen and (max-width: 87.4375em) {
  .home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
    min-height: 25rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container {
    min-height: 20rem;
  }
}
.home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer .item__container img {
  border-radius: 15px;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer a.item img {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  transition: filter 0.3s ease;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-stage-outer a.item:hover img {
  filter: grayscale(0%) !important;
  -webkit-filter: grayscale(0%) !important;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-nav {
  position: absolute;
  left: 12px;
  bottom: 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  z-index: 99;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-nav .owl-prev {
  margin-left: -5px;
}
.home-services-projects .carousel-wrapper .owl-theme .owl-nav .owl-next {
  margin-right: -5px;
}
.home-services-projects .carousel-wrapper .owl-theme .nav-arrow {
  width: 45px;
  height: 45px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.home-services-projects .carousel-wrapper .owl-theme .nav-arrow.prev-slide {
  background-image: url("../images/icons/ico-arrow-nav-left.svg");
}
.home-services-projects .carousel-wrapper .owl-theme .nav-arrow.next-slide {
  background-image: url("../images/icons/ico-arrow-nav-right.svg");
}
.home-services-projects .static-carousel-3 {
  display: flex;
  gap: 15px;
  justify-content: left;
  flex-wrap: wrap;
  padding: 70px 0 65px;
}
.home-services-projects .static-carousel-3 .item {
  flex: 0 0 calc(33.333% - 15px);
  max-width: calc(33.333% - 15px);
}
.home-services-projects .static-carousel-3 .item img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .home-services-projects .static-carousel-3 .item {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .home-services-projects .static-carousel-3 .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*===================
PROJECTS PAGE
===================*/
.elementor {
  position: relative;
  padding-top: 18.5rem;
}
.elementor::before {
  position: absolute;
  content: "";
  width: 55rem;
  height: 55rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  flex-grow: 0;
  -webkit-filter: blur(20rem);
  filter: blur(20rem);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
  opacity: 0.5;
}
.elementor .wpr-grid-filters {
  margin-bottom: 5.5rem !important;
}
.elementor .e-con-inner {
  position: relative;
  padding: 0;
  z-index: 10;
}
.elementor .e-con-inner .elementor-element {
  overflow: hidden;
}
.elementor .e-con-inner .wpr-pointer-none.wpr-pointer-line-fx.wpr-pointer-fx-none span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.5s ease-in-out, -webkit-text-fill-color 0.5s ease-in-out;
}
.elementor .e-con-inner .wpr-pointer-none.wpr-pointer-line-fx.wpr-pointer-fx-none span:hover {
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-color: inherit;
  border: none;
}
.elementor .e-con-inner .wpr-pointer-none.wpr-pointer-line-fx.wpr-pointer-fx-none span.wpr-active-filter {
  width: 100%;
  padding: 18px 20px 17px;
  background-color: #1a6280;
  background-image: linear-gradient(to right, #1a6280, #067f61) !important;
  border: transparent;
  box-shadow: 0px 0px 12px rgba(26, 98, 128, 0.45);
  border-radius: 12px;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.elementor .e-con-inner .wpr-grid-item-inner {
  border-radius: 12px;
  background-color: #1f1f1f;
  overflow: hidden;
}
.elementor .e-con-inner .wpr-grid-item-inner .wpr-grid-item-below-content.elementor-clearfix {
  padding: 3rem;
}
.elementor .e-con-inner .wpr-grid-item-inner .wpr-grid-item-below-content.elementor-clearfix .wpr-grid-item-title a {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
.elementor .e-con-inner .wpr-grid-item-inner .wpr-grid-media-wrap {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  transition: filter 0.3s ease;
}
.elementor .e-con-inner .wpr-grid-item-inner .wpr-grid-media-hover {
  display: none;
}
.elementor .e-con-inner .wpr-grid-item:hover .wpr-grid-item-inner .wpr-grid-media-wrap {
  filter: grayscale(0%) !important;
  -webkit-filter: grayscale(0%) !important;
}
.elementor .e-con-inner .wpr-grid-item-excerpt {
  display: block;
  margin: 2rem 0 3rem;
}
.elementor .e-con-inner .wpr-grid-item-read-more a {
  position: relative;
  padding-right: 31px !important;
}
.elementor .e-con-inner .wpr-grid-item-read-more a span {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #067f61;
}
.elementor .e-con-inner .wpr-grid-item-read-more a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 18px;
  background-image: url("../images/icons/ico-arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.elementor .wpr-post-info .wpr-post-info-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.elementor .wpr-post-info .wpr-post-info-taxonomy span:not(.tax-sep) {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem !important;
  font-weight: normal;
  line-height: 1.6;
  color: #fff !important;
  padding: 10px 20px 11px 21px !important;
  border-radius: 12px !important;
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.45), rgba(6, 127, 97, 0.45));
}
@media only screen and (max-width: 87.4375em) {
  .elementor .wpr-post-info .wpr-post-info-taxonomy span:not(.tax-sep) {
    font-size: 1.6rem !important;
  }
}
@media only screen and (max-width: 74.9375em) {
  .elementor .wpr-post-info .wpr-post-info-taxonomy span:not(.tax-sep) {
    font-size: 1.4rem !important;
    padding: 10px 12px 11px 13px !important;
  }
}

.elementor-104 .elementor-element.elementor-element-b0e92f8 {
  height: fit-content;
  --offset: var(--space);
  position: sticky;
  top: 3rem;
}

.elementor-104 .elementor-element.elementor-element-f5a5737 a {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.2;
  color: #067f61;
  background: transparent;
  padding: 0 0 0 31px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.elementor-104 .elementor-element.elementor-element-f5a5737 a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
  background-image: url("../images/icons/ico-arrow-left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.wpr-button-effect.wpr-button-none span,
.elementor-button.elementor-button-link.elementor-size-sm span {
  color: #067f61 !important;
}
.wpr-button-effect.wpr-button-none:hover span,
.elementor-button.elementor-button-link.elementor-size-sm:hover span {
  color: #1a6280 !important;
}

.elementor .e-con-inner .wpr-grid-item-read-more a::after {
  background-image: url("../images/icons/ico-arrow-right.svg");
}
.elementor .e-con-inner .wpr-grid-item-read-more a:hover::after {
  background-image: url("../images/icons/ico-arrow-right-primary.svg");
}

.elementor-104 .elementor-element.elementor-element-f5a5737 a::before {
  background-image: url("../images/icons/ico-arrow-left.svg");
}
.elementor-104 .elementor-element.elementor-element-f5a5737 a:hover::before {
  background-image: url("../images/icons/ico-arrow-left-primary.svg");
}

/*===================
CONTACT PAGE
===================*/
.lets-connect {
  position: relative;
  margin-top: 18.5rem;
  z-index: 99;
}
.lets-connect h2 {
  margin-bottom: 2rem;
}
.lets-connect__links {
  position: relative;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 99;
}
.lets-connect__links a {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  width: fit-content;
}
.lets-connect__links a:hover {
  color: #1a6280;
}
.lets-connect__links a.ico-phone {
  padding-left: 38px;
}
.lets-connect__links a.ico-phone::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-phone.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lets-connect__links a.ico-phone:hover::before {
  background-image: url("../images/icons/ico-phone-primary.svg");
}
.lets-connect__links a.ico-envelope {
  padding-left: 36px;
}
.lets-connect__links a.ico-envelope::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 21px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-envelope.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lets-connect__links a.ico-envelope:hover::before {
  content: "";
  background-image: url("../images/icons/ico-envelope-primary.svg");
}
.lets-connect__socials {
  position: relative;
  display: flex;
  gap: 15px;
  margin-top: 5rem;
  z-index: 99;
}
.lets-connect__socials a:hover img {
  filter: invert(36%) sepia(28%) saturate(747%) hue-rotate(161deg) brightness(95%) contrast(90%);
}
.lets-connect hr {
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 5rem 0;
}
.lets-connect__before {
  position: relative;
}
.lets-connect__before::before {
  position: absolute;
  content: "";
  width: 78rem;
  height: 78rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-filter: blur(110px);
  filter: blur(110px);
  background-image: linear-gradient(to bottom, rgba(26, 98, 128, 0.25), rgba(6, 127, 97, 0.25));
  border-radius: 100%;
  z-index: 1;
}
@media only screen and (max-width: 119.9375em) {
  .lets-connect__before::before {
    width: 58rem;
    height: 58rem;
    -webkit-filter: blur(90px);
    filter: blur(90px);
  }
}
@media only screen and (max-width: 74.9375em) {
  .lets-connect__before::before {
    width: 48rem;
    height: 48rem;
    -webkit-filter: blur(90px);
    filter: blur(90px);
  }
}
.lets-connect__map {
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 62em) {
  .lets-connect__map--two {
    display: none;
  }
}
.lets-connect__card {
  position: relative;
  padding: 30px;
  border-radius: 12px;
  background-color: #1f1f1f;
  z-index: 10;
}
.lets-connect__card .form-outline {
  padding: 0;
  margin-bottom: 3rem;
}
.lets-connect__card .form-outline label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 2rem;
}
.lets-connect__card .form-outline input,
.lets-connect__card .form-outline textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  padding: 12px 34px 13px 35px;
  border: none;
  border-radius: 12px;
  background-color: #000;
  box-sizing: border-box;
}
.lets-connect__card .form-outline input::placeholder,
.lets-connect__card .form-outline textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.lets-connect__card .form-outline input:focus, .lets-connect__card .form-outline input:focus-visible,
.lets-connect__card .form-outline textarea:focus,
.lets-connect__card .form-outline textarea:focus-visible {
  border: none;
  outline: none;
}

/*===================
BOOKING PAGE
===================*/
.book-a-service {
  min-height: 99vh;
  /* FORMS */
}
.book-a-service .container, .book-a-service__row {
  min-height: 99vh;
}
.book-a-service__container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 12px;
  background-color: #1f1f1f;
  border: none;
}
.book-a-service__container .link {
  position: absolute;
  left: 0;
  top: -8rem;
  color: #1a6280;
  padding-left: 31px;
}
@media only screen and (max-width: 119.9375em) {
  .book-a-service__container .link {
    top: -5rem;
  }
}
@media only screen and (max-width: 87.4375em) {
  .book-a-service__container .link {
    top: -4rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .book-a-service__container .link {
    top: 2rem;
    left: 1rem;
    z-index: 999;
  }
}
.book-a-service__container .link::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-left-primary.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.book-a-service__container .link::after {
  display: none;
}
.book-a-service__container .link:hover {
  color: #067f61;
}
.book-a-service__container .link:hover::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.book-a-service__container .link:hover::after {
  display: none;
}
.book-a-service__container--heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 38%;
  background-color: #000;
  text-align: center;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 30px 5px rgba(26, 98, 128, 0.45);
  background-color: #1f1f1f;
  z-index: 99;
}
.book-a-service__container--heading img {
  height: 31.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .book-a-service__container--heading img {
    height: 24.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .book-a-service__container--heading {
    padding: 1.5rem;
  }
  .book-a-service__container--heading img {
    height: 20.5rem;
  }
  .book-a-service__container--heading h1 {
    font-size: 4.2rem;
  }
}
.book-a-service__container--form {
  position: relative;
  width: 62%;
}
.book-a-service__container--form h3 {
  margin-bottom: 1rem;
}
.book-a-service__container--form h4 {
  margin-bottom: 3rem;
}
.book-a-service__container--form p {
  margin-bottom: 3rem;
}
.book-a-service__container--form form label {
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.14;
  letter-spacing: 0.05px;
  margin-bottom: 10px;
}
.book-a-service__container--form form input,
.book-a-service__container--form form textarea,
.book-a-service__container--form form select {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  padding: 12px 34px 13px 35px;
  border: none;
  border-radius: 12px;
  background-color: #000;
  box-sizing: border-box;
}
.book-a-service__container--form form input::placeholder,
.book-a-service__container--form form textarea::placeholder,
.book-a-service__container--form form select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.book-a-service__container--form form input:focus, .book-a-service__container--form form input:focus-visible,
.book-a-service__container--form form textarea:focus,
.book-a-service__container--form form textarea:focus-visible,
.book-a-service__container--form form select:focus,
.book-a-service__container--form form select:focus-visible {
  border: none;
  outline: none;
}
.book-a-service__container--form form input[type=email],
.book-a-service__container--form form input[type=tel] {
  padding: 1.5rem 1rem;
}
.book-a-service__container--form form .input-group {
  border: none;
  border-radius: 15px;
}
.book-a-service__container--form form .input-group input {
  box-shadow: none;
}
.book-a-service__container--form form .input-group-text {
  background-color: #000;
  border: none;
  border-radius: 15px;
  padding: 0.375rem 0.5rem 0.375rem 1.5rem;
}
.book-a-service__container--form form .g-recaptcha {
  width: fit-content;
  overflow: hidden;
}
.book-a-service__container--form form .row.personal-information {
  margin-top: 3rem;
}
.book-a-service__container--form form .row.personal-information input,
.book-a-service__container--form form .row.personal-information select {
  width: 100%;
}
.book-a-service__container--form form textarea {
  width: 100%;
}
.book-a-service__container--form .form-group.checkbox-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.book-a-service__container--form .form-group.checkbox-group input {
  position: relative;
  width: 20px;
  height: 20px;
  opacity: 1;
  z-index: 99;
  opacity: 0;
  cursor: pointer;
}
.book-a-service__container--form .form-group.checkbox-group .checkbox-span {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #000;
  top: 0;
  left: 0;
  border-radius: 5px;
}
.book-a-service__container--form .form-group.checkbox-group input:checked ~ .checkbox-span {
  background-color: #000;
  background-image: url("../images/icons/ico-x.svg");
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
}
.book-a-service__container--form .form-group.checkbox-group label {
  margin-bottom: 0;
  margin-left: 15px;
}
.book-a-service__container h1 {
  margin-bottom: 1.5rem;
}
.book-a-service .progress {
  position: absolute;
  bottom: 0;
  width: calc(100% + 15px);
  background-color: #000;
  box-shadow: 0px 0px 15px 3px rgba(26, 98, 128, 0.75);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(26, 98, 128, 0.75);
  -moz-box-shadow: 0px 0px 15px 3px rgba(26, 98, 128, 0.75);
  margin-left: -15px;
}
.book-a-service .progress-bar {
  background-color: #1a6280;
}
.book-a-service label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.book-a-service #qbox-container {
  background-repeat: repeat;
  position: relative;
  padding: 62px;
  min-height: 630px;
}
@media only screen and (max-width: 87.4375em) {
  .book-a-service #qbox-container {
    min-height: fit-content;
    padding: 32px 62px;
  }
}
@media only screen and (max-width: 74.9375em) {
  .book-a-service #qbox-container {
    padding: 22px;
  }
}
.book-a-service #steps-container {
  margin: auto;
  min-height: 420px;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
.book-a-service .step {
  display: none;
}
.book-a-service .progress {
  border-radius: 0px !important;
}
.book-a-service #q-box__buttons {
  display: flex;
  gap: 15px;
}
.book-a-service .btn-primary {
  width: 100%;
  max-width: 14rem;
}
.book-a-service .btn-primary:hover {
  background-color: #107580;
}

/* PRELOADER */
#preloader-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#preloader {
  background-image: url("../images/icons/preloader.png");
  background-size: cover;
  width: 120px;
  height: 119px;
  border-top-color: #1a6280;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -75px;
  -webkit-animation: spin 3.5s linear infinite;
  animation: spin 3.5s linear infinite;
  z-index: 1001;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#preloader-wrapper .preloader-section {
  width: 51%;
  height: 100%;
  position: fixed;
  top: 0;
  background: #000;
  z-index: 1000;
}

#preloader-wrapper .preloader-section.section-left {
  left: 0;
}

#preloader-wrapper .preloader-section.section-right {
  right: 0;
}

.loaded #preloader-wrapper .preloader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader-wrapper .preloader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #preloader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* MEDIA QUERIES */
@media (min-width: 990px) and (max-width: 1199px) {
  #title-container {
    padding: 80px 28px 28px 28px;
  }
  #steps-container {
    width: 85%;
  }
}
@media only screen and (max-width: 74.9375em) {
  #steps-container {
    width: 100%;
  }
}
.calendar-booking {
  position: relative;
  min-height: 99vh;
  padding-bottom: 5rem;
}
.calendar-booking .container, .calendar-booking__row {
  min-height: 99vh;
}
.calendar-booking .container iframe, .calendar-booking__row iframe {
  min-height: 68.4rem;
}
.calendar-booking__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}
.calendar-booking__buttons .btn {
  max-width: 20.5rem;
}
.calendar-booking__buttons .btn-secondary span {
  color: #1a6280;
}
.calendar-booking__buttons .btn-secondary:hover span {
  color: #fff;
}

/*===================
ERROR 404 PAGE
===================*/
.error {
  position: relative;
  height: 100vh;
}
.error .container,
.error .row {
  height: 100%;
}
.error__container--span span {
  background-image: linear-gradient(to bottom, #1a6280, #067f61);
  font-family: "Montserrat", sans-serif;
  font-size: 28rem;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 47.9375em) {
  .error__container--span span {
    font-size: 24rem;
  }
}
@media only screen and (max-width: 35.9375em) {
  .error__container--span span {
    font-size: 20rem;
  }
}
.error__container p {
  margin: 30px 0 40px;
}
.error__container canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
}
.error__buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  z-index: 99;
}

/*===================
SUCCESS PAGE
===================*/
.success {
  position: relative;
  height: 100vh;
}
.success .container,
.success .row {
  height: 100%;
}
.success__container p {
  margin: 30px 0 40px;
}
.success__container canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
}
.success__buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  z-index: 99;
}

/*====================
LEGAL PAGES
====================*/
.privacy-policy-section,
.terms,
.cookies {
  margin: 15rem 0;
}
@media only screen and (min-width: 75em) {
  .privacy-policy-section,
  .terms,
  .cookies {
    min-height: 30vh;
  }
}
@media only screen and (min-width: 160em) {
  .privacy-policy-section,
  .terms,
  .cookies {
    min-height: 40vh;
  }
}
@media only screen and (max-width: 61.9375em) {
  .privacy-policy-section,
  .terms,
  .cookies {
    margin: 8.5rem 0;
  }
}
@media only screen and (max-width: 417px) {
  .privacy-policy-section,
  .terms,
  .cookies {
    margin: 8rem 0;
  }
}
@media only screen and (max-width: 61.9375em) {
  .privacy-policy-section,
  .terms,
  .cookies {
    min-height: 20vh;
  }
}
.privacy-policy-section h2,
.terms h2,
.cookies h2 {
  margin-bottom: 3rem;
}
.privacy-policy-section h3,
.privacy-policy-section h4,
.privacy-policy-section h5,
.terms h3,
.terms h4,
.terms h5,
.cookies h3,
.cookies h4,
.cookies h5 {
  margin-bottom: 1.5rem;
}
.privacy-policy-section ul li,
.terms ul li,
.cookies ul li {
  list-style-type: disc;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.22;
  margin-bottom: 1.5rem;
}
.privacy-policy-section ol li,
.terms ol li,
.cookies ol li {
  list-style-type: decimal;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.22;
  margin-bottom: 1.5rem;
}
.privacy-policy-section table.table-terms,
.terms table.table-terms,
.cookies table.table-terms {
  border-collapse: separate;
  border-spacing: 10px;
  border: 2px solid #fff; /* Adds border around the entire table */
}
.privacy-policy-section table.table-terms thead,
.terms table.table-terms thead,
.cookies table.table-terms thead {
  background-color: rgba(255, 255, 255, 0.5);
}
.privacy-policy-section table.table-terms *,
.terms table.table-terms *,
.cookies table.table-terms * {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.22;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px; /* Adjust the padding size as needed */
}
.privacy-policy-section p,
.terms p,
.cookies p {
  margin-bottom: 1.5rem;
}

/*===================
FOOTER
===================*/
.footer-section {
  margin-top: 7rem;
  padding-bottom: 6rem;
}
.footer-section__monogram {
  height: 20.5rem;
  margin-left: -4rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 47.9375em) {
  .footer-section__monogram {
    margin: 0 auto 2rem auto;
  }
}
.footer-section h6 {
  margin-top: 3.3rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-section ul {
  padding: 0;
  margin-top: 3.5rem;
}
.footer-section ul li {
  padding: 0;
}
.footer-section ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-section ul li a {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
}
.footer-section ul li a:hover {
  color: #1a6280;
}
.footer-section ul li a.ico-phone {
  padding-left: 33px;
}
.footer-section ul li a.ico-phone::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-phone.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-section ul li a.ico-phone:hover::before {
  background-image: url("../images/icons/ico-phone-primary.svg");
}
.footer-section ul li a.ico-envelope {
  padding-left: 31px;
}
.footer-section ul li a.ico-envelope::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-envelope.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-section ul li a.ico-envelope:hover::before {
  content: "";
  background-image: url("../images/icons/ico-envelope-primary.svg");
}
.footer-section__copyright {
  margin-top: 8rem;
}
@media only screen and (max-width: 47.9375em) {
  .footer-section__copyright {
    text-align: center;
  }
}
.footer-section__copyright hr {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-section__copyright p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section__copyright--socials {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 47.9375em) {
  .footer-section__copyright--socials {
    justify-content: center;
    margin-top: 20px;
  }
}
.footer-section__copyright--socials a:not(:last-of-type) {
  margin-right: 15px;
}
.footer-section__copyright--socials a:hover img {
  filter: invert(36%) sepia(28%) saturate(747%) hue-rotate(161deg) brightness(95%) contrast(90%);
}

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