*, *:before, *:after {
  box-sizing: border-box;
}
@charset "UTF-8";/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animated.repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animated.repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animated.delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animated.delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animated.delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animated.delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animated.faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animated.fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animated.slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animated.slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

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

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

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

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

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

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

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

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

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.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-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}
.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 fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.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 fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.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;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  50% {
    opacity: 1;
  }
}
.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;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.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 {
    opacity: 0;
    transform: matrix(1,0,0,1,0,20);
  }

  to {
    opacity: 1;
    transform: matrix(1,0,0,1,0,0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  transition: opacity 800ms cubic-bezier(.4,0,.2,1),transform 800ms cubic-bezier(.4,0,.2,1);
  will-change: opacity,transform;
  visibility:hidden;
}


@-webkit-keyframes flip {
  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 flip {
  from {
    opacity: 0;
    transform: matrix(.92,.03,0,.92,0,20);
  }

  to {
    opacity: 1;
    transform: matrix(1,0,0,1,0,0);
  }
}
.flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  transition: opacity 800ms cubic-bezier(.4,0,.2,1),transform 800ms cubic-bezier(.4,0,.2,1);
  will-change: opacity,transform;
  visibility:hidden;
}



/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.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;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
  font-weight: bold;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  border-style: none;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}
/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 0px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 0px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 0px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper {
  margin: 0 auto;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}



.content-wrapper,
.dnd-section {
  padding:80px 64px;
  padding-top:0;
}

@media (max-width:960px) {
  .content-wrapper,
  .dnd-section {
    padding-left: 48px;
    padding-right: 48px;
  }
}


@media (max-width:768px) {
  .content-wrapper,
  .dnd-section {
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 63px;
  }
}


@media (max-width:640px) {
  .content-wrapper,
  .dnd-section  {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }
}
@font-face { 
  font-family: poppins;
  src: url("https://use.typekit.net/af/54c3f2/00000000000000007735c19d/30/l?subset_id=2&fvd=n5&v=3") format("woff2"),
    url("https://use.typekit.net/af/54c3f2/00000000000000007735c19d/30/d?subset_id=2&fvd=n5&v=3") format("woff"),
    url("https://use.typekit.net/af/54c3f2/00000000000000007735c19d/30/a?subset_id=2&fvd=n5&v=3") format("opentype");
  font-style: normal;
  font-weight: 500;  
}


@font-face { 
  font-family: poppins;
  src: url("https://use.typekit.net/af/2af34c/00000000000000007735c193/30/l?subset_id=2&fvd=n3&v=3") format("woff2"),
    url("https://use.typekit.net/af/2af34c/00000000000000007735c193/30/d?subset_id=2&fvd=n3&v=3") format("woff"),
    url("https://use.typekit.net/af/2af34c/00000000000000007735c193/30/a?subset_id=2&fvd=n3&v=3") format("opentype");
  font-style: normal;
  font-weight: 300;
}

@font-face { 
  font-family: poppins;
  src: url("https://use.typekit.net/af/ce0f3d/00000000000000007735c18f/30/l?subset_id=2&fvd=n2&v=3") format("woff2"),
    url("https://use.typekit.net/af/ce0f3d/00000000000000007735c18f/30/d?subset_id=2&fvd=n2&v=3") format("woff"),
    url("https://use.typekit.net/af/ce0f3d/00000000000000007735c18f/30/a?subset_id=2&fvd=n2&v=3") format("opentype");
  font-style: normal;
  font-weight: 200;
}
@font-face { 
  font-family: poppins;
  src: url("https://use.typekit.net/af/a66c7a/00000000000000007735c1a3/30/l?subset_id=2&fvd=n7&v=3") format("woff2"),
    url("https://use.typekit.net/af/a66c7a/00000000000000007735c1a3/30/d?subset_id=2&fvd=n7&v=3") format("woff"),
    url("https://use.typekit.net/af/a66c7a/00000000000000007735c1a3/30/a?subset_id=2&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 700; 
}


@font-face { 
  font-family: poppins; 
  src: url("https://use.typekit.net/af/0d0f8f/00000000000000007735c199/30/l?subset_id=2&fvd=n4&v=3") format("woff2"),
    url("https://use.typekit.net/af/0d0f8f/00000000000000007735c199/30/d?subset_id=2&fvd=n4&v=3") format("woff"),
    url("https://use.typekit.net/af/0d0f8f/00000000000000007735c199/30/a?subset_id=2&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
}


@font-face {
  font-family: futura-pt;
  src: url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/l?subset_id=2&fvd=n4&v=3") format("woff2"),
    url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/d?subset_id=2&fvd=n4&v=3") format("woff"), 
    url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/a?subset_id=2&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: poppins; 
  src: url("https://use.typekit.net/af/a3941f/00000000000000007735c1a1/30/l?subset_id=2&fvd=n6&v=3") format("woff2"),
    url("https://use.typekit.net/af/a3941f/00000000000000007735c1a1/30/d?subset_id=2&fvd=n6&v=3") format("woff"),
    url("https://use.typekit.net/af/a3941f/00000000000000007735c1a1/30/a?subset_id=2&fvd=n6&v=3") format("opentype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: poppins;
  src: url("https://use.typekit.net/af/132a3c/00000000000000007735c195/30/l?subset_id=2&fvd=i3&v=3") format("woff2"), 
    url("https://use.typekit.net/af/132a3c/00000000000000007735c195/30/d?subset_id=2&fvd=i3&v=3") format("woff"),
    url("https://use.typekit.net/af/132a3c/00000000000000007735c195/30/a?subset_id=2&fvd=i3&v=3") format("opentype");
  font-style: italic;
  font-weight: 300; 
}
@font-face { 
  font-family: poppins; 
  src: url("https://use.typekit.net/af/f4a88b/00000000000000007735c191/30/l?subset_id=2&fvd=i2&v=3") format("woff2"),
    url("https://use.typekit.net/af/f4a88b/00000000000000007735c191/30/d?subset_id=2&fvd=i2&v=3") format("woff"),
    url("https://use.typekit.net/af/f4a88b/00000000000000007735c191/30/a?subset_id=2&fvd=i2&v=3") format("opentype"); 
  font-style: italic;
  font-weight: 200; 
}


@font-face { 
  font-family: FontAwesome;
  src: 
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/line-awesome.eot) format("embedded-opentype"), 
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/line-awesome.woff2) format("woff2"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/line-awesome.woff) format("woff"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/line-awesome.ttf) format("truetype"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/line-awesome.svg) format("svg"); 
  font-style: normal;
  font-weight: 400;
}


@font-face { 
  font-family: "squarespace-ui-font"; 
  src: url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/squarespace-ui-font.eot) format("embedded-opentype"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/squarespace-ui-font.svg) format("svg"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/squarespace-ui-font.woff) format("woff"),
    url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/fonts/squarespace-ui-font.ttf) format("truetype");
  font-style: normal; 
  font-weight: normal;
}

body {
  word-break: break-word;
  font-family: poppins;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.8;
  text-transform: none;
  color: #4f5154;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}



html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin:1em 0;
}

/* Anchors */

a{
  cursor:pointer;
  text-decoration: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.body-container-wrapper a {
  color: #292c2e;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  padding-bottom: .05em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(41,44,46,.3);
  -webkit-transition: border-color .15s ease-out,color .15s ease-out;
  -moz-transition: border-color .15s ease-out,color .15s ease-out;
  -ms-transition: border-color .15s ease-out,color .15s ease-out;
  -o-transition: border-color .15s ease-out,color .15s ease-out;
  transition: border-color .15s ease-out,color .15s ease-out;
  cursor:pointer;
  text-decoration: none;
}

.body-container-wrapper a:hover {
  color: rgba(41,44,46,.6);
  border-color: rgba(41,44,46,.15);
}
/* Headings */

p, h1, h2, h3, h4, h5, h6{
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #232629;
  margin: .67em 0;
  font-family: poppins;
}


h1 {
  font-weight: 200;
  font-style: normal;
  font-size: 54px;
  letter-spacing: -.02em;
  line-height: 1.4;
}

h2 {
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: .04em;
  line-height: 1.5em;
  text-transform: none;
}


h3 {
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.8em;
  text-transform: none;
  margin:1em 0;
}

h4 {
  font-size: 20px;
  font-weight: 300;
  color: #24272a;
}


h5 {
  font-size: 34px;
  font-weight: 200;
  line-height: 1.3em;
  background: #36d1dc;
  background: linear-gradient(45deg,#00a7cd,#9cd13b 50%);
  background: -webkit-linear-gradient(45deg,#00a7cd,#9cd13b 50%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}


h6 {
  font-size: 80px;
  font-weight: 200;
  line-height: 1.3em;
  background: #36d1dc;
  background: linear-gradient(45deg,#00a7cd,#9cd13b 50%);
  background: -webkit-linear-gradient(45deg,#00a7cd,#9cd13b 50%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}


h1, h2, h3 {
  text-rendering: optimizeLegibility;
}

h1+h1, h1+h2, h1+h3, h2+h1, h2+h2, h2+h3, h3+h1, h3+h2, h3+h3 {
  margin-top: 15px;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}





/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}


@media only screen and (max-width: 640px){
  body {
    font-size: 12px !important;
    color: #2c2f32 !important;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 6px 0 4px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  font-family: sans-serif;
  font-size: 12px;
  line-height: normal;
  box-sizing: border-box;
  border-radius: 2px;
  -webkit-transition: background .1s ease-in;
  -moz-transition: background .1s ease-in;
  -ms-transition: background .1s ease-in;
  -o-transition: background .1s ease-in;
  transition: background .1s ease-in;
  font-weight: 100;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus{
  background: #fff;
}

form fieldset {
  max-width: 100% !important;
}

form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: inherit;
}

.hs-input.invalid.error {
  border-color: #e99292;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  line-height: 1em;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 1em 2.5em;
  border-width: 0;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #232629;
  border-color: #232629;  
  font-family: poppins;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .12px;
  transition: .1s opacity linear;
  -webkit-backface-visibility: hidden;
  border-radius: 300px;
  margin: 15px 0;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}
.cm-header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: #24272a;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  top: 0;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cm-header-height {
  min-height: 115.5px;
}

.cm-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.cm-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition: opacity 200ms 600ms ease-out;
  -moz-transition: opacity 200ms 600ms ease-out;
  -ms-transition: opacity 200ms 600ms ease-out;
  -o-transition: opacity 200ms 600ms ease-out;
  transition: opacity 200ms 600ms ease-out;
}

.cm-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-transition: opacity 200ms 600ms ease-out;
  -moz-transition: opacity 200ms 600ms ease-out;
  -ms-transition: opacity 200ms 600ms ease-out;
  -o-transition: opacity 200ms 600ms ease-out;
  transition: opacity 200ms 600ms ease-out;
}


.header-logo-inner img {
  max-width: 235px;
  vertical-align: middle;
}

.header-logo-inner a {
  padding: 5px 24px;
  display: block;
}

.cm-header-btn a {
  -webkit-transition: color 170ms ease-in-out, background-color 170ms ease-in-out;
  -moz-transition: color 170ms ease-in-out, background-color 170ms ease-in-out;
  -ms-transition: color 170ms ease-in-out, background-color 170ms ease-in-out;
  -o-transition: color 170ms ease-in-out, background-color 170ms ease-in-out;
  transition: color 170ms ease-in-out, background-color 170ms ease-in-out;
  display: inline-block;
  vertical-align: middle;
  background-image: linear-gradient(to bottom right,#28b2a7,#dae124);
  color: #24272a ;
  padding: 10px !important;
  padding-right: 25px !important;
  padding-left: 25px !important;
  border-radius: 30px;
  margin: 0 1em;
  box-sizing: border-box !important;
  line-height: 1 !important;
  border: 0 !important;
  font-family: poppins !important;
  font-weight: 500 !important;
  letter-spacing: .06em;
  word-break: keep-all;
}

.cm-header-btn {
  padding: 5px 24px;
}

.cm-header-btn .hs_cos_wrapper_type_cta {
  margin: -.618em -1em;
  display: block;
}


.cm-header-btn a:hover {
  background-image: linear-gradient(to bottom right,#00a7cd,#87cb4e);
  color: #fff ;
}

.custom-menu-primary .hs-menu-wrapper {
  padding: 5px 24px;
}

.custom-menu-primary .hs-menu-wrapper > ul {
  font-family: poppins;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  color: rgba(255,255,255,.5);
  display: block;
  line-height: 1;
}

.custom-menu-primary .hs-menu-wrapper > ul > li {
  margin: 0 1em;
  padding: .618em 0;
}

.custom-menu-primary .hs-menu-wrapper > ul {
  margin: -.618em -1em;
}

.custom-menu-primary .hs-menu-wrapper > ul ul {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: -99999px;
  z-index: 1002;
  margin-left: -1em;
  padding: 1em;
  opacity: 0;
  white-space: nowrap;
  text-align: left;
  -webkit-transform: translate3d(0,10px,0);
  -moz-transform: translate3d(0,10px,0);
  -ms-transform: translate3d(0,10px,0);
  -o-transform: translate3d(0,10px,0);
  transform: translate3d(0,10px,0);
  -webkit-transition: left 0s .2s linear,transform 0s .2s linear,opacity .2s ease-out;
  -moz-transition: left 0s .2s linear,transform 0s .2s linear,opacity .2s ease-out;
  -ms-transition: left 0s .2s linear,transform 0s .2s linear,opacity .2s ease-out;
  -o-transition: left 0s .2s linear,transform 0s .2s linear,opacity .2s ease-out;
  transition: left 0s .2s linear,transform 0s .2s linear,opacity .2s ease-out;
  background-color: #3a3d40;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgba(255,255,255,.5);
}

.custom-menu-primary .hs-menu-wrapper > ul li.hs-item-has-children:hover > ul {
  left: 0;
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: left 0s linear,transform .2s ease-out,opacity .2s ease-out;
  -moz-transition: left 0s linear,transform .2s ease-out,opacity .2s ease-out;
  -ms-transition: left 0s linear,transform .2s ease-out,opacity .2s ease-out;
  -o-transition: left 0s linear,transform .2s ease-out,opacity .2s ease-out;
  transition: left 0s linear,transform .2s ease-out,opacity .2s ease-out;
}


.custom-menu-primary .hs-menu-wrapper > ul li.hs-item-has-children {
  position: relative;
}

.custom-menu-primary .hs-menu-wrapper > ul ul li a {
  display: block;
  padding: .882em;
  color: #fff;
  line-height: 1;
}

.custom-menu-primary .hs-menu-wrapper > ul li:hover > a {
  color: rgba(255,255,255,.2);
}

.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover {
  color: rgba(255,255,255,.4);
}

.widthBanner .custom-menu-primary .hs-menu-wrapper>ul>li>a {
  color: rgba(255,255,255,.9) !important;
}

.widthBanner .custom-menu-primary .hs-menu-wrapper>ul>li:hover>a {
  color: rgba(255,255,255,.36) !important;
}

.widthBanner .custom-menu-primary .hs-menu-wrapper>ul ul {
  background-color: #131516;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width:800px) and (min-width:770px){
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    margin: 0 0.8em;
  }
}
@media(min-width:770px) {
  .cm-header-mobile {
    display: none;
  }

  .Mobile-overlay {
    display: none;
  }
}


@media (max-width:769px) {
  header.cm-header {
    display: none;
  }

  .cm-header-height {
    min-height: 82px;
  }

  .cm-header-mobile .Mobile-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 28px;
    padding-right: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(255,255,255,.95);
  }

  .cm-header-mobile .header-mobile-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }

  .header-mobile-logo a {
    padding: 8px;
    line-height: 0;
    display: block;
  }

  .header-mobile-logo a img {
    content: url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/images/fm-icon.png) !important;
    max-height: 50px;
    min-height: 50px;
    width: auto !important;
  }

  .Mobile-bar-menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    stroke: #373d3f;
    outline: 0;
    border: 0;
    padding: 0;
    background-color: transparent !important;
    text-transform: inherit;
    letter-spacing: inherit;
    padding: 8px;
    line-height: 0;
    border: 0;
    border-radius: 0;
  }

  .Mobile-bar-menu .Icon--hamburger {
    display: block;
    stroke-width: 2;
    width: 24px;
    height: 18px;
    overflow: hidden;
  }

  .header-mobile-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }



  .Mobile-overlay-menu-main .hs-menu-wrapper > ul {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    padding: 36px;
    overflow: auto;
    -webkit-transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    -webkit-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -moz-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -ms-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -o-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    transition: transform 350ms cubic-bezier(.55,0,.1,1);
    display:block;
  }


  .Mobile-overlay-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 80%;
    width: calc(100% - 60px );
    overflow: hidden;
    background-color: #131516;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    -ms-transform: translate3d(-100%,0,0);
    -o-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    -webkit-transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -webkit-transition: transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -moz-transition: transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -ms-transition: transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -o-transition: transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
    transition: transform 350ms cubic-bezier(.55,0,.1,1) 175ms;
  }

  .mobile-open .Mobile-overlay-menu {
    background-color: #000;
    background: linear-gradient(to bottom,#00a7cd,#9cd13b);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    -webkit-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -moz-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -ms-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -o-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    transition: transform 350ms cubic-bezier(.55,0,.1,1);
  }

  body.mobile-open {
    overflow: hidden;
  }

  .Mobile-overlay {
    position: fixed;
    top: 0;
    left: -99999px;
    bottom: 0;
    z-index: 1010;
    width: 100%;
    -webkit-transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -moz-transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -ms-transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -o-transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    transition: left 0s 525ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
  }

  .mobile-open  .Mobile-overlay {
    left: 0;
    background-color: #fff;
    -webkit-transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
    -moz-transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
    -ms-transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
    -o-transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
    transition: left 0s,background-color 350ms cubic-bezier(.55,0,.1,1);
  }

  .Mobile-overlay .hs-menu-wrapper > ul li a {
    font-family: poppins;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    letter-spacing: .06em;
    line-height: 1.4em;
    text-transform: uppercase;
    color: #fff;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: .618em;
    text-align: left;
  }

  .Mobile-overlay .hs-menu-wrapper > ul li.hs-item-has-children > a:after {
    content: '\00BB';
    font-family: sans-serif;
    color: #fff;
    margin-left: 7px;
  }

  .Mobile-overlay .hs-menu-wrapper > ul.dl-menuopen > li:last-child > a {
    padding-top: 1em;
  }


  button.Mobile-overlay-close {
    outline: 0;
    border: 0;
    padding: 0;
    background-color: transparent !important;
    text-transform: inherit;
    letter-spacing: inherit;
    display: none;
    position: absolute;
    top: 0;
    z-index: 1;
    padding: 22px;
    line-height: 0;
    stroke: transparent;
    -webkit-transition: stroke 350ms cubic-bezier(.55,0,.1,1),background-color 350ms cubic-bezier(.55,0,.1,1);
    -moz-transition: stroke 350ms cubic-bezier(.55,0,.1,1),background-color 350ms cubic-bezier(.55,0,.1,1);
    -ms-transition: stroke 350ms cubic-bezier(.55,0,.1,1),background-color 350ms cubic-bezier(.55,0,.1,1);
    -o-transition: stroke 350ms cubic-bezier(.55,0,.1,1),background-color 350ms cubic-bezier(.55,0,.1,1);
    transition: stroke 350ms cubic-bezier(.55,0,.1,1),background-color 350ms cubic-bezier(.55,0,.1,1);
    display: block;
    right: 0;
  }

  .mobile-open button.Mobile-overlay-close {
    background-color: #fff;
    stroke: #131516;
    -webkit-transition: stroke 350ms cubic-bezier(.55,0,.1,1) 175ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -moz-transition: stroke 350ms cubic-bezier(.55,0,.1,1) 175ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -ms-transition: stroke 350ms cubic-bezier(.55,0,.1,1) 175ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    -o-transition: stroke 350ms cubic-bezier(.55,0,.1,1) 175ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
    transition: stroke 350ms cubic-bezier(.55,0,.1,1) 175ms,background-color 350ms cubic-bezier(.55,0,.1,1) 175ms;
  }

  button.Mobile-overlay-close svg.Icon.Icon--close {
    width: 16px;
    height: 16px;
    overflow: hidden;
    display: block;
    stroke-width: 2;
  }


  .Mobile-overlay-back {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
  }

  .Mobile-overlay .hs-menu-wrapper > ul.hs-menu-children-wrapper { 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 36px;
    overflow: auto;
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    -ms-transform: translate3d(100%,0,0);
    -o-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    -webkit-transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    transition: -webkit-transform 350ms cubic-bezier(.55,0,.1,1);
    -webkit-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -moz-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -ms-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    -o-transition: transform 350ms cubic-bezier(.55,0,.1,1);
    transition: transform 350ms cubic-bezier(.55,0,.1,1);
    left:0;
  }

  .Mobile-overlay .hs-menu-wrapper>ul.hs-menu-children-wrapper.active {
    z-index: 2;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  .Mobile-overlay .hs-menu-wrapper>ul.go-left {
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    -ms-transform: translate3d(-100%,0,0);
    -o-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  .Mobile-overlay .hs-menu-wrapper > ul li.dl-back > a {
    padding-bottom: 1.618em;
  }

  .Mobile-overlay .hs-menu-wrapper > ul li.dl-back > a:before {
    content: '\00AB';
    font-family: sans-serif;
    color: #fff;
    margin-right: 7px;
  }
}

@media (max-width:960px) and (min-width:769px){
  .cm-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cm-header-mobile .Mobile-bar {
    padding-left: 40px;
    padding-right: 40px;
  }
}


@media (max-width:768px) {

  .cm-header-mobile .Mobile-bar {
    padding-left: 28px;
    padding-right: 28px;
  }
}


@media (max-width:640px) {
  .cm-header-mobile .Mobile-bar {
    padding-left: 12px;
    padding-right: 12px;
  }
}
footer.cm-footer {
  padding: 50px 64px;
  overflow: hidden;
}

.Footer-middle {
  margin: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.Footer-business {
  -webkit-box-flex: 1;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.Footer-business-info {
  font-family: poppins;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: none;
  color: #707070;
  padding: 20px;
  float: left;
}


.Footer-nav {
  font-family: poppins;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1em;
  text-transform: uppercase;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}

.Footer-nav-group {
  float: left;
  padding: 20px;
}

.Footer-nav-group .hs-menu-wrapper > ul {
  display: block;
}

.Footer-nav-group .hs-menu-wrapper > ul li a {
  color: #707070;
  -webkit-transition: color .15s ease-out;
  -moz-transition: color .15s ease-out;
  -ms-transition: color .15s ease-out;
  -o-transition: color .15s ease-out;
  transition: color .15s ease-out;
  display: block;
  max-width: 16em;
  padding-bottom: .618em;
}

.Footer-business-info p {
  padding-bottom: .382em;
  margin: 0;
}

.Footer-business-info p:first-of-type {
  letter-spacing: 0;
  color: #000;
  padding-bottom: 12px;
}

.Footer-business-info a {
  padding-top: .618em;
  display: block;
  color: #707070;
}

.footer-social-icons {
  padding-bottom: 57px;
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1px;
  padding-right: 1px;
}


@media (max-width:960px) {
  footer.cm-footer {
    padding:48px;
  }
}

@media (max-width:768px) {
  footer.cm-footer {
    padding:36px;
  }

  .footer-social-icons {
    padding-top: 3px;
  }
}

@media (max-width:640px) {
  footer.cm-footer {
    padding:20px;
  }

  .footer-social-icons {
    padding-top: 20px;
  }

}

@media (max-width:600px) {
  .footer-social-icons {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}
.widget-type-rich_text .hs_cos_wrapper > *:first-child {
  margin-top: 0;
}

.widget-type-rich_text .hs_cos_wrapper > *:last-child {
  margin-bottom:0;
}


.body-wrapper {
  position: relative;
  z-index: 1;
}

.privacy-layout .dnd-section {
  padding: 80px 47px;
  padding-top:0;
}

.privacy-layout .dnd-section > .row-fluid > .widget-span {
  padding: 0 17px 17px;
  max-width:75%;
}

.thank-you-row-right {
  float: right;
  width: 33.33333%;
  padding: 17px;
  clear: both;
  margin-left: 17px;
}

.thank-you-row-left {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
  padding:17px;
  clear: none;
}

.thank-layout img {
  max-width: 100%;
}

.content-wrapper {
  padding:80px 64px;
  padding-top:0;
}

.cm-thank-page > .content-wrapper > .cm-row {
  margin:0 -17px;
}

.cm-thank-page .dnd-section {
  padding:0 !important;
}
.cm-thank-page .cm-row-inner {
  position: relative;
}

.thank-you-row-left {
  position: absolute;
  left: calc( 50% - 99.1665%/2);
  top: 0;
  width: 100%;
}

.thank-layout .widget-type-rich_text {
  max-width: 65%;
}

.thank-layout h3 a {
  color: inherit;
}

.two-col-layout .dnd-section {
  padding: 17px;
}

.two-col-layout .cm-row {
  margin: 0 -17px;
}

.two-col-you-row-left {
  float: left;
  width: 50%;
}

.two-col-you-row-right {
  float: left;
  width: 50%;
}

.two-col-layout .dnd-section .dnd-column {
  padding: 0;
}

.cm-form-wrapper form .hs-form-field > label {
  line-height: 25px;
  width: 100%;
  order: 1;
}

.cm-form-wrapper form .hs-form-field {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.cm-form-wrapper form .hs-form-field > div.input {
  order: 2;
  margin: 0 !important;
}

.cm-form-wrapper form .hs-form-field legend {
  order: 3;
  line-height: 25px;
  font-size:12px;
}

.cm-form-wrapper form .hs-firstname .hs-input ,
.cm-form-wrapper form .hs-phone .hs-input {
  font-size: 14px;
}

.cm-form-wrapper form fieldset {
  margin: 0 0 0 -2%;
  max-width: unset !important;
}

.cm-form-wrapper form fieldset.form-columns-2 > div {
  margin-left: 2%;
  width: 48% !important;
  float: left !important;
}

.cm-form-wrapper form fieldset > div {
  margin-left: 2%;
  margin-bottom:24px;

}

.cm-form-wrapper form .hs-lastname > label {
  opacity: 0;
}

.cm-form-wrapper form .hs-lastname .hs-input {
  font-size: 14px;
}

.cm-form-wrapper form .hs-form-field.hs-message {
  margin-bottom: 22px;
}

.cm-form-wrapper form fieldset .hs-input {
  width:100% !important;
}

.cm-form-wrapper form .hs-form-field.hs-message {
  margin-bottom: 22px;
}

.cm-form-wrapper input.hs-button {
  margin: 0;
}

.hs-error-msgs label {
  border-radius: 2px;
  background: #cc3b3b url(https://20524720.fs1.hubspotusercontent-na1.net/hubfs/20524720/raw_assets/public/Full_Measure_October2021/images/icon_close_7_light.png) no-repeat 9px 50%;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  line-height: 23px;
  margin: 12px 0;
  padding: 5px 15px 3px 25px;
}


.two-col-layout ul {
  margin: 1em 0;
  list-style: none;
}

.two-col-layout ul li p {
  margin: .5em 0;
}

.two-col-layout h1 {
  word-break: initial;
}


.two-col-layout ul li p:before {
  display: inline-block;
  margin-left: -40px;
  min-width: 40px;
  text-align: right;
  box-sizing: border-box;
  padding-right: 10px;
  content: "\2022";
}

.two-col-layout strong {
  font-weight:bold;
}

.demo-layout .dnd-section {
  padding-top: 0;
}

.demo-layout .dnd-section .dnd-column{
  padding: 0;
}


.demo-layout .dnd-section>.row-fluid > div {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
}

.demo-layout .dnd-section>.row-fluid .dnd-module > .hs_cos_wrapper {
  padding: 17px 0;
}

.demo-layout .dnd-section>.row-fluid .dnd-row:first-child .dnd-module > .hs_cos_wrapper {
  padding-top: 0;
}

.on-demand-layout .dnd-section .dnd-column {
  padding: 17px;
  margin: 0;
}

.on-demand-layout .dnd-section .dnd-column + .dnd-column {
  margin-left:17px;
}

.on-demand-layout .dnd-section {
  padding: 80px 55px;
  padding-top:0;
}

.on-demand-layout .dnd-section .span7 {
  width: 58.3333%;
}

.on-demand-layout .dnd-section .span5 {
  width: calc(41.66667% - 17px);
}

.on-demand-layout .iframe_wrapper {
  padding-top: 0 !important;
}

.on-demand-layout .widget-type-rich_text .hs-embed-wrapper {
  float: right !important;
  margin-left: 34px !important;
  width: 58.3333% !important;

}


.two-col-layout a.hs-button {
  color: #373d3f;
  border-radius: 300px;
  border-width: 2px;  
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  font-family: poppins;
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
  border-color: #373d3f;
  padding: 21px 34px;
  appearance: none;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.two-col-layout a.hs-button:hover {
  background-color: #373d3f;
  color: #fff;
}


.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module {
  padding: 17px;
}

.webinar-layout .dnd-section > .row-fluid > .dnd-column {
  padding: 0;
  margin:0;
}

.webinar-layout .dnd-section {
  padding-left: 47px;
  padding-right: 47px;
  padding-top:0;
}

.webinar-layout .dnd-section .dnd-column {
  padding:0;
  margin:0;
}

.webinar-layout .dnd-section .span7 {
  width: 58.3333%;
  margin:0;
}

.webinar-layout .dnd-section .span5 {
  width: 41.6667%;
  margin:0;
}

.webinar-layout .dnd-section .hs_cos_wrapper_type_module.firstSection {
  padding-top: 0;
}

.webinar-layout strong {
  font-weight: bold;
}


.webinar-layout .dnd-section .span4 {
  width: 33.33333%;
  margin:0;
}

.webinar-layout .dnd-section .span6 {
  width: 50%;
  margin:0;
}

.webinar-layout .dnd-section .span1 {
  width: 8.3333%;
  margin:0;
}

.webinar-layout ul {
  margin: 1em 0;
  list-style: none;
}

.webinar-layout ul li p {
  margin: .5em 0;
}

.webinar-layout ul li p:before {
  display: inline-block;
  margin-left: -40px;
  min-width: 40px;
  text-align: right;
  box-sizing: border-box;
  padding-right: 10px;
  content: "\2022";
}

.webinar-layout {
  line-height: 1.8em;
}

.webinar-layout .body-container-wrapper a.hs-button {
  display: inline-block;
  background-color: #212325;
  color: white;
  padding: 18px 58px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 24px;
  margin-bottom: 5px;
  border: 0;
}



.full-width-layout.webinar-layout .dnd-section .dnd-column .widget-type-rich_text {
  width: 50%;
  margin: 0 auto;
}

.full-width-layout.webinar-layout hr {
  width: calc(50% - 17px ) !important;
  margin: 8px auto !important;
  height: 0;
}

.full-width-layout.webinar-layout .body-container-wrapper a.button {
  border-color: #373d3f;
  font-family: poppins;
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
  padding: 21px 34px;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  color: #373d3f;
  border-radius: 300px;
  margin: 0 auto;
  line-height:normal;
}

.full-width-layout .cm-custom-btn {
  text-align:center;
}

.full-width-layout.webinar-layout .body-container-wrapper a.button:hover {
  background-color: #373d3f;
  color: #fff;
}


.webinar-layout .dnd-section .span2 {
  width: 16.6667%;
  margin:0;
}

.webinar-layout .dnd-section .span8 {
  width: 66.6667%;
}

.full-width-layout.webinar-layout .sqs-svg-icon--list {
  text-align: center;
}

.full-width-layout.webinar-layout .sqs-svg-icon--list a.sqs-svg-icon--wrapper {
  width: 20px;
  height: 20px;
  text-decoration: none;
  border: 0;
  margin: 0 4px;
}


.adora-layout.webinar-layout .adora-row .hs_cos_wrapper_type_module{
  width: 66.6667%;
  margin: 0 auto;
}

.adora-layout.webinar-layout .adora-row2 .dnd-section .hs_cos_wrapper_type_module{
  width: 50%;
  margin: 0 auto;
}

.adora-layout.webinar-layout hr ,
.webinar-layout hr{
  margin: 8px auto !important;
  height: 0;
}

.adora-layout.webinar-layout .adora-row2 .dnd-section .widget-type-linked_image .hs_cos_wrapper {
  width: 33.33333%;
  display: block;
  margin: 0 auto;
  padding: 17px;
}

.adora-layout.webinar-layout .adora-row2 .dnd-section .widget-type-linked_image {
  padding: 0;
}

.full-measure-layout.webinar-layout .dnd-section {
  padding-top: 100px;
  padding-bottom:100px;
}

.full-measure-layout.webinar-layout .body-container-wrapper a.hs-button {
  border-radius: 300px;
  color: #333;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  font-family: poppins;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 13px 26px;
  display: inline-block;
  width: auto;
  height: auto;
  appearance: none;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
}

.full-measure-layout.webinar-layout .body-container-wrapper a.hs-button:hover {
  background-color: #333;
  color: #fff;
}

.full-measure-row3.cm-form-wrapper .widget-type-form,
.full-measure-row3.cm-form-wrapper .widget-type-rich_text{
  width: 66.6667%;
  margin: 0 auto;
}

.full-measure-row3.cm-form-wrapper .form-title {
  margin: 0;
  text-align: center;
  padding-bottom: 34px;
}

.full-measure-layout .body-container-wrapper ul li>*:first-child::before {
  display: inline-block;
  margin-left: -40px;
  min-width: 40px;
  text-align: right;
  box-sizing: border-box;
  padding-right: 10px;
  content: "\2022";
}

.full-measure-layout .body-container-wrapper ul li>* {
  margin-top: .5em;
  margin-bottom: .5em;
}

.banner-area .dnd-section {
  padding: 0 !important;
}


.move-in-layout .cm-banner-wrapper .content-space {
  line-height: inherit;
}

.move-in-layout.webinar-layout .dnd-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.move-in-layout .banner-section .cm-banner-wrapper .banner-content-inner {
  width: 100%;
}

.move-in-layout .banner-section .cm-banner-wrapper .banner-content-inner>.banner-top-space {
  width: 83.3333%;
  margin: 0 auto;
}

.move-in-layout .banner-section .cm-banner-wrapper .banner-content-inner>.banner-mid-content h1 {
  margin-bottom: 34px;
}

.webinar-layout .move-in-row3 .dnd-section .dnd-column .hs_cos_wrapper_type_module {
  padding: 0;
}

.move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-mid-content {
  width: 83.3333%;
  margin: 0 auto;
}

.move-in-row3 .cm-banner-wrapper .banner-content-inner {
  width: 100%;
}


.body-container-wrapper .cm-banner-wrapper>.cm-banner-main {
  margin-top: 0 !important;
  min-height:auto;
}

.move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-bottom-space,
.move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-top-space {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
}


.move-in-row4 .dnd-section .hs_cos_wrapper_type_module {
  width: 66.6667%;
  margin: 0 auto;
}

.move-in-row4 .dnd-section .hs_cos_wrapper_type_module.widget-type-text {
  width: 100%;
}

.move-in-row4 .dnd-section .widget-type-text .hs_cos_wrapper_type_text {
  padding-bottom: 0.0650618%;
  display: block;
}

.faq-layout.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module {
  padding:0;
}

.faq-layout.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module.widget-type-rich_text {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
  padding:17px;
}



.faq-layout.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module.firstSection {
  padding-top:0;
}

.faq-layout.webinar-layout .image-alignment-wrapper {
  padding:0 17px;
}

.faq-layout.webinar-layout .image-alignment-wrapper .image-card {
  width: 100%;
}



.tracking-layout .schdule-demo-banner:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(22,23,24,.35);
}

.tracking-layout .schdule-demo-banner .schdule-demo-banner-row {
  position: relative;
  z-index: 1;
  padding: 64px;
}

.tracking-layout .schdule-demo-banner .schdule-demo-spacer-inner {
  padding-bottom: calc(36px + 7.05882%);
}

.tracking-layout .banner-section .schdule-demo-banner {
  margin-top: -115.5px;
}

.tracking-layout .schdule-demo-banner h1 {
  margin-bottom: 34px;
}

.campus-layout .cm-banner-wrapper>.cm-banner-main {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: -16px;
  min-height: unset !important;
}

.campus-layout .cm-banner-wrapper .banner-content-inner>div {
  padding: 0;
}

.campus-layout .cm-banner-wrapper .banner-content-inner>.banner-top-space {
  display: none;
}

.campus-row .dnd-section {
  padding-top: 110px;
}

.campus-layout.webinar-layout .dnd-section .widget-type-rich_text {
  width: 83.3333%;
  margin: 0 auto;
}

.campus-layout.webinar-layout .dnd-section .dnd-column .widget-type-header h3 {
  text-align: center;
  margin: 0;
}


.home-layout.webinar-layout .dnd-section {
  padding-top: 100px;
  padding-bottom:100px;
}

.home-row .dnd-section .dnd-column .widget-type-rich_text {
  width: 83.3333%;
  margin: 0 auto;
  max-width: 100%;
}

.webinar-layout .home-row2 .dnd-section .hs_cos_wrapper_type_module.firstSection {
  padding-top:17px;
}

.home-row3 .widget-type-rich_text {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
}

.home-row3 .firstSection .cm-image-wrapper {
  padding-top: 17px;
}

.home-layout .dnd-section[class*="force-full-width"] .hs_cos_wrapper_type_module {
  padding: 0 !important;
}

.body-container-wrapper .home-banner-wrapper>.cm-banner-main {
  margin-top: 0 !important;
}

.home-row4 .home-banner-wrapper .content-space ,
.home-row6 .home-banner-wrapper .content-space {
  line-height: inherit;
}

.home-row5 .home-banner-wrapper .banner-content-inner,
.home-row6 .home-banner-wrapper .banner-content-inner{
  width: 100%;
}

.home-row5 .home-banner-wrapper .banner-content-inner>div,
.home-row6 .home-banner-wrapper .banner-content-inner>div{
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
}

.home-row6 .home-banner-wrapper .banner-content-inner>div.cm-btn {
  padding-top: 85px;
}


.about-us-row .dnd-section {
  padding-top: 45px;
  padding-bottom:68px;
}

.about-us-row2 .dnd-section {
  padding-bottom:68px;
}


.about-us-row .dnd-section > .row-fluid {
  width: 91.6667%;
  margin-left: 0;
}

.webinar-layout .about-us-row .dnd-section .hs_cos_wrapper_type_module.firstSection {
  padding-top: 17px;
}

.webinar-layout .about-us-row .dnd-section .dnd-column .widget-type-rich_text {
  padding-bottom: calc(78px + 4.83068%);
}

.about-us-layout.webinar-layout .dnd-section .dnd-column .widget-type-header h1 {
  margin: 0;
}

.webinar-layout .about-us-row .dnd-section .span4 {
  width: 27.2727%;
}

.webinar-layout .about-us-row .dnd-section .span8 {
  width: 72.7273%;
}

.webinar-layout .about-us-row2 .dnd-section .hs_cos_wrapper_type_module.firstSection {
  padding-top: 17px;
}


.about-us-layout .widget-type-header h3,.about-us-layout .widget-type-header h2 {
  text-align: center;
  margin: 0;
}


.about-us-row3 .widget-type-header h3 {
  padding-bottom: calc(0.0433651% + 62px);
}

.about-us-row3 .dnd-section .dnd-column .hs_cos_wrapper_type_module {
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-us-layout.webinar-layout .body-container-wrapper a.hs-button {
  display: inline-block;
  width: auto;
  height: auto;
  border-color: #373d3f;
  font-family: poppins;
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
  padding: 21px 34px;
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  color: #373d3f;
  border-radius: 300px;
  line-height: normal;
  margin: 0;
}

.about-us-layout.webinar-layout .body-container-wrapper a.hs-button:hover {
  background-color: #373d3f;
  color: #fff;
}

.cm-form-wrapper form {
  text-align: left;
}

.tracking-layout .schdule-demo-banner .sqs-block-content {
  margin: 0;
}

.body-container--blog-case-studies .dnd-section {
  padding: 0;
}

.parallax-mirror {
  visibility:visible !important;
  z-index:-1 !important;
}


.training-page-layout .dnd-section .dnd-column {
  padding: 0px 17px 0px 17px;
}

.training-page-layout .dnd-section .span1 {
  width: 8.3333%;
  margin: 0;
}

.training-page-layout .dnd-section .span3 {
  width: 25%;
  margin: 0;
}

.training-page-layout  .row-fluid.row-margin {
  margin: 0 -17px;
}

.row-margin {
  margin: 0 -17px;
}


.training-page-row1 .hs_cos_wrapper_type_rich_text {
  display: block;
  width: 99.1665%;
  margin-right: auto;
  margin-left: auto;
  margin-top: -23px;
}

.training-page-layout .hs_cos_wrapper_type_rich_text {
  padding: 17px 0;
  display: block;
}

.training-page-layout .hs-button {
  appearance: none;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  width: auto;
  height: auto;
  border-color: #333;
  font-family: poppins;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 13px 26px;
  border-width: 2px;
  border-style: solid;
  background-color: #0000;
  transition: 0.1s background-color linear, 0.1s color linear;
  border-radius: 300px;
  height: auto;
  min-height: auto;
  color: #333;
  margin: 17px;
  word-break: keep-all;
}
.training-page-layout .hs-button:hover{
  background-color: #333;
  color: #fff;
}
.resources-page-layout {
  overflow: hidden;
}
.popup-form.cm-form-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99;
  overflow: auto;
  top: 0;
  height: 100vh;
}

.popup-form.cm-form-wrapper .lightbox-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}

.popup-form.cm-form-wrapper .lightbox-close {
  position: absolute;
  font-size: 22px;
  width: 22px;
  line-height: 22px;
  top: 40px;
  right: 40px;
  text-align: center;
  cursor: pointer;
  color: #3a3d40;
}

.popup-form.cm-form-wrapper .form-title {
  font-size: 22px;
  line-height: 1.2em;
  margin: 0;
  margin-right: 22px;
}

.popup-form.cm-form-wrapper form {
  margin-top: 55px;
}

.popup-form.cm-form-wrapper form .hs-form-field>label {
  font-family: poppins;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: normal;
}

.popup-form.cm-form-wrapper form .hs-form-field legend {
  margin-top: 2px;
}

.popup-form.cm-form-wrapper input.hs-button.primary.large {
  font-family: poppins;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #444;
  color: #fff;
  border-style: none;
  border-radius: 999px;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 1em 2.5em;
  margin: 0;
}

.popup-form.cm-form-wrapper .disclaimer-container.disclaimerMessage {
  font-family: poppins;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4em;
  text-transform: none;
  letter-spacing: 0px;
  color: #3a3d40;
  margin-top: 17px;
  padding-bottom: 4px;
}
.popup-form.cm-form-wrapper .lightbox-inner {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-form.cm-form-wrapper {
  display: none;
}
.graduation-banner .schdule-demo-banner {
  margin-top: -115.5px;
}

.graduation-banner .schdule-demo-banner .page-center {
  width: unset;
  margin: 0 -17px;
}

.graduation-banner .schdule-demo-banner .schdule-demo-banner-row {
  padding: 64px;
}

.graduation-banner .schdule-demo-banner .page-center > div {
  width: 83.3333%;
  margin: 0 auto;
}

.graduation-banner .schdule-demo-banner .schdule-demo-spacer-inner {
  padding-bottom: calc(34px + 5.46032%);
}


.graduation-banner .schdule-demo-banner .page-center {
  position: relative;
  z-index: 99;
}

.graduation-page-row1 .dnd-section {
  padding-top: 100px !important;
  padding-bottom: 0;
}

.graduation-page-row1 .cm-image-wrapper {
  padding-top: 17px;
}

.webinar-layout .row-margin {
  margin:0;
}

.graduation-page-layout .graduation-page-row1 .span10 {
  width: 83.33%;
  margin: 0;
}

.graduation-page-layout .graduation-page-row1 .span1 {
  width: 8.33%;
  margin: 0;
}

.graduation-page-layout .graduation-page-row1 .span1,
.graduation-page-layout .graduation-page-row1 .span10 {
  padding: 17px;
}


.graduation-page-row1 .hs_cos_wrapper_type_linked_image {
  display: block;
  position: relative;
  padding-bottom: 47.437889099121094%;
  overflow: hidden;
}

.graduation-page-row1 .hs_cos_wrapper_type_linked_image img {
  position: absolute;
  width: 100%;
  display: block;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
}
.graduation-page-layout .graduation-page-row2 .span3 {
  width: 25%;
  margin: 0;
  padding: 17px;
}

.graduation-page-layout .graduation-page-row2 .span6 {
  width: 50%;
  margin: 0;
  padding: 17px;
}

.graduation-page-layout .graduation-page-row2 ul {
  padding-top: 16px;
  padding-bottom: 0;
  list-style: none;
  margin: 17px 0 16px!important;

}

.graduation-page-layout .body-container-wrapper ,
.demo-lp-layout .body-container-wrapper {
  position: relative;
  background-color: #fff;
}

.graduation-page-row2 ul li:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-right: 10px;
  line-height: 36px;
  content: '';
  content: "\f17b";
}

.graduation-page-row2 .dnd-section {
  padding-bottom: 100px !important;
}

.graduation-page-row3 .dnd-section {
  padding-top: 100px;
  padding-bottom: calc(1.06982% + 78px);
}

.graduation-page-row3 .dnd-section .dnd-column {
  padding: 0;
}
.graduation-page-layout {
  overflow-x: hidden;
}


.graduation-page-row4.webinar-layout  .dnd-section .hs_cos_wrapper_type_module.firstSection {
  padding-top: 17px;
}

.graduation-page-row4 .widget-type-linked_image img {
  left: -6.02755%;
  top: 0%;
  width: 112.055%;
  height: 100% !important;
  position: absolute;
  max-width: unset !important;
}

.graduation-page-row4 .widget-type-linked_image a {
  position: relative;
  padding-bottom: 63.02616500854492%;
  overflow: hidden;
  display: block;
  width: 100%;
}

.graduation-page-row4 .widget-type-linked_image {
  width: 100%;
  height: 100%;
}


.graduation-page-row4.webinar-layout .dnd-section,.graduation-page-row5.webinar-layout .dnd-section {
  padding-bottom: 100px;
  padding-top: 100px;
}

.graduation-page-row5.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module {
  width: 83.3333%;
  margin: 0 auto;
}



[class*="force-full-width"]>.row-fluid {
  width: 100% !important;
}

.career-row1-section {
  padding-top: 45px;
}

.career-row2-section .dnd-section,
.career-row1-section .dnd-section {
  padding: 17px 47px;
}

.career-row2-section .dnd-section>.row-fluid,
.career-row1-section .dnd-section>.row-fluid {
  padding-left: 17px;
  padding-right: 17px;
  width: 99.1665%;
}
.career-row2-section .dnd-section>.row-fluid {
  text-align: center;
}

.career-row2-section .widget-type-space {
  padding-bottom: 2.12766%;
}

.career-row2-section .widget-type-space>span {
  height: 28px;
  display: block;
}

.career-row2-section .hs-button {
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  transition: 0.1s background-color linear, 0.1s color linear;
  color: #373d3f;
  padding: 21px 34px;
  font-family: poppins;
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
  border-color: #373d3f;
  display: inline-block;
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 300px;
  line-height: normal;
}

.career-row2-section .hs-button:hover {
  background-color: #373d3f;
  color: #fff;
}

.career-row2-section {
  padding-bottom: 80px;
}


.how-works-page .dnd-section[class*="force-full-width"] {
  padding-left:0;
  padding-right:0;
}


.how-works-section-one .dnd-section {
  padding: 100px 47px;
}

.how-works-section-one .hs_cos_wrapper_type_space {
  min-height:34px;
  display:block;
}
.how-works-section-one .dnd-section .dnd-column {
  padding: 0;
}
.how-works-section-one .span1{
  width: 8.3333%;
  float:left;
  margin:0;
}
.how-works-section-one .span10{
  width: 83.3333%;
  float:left;
  margin:0;
}
.fa, .fa-stack {
  display: inline-block;
}
.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.fa-inbox:before {
  content: "\f247";
}
.fa-comments:before {
  content: "\f1a1";
}
.fa-tint:before {
  content: "\f345";
}
.fa-balance-scale:before {
  content: "\f12b";
}
.fa-bar-chart:before {
  content: "\f12e";
}
.fa-comments:before {
  content: "\f1a1";
}
.fa-phone:before {
  content: "\f2b3";
}
.fa-group:before {
  content: "\f220";
}
.fa-cogs:before {
  content: "\f19b";
}
.fa-forward:before {
  content: "\f205";
}
.fa-user-times:before {
  content: "\f368";
}
.fa-compress:before {
  content: "\f1a4";
}
.fa-calendar:before {
  content: "\f15c";
}
.fa-newspaper-o:before {
  content: "\f29c";
}
.fa-check-square-o:before {
  content: "\f17f";
}
.fa-image:before {
  content: "\f246";
}
.fa-lightbulb-o:before {
  content: "\f266";
}
.fa-comment-o:before {
  content: "\f19e";
}
.fa-paint-brush:before {
  content: "\f2a7";
}
.fa-user-plus:before {
  content: "\f366";
}

.how-works-section-one .span6 {
  width: 50%;
  margin: 0;
  float: left;
}
.how-works-section-one .span6 {
  width: 50%;
  margin: 0;
  float: left;
}
.how-works-section-one h4 {
  margin: 1.33em 0;
  line-height: 1.44;
}
.how-works-section-one .hs_cos_gallery {
  width: 66.6667%;
  margin: 0 auto;
  padding: 17px;
}
.how-works-section-one .hs_cos_gallery_main {
  padding: 0;
  margin: 0;
}
.how-works-section-one .slick-arrow {
  z-index: 1;
  font-size: 0;
  line-height: 40px;
  color: #fff !important;
  background-color: #0000001f !important;
  padding: 10px;
  transition: background-color 200ms cubic-bezier(.25,.46,.45,.94);
  width: auto;
  height: auto;
  border-radius: 0;
  margin-top: -34px;
}
.how-works-section-one .slick-arrow:hover {
  background-color: rgba(0,0,0,.2) !important;
}
.how-works-section-one .slick-arrow:after {
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.how-works-section-one .slick-arrow:before {
  display: none;
}
.how-works-section-one .slick-next:after {
  font-family: 'squarespace-ui-font';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  content: "\E02D";
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.how-works-section-one .slick-prev:after {
  font-family: 'squarespace-ui-font';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  content: "\E02C";
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.how-works-section-one .hs_cos_gallery_main .slick-slide .slick-slide-inner-wrapper {
  display:block;
}
.how-works-section-one .home-banner-wrapper>.cm-banner-main {
  min-height: auto;
}

.on-demendv2-row1-section .page-center {
  padding: 80px 64px;
  width: 99.1665%;
  padding-top: 11px;
  margin: 0 auto;
  max-width: 100%;
}

.on-demendv2-row1-section .dnd-section>.row-fluid {
  max-width: 100%;
}

.on-demendv2-row1-section .dnd-section {
  padding: 0;
}

.on-demendv2-row1-section .inner-page-center {
  margin: 0 -17px;
}

.on-demendv2-row1-section .dnd-section .dnd-column {
  padding: 0;
}


.Index-page-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 100px 64px;
}

.demo-lp-layout .dnd-section {
  padding: 0;
}
.demo-lp-layout .banner-section .dnd-section {
  padding: 0;
}

.demo-lp-row1-section .dnd-section>.row-fluid .span6 {
  width: calc(50% - 1%);
  margin: 0;
}

.demo-lp-row1-section .dnd-section>.row-fluid .span6 .widget-type-rich_text {
  margin-left: 2%;
  padding: 10% 10%;
}

.demo-lp-row2-section .widget-type-space>span {
  padding-bottom: calc(3.43401% + 28px);
  display: block;
}

.demo-lp-row2-section .widget-type-space {
  padding: 17px;
}

.demo-lp-row2-section .image-block-wrapper {
  width: 50%;
  margin: 0 auto;
  padding: 17px;
}

.demo-lp-row2-section  .cm-image-wrapper.cm-animate {
  margin: 0 -17px;
}

.demo-lp-row2-section .cm-image-wrapper {
  margin: 0 -17px;
}

.demo-lp-row2-section {
  padding-bottom: 84px;
}

.accepted-student-exp-row1-section .dnd-section {
  padding: 0;
}

.accepted-student-exp-row1-section .dnd-section .dnd-column {
  padding: 0;
}

.faq-layout .image-alignment-wrapper .sqs-block-content {
  padding-top: 17px !important;
}
.how-works-page .body-container {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.how-works-section-one .home-banner-wrapper .content-space {
  line-height: inherit;
}

.full-measure-row3.cm-form-wrapper form .inputs-list>li {
  margin: 0;
}

.full-measure-row3.cm-form-wrapper form .hs-error-msgs label {
  margin: 0;
}



.how-works-page .row-number-4 .widget-type-linked_image,
.how-works-page .row-number-4 .widget-type-linked_image img{
  width: 100%;
}



@media (min-width:770px) {
  .demo-lp-header .cm-header-height {
    min-height: auto !important;
  }
}

@media (max-width:960px) {
  .privacy-layout .dnd-section,
  .on-demand-layout .dnd-section {
    padding-left: 31px;
    padding-right: 31px;
  }

  .content-wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }

  .on-demand-layout h1 {
    font-size: 38px;
  }


  .on-demand-layout .dnd-section > .row-fluid {
    display: flex;
  }

  .webinar-layout .dnd-section {
    padding-left: 31px;
    padding-right: 31px;
  }

  .cm-faq-wrapper .cm-faq-navigation {
    padding-left: 24px;
    padding-right: 24px;
  }

  .graduation-banner .schdule-demo-banner .schdule-demo-banner-row {
    padding-left: 48px;
    padding-right: 48px;
  }


  .career-row2-section .dnd-section, .career-row1-section .dnd-section {
    padding-left: 31px;
    padding-right: 31px;
  }

  .how-works-section-one .dnd-section {
    padding-left: 31px;
    padding-right: 31px;
  }


  .on-demendv2-row1-section .page-center {
    padding-left: 48px;
    padding-right: 48px;
  }

  .Index-page-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .webinar-layout h1 {
    font-size: 38px;
  }
}


@media (max-width:880px) {
  .webinar-layout h5 {
    font-size: 45px;
  }
}


@media(max-height:700px){
  .popup-form.cm-form-wrapper .lightbox-inner {
    transform: translateY(0);
    margin: 0;
  }
}

@media (max-width:769px) {
  .privacy-layout .dnd-section {
    padding-top:110px;
  }
}


@media (max-width:768px) {
  .privacy-layout .dnd-section,
  .on-demand-layout .dnd-section {
    padding-top: 60px;
    padding-left: 19px;
    padding-right: 19px;
    padding-bottom: 63px;
  }

  .privacy-layout h1 {
    font-size: 42px ;
    font-weight: 200 ;
  }

  .cm-thank-page h1,
  .two-col-layout h1{
    font-size: 42px;
    font-weight: 200;
  }

  .cm-thank-page .cm-row-inner {
    margin-top: 40px;
  }

  .cm-thank-page .cm-row-inner > div > div {
    padding-top: 20px;
  }

  .content-wrapper {
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 63px;
  }

  .thank-you-row-left {
    width: 99.1665%;
    position: static;
  }

  .two-col-layout .content-wrapper {
    padding-top: 40px;
  }

  .two-col-layout .dnd-section .hs_cos_wrapper{
    padding-top: 20px;
  }

  .demo-layout .dnd-section>.row-fluid .dnd-module>.hs_cos_wrapper {
    padding: 37px 0 17px;
  }

  .demo-layout .dnd-section>.row-fluid .dnd-row:first-child .dnd-module>.hs_cos_wrapper {
    padding-top: 20px;
  }

  .demo-layout .dnd-section {
    padding-top: 40px;
  }

  .on-demand-layout h1 {
    font-size: 34px;
  }


  .webinar-layout .dnd-section {
    padding-left: 19px;
    padding-right: 19px;
    padding-top: 23px;
  }

  .webinar-layout h1 {
    font-size: 42px !important;
    font-weight: 200 !important;
    word-break: initial;
  }

  .webinar-layout .dnd-row .row-fluid {
    display: flex;
  }

  .webinar-layout .dnd-section .span12 {
    width: 100%;
  }

  .webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module {
    padding-top: 37px !important;
  }

  .cm-block-content .cm-col-4 {
    padding-top: 20px;
  }

  .full-measure-layout.webinar-layout .dnd-section {
    padding-top: 83px;
  }

  .full-measure-row3.cm-form-wrapper .form-title {
    padding-bottom: 54px;
  }


  .move-in-layout .cm-banner-wrapper .banner-mid-inner h3 {
    padding-top: 20px;
  }

  .move-in-layout.webinar-layout .dnd-section {
    padding-top: 83px;
  }

  .body-container-wrapper .cm-banner-wrapper {
    padding-top: 0;
  }


  .faq-layout.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module.widget-type-rich_text {
    padding-top: 20px !important;
  }

  .faq-layout.webinar-layout .image-alignment-wrapper .sqs-block-content {
    margin-top: 0;
  }


  .tracking-layout .banner-section .schdule-demo-banner {
    margin-top: 0;
  }

  .tracking-layout .schdule-demo-banner .schdule-demo-banner-row {
    padding-left: 36px;
    padding-right: 36px;
  }

  .tracking-layout .schdule-demo-banner h1 {
    margin-bottom: 54px;
  }

  .tracking-layout .schdule-demo-banner .page-center {
    width: 100%;
  }

  .tracking-layout .schdule-demo-banner .page-center .schdule-demo-spacer {
    width: 83.3333%;
    margin: 0 auto;
  }

  .tracking-layout .schdule-demo-banner h1,
  .tracking-layout .schdule-demo-banner h2:first-of-type {
    width: 83.3333%;
    margin-left: auto;
    margin-right: auto;
  }


  .campus-layout .cm-banner-wrapper>.cm-banner-main {
    margin-top: 0;
  }

  .campus-layout .cm-banner-wrapper {
    padding: 0;
  }


  .home-layout.webinar-layout .dnd-section[class*="force-full-width"] .hs_cos_wrapper_type_module {
    padding: 0 !important;
  }

  .body-container-wrapper .home-banner-wrapper>.cm-banner-main {
    min-height: unset !important;
  }

  .home-row6 .home-banner-wrapper .banner-content-inner>div.cm-btn {
    padding-top: 105px;
  }



  .about-us-row .dnd-section {
    padding-top: 110px;
    padding-bottom: 88px;
  }

  .webinar-layout .about-us-row .dnd-section .dnd-column .widget-type-rich_text {
    padding-bottom: calc(98px + 4.83068%);
  }

  .about-us-row2 .dnd-section {
    padding-bottom: 66px;
    padding-top: 0;
  }


  .about-us-row2 .dnd-row .row-fluid {
    height: 100%;
  }

  .webinar-layout .about-us-row2 .dnd-section .hs_cos_wrapper_type_module.firstSection {
    height: 100%;
  }

  .webinar-layout  .about-us-row3 .dnd-section {
    padding-top: 20px;
  }

  .webinar-layout .about-us-row2 .dnd-section .dnd-column .hs_cos_wrapper_type_module {
    padding-top: 17px !important;

  }

  .about-us-row3 .widget-type-header h3 {
    padding-bottom: calc(0.0433651% + 83px);
  }

  .webinar-layout .move-in-row3 .dnd-section .dnd-column .hs_cos_wrapper_type_module {
    padding: 0 !important;
  }

  .training-page-row1 .dnd-section {
    padding-top: 42px !important;
  }

  .training-page-row1 .hs_cos_wrapper_type_rich_text {
    margin: 0 auto !important;
    padding: 17px 0 20px;
  }

  .training-page-row1  h1 {
    font-size: 42px !important;
    font-weight: 200 !important;
  }

  .training-page-layout .dnd-section .span3 {
    padding-top: 17px;
  }

  .training-page-row h3 {
    font-family: poppins;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1.8em;
    text-transform: none;
  }

  .training-page-layout .hs-button {
    word-break: keep-all;
    margin: 38px 0;
  } 


  .graduation-banner .schdule-demo-banner {
    margin-top: 0 !important;
  }

  .graduation-banner .schdule-demo-banner .schdule-demo-spacer-inner {
    padding-bottom: calc(54px + 5.46032%);
  }

  .graduation-banner .schdule-demo-banner .schdule-demo-banner-row {
    padding-left: 36px;
    padding-right: 36px;
  }

  .graduation-banner .schdule-demo-banner .page-center>div.sqs-block-content {
    padding-top: 37px;
  }



  .graduation-page-row1.webinar-layout .dnd-section .hs_cos_wrapper_type_module.firstSection {
    padding-top: 20px !important;
  }

  .graduation-page-row2.webinar-layout .dnd-section>.row-fluid {
    display: flex;
  }

  .graduation-page-layout .graduation-page-row2 ul {
    padding-top: 36px;
  }


  .graduation-page-row5.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module.firstSection {
    padding-top: 20px !important;
  }


  .career-row1-section .widget-type-rich_text h1 {
    font-size: 42px;
    font-weight: 200;
  }

  .career-row2-section .dnd-section, 
  .career-row1-section .dnd-section {
    padding-left: 19px;
    padding-right: 19px;
  }

  .career-row1-section {
    padding-top: 131px;
  }

  .career-row2-section .hs-button {
    margin-top: 20px;
  }

  .career-row2-section .widget-type-rich_text {
    padding-top: 20px;
  }

  .career-row2-section .widget-type-space {
    padding-top: 20px;
  }

  .career-row2-section .widget-type-space>span {
    height: 21px;
  }

  .career-row2-section .cm-image-wrapper {
    padding-top: 20px;
  }
  .Index-page-content {
    padding-left: 36px;
    padding-right: 36px;
  }

  .demo-lp-row2-section .cm-image-wrapper {
    padding-top: 20px;
  }

  .webinar-layout .adora-row2 .dnd-section {
    padding-top: 0 !important;
  }


}


@media(max-width:767px){
  .training-page-row .row-margin > .row-fluid {
    display: flex;
  }
  .popup-form.cm-form-wrapper .lightbox-inner {
    margin: 0;
  }
  .popup-form.cm-form-wrapper form .hs-form-field legend {
    margin-top: 8px;
  }

  .how-works-section-one .dnd-section {
    padding-left: 19px;
    padding-right: 19px;
  }
  .how-works-section-one .hs_cos_wrapper_type_space {
    min-height: 54px;
  }
  .how-works-section-one h1 {
    font-size: 42px;
    font-weight: 200;
  }
  .how-works-section-one .hs_cos_wrapper_type_rich_text,
  .how-works-section-one .hs_cos_wrapper_type_linked_image{
    padding-top:20px;
    display: block;
  }

  .on-demendv2-row1-section h1 {
    font-size: 42px;
    font-weight: 200;
  } 

  .on-demendv2-row1-section .page-center {
    padding-left: 36px;
    padding-right: 36px;
  }

  .on-demendv2-row1-section .page-center {
    padding-top: 58px;
  }
  .how-works-section-one .hs_cos_gallery {
    margin-top: 20px;
  }
  .how-works-section-one .home-banner-wrapper {
    padding-top: 0;
  }
}


@media (max-width:640px) {
  .privacy-layout .dnd-section ,
  .on-demand-layout .dnd-section {
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 60px;
  }

  .privacy-layout p,.privacy-layout {
    font-size: 12px !important;
    color: #2c2f32;
  }

  .privacy-layout .dnd-section>.row-fluid>.widget-span {
    max-width: 100%;
    padding: 17px;
  }

  .privacy-layout h1{
    font-size: 28px !important;
    font-weight: 300 !important;
    letter-spacing: -.01185185px;
  }

  .thank-you-row-left {
    position: static;
    width: 99.1665%;
  }

  .thank-you-row-right {
    float: none;
    width: auto;
  }

  .content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }

  .cm-thank-page h1 ,
  .two-col-layout h1{
    font-size: 28px ;
    font-weight: 300 ;
    letter-spacing: -.01185185px;
  }

  .cm-thank-page h3 {
    font-size: 18px !important;
  }

  .cm-thank-page p, .cm-thank-page {
    font-size: 12px !important;
    color: #2c2f32;
  }

  .thank-layout .widget-type-rich_text {
    max-width: 100%;
  }

  .thank-you-row-left {
    width:100%;
  }


  .two-col-you-row-left,.two-col-you-row-right {
    float: none;
    width: 100%;
  }

  .two-col-layout .cm-row-inner .dnd-section {
    padding: 17px ;
  }

  .two-col-layout h3 {
    font-size: 18px;
  }

  .two-col-layout p,.two-col-layout {
    font-size: 12px;
    color: #2c2f32;
  }

  .cm-form-wrapper form .hs-form-field>label {
    line-height: 18px;
  }

  .cm-form-wrapper form .hs-form-field legend {
    line-height: 18px;
  }

  .cm-form-wrapper form .hs-form-field.hs-message {
    margin-bottom: 23px;
  }

  .two-col-layout h2 {
    font-size: 13px;
  }

  .demo-layout .dnd-section>.row-fluid .dnd-module>.hs_cos_wrapper {
    padding: 37px 0 17px !Important;
  }

  .demo-layout .dnd-section>.row-fluid>div {
    width: 100%;
  }


  .on-demand-layout .dnd-section > .row-fluid {
    flex-direction: column-reverse;
  }

  .on-demand-layout .dnd-section .span7 {
    width: 100%;
    margin: 0 !important;
  }

  .on-demand-layout .dnd-section .dnd-column {
    padding-top: 37px;
  }

  .on-demand-layout .dnd-section {
    padding-top: 40px;
  }

  .on-demand-layout h2 {
    font-size: 13px !important;
  }

  .on-demand-layout h1 {
    font-size: 28px !important;
    font-weight: 300 !important;
    letter-spacing: -.01185185px;
  }

  .on-demand-layout .widget-type-rich_text {
    padding: 0 2px;
  }

  .on-demand-layout .dnd-section .span5 {
    width: 100%;
  }



  .webinar-layout .dnd-section {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 40px;
  }

  .webinar-layout .dnd-section .span5 {
    width: 100%;
  }

  .webinar-layout .dnd-section .span7 {
    width: 100%;
  }

  .webinar-layout .dnd-row .row-fluid {
    display: block;
  }

  .webinar-layout h2 {
    font-size: 13px !important;
  }

  .webinar-layout h1 {
    font-size: 28px !important;
    font-weight: 300 !important;
    letter-spacing: -.01185185px;
  }

  .webinar-layout h3 {
    font-size: 18px !important;
  }


  .webinar-layout .dnd-section .span4 {
    width: 100%;
  }

  .webinar-layout .dnd-section .span6 {
    width: 100%;
  }

  .webinar-layout .dnd-section .span1 {
    width: 100%;
  }

  .full-width-layout.webinar-layout .dnd-section .dnd-column .widget-type-rich_text {
    width: 100%;
    margin: 0 auto;
  }

  .full-width-layout.webinar-layout hr {
    width: 100% !important;
    margin: 6px auto !important;
    height: 0;
  }


  .webinar-layout .dnd-section .span2 {
    width: 100%;
  }

  .webinar-layout .dnd-section .span8 {
    width: 100%;
  }

  .adora-layout.webinar-layout .adora-row .hs_cos_wrapper_type_module {
    width: 100%;
  }

  .adora-layout.webinar-layout .adora-row2 .dnd-section .hs_cos_wrapper_type_module {
    width: 100%;
  }

  .adora-layout.webinar-layout .adora-row2 .dnd-section .widget-type-linked_image .hs_cos_wrapper {
    padding: 0;
    width: 100%;
  }

  .adora-layout.webinar-layout .adora-row2 .dnd-section .widget-type-linked_image {
    padding: 17px;
  }


  .adora-layout.webinar-layout hr,
  .webinar-layout hr{
    width: 100% !important;
    margin: 6px auto !important;
    height: 0;
  }


  .full-measure-layout.webinar-layout .dnd-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .full-measure-row3.cm-form-wrapper .widget-type-form,
  .full-measure-row3.cm-form-wrapper .widget-type-rich_text{
    width: 100%;
  }


  .move-in-layout .cm-banner-wrapper .banner-mid-inner h3 {
    padding-top: 20px;
  }


  .move-in-layout.webinar-layout .dnd-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-bottom-space,
  .move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-top-space {
    display: block;
    width: 100%;
    padding: 17px;
  }

  .move-in-row3 .cm-banner-wrapper .banner-content-inner>div.banner-mid-content {
    width: 100%;
  }

  .body-container-wrapper .cm-banner-wrapper>.cm-banner-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .move-in-row4 .dnd-section .hs_cos_wrapper_type_module {
    width: 100%;
  }


  .schdule-demo-banner .schdule-demo-content {
    margin-top: 16px;
  }

  .tracking-layout .schdule-demo-banner h1, .tracking-layout .schdule-demo-banner h2:first-of-type {
    width: 100%;
  }

  .schdule-demo-banner .sqs-block-content {
    margin-top: 0;
  }

  .tracking-layout .schdule-demo-banner .schdule-demo-banner-row {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px;
    padding-top:60px;
  }

  .campus-layout.webinar-layout .dnd-section .widget-type-rich_text {
    width: 100%;
  }


  .home-layout.webinar-layout .dnd-section {
    padding-top: 60px;
    padding-bottom:60px;
  }

  .home-row .dnd-section .dnd-column .widget-type-rich_text {
    width: 100%;
  }

  .home-row3 .firstSection .cm-image-wrapper {
    padding-top: 0;
  }


  .home-row4 .home-banner-wrapper .banner-content-inner>.banner-top-space, 
  .home-row4 .home-banner-wrapper .banner-content-inner>.banner-bottom-space {
    display: none !important;
  }

  .body-container-wrapper .home-banner-wrapper>.cm-banner-main {
    min-height: unset !important;
  }

  .body-container-wrapper .home-banner-wrapper>.cm-banner-main {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  main.body-container-wrapper .home-banner-wrapper {
    padding-top: 0;
  }

  .home-row5 .home-banner-wrapper .banner-content-inner>div, 
  .home-row6 .home-banner-wrapper .banner-content-inner>div {
    display: block;
  }



  .about-us-row .dnd-section>.row-fluid {
    width: 100%;
  }

  .about-us-row .dnd-section {
    padding-top: 128px;
  }

  .webinar-layout .about-us-row .dnd-section .dnd-column .widget-type-rich_text {
    padding-bottom: 17px;
  }

  .webinar-layout .about-us-row .dnd-section .span4 {
    width: 100%;
  }

  .webinar-layout .about-us-row .dnd-section .span8 {
    width: 100%;
  }

  .about-us-row2 .dnd-section {
    padding-top: 0;
  }

  .webinar-layout .about-us-row3 .dnd-section {
    padding-top: 23px;
  }

  .about-us-row3 .widget-type-header h3 {
    padding-bottom: calc(0.0433651% + 75px);
  }

  .about-us-row3 .dnd-section .dnd-column .hs_cos_wrapper_type_module {
    width: 100%;
  }

  .popup-form.cm-form-wrapper .lightbox-inner {
    transform: translate(0);
    top: 0;
  }
  .popup-form.cm-form-wrapper .lightbox-content {
    margin-top: 0;
    margin-bottom: 0;
  }

  .training-page-row .dnd-section {
    padding-bottom: 40px;
  }
  .training-page-row h3 {
    word-break: keep-all;
  }
  .training-page-row1 h1 {
    font-size: 28px !important;
    letter-spacing: -.01185185px;
    font-weight: 300 !important;
  }
  .training-page-row h3 {
    word-break: keep-all;
    font-size: 18px !important;
  }
  .training-page-row .row-margin>.row-fluid>div {
    width: 100%;
  }

  .training-page-row .row-margin>.row-fluid {
    display: block;
  }
  .training-page-row1 .dnd-section {
    padding-top: 60px !important;
  }
  .training-page-row h3 {
    padding-top: 0;
  }

  .training-page-row .dnd-section {
    padding-top: 17px !important;
  }
  .training-page-layout .dnd-section .span3 {
    padding-top: 0 !important;
  }
  .training-page-layout .hs-button {
    word-break: keep-all;
    margin: 37px 0 37px;
  }

  .graduation-banner .schdule-demo-banner .page-center>div {
    width: 100%;
  }

  .graduation-banner .schdule-demo-banner .schdule-demo-banner-row {
    padding: 60px 20px;
    padding-right: 20px;
  }

  .graduation-banner .schdule-demo-banner .page-center>div.schdule-demo-content {
    padding-top: 37px;
  }

  .graduation-banner .schdule-demo-banner h1 {
    font-size: 28px !important;
    font-weight: 300 !important;
  }


  .graduation-banner .schdule-demo-banner .page-center>div.sqs-block-content {
    padding:37px 17px 17px;
  }

  .graduation-banner .schdule-demo-banner .meeting-iframe-inner {
    padding-top:0;
  }

  .graduation-page-row1 .dnd-section {
    padding-top: 77px !important;
  }

  .graduation-page-layout .graduation-page-row1 .span10 {
    width: 100%;
  }

  .graduation-page-layout .graduation-page-row2 .span3 {
    width: 100%;
  }

  .graduation-page-row2.webinar-layout .dnd-section>.row-fluid {
    display: block;
  }

  .graduation-page-layout .graduation-page-row2 ul {
    padding-top: 32px;
  }

  .graduation-page-row2 .dnd-section {
    padding-bottom: 60px !important;
  }

  .graduation-page-row3 .dnd-section {
    padding-top: 73px;
    padding-bottom: calc(1.06982% + 92px);
  }

  .graduation-page-row4.webinar-layout .dnd-section, .graduation-page-row5.webinar-layout .dnd-section {
    padding-top: 78px;
    padding-bottom: 60px;
  }

  .graduation-page-row5.webinar-layout .dnd-section .dnd-column .hs_cos_wrapper_type_module {
    width: 100%;
  }

  .career-row1-section {
    padding-top: 148px;
  }

  .career-row2-section {
    padding-bottom: 60px;
  }

  .career-row2-section .dnd-section, 
  .career-row1-section .dnd-section {
    padding-left: 3px;
    padding-right: 3px;
  }

  .career-row1-section .widget-type-rich_text h1  {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -.01185185px;
  }

  .career-row2-section .widget-type-rich_text h2 {
    font-size: 13px;
  }


  .how-works-section-one .dnd-section {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .how-works-section-one .span1,
  .how-works-section-one .span6,
  .how-works-section-one .span10{
    width: 100%;
    float:none;
  }
  .how-works-section-one h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -.01185185px;
  }
  .how-works-section-one h2 {
    font-size: 13px;
  }
  .how-works-section-one .span1 .hs_cos_wrapper_type_space {
    min-height:0;
  }
  .how-works-section-one h3 {
    font-size: 18px;
  }
  .how-works-section-one h4 {
    line-height: 1.09;
  }
  .how-works-section-one .hs_cos_gallery {
    width: 100%;
  }

  .on-demendv2-row1-section .page-center {
    padding-top: 78px;
  }
  .on-demendv2-row1-section .page-center {
    width: 100%;
  }
  .on-demendv2-row1-section .page-center {
    padding-left: 20px;
    padding-right: 20px;
  }

  .on-demendv2-row1-section h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -.01185185px;
  }

  .on-demendv2-row1-section .page-center {
    padding-bottom: 60px;
  }

  .Index-page-content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .demo-lp-row2-section .image-block-wrapper {
    width: 100%;
  }
  .how-works-section-one .home-banner-wrapper .banner-content-inner>.banner-top-space, 
  .how-works-section-one .home-banner-wrapper .banner-content-inner>.banner-bottom-space {
    display: block;
  }
  .how-works-section-one .home-banner-wrapper .banner-content-inner>.banner-top-space .content-space {
    padding-bottom: 4.97533% !important;
  }
  .how-works-section-one .home-banner-wrapper .banner-content-inner>.banner-bottom-space .content-space {
    padding-bottom: 4.44079% !important;
  }

  .thank-layout h3 a[href*="mailto"] {
    font-size: 15px;
  }
}