@import url("https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@font-face {
  font-family: "RoundedElegance";
  src: url("../font/RoundedElegance.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*===================
BASE STYLING
===================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  height: 100%;
}

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

/*===================
TYPOGRAPHY
===================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
button {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: #333333;
  margin: 0;
}

h1 {
  font-family: "RoundedElegance";
  font-size: 4.8rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: -0.96px;
}
@media only screen and (max-width: 74.9375em) {
  h1 {
    font-size: 4.2rem;
  }
}

h2 {
  font-family: "RoundedElegance";
  font-size: 3.6rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: -0.36px;
}

h3 {
  font-family: "Marcellus SC", serif;
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 74.9375em) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-family: "RoundedElegance";
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.4;
}

h5 {
  font-family: "RoundedElegance";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
}

h6 {
  font-family: "RoundedElegance";
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
}

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

.sub-label {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
  color: #2a6f6f;
}

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

ul li,
ol li {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
}

/*====================
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;
}

#back-to-top {
  display: inline-block;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  position: fixed;
  bottom: 20px;
  right: 15px;
  background-color: #f4c542;
  background-image: linear-gradient(to bottom, #f4c542, #2a6f6f);
  transition: background-color 0.4s, background-image 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(244, 197, 66, 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: #f4c542;
  background-image: linear-gradient(to bottom, #2a6f6f, #f4c542);
  transition: all 0.4s ease-in-out;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/*===================
BREADCRUMBS
===================*/
.breadcrumbs {
  margin-top: 15px;
}
.breadcrumbs__card {
  border-radius: 12px;
  border: solid 2px #2b2b2b;
  background-color: transparent;
  padding: 16px 27px;
  width: fit-content;
}
.breadcrumbs__card .breadcrumb {
  padding: 0;
  margin: 0;
}
.breadcrumbs__card .breadcrumb li {
  padding: 0;
}
.breadcrumbs__card .breadcrumb li a {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #2b2b2b;
  text-transform: uppercase;
}
.breadcrumbs__card .breadcrumb .breadcrumb-item {
  position: relative;
}
.breadcrumbs__card .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 34px;
  margin-left: 15px;
}
.breadcrumbs__card .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background-image: url("../images/icons/ico-nav-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/*===================
BUTTONS
===================*/
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  width: 100%;
  max-width: 20.5rem;
  padding: 16px;
}
@media only screen and (max-width: 74.9375em) {
  .btn {
    padding: 14px;
  }
}
.btn span {
  position: relative;
  z-index: 10;
  transition: all 0.4s ease-in-out;
  color: #2b2b2b;
}
.btn::before {
  position: absolute;
  content: "";
  opacity: 0;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: 102%;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}
.btn:hover::before {
  content: "";
  opacity: 1;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.btn-primary {
  background-color: #f4c542;
  border: solid 2px #f4c542;
}
.btn-primary:hover {
  background-color: #f4c542;
  border: 2px solid #f4c542;
}
.btn-primary:hover span {
  color: #fff;
}
.btn-primary::before {
  background-color: #2a6f6f;
  border: solid 2px #2a6f6f;
}
.btn-primary:hover::before {
  background-color: #2a6f6f;
  border: 2px solid #2a6f6f;
}

.btn-secondary {
  background: transparent;
  border: solid 2px #2b2b2b;
  overflow: hidden;
}
.btn-secondary:hover {
  background: transparent;
  border: 2px solid rgba(43, 43, 43, 0);
}
.btn-secondary:hover span {
  color: #fff;
}
.btn-secondary::before {
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #f4c542, #2a6f6f);
  border-radius: 12px;
  top: -1px;
  right: 102%;
  bottom: -1px;
  left: -2px;
}
.btn-secondary:hover::before {
  background-image: linear-gradient(to right, #f4c542, #2a6f6f);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #f4c542, #2a6f6f);
  border-radius: 12px;
}

.btn-navigation {
  background-color: #f4c542;
  background-image: linear-gradient(to right, #2a6f6f, #f4c542);
  border: transparent;
  overflow: hidden;
  min-width: 20.5rem;
}
.btn-navigation span {
  color: #fff;
}
.btn-navigation:hover span {
  color: #fff;
}
.btn-navigation::before {
  background-image: linear-gradient(to right, #f4c542, #2a6f6f);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #f4c542, #2a6f6f);
  border-radius: 12px;
  top: -1px;
  right: 102%;
  bottom: -1px;
  left: -2px;
}
.btn-navigation:hover::before {
  background-image: linear-gradient(to right, #f4c542, #2a6f6f);
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #f4c542, #2a6f6f);
  border-radius: 12px;
}

.btn-white {
  background: transparent;
  border: solid 2px #fff;
  overflow: hidden;
}
.btn-white span {
  color: #fff;
}
.btn-white:hover {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0);
}
.btn-white:hover span {
  color: #2b2b2b;
}
.btn-white::before {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 12px;
  top: -1px;
  right: 102%;
  bottom: -1px;
  left: -2px;
}
.btn-white:hover::before {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  border: 1px solid #fff;
  padding: 2rem;
  background-color: #fff;
  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: #f4c542;
}
.cookie-banner .privacy-link:hover {
  color: #2a6f6f;
}
.cookie-banner__buttons {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
}
.cookie-banner__buttons .btn-secondary {
  margin-left: 15px;
}

.medical-devices-divider__card {
  padding: 6rem 5rem;
  background-image: url("../images/medical-device.webp");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 74.9375em) {
  .medical-devices-divider__card {
    background-position: right -9rem center;
  }
}
.medical-devices-divider__card::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 40px;
  background-image: linear-gradient(to right, #2a6f6f 0%, #2a6f6f 50%, rgba(42, 111, 111, 0) 100%);
}
.medical-devices-divider__card * {
  position: relative;
  color: #fff;
  z-index: 10;
}
.medical-devices-divider__card h2 {
  margin-bottom: 2.5rem;
}
.medical-devices-divider__card--buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 3rem;
}

@media only screen and (max-width: 87.4375em) {
  .model-founder {
    margin-top: 12rem;
  }
}
.model-founder__card {
  padding: 0;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 40px;
}

.modal {
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.modal-content {
  border-radius: 4rem;
  background-color: #fff;
}
.modal-header {
  position: relative;
  padding: 0;
}
.modal-header button {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  border: none;
  background: transparent;
  z-index: 99;
  border-radius: 100%;
}
.modal-header button img {
  width: 3.5rem;
  height: 3.5rem;
}
.modal-body {
  padding: 3rem;
}
.modal-body h4,
.modal-body h5 {
  color: #2a6f6f !important;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .modal-body h4,
  .modal-body h5 {
    margin-bottom: 1.5rem;
  }
}
.modal-body p {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 87.4375em) {
  .modal-body p {
    margin-bottom: 1.5rem;
  }
}
.modal-body ul li {
  list-style-type: disc;
}
.modal-body ul li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .modal-body ul li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.modal-body hr {
  margin: 2.5rem 0;
  flex-grow: 0;
  background-color: #333333;
  opacity: 1;
}
@media only screen and (max-width: 87.4375em) {
  .modal-body hr {
    margin: 1.5rem 0;
  }
}

/*===================
NEWSLETTER
===================*/
.newsletter__card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 41px;
  border-radius: 40px;
  background-color: #2a6f6f;
}
@media only screen and (max-width: 74.9375em) {
  .newsletter__card {
    padding: 31px;
  }
}
.newsletter__card h6 {
  font-size: 1.4rem;
  color: #fff;
}
.newsletter__card h5 {
  color: #fff;
}
.newsletter__card .form {
  margin-top: 1.5rem;
  min-width: 42.5rem;
}
.newsletter__card .form label {
  display: none;
}
.newsletter__card .form-outline {
  position: relative;
}
.newsletter__card .form input {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  border-radius: 12px;
  border: solid 2px #fff;
  background: transparent;
  padding: 16px;
}
.newsletter__card .form input::placeholder {
  color: #fff;
}
.newsletter__card .form input:focus {
  box-shadow: none;
}
.newsletter__card .form .btn-primary {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #2b2b2b;
  width: fit-content;
  max-width: fit-content;
  padding: 7px 23px 7px;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.newsletter__card .form .btn-primary:hover span {
  color: #2b2b2b;
}
.newsletter__card .form .btn-primary::before {
  background-color: #fff;
  border: solid 2px #fff;
}
.newsletter__card .form .btn-primary:hover::before {
  background-color: #fff;
  border: 2px solid #fff;
}

.secure-lifeline {
  padding: 32.5rem 0 37.1rem;
  margin-top: -32px;
  background-image: url("../images/bg-heartbeat.webp");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 119.9375em) {
  .secure-lifeline {
    background-size: contain;
  }
}
@media only screen and (max-width: 87.4375em) {
  .secure-lifeline {
    padding: 22.5rem 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 74.9375em) {
  .secure-lifeline {
    padding: 14.5rem 0;
    background-size: cover;
  }
}
.secure-lifeline__card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 30px 30px 30px;
  border-radius: 40px;
  box-shadow: 0 0 7px 1px rgba(244, 197, 66, 0.25);
  background-color: #2a6f6f;
}
.secure-lifeline__card * {
  color: #fff;
}

/*===================
MAIN NAVIGATION
===================*/
.navigation {
  margin-top: 3rem;
}
.navigation .top-navigation {
  margin-bottom: 15px;
}
.navigation .top-navigation ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.navigation .top-navigation ul li:not(:last-of-type) {
  border-right: 1px solid #333333;
  padding-right: 15px;
  margin-right: 15px;
}
.navigation .main-navigation .navbar {
  background-color: #374041;
  border-radius: 20px;
  padding: 0;
}
.navigation .main-navigation .navbar .container-fluid {
  padding: 0;
}
.navigation .main-navigation .navbar-brand {
  display: block;
}
.navigation .main-navigation .navbar-brand img {
  height: 7.5rem;
}
.navigation .main-navigation .navbar-collapse {
  justify-content: flex-end;
  padding: 0 12px;
}
@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 .nav-item:not(:last-of-type) {
  margin-right: 2rem;
}
.navigation .main-navigation .navbar-nav .nav-link {
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
}
.navigation .main-navigation .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 3px;
  background-color: #f4c542;
  background-image: linear-gradient(to right, #2a6f6f, #f4c542);
  border-radius: 12px;
  transition: 0.15s ease-in-out;
}
.navigation .main-navigation .navbar-nav .nav-link:hover, .navigation .main-navigation .navbar-nav .nav-link:focus {
  background: linear-gradient(to right, #2a6f6f, #f4c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigation .main-navigation .navbar-nav .nav-link:hover::before, .navigation .main-navigation .navbar-nav .nav-link:focus::before {
  position: absolute;
  content: "";
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background-color: #f4c542;
  background-image: linear-gradient(to right, #2a6f6f, #f4c542);
  border-radius: 12px;
  transition: 0.15s ease-in-out;
}
.navigation .main-navigation .navbar-nav .nav-link.active {
  font-weight: 500;
  background: linear-gradient(to right, #2a6f6f, #f4c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigation .main-navigation .navbar-nav .nav-link.active::before {
  position: absolute;
  content: "";
  opacity: 1;
  left: 50%;
  bottom: -10px;
  width: 5px;
  height: 5px;
  background-color: #f4c542;
  background-image: linear-gradient(to right, #2a6f6f, #f4c542);
  border-radius: 100%;
}
.navigation .main-navigation .navbar-nav .nav-link.dropdown-toggle {
  position: relative;
  padding-right: 3rem;
}
.navigation .main-navigation .navbar-nav .nav-link.dropdown-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-down.svg");
  width: 3rem;
  height: 3rem;
  border: none;
}
.navigation .main-navigation .navbar-nav .nav-link.dropdown-toggle:hover::after, .navigation .main-navigation .navbar-nav .nav-link.dropdown-toggle.show::after, .navigation .main-navigation .navbar-nav .nav-link.dropdown-toggle.active::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../images/icons/ico-arrow-down-primary.svg");
  width: 3rem;
  height: 3rem;
  border: none;
  transition: 0.15s ease-in-out;
}
.navigation .main-navigation .navbar-nav .dropdown {
  position: relative;
}
.navigation .main-navigation .navbar-nav .dropdown-container {
  position: absolute;
  bottom: -3.5rem;
}
.navigation .main-navigation .navbar-nav .dropdown-menu {
  padding: 1rem;
  background-color: #374041;
  border: none;
  border-radius: 10px;
}
.navigation .main-navigation .navbar-nav .dropdown-menu li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.navigation .main-navigation .navbar-nav .dropdown-item {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
}
.navigation .main-navigation .navbar-nav .dropdown-item:hover, .navigation .main-navigation .navbar-nav .dropdown-item:focus {
  background: linear-gradient(to right, #2a6f6f, #f4c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*===================
HOME PAGES
===================*/
.hero-banner {
  position: relative;
  margin-top: 11rem;
  overflow: hidden;
}
@media only screen and (max-width: 74.9375em) {
  .hero-banner {
    margin-top: 8rem;
  }
}
.hero-banner__content--carousel {
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 120em) {
  .hero-banner__content--carousel {
    height: 71.5rem;
  }
}
@media only screen and (max-width: 119.9375em) {
  .hero-banner__content--carousel {
    height: 71.5rem;
  }
}
@media only screen and (max-width: 87.4375em) {
  .hero-banner__content--carousel {
    height: 44.5rem;
  }
}
@media only screen and (max-width: 74.9375em) {
  .hero-banner__content--carousel {
    height: 37rem;
  }
}
.hero-banner__content--carousel .owl-carousel .owl-stage-outer {
  padding-bottom: 3px;
}
.hero-banner__content--carousel h1 {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 74.9375em) {
  .hero-banner__content--carousel h1 {
    margin-bottom: 2rem;
  }
}
.hero-banner__buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 4rem;
}
@media only screen and (max-width: 74.9375em) {
  .hero-banner__buttons {
    margin-top: 3rem;
  }
}
.hero-banner .carousel-wrapper .owl-carousel {
  position: relative;
  padding-bottom: 8.5rem;
}
.hero-banner .carousel-wrapper .owl-nav {
  position: absolute;
  display: flex;
  gap: 8.6rem;
  bottom: 0;
  left: 0;
  margin: 0;
}
.hero-banner .carousel-wrapper .owl-nav [class*=owl-] {
  margin: 0;
}
.hero-banner .carousel-wrapper .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.hero-banner .carousel-wrapper .owl-nav .nav-arrow {
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner .carousel-wrapper .owl-nav .nav-arrow.prev-slide {
  background-image: url("../images/icons/ico-arrow-left.svg");
}
.hero-banner .carousel-wrapper .owl-nav .nav-arrow.next-slide {
  background-image: url("../images/icons/ico-arrow-right.svg");
}
.hero-banner .carousel-wrapper .owl-dots {
  position: absolute;
  display: flex;
  gap: 5px;
  bottom: 7px;
  left: 5.5rem;
  z-index: 99;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot {
  border: solid 3px #333333;
  border-radius: 100%;
  margin: 0;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot span {
  background: transparent;
  margin: 3px;
  width: 10px;
  height: 10px;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot:hover {
  background-color: #2a6f6f;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot.active span {
  background-color: #2a6f6f;
  opacity: 1;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot.active:hover {
  background-color: #f4c542;
}
.hero-banner .carousel-wrapper .owl-dots .owl-dot.active:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}
.hero-banner__image--carousel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  justify-content: flex-end;
}
.hero-banner__image--carousel #owl-carousel-2 {
  padding-bottom: 0;
}
.hero-banner__image--carousel #owl-carousel-2 .owl-stage-outer {
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}
@media only screen and (min-width: 160em) {
  .hero-banner__image--carousel {
    right: 10%;
  }
  .hero-banner__image--carousel .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .hero-banner__image--carousel .owl-item img {
    width: inherit;
  }
  .hero-banner__image--carousel .owl-stage-outer {
    border-radius: 4rem;
  }
}

.core-offerings {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .core-offerings {
    margin-top: 12rem;
  }
}
.core-offerings h2 {
  margin-bottom: 2.5rem;
}
.core-offerings__card {
  align-items: flex-start;
  padding: 3rem;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 4rem;
  box-shadow: 0 0 7px 1px rgba(42, 111, 111, 0.25);
  height: 100%;
}
.core-offerings__card img {
  margin-bottom: 10px;
}
.core-offerings__card h3,
.core-offerings__card h4 {
  margin-bottom: 15px;
}
.core-offerings__card img {
  height: 4.5rem;
}
.core-offerings__card ul {
  margin-top: 15px;
}
.core-offerings__card ul li {
  list-style-type: disc;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
}
.core-offerings__card--cta {
  background-color: #2a6f6f;
}
.core-offerings__card--cta * {
  color: #fff;
}
.core-offerings__card--cta .btn-white {
  margin-top: 2.5rem;
}

.foundational-advantage {
  margin: 15rem 0;
}
@media only screen and (max-width: 87.4375em) {
  .foundational-advantage {
    margin: 12rem 0;
  }
}
.foundational-advantage h2 {
  margin-bottom: 2.5rem;
}
.foundational-advantage p:not(:last-of-type) {
  margin-bottom: 15px;
}
.foundational-advantage__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4rem;
}
.foundational-advantage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' depending on your layout needs */
  object-position: left top; /* aligns image to the left */
  display: block;
}
@media only screen and (max-width: 74.9375em) {
  .foundational-advantage__image img {
    object-position: center top;
  }
}
.foundational-advantage__video {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4rem;
  box-shadow: 0 0 20px rgba(42, 111, 111, 0.3);
}
.foundational-advantage__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foundational-advantage__video .playPauseBtn {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: transparent;
  border-radius: 100%;
  cursor: pointer;
}
.foundational-advantage__video .playPauseBtn img {
  width: 100%;
  height: 100%;
}
.foundational-advantage__content {
  padding: 20rem 0 32rem;
}
.foundational-advantage__card {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  gap: 10rem;
  padding: 32px 7rem 33px 0;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  box-shadow: 0 0 7px 1px rgba(42, 111, 111, 0.25);
  border-radius: 40px;
  margin-top: -12.1rem;
}
@media only screen and (max-width: 87.4375em) {
  .foundational-advantage__card {
    gap: 8rem;
    padding: 32px 3rem 33px 0;
  }
}
@media only screen and (max-width: 74.9375em) {
  .foundational-advantage__card {
    gap: 4rem;
    padding: 22px 3rem 23px 0;
  }
}
.foundational-advantage__card * {
  color: #000;
}
.foundational-advantage__card--item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 74.9375em) {
  .foundational-advantage__card--item {
    gap: 10px;
  }
}
.foundational-advantage__card--item img {
  height: 5.5rem;
}
@media only screen and (max-width: 74.9375em) {
  .foundational-advantage__card--item img {
    height: 4rem;
  }
}

.home-about {
  position: relative;
  margin-top: 15rem;
  overflow: hidden;
  padding: 7.8rem 0;
}
@media only screen and (max-width: 87.4375em) {
  .home-about {
    margin-top: 12rem;
    margin-bottom: -5rem;
  }
}
.home-about__content {
  position: relative;
  z-index: 99;
}
.home-about h2 {
  margin-bottom: 2.5rem;
}
.home-about hr {
  margin: 3rem 0;
  height: 1.6px;
  background-color: #333333;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 1;
}
.home-about__founder {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}
.home-about__founder--card {
  min-width: 20.5rem;
  height: 14.4rem;
  flex-grow: 1;
  align-items: center;
  border-radius: 40px;
  border: none;
  box-shadow: 0 0 7px 1px rgba(42, 111, 111, 0.25);
  background-color: rgba(42, 111, 111, 0.1);
}
.home-about__founder--card img {
  width: 9.6rem;
}
.home-about__founder--content {
  border: none;
  background: transparent;
}
.home-about__founder--content h5 {
  margin-bottom: 1rem;
}
.home-about__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 3rem;
}
.home-about__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  justify-content: flex-end;
}
.home-about__container--card {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7rem;
  padding-right: 8rem;
  width: 100%;
  height: 100%;
  background-color: #2a6f6f;
  border: none;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}
.home-about__container--card .card__number {
  width: 100%;
  max-width: 18rem;
}
@media only screen and (max-width: 119.9375em) {
  .home-about__container--card .card__number {
    display: none;
  }
}
.home-about__container--card .card__number * {
  color: #fff;
}
.home-about__container--card .card__number span {
  font-family: "Marcellus SC", serif;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-right: 1rem;
}

.global-experience {
  margin: -12.2rem 0 20rem;
}
@media only screen and (max-width: 87.4375em) {
  .global-experience {
    margin: -7.2rem 0 12rem;
  }
}
.global-experience p {
  margin: 2.5rem 0 3rem;
}

/*===================
ABOUT PAGES
===================*/
.about-hero-banner {
  margin-top: 8.4rem;
}
@media only screen and (max-width: 87.4375em) {
  .about-hero-banner {
    margin-top: 5.4rem;
  }
}
.about-hero-banner h2 {
  margin-bottom: 2.5rem;
}
.about-hero-banner p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.our-founder {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder {
    margin-top: 12rem;
  }
}
.our-founder__card {
  padding: 0 28px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 40px;
}
@media only screen and (max-width: 74.9375em) {
  .our-founder__card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4rem;
    padding: 0;
  }
  .our-founder__card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' depending on your layout needs */
    object-position: center top; /* aligns image to the left */
    display: block;
  }
}
.our-founder__card--experience {
  display: flex;
  justify-content: center;
  padding: 37px;
  border-radius: 40px;
  background-color: #2a6f6f;
  width: 100%;
  max-width: 20.5rem;
  height: 100%;
  max-height: 20.5rem;
  margin-left: 11rem;
  margin-top: -10.25rem;
}
.our-founder__card--experience span {
  font-family: "Marcellus SC", serif;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.4;
}
.our-founder__card--experience p {
  margin: 0 !important;
}
.our-founder__card--experience * {
  color: #fff;
}
.our-founder h2 {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder h2 {
    margin-bottom: 0;
  }
}
.our-founder h4,
.our-founder h5 {
  color: #2a6f6f;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder h4,
  .our-founder h5 {
    margin-bottom: 1.5rem;
  }
}
.our-founder p {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder p {
    margin-bottom: 1.5rem;
  }
}
.our-founder ul li {
  list-style-type: disc;
}
.our-founder ul li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder ul li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.our-founder hr {
  margin: 3.5rem 0;
  flex-grow: 0;
  background-color: #333333;
  opacity: 1;
}
@media only screen and (max-width: 87.4375em) {
  .our-founder hr {
    margin: 1.5rem 0;
  }
}
.our-founder .btn-secondary {
  margin-top: 3.5rem;
}

.our-mission {
  margin-top: 5.25rem;
}
@media only screen and (max-width: 74.9375em) {
  .our-mission {
    margin-top: 12rem;
  }
}
.our-mission h3 {
  margin-bottom: 2.5rem;
}
.our-mission img {
  width: 100%;
}

.why-choose-us {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .why-choose-us {
    margin-top: 12rem;
  }
}
.why-choose-us__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4rem;
}
.why-choose-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' depending on your layout needs */
  object-position: left top; /* aligns image to the left */
  display: block;
}
.why-choose-us h2 {
  margin-bottom: 2.5rem;
}
.why-choose-us__list {
  position: relative;
  margin-top: 5rem;
}
.why-choose-us__list::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 8px;
  bottom: 4rem;
  width: 4px;
  background-color: #2a6f6f;
}
.why-choose-us__list--item {
  position: relative;
  padding-left: 7rem;
}
.why-choose-us__list--item::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: #2a6f6f;
  border-radius: 100%;
}
.why-choose-us__list--item:not(:last-of-type) {
  margin-bottom: 3rem;
}
.why-choose-us__list--item .sub-label {
  color: #333333;
}

.experienced-team {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team {
    margin-top: 12rem;
  }
}
.experienced-team h2 {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team h2 {
    margin-bottom: 2.5;
  }
}
.experienced-team__card {
  padding: 9rem 3.5rem 0;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 40px;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team__card {
    height: 100%;
  }
  .experienced-team__card img {
    margin-top: auto;
  }
}
.experienced-team h3,
.experienced-team h5 {
  margin-bottom: 2.5rem;
  color: #2a6f6f;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team h3,
  .experienced-team h5 {
    margin-bottom: 1.5rem;
  }
}
.experienced-team p {
  margin-bottom: 1rem;
}
.experienced-team p + h1, .experienced-team p + h2, .experienced-team p + h3, .experienced-team p + h4, .experienced-team p + h5, .experienced-team p + h6 {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team p + h1, .experienced-team p + h2, .experienced-team p + h3, .experienced-team p + h4, .experienced-team p + h5, .experienced-team p + h6 {
    margin-bottom: 1.5rem;
  }
}

.experienced-team ul li {
  list-style-type: disc;
}
.experienced-team ul li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team ul li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.experienced-team hr {
  margin: 3.5rem 0;
  flex-grow: 0;
  background-color: #333333;
  opacity: 1;
}
@media only screen and (max-width: 87.4375em) {
  .experienced-team hr {
    margin: 1.5rem 0;
  }
}

.our-experience {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .our-experience {
    margin-top: 12rem;
  }
}
.our-experience__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem 12.5rem;
  flex-wrap: wrap;
  margin-top: 4.5rem;
}

.testimonials {
  margin-top: -12.1rem;
  margin-bottom: 23rem;
}
@media only screen and (max-width: 87.4375em) {
  .testimonials {
    margin-top: -7rem;
    margin-bottom: 13rem;
  }
}
.testimonials h2 {
  margin-bottom: 5rem;
}
.testimonials__card {
  background: transparent;
  border: none;
}
.testimonials .sub-label {
  margin-top: 15px;
}
.testimonials .carousel-wrapper .owl-carousel {
  position: relative;
  padding-bottom: 8.5rem;
}
.testimonials .carousel-wrapper #owl-carousel-2 {
  padding-bottom: 0;
}
.testimonials .carousel-wrapper #owl-carousel-2 .owl-stage-outer {
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}
.testimonials .carousel-wrapper .owl-nav {
  position: absolute;
  display: flex;
  gap: 8.6rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.testimonials .carousel-wrapper .owl-nav [class*=owl-] {
  margin: 0;
}
.testimonials .carousel-wrapper .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.testimonials .carousel-wrapper .owl-nav .nav-arrow {
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonials .carousel-wrapper .owl-nav .nav-arrow.prev-slide {
  background-image: url("../images/icons/ico-arrow-left.svg");
}
.testimonials .carousel-wrapper .owl-nav .nav-arrow.next-slide {
  background-image: url("../images/icons/ico-arrow-right.svg");
}
.testimonials .carousel-wrapper .owl-dots {
  position: absolute;
  display: flex;
  gap: 5px;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot {
  border: solid 3px #333333;
  border-radius: 100%;
  margin: 0;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot span {
  background: transparent;
  margin: 3px;
  width: 10px;
  height: 10px;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot:hover {
  background-color: #2a6f6f;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot.active span {
  background-color: #2a6f6f;
  opacity: 1;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot.active:hover {
  background-color: #f4c542;
}
.testimonials .carousel-wrapper .owl-dots .owl-dot.active:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}

/*===================
SERVICES PAGES
===================*/
.services-hero-banner {
  margin-top: 8.4rem;
  margin-bottom: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .services-hero-banner {
    margin-top: 5.4rem;
    margin-bottom: 12rem;
  }
}
.services-hero-banner h2 {
  margin-bottom: 2.5rem;
}
.services-hero-banner p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.services-list__first {
  margin-bottom: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .services-list__first {
    margin-bottom: 12rem;
  }
}
.services-list__second {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .services-list__second {
    margin-top: 12rem;
  }
}
.services-list__card {
  display: flex;
  padding: 30px;
  border-radius: 40px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  height: 100%;
}
.services-list__card h3 {
  margin-bottom: 1.5rem;
}
.services-list__card p {
  margin-bottom: 3rem;
}
.services-list__card img {
  margin-top: auto;
}

.medical-devices {
  margin-top: 15rem;
}
.medical-devices h2 {
  margin-bottom: 2.5rem;
}
.medical-devices__card {
  display: flex;
  padding: 30px;
  border-radius: 40px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  height: 100%;
}
.medical-devices__card img {
  height: 4.5rem;
  width: fit-content;
}
.medical-devices__card h4 {
  margin: 15px 0;
}

/*===================
ENQUIRE PAGES
===================*/
.get-in-touch {
  margin-top: 8.4rem;
}
@media only screen and (max-width: 87.4375em) {
  .get-in-touch {
    margin-top: 5.4rem;
  }
}
.get-in-touch h2 {
  margin-bottom: 5rem;
}
.get-in-touch .form-outline {
  margin-bottom: 15px;
}
.get-in-touch .form-outline label {
  font-family: "RoundedElegance";
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  color: #333333;
}
.get-in-touch .form-outline input,
.get-in-touch .form-outline textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #2a6f6f;
  padding: 16px 27px 16px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 12px;
}
.get-in-touch .form-outline input::placeholder,
.get-in-touch .form-outline textarea::placeholder {
  color: rgba(42, 111, 111, 0.2);
  outline: none;
  box-shadow: none;
}
.get-in-touch .form-outline input:focus,
.get-in-touch .form-outline textarea:focus {
  color: #2a6f6f;
  outline: none;
  box-shadow: none;
}
.get-in-touch .form-outline select {
  appearance: none;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #2a6f6f;
  padding: 16px 27px 16px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 12px;
}
.get-in-touch .form-outline select:focus {
  color: #2a6f6f;
  outline: none;
  box-shadow: none;
}
.get-in-touch .form-outline .form-style {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 27px 16px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 12px;
}
.get-in-touch .form-outline .form-style::placeholder {
  color: rgba(42, 111, 111, 0.2);
  outline: none;
  box-shadow: none;
}
.get-in-touch .form-outline .form-style:focus {
  color: #2a6f6f;
  outline: none;
  box-shadow: none;
}
.get-in-touch .form-outline .form-style input {
  background-color: #f9f9f9;
  border-radius: 12px;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #333333;
  border: none;
  margin: 15px 0;
}
.get-in-touch .form-outline .form-style .sub-label {
  font-size: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: rgba(51, 51, 51, 0.5);
}
.get-in-touch .btn-primary {
  color: #2b2b2b;
  max-width: fit-content;
}
.get-in-touch__card {
  padding: 45px 0 48px;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 40px;
  box-shadow: 0 0 7px 1px rgba(42, 111, 111, 0.25);
}
.get-in-touch__card a {
  display: flex;
  align-items: flex-start;
  font-family: "Open Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #333333;
  margin-left: 2.8rem;
}
@media only screen and (max-width: 87.4375em) {
  .get-in-touch__card a {
    font-size: 2.2rem;
  }
}
.get-in-touch__card a:not(:last-of-type) {
  margin-bottom: 3rem;
}
.get-in-touch__card a img {
  margin-right: 15px;
}
.get-in-touch__card a:hover {
  color: #2a6f6f;
}

.faq {
  margin-top: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .faq {
    margin-top: 12rem;
  }
}
.faq h3 {
  margin: 3rem 0 3.5rem;
}
.faq__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4rem;
}
.faq__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' depending on your layout needs */
  object-position: left top; /* aligns image to the left */
  display: block;
}
.faq .accordion-item {
  background: transparent;
  border: none;
}
.faq .accordion-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
}
.faq .accordion-button {
  position: relative;
  font-family: "RoundedElegance";
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  color: #333333;
  background: none;
  padding: 3rem 0;
}
.faq .accordion-button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 29px;
  height: 29px;
  transform: translateY(-50%) rotate(0deg);
  background-image: url("../images/icons/ico-minus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
}
.faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/ico-plus.svg");
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.5s ease-in-out;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  color: #333333;
  padding: 0 4rem 3rem 0;
}

.contact-core-offering {
  margin: 15rem 0;
}
@media only screen and (max-width: 87.4375em) {
  .contact-core-offering {
    margin: 12rem 0;
  }
}
.contact-core-offering h2 {
  margin-bottom: 2.5rem;
}
.contact-core-offering .carousel-wrapper {
  margin-top: 5rem;
}
.contact-core-offering .carousel-wrapper .owl-carousel {
  position: relative;
  padding-bottom: 8.5rem;
}
.contact-core-offering .carousel-wrapper .owl-carousel .owl-item img {
  width: inherit;
}
.contact-core-offering .carousel-wrapper .owl-nav {
  position: absolute;
  display: flex;
  gap: 18.7rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.contact-core-offering .carousel-wrapper .owl-nav [class*=owl-] {
  margin: 0;
}
.contact-core-offering .carousel-wrapper .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.contact-core-offering .carousel-wrapper .owl-nav .nav-arrow {
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-core-offering .carousel-wrapper .owl-nav .nav-arrow.prev-slide {
  background-image: url("../images/icons/ico-arrow-left.svg");
}
.contact-core-offering .carousel-wrapper .owl-nav .nav-arrow.next-slide {
  background-image: url("../images/icons/ico-arrow-right.svg");
}
.contact-core-offering .carousel-wrapper .owl-dots {
  position: absolute;
  display: flex;
  gap: 5px;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot {
  border: solid 3px #333333;
  border-radius: 100%;
  margin: 0;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot span {
  background: transparent;
  margin: 3px;
  width: 10px;
  height: 10px;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot:hover {
  background-color: #2a6f6f;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot.active span {
  background-color: #2a6f6f;
  opacity: 1;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot.active:hover {
  background-color: #f4c542;
}
.contact-core-offering .carousel-wrapper .owl-dots .owl-dot.active:hover span {
  background-color: #2a6f6f;
  opacity: 1;
}
.contact-core-offering__card {
  align-items: flex-start;
  text-align: start;
  padding: 3rem;
  background-color: rgba(42, 111, 111, 0.1);
  border: none;
  border-radius: 4rem;
  box-shadow: 0 0 7px 1px rgba(42, 111, 111, 0.25);
  min-height: 29.5rem;
}
.contact-core-offering__card img {
  margin-bottom: 10px;
}
.contact-core-offering__card h3,
.contact-core-offering__card h4 {
  margin-bottom: 15px;
}
.contact-core-offering__card img {
  height: 4.5rem;
}
.contact-core-offering__card ul {
  margin-top: 15px;
}
.contact-core-offering__card ul li {
  list-style-type: disc;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
}
.contact-core-offering__card--cta {
  background-color: #2a6f6f;
}
.contact-core-offering__card--cta * {
  color: #fff;
}
.contact-core-offering__card--cta .btn-white {
  margin-top: 2.5rem;
}

/*===================
LEGAL PAGES
===================*/
.legals {
  margin-top: 8.4rem;
  margin-bottom: 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .legals {
    margin-top: 5.4rem;
    margin-bottom: 12rem;
  }
}
@media only screen and (max-width: 61.9375em) {
  .legals {
    margin-bottom: 10rem;
  }
}
.legals h2 {
  margin-bottom: 5px;
}
.legals h6 {
  margin-bottom: 3.5rem;
  color: #2a6f6f;
}
.legals h4 {
  margin-bottom: 1.5rem;
}
.legals p {
  margin-bottom: 1.5rem;
}
.legals p + h1, .legals p + h2, .legals p + h3, .legals p + h4, .legals p + h5, .legals p + h6 {
  margin-top: 3.5rem;
}

.legals ul:not(:last-of-type) {
  margin-bottom: 3.5rem;
}
.legals ul li {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  list-style: disc;
}

/*===================
SUCCESS PAGE
===================*/
.success {
  position: relative;
  margin: 8.4rem 0 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .success {
    margin: 5.4rem 0 12rem;
  }
}
.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;
}

/*===================
ERROR 404 PAGE
===================*/
.error {
  position: relative;
  margin: 8.4rem 0 15rem;
}
@media only screen and (max-width: 87.4375em) {
  .error {
    margin: 5.4rem 0 12rem;
  }
}
.error .container,
.error .row {
  height: 100%;
}
.error__container--span span {
  background-image: linear-gradient(to bottom, #f4c542, #2a6f6f);
  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;
}

/*===================
FOOTER
===================*/
.footer {
  background-color: rgba(42, 111, 111, 0.1);
  padding: 16rem 0 6rem;
  margin-top: -10rem;
}
.footer__brand {
  display: inline-block;
  margin-bottom: 3.5rem;
}
.footer__brand img {
  height: 17.5rem;
}
.footer p {
  font-size: 1.4rem;
}
@media only screen and (min-width: 62em) {
  .footer p br {
    display: none;
  }
}
.footer h6 {
  color: #2a6f6f;
}
.footer ul {
  margin-top: 3.5rem;
  padding: 0;
}
.footer ul li {
  padding: 0;
}
.footer ul li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.footer ul li a {
  display: flex;
  align-items: flex-start;
}
.footer ul li a img {
  margin-right: 15px;
}
.footer__copyright {
  margin-top: 6rem;
}
.footer__copyright hr {
  margin: 1.5px 0;
  flex-grow: 0;
  background-color: #333333;
  opacity: 1;
}
.footer__copyright p br {
  display: block;
}

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