@charset "UTF-8";

/**
 * Arquivo base do SCSS com definição das variáveis
 *
 * @author Alvaro junior
 * @version 1.0.0
 */

/* ============= EFEITOS ============= */

/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.3.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Hover.css Copyright Ian Lunn 2017. Generated with Sass.
 */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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);
    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);
    transform: translate3d(0, -30px, 0);
  }

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

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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);
    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);
    transform: translate3d(0, -30px, 0);
  }

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

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

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

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

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

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

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

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

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

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

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

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

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

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

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

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

  100% {
    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 {
  0% {
    transform: none;
  }

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

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

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

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

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

  100% {
    transform: none;
  }
}

@keyframes wobble {
  0% {
    transform: none;
  }

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

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

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

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

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

  100% {
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    transform: none;
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    transform: none;
  }
}

@keyframes jello {
  11.1% {
    transform: none;
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    transform: none;
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, -3000px, 0);
  }

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

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

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, -3000px, 0);
  }

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

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

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(-3000px, 0, 0);
  }

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

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

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(-3000px, 0, 0);
  }

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

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

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(3000px, 0, 0);
  }

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

  75% {
    transform: translate3d(10px, 0, 0);
  }

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

  100% {
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(3000px, 0, 0);
  }

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

  75% {
    transform: translate3d(10px, 0, 0);
  }

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

  100% {
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    transform: translate3d(0, 10px, 0);
  }

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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;
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    transform: translate3d(0, 10px, 0);
  }

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

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

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

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

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

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

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

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

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

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

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

  100% {
    transform: perspective(400px);
    -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 {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

  100% {
    transform: perspective(400px);
  }
}

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

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

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

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

  100% {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

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

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

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

  100% {
    transform: perspective(400px);
  }
}

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

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

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

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

  100% {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

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

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

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

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

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

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

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

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

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

  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  100% {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  100% {
    opacity: 1;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    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);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    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);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

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

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    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);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

[data-anime] {
  opacity: 0 !important;
  transition: 0.3s;
}

[data-delay="05"] {
  transition-delay: 0.5s !important;
}

[data-delay="1"] {
  transition-delay: 1s !important;
}

[data-delay="15"] {
  transition-delay: 1.5s !important;
}

[data-delay="2"] {
  transition-delay: 2s !important;
}

[data-delay="3"] {
  transition-delay: 3s !important;
}

[data-delay="5"] {
  transition-delay: 5s !important;
}

[data-anime=left] {
  transition: 0.3s;
  transform: translate3d(-50px, 0, 0);
}

[data-anime=right] {
  transition: 0.3s;
  transform: translate3d(50px, 0, 0);
}

[data-anime=top] {
  transition: 0.3s;
  transform: translate3d(0, -50px, 0);
}

[data-anime=bottom] {
  transition: 0.3s;
  transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
  opacity: 1 !important;
  transition: 0.3s;
  transform: translate3d(0px, 0px, 0px);
}

/* 2D TRANSITIONS */

/* Grow */

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
}

/* Shrink */

.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-shrink:hover,
.hvr-shrink:focus,
.hvr-shrink:active {
  transform: scale(0.9);
}

/* Pulse */

@-webkit-keyframes hvr-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.9);
  }
}

.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */

@-webkit-keyframes hvr-pulse-grow {
  to {
    transform: scale(1.1);
  }
}

@keyframes hvr-pulse-grow {
  to {
    transform: scale(1.1);
  }
}

.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */

@-webkit-keyframes hvr-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse-shrink {
  to {
    transform: scale(0.9);
  }
}

.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pulse-shrink:hover,
.hvr-pulse-shrink:focus,
.hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */

@-webkit-keyframes hvr-push {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hvr-push {
  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

.hvr-push {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */

@-webkit-keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}

@keyframes hvr-pop {
  50% {
    transform: scale(1.2);
  }
}

.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */

.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.5s;
}

.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */

.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.5s;
}

.hvr-bounce-out:hover,
.hvr-bounce-out:focus,
.hvr-bounce-out:active {
  transform: scale(0.8);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */

.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-rotate:hover,
.hvr-rotate:focus,
.hvr-rotate:active {
  transform: rotate(4deg);
}

/* Grow Rotate */

.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow-rotate:hover,
.hvr-grow-rotate:focus,
.hvr-grow-rotate:active {
  transform: scale(1.1) rotate(4deg);
}

/* Float */

.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}

/* Sink */

.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-sink:hover,
.hvr-sink:focus,
.hvr-sink:active {
  transform: translateY(8px);
}

/* Bob */

@-webkit-keyframes hvr-bob {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    transform: translateY(-8px);
  }
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */

@-webkit-keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@-webkit-keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-hang:hover,
.hvr-hang:focus,
.hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */

.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-skew:hover,
.hvr-skew:focus,
.hvr-skew:active {
  transform: skew(-10deg);
}

/* Skew Forward */

.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.hvr-skew-forward:hover,
.hvr-skew-forward:focus,
.hvr-skew-forward:active {
  transform: skew(-10deg);
}

/* Skew Backward */

.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}

.hvr-skew-backward:hover,
.hvr-skew-backward:focus,
.hvr-skew-backward:active {
  transform: skew(10deg);
}

/* Wobble Vertical */

@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-vertical:hover,
.hvr-wobble-vertical:focus,
.hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */

@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    transform: translateX(8px);
  }

  33.3% {
    transform: translateX(-6px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */

@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }

  33.3% {
    transform: translate(-6px, -6px);
  }

  49.95% {
    transform: translate(4px, 4px);
  }

  66.6% {
    transform: translate(-2px, -2px);
  }

  83.25% {
    transform: translate(1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }

  33.3% {
    transform: translate(-6px, -6px);
  }

  49.95% {
    transform: translate(4px, 4px);
  }

  66.6% {
    transform: translate(-2px, -2px);
  }

  83.25% {
    transform: translate(1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-to-bottom-right:hover,
.hvr-wobble-to-bottom-right:focus,
.hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */

@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }

  33.3% {
    transform: translate(-6px, 6px);
  }

  49.95% {
    transform: translate(4px, -4px);
  }

  66.6% {
    transform: translate(-2px, 2px);
  }

  83.25% {
    transform: translate(1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-top-right {
  16.65% {
    transform: translate(8px, -8px);
  }

  33.3% {
    transform: translate(-6px, 6px);
  }

  49.95% {
    transform: translate(4px, -4px);
  }

  66.6% {
    transform: translate(-2px, 2px);
  }

  83.25% {
    transform: translate(1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-to-top-right:hover,
.hvr-wobble-to-top-right:focus,
.hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */

@-webkit-keyframes hvr-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-top {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transform-origin: 0 100%;
}

.hvr-wobble-top:hover,
.hvr-wobble-top:focus,
.hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */

@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-bottom {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transform-origin: 100% 0;
}

.hvr-wobble-bottom:hover,
.hvr-wobble-bottom:focus,
.hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */

@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

@keyframes hvr-wobble-skew {
  16.65% {
    transform: skew(-12deg);
  }

  33.3% {
    transform: skew(10deg);
  }

  49.95% {
    transform: skew(-6deg);
  }

  66.6% {
    transform: skew(4deg);
  }

  83.25% {
    transform: skew(-2deg);
  }

  100% {
    transform: skew(0);
  }
}

.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-skew:hover,
.hvr-wobble-skew:focus,
.hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */

@-webkit-keyframes hvr-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-buzz:hover,
.hvr-buzz:focus,
.hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */

@-webkit-keyframes hvr-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Forward */

.hvr-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-forward:hover,
.hvr-forward:focus,
.hvr-forward:active {
  transform: translateX(8px);
}

/* Backward */

.hvr-backward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-backward:hover,
.hvr-backward:focus,
.hvr-backward:active {
  transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */

/* Fade */

.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}

.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
  background-color: #2098D1;
  color: white;
}

/* Back Pulse */

@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  transition-duration: 0.5s;
  transition-property: color, background-color;
}

.hvr-back-pulse:hover,
.hvr-back-pulse:focus,
.hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098D1;
  background-color: rgb(32, 152, 209);
  color: white;
}

/* Sweep To Right */

.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  transform: scaleX(1);
}

/* Sweep To Left */

.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-left:hover,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:active {
  color: white;
}

.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:active:before {
  transform: scaleX(1);
}

/* Sweep To Bottom */

.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-bottom:hover,
.hvr-sweep-to-bottom:focus,
.hvr-sweep-to-bottom:active {
  color: white;
}

.hvr-sweep-to-bottom:hover:before,
.hvr-sweep-to-bottom:focus:before,
.hvr-sweep-to-bottom:active:before {
  transform: scaleY(1);
}

/* Sweep To Top */

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  transform: scaleY(1);
}

/* Bounce To Right */

.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */

.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
  color: white;
}

.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */

.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-bottom:hover,
.hvr-bounce-to-bottom:focus,
.hvr-bounce-to-bottom:active {
  color: white;
}

.hvr-bounce-to-bottom:hover:before,
.hvr-bounce-to-bottom:focus:before,
.hvr-bounce-to-bottom:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */

.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}

.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
  color: white;
}

.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */

.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
  color: white;
}

.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
  transform: scale(2);
}

/* Radial In */

.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  transform: scale(2);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-in:hover,
.hvr-radial-in:focus,
.hvr-radial-in:active {
  color: white;
}

.hvr-radial-in:hover:before,
.hvr-radial-in:focus:before,
.hvr-radial-in:active:before {
  transform: scale(0);
}

/* Rectangle In */

.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-rectangle-in:hover,
.hvr-rectangle-in:focus,
.hvr-rectangle-in:active {
  color: white;
}

.hvr-rectangle-in:hover:before,
.hvr-rectangle-in:focus:before,
.hvr-rectangle-in:active:before {
  transform: scale(0);
}

/* Rectangle Out */

.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
  color: white;
}

.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
  transform: scale(1);
}

/* Shutter In Horizontal */

.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
  color: white;
}

.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
  transform: scaleX(0);
}

/* Shutter Out Horizontal */

.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098D1;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}

.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  transform: scaleX(1);
}

/* Shutter In Vertical */

.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  transform: scaleY(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-in-vertical:hover,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:active {
  color: white;
}

.hvr-shutter-in-vertical:hover:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:active:before {
  transform: scaleY(0);
}

/* Shutter Out Vertical */

.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098D1;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
  color: white;
}

.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */

/* Border Fade */

.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-border-fade:hover,
.hvr-border-fade:focus,
.hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098D1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */

.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-hollow:hover,
.hvr-hollow:focus,
.hvr-hollow:active {
  background: none;
}

/* Trim */

.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-trim:before {
  content: "";
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.hvr-trim:hover:before,
.hvr-trim:focus:before,
.hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */

@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-ripple-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.hvr-ripple-out:hover:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */

@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-ripple-in:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.hvr-ripple-in:hover:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */

.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-outline-out:before {
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}

.hvr-outline-out:hover:before,
.hvr-outline-out:focus:before,
.hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */

.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-outline-in:before {
  pointer-events: none;
  content: "";
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: top, right, bottom, left;
}

.hvr-outline-in:hover:before,
.hvr-outline-in:focus:before,
.hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */

.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: border-radius;
}

.hvr-round-corners:hover,
.hvr-round-corners:focus,
.hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */

.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */

.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-from-right:hover:before,
.hvr-underline-from-right:focus:before,
.hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */

.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-left:hover:before,
.hvr-overline-from-left:focus:before,
.hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */

.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-center:hover:before,
.hvr-overline-from-center:focus:before,
.hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */

.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-from-right:hover:before,
.hvr-overline-from-right:focus:before,
.hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */

.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098D1;
  border-style: solid;
  border-width: 0;
  transition-property: border-width;
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
}

.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before {
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */

.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  transform: translateY(4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-underline-reveal:hover:before,
.hvr-underline-reveal:focus:before,
.hvr-underline-reveal:active:before {
  transform: translateY(0);
}

/* Overline Reveal */

.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  transform: translateY(-4px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-overline-reveal:hover:before,
.hvr-overline-reveal:focus:before,
.hvr-overline-reveal:active:before {
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */

/* Glow */

.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */

.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-shadow:hover,
.hvr-shadow:focus,
.hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */

.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Box Shadow Outset */

.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}

.hvr-box-shadow-outset:hover,
.hvr-box-shadow-outset:focus,
.hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */

.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

.hvr-box-shadow-inset:hover,
.hvr-box-shadow-inset:focus,
.hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */

.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}

.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
  transform: translateY(-5px);
  /* move the element up by 5px */
}

.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */

.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-shadow-radial:before,
.hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
}

.hvr-shadow-radial:before {
  bottom: 100%;
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.hvr-shadow-radial:after {
  top: 100%;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.hvr-shadow-radial:hover:before,
.hvr-shadow-radial:focus:before,
.hvr-shadow-radial:active:before,
.hvr-shadow-radial:hover:after,
.hvr-shadow-radial:focus:after,
.hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */

/* Bubble Top */

.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}

.hvr-bubble-top:hover:before,
.hvr-bubble-top:focus:before,
.hvr-bubble-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Right */

.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}

.hvr-bubble-right:hover:before,
.hvr-bubble-right:focus:before,
.hvr-bubble-right:active:before {
  transform: translateX(10px);
}

/* Bubble Bottom */

.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}

.hvr-bubble-bottom:hover:before,
.hvr-bubble-bottom:focus:before,
.hvr-bubble-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Left */

.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}

.hvr-bubble-left:hover:before,
.hvr-bubble-left:focus:before,
.hvr-bubble-left:active:before {
  transform: translateX(-10px);
}

/* Bubble Float Top */

.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-top:hover,
.hvr-bubble-float-top:focus,
.hvr-bubble-float-top:active {
  transform: translateY(10px);
}

.hvr-bubble-float-top:hover:before,
.hvr-bubble-float-top:focus:before,
.hvr-bubble-float-top:active:before {
  transform: translateY(-10px);
}

/* Bubble Float Right */

.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-right:hover,
.hvr-bubble-float-right:focus,
.hvr-bubble-float-right:active {
  transform: translateX(-10px);
}

.hvr-bubble-float-right:hover:before,
.hvr-bubble-float-right:focus:before,
.hvr-bubble-float-right:active:before {
  transform: translateX(10px);
}

/* Bubble Float Bottom */

.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-bottom:hover,
.hvr-bubble-float-bottom:focus,
.hvr-bubble-float-bottom:active {
  transform: translateY(-10px);
}

.hvr-bubble-float-bottom:hover:before,
.hvr-bubble-float-bottom:focus:before,
.hvr-bubble-float-bottom:active:before {
  transform: translateY(10px);
}

/* Bubble Float Left */

.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-bubble-float-left:hover,
.hvr-bubble-float-left:focus,
.hvr-bubble-float-left:active {
  transform: translateX(10px);
}

.hvr-bubble-float-left:hover:before,
.hvr-bubble-float-left:focus:before,
.hvr-bubble-float-left:active:before {
  transform: translateX(-10px);
}

/* ICONS */

/* Icon Back */

.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.1s;
}

.hvr-icon-back .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-back:hover .hvr-icon,
.hvr-icon-back:focus .hvr-icon,
.hvr-icon-back:active .hvr-icon {
  transform: translateX(-4px);
}

/* Icon Forward */

.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.1s;
}

.hvr-icon-forward .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-forward:hover .hvr-icon,
.hvr-icon-forward:focus .hvr-icon,
.hvr-icon-forward:active .hvr-icon {
  transform: translateX(4px);
}

/* Icon Down */

@-webkit-keyframes hvr-icon-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(6px);
  }
}

/* Icon Down */

.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-down .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-down:hover .hvr-icon,
.hvr-icon-down:focus .hvr-icon,
.hvr-icon-down:active .hvr-icon {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Up */

@-webkit-keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-6px);
  }
}

/* Icon Up */

.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-up .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-up:hover .hvr-icon,
.hvr-icon-up:focus .hvr-icon,
.hvr-icon-up:active .hvr-icon {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Spin */

.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-spin .hvr-icon {
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}

.hvr-icon-spin:hover .hvr-icon,
.hvr-icon-spin:focus .hvr-icon,
.hvr-icon-spin:active .hvr-icon {
  transform: rotate(360deg);
}

/* Icon Drop */

@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51%, 100% {
    opacity: 1;
  }
}

@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51%, 100% {
    opacity: 1;
  }
}

/* Icon Drop */

.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-drop .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-drop:hover .hvr-icon,
.hvr-icon-drop:focus .hvr-icon,
.hvr-icon-drop:active .hvr-icon {
  opacity: 0;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */

.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-fade .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.5s;
  transition-property: color;
}

.hvr-icon-fade:hover .hvr-icon,
.hvr-icon-fade:focus .hvr-icon,
.hvr-icon-fade:active .hvr-icon {
  color: #0F9E5E;
}

/* Icon Float Away */

@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}

@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-1em);
  }
}

/* Icon Float Away */

.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-float-away .hvr-icon {
  transform: translateZ(0);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hvr-icon-float-away:hover .hvr-icon,
.hvr-icon-float-away:focus .hvr-icon,
.hvr-icon-float-away:active .hvr-icon {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */

@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(1em);
  }
}

@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(1em);
  }
}

/* Icon Sink Away */

.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-sink-away .hvr-icon {
  transform: translateZ(0);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hvr-icon-sink-away:hover .hvr-icon,
.hvr-icon-sink-away:focus .hvr-icon,
.hvr-icon-sink-away:active .hvr-icon {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Grow */

.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-grow .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-grow:hover .hvr-icon,
.hvr-icon-grow:focus .hvr-icon,
.hvr-icon-grow:active .hvr-icon {
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */

.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-shrink .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-shrink:hover .hvr-icon,
.hvr-icon-shrink:focus .hvr-icon,
.hvr-icon-shrink:active .hvr-icon {
  transform: scale(0.8);
}

/* Icon Pulse */

@-webkit-keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse {
  25% {
    transform: scale(1.3);
  }

  75% {
    transform: scale(0.8);
  }
}

.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-pulse .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse:hover .hvr-icon,
.hvr-icon-pulse:focus .hvr-icon,
.hvr-icon-pulse:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */

@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    transform: scale(1.3);
  }
}

@keyframes hvr-icon-pulse-grow {
  to {
    transform: scale(1.3);
  }
}

.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-pulse-grow .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse-grow:hover .hvr-icon,
.hvr-icon-pulse-grow:focus .hvr-icon,
.hvr-icon-pulse-grow:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */

@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse-shrink {
  to {
    transform: scale(0.8);
  }
}

.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-icon-pulse-shrink .hvr-icon {
  transform: translateZ(0);
  transition-timing-function: ease-out;
}

.hvr-icon-pulse-shrink:hover .hvr-icon,
.hvr-icon-pulse-shrink:focus .hvr-icon,
.hvr-icon-pulse-shrink:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Push */

@-webkit-keyframes hvr-icon-push {
  50% {
    transform: scale(0.5);
  }
}

@keyframes hvr-icon-push {
  50% {
    transform: scale(0.5);
  }
}

.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-push .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-push:hover .hvr-icon,
.hvr-icon-push:focus .hvr-icon,
.hvr-icon-push:active .hvr-icon {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Pop */

@-webkit-keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}

@keyframes hvr-icon-pop {
  50% {
    transform: scale(1.5);
  }
}

.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-pop .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-pop:hover .hvr-icon,
.hvr-icon-pop:focus .hvr-icon,
.hvr-icon-pop:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Bounce */

.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-bounce .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-bounce:hover .hvr-icon,
.hvr-icon-bounce:focus .hvr-icon,
.hvr-icon-bounce:active .hvr-icon {
  transform: scale(1.5);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */

.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-rotate .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-rotate:hover .hvr-icon,
.hvr-icon-rotate:focus .hvr-icon,
.hvr-icon-rotate:active .hvr-icon {
  transform: rotate(20deg);
}

/* Icon Grow Rotate */

.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-grow-rotate .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-grow-rotate:hover .hvr-icon,
.hvr-icon-grow-rotate:focus .hvr-icon,
.hvr-icon-grow-rotate:active .hvr-icon {
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */

.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-float .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-float:hover .hvr-icon,
.hvr-icon-float:focus .hvr-icon,
.hvr-icon-float:active .hvr-icon {
  transform: translateY(-4px);
}

/* Icon Sink */

.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-sink .hvr-icon {
  transform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.hvr-icon-sink:hover .hvr-icon,
.hvr-icon-sink:focus .hvr-icon,
.hvr-icon-sink:active .hvr-icon {
  transform: translateY(4px);
}

/* Icon Bob */

@-webkit-keyframes hvr-icon-bob {
  0% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob {
  0% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@-webkit-keyframes hvr-icon-bob-float {
  100% {
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob-float {
  100% {
    transform: translateY(-6px);
  }
}

.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-bob .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-bob:hover .hvr-icon,
.hvr-icon-bob:focus .hvr-icon,
.hvr-icon-bob:active .hvr-icon {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Hang */

@-webkit-keyframes hvr-icon-hang {
  0% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang {
  0% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(6px);
  }
}

@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang-sink {
  100% {
    transform: translateY(6px);
  }
}

.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-hang .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-hang:hover .hvr-icon,
.hvr-icon-hang:focus .hvr-icon,
.hvr-icon-hang:active .hvr-icon {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */

@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    transform: translateX(6px);
  }

  33.3% {
    transform: translateX(-5px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    transform: translateX(6px);
  }

  33.3% {
    transform: translateX(-5px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-wobble-horizontal .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-wobble-horizontal:hover .hvr-icon,
.hvr-icon-wobble-horizontal:focus .hvr-icon,
.hvr-icon-wobble-horizontal:active .hvr-icon {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */

@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    transform: translateY(6px);
  }

  33.3% {
    transform: translateY(-5px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes hvr-icon-wobble-vertical {
  16.65% {
    transform: translateY(6px);
  }

  33.3% {
    transform: translateY(-5px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-wobble-vertical .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-wobble-vertical:hover .hvr-icon,
.hvr-icon-wobble-vertical:focus .hvr-icon,
.hvr-icon-wobble-vertical:active .hvr-icon {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Buzz */

@-webkit-keyframes hvr-icon-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-icon-buzz {
  50% {
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-buzz .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-buzz:hover .hvr-icon,
.hvr-icon-buzz:focus .hvr-icon,
.hvr-icon-buzz:active .hvr-icon {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */

@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-icon-buzz-out {
  10% {
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    transform: translateX(1px) rotate(0);
  }

  100% {
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}

.hvr-icon-buzz-out .hvr-icon {
  transform: translateZ(0);
}

.hvr-icon-buzz-out:hover .hvr-icon,
.hvr-icon-buzz-out:focus .hvr-icon,
.hvr-icon-buzz-out:active .hvr-icon {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* CURLS */

/* Curl Top Left */

.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr="#ffffff", endColorstr="#000000");
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-top-left:hover:before,
.hvr-curl-top-left:focus:before,
.hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Top Right */

.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-top-right:hover:before,
.hvr-curl-top-right:focus:before,
.hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Right */

.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-bottom-right:hover:before,
.hvr-curl-bottom-right:focus:before,
.hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */

.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  transition-duration: 0.3s;
  transition-property: width, height;
}

.hvr-curl-bottom-left:hover:before,
.hvr-curl-bottom-left:focus:before,
.hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

/* ============= BASE ============= */

html {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

html.frozen {
  overflow: hidden !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  text-decoration: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-slide:focus {
  outline: none !important;
}

.iziModal-button-close {
  position: absolute;
  right: 2%;
  top: 2%;
}

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

html {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  font-display: swap;
}

h1 {
  font-size: 2.5rem;
  color: #000;
}

h2 {
  font-size: 2.25rem;
  color: #000;
}

h3 {
  font-size: 2rem;
  color: #000;
}

h4 {
  font-size: 1.75rem;
  color: #000;
}

h5 {
  font-size: 1.5rem;
  color: #000;
}

h6 {
  font-size: 1.25rem;
  color: #000;
}

.text--green {
  color: #00D27A;
  text-align: center;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: 0.39531rem;
}

.text--bold {
  color: #000000;
  font-family: proxima-nova;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.09375rem;
}

.text--gray {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

/* ============= INCLUDES ============= */

body.frozen {
  overflow-y: hidden;
}

.back-to-top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(225deg, #4542D7 0%, #00D27A 49%, #00D27A 100%);
  z-index: 100;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.back-to-top.active {
  pointer-events: all;
  opacity: 1;
}

#header {
  z-index: 999;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 50px 0;
}

#header .navbar {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .navbar__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#header .navbar__list__item:last-child {
  margin-right: 0;
}

#header .navbar__list__item--logo {
  height: 30px;
}

#header .navbar__list__item__link {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 93.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  margin-right: 45px;
  position: relative;
}

#header .navbar__list__item__link.js-version2 {
  color: #ffffff;
}

#header .navbar__list__item__link--left:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.05em;
  bottom: -5px;
  background-image: linear-gradient(to right, transparent 0%, rgb(0, 0, 1) 30%, rgba(0, 0, 0, 0.7) 50%, rgb(0, 0, 1) 70%, transparent 100%);
  opacity: 0;
  -webkit-animation: fadeIn 400ms ease-out forwards;
          animation: fadeIn 400ms ease-out forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

#header .navbar__list__item__link--cta {
  color: #00d27a;
  border: 2px solid #00d27a;
  box-sizing: border-box;
  border-radius: 100px;
  height: 45px;
  background-color: #fff;
  padding: 0 20px;
  margin-right: 15px !important;
  transition: 0.3s;
  display: flex;
  gap: 0.25rem;
}

#header .navbar__list__item__link--cta i {
  margin-right: 15px;
}

#header .navbar__list__item__link--cta:hover {
  box-shadow: rgb(0, 210, 122) 0px 2px 4px;
  color: #fff;
  background-color: #00d27a;
  transition: 0.3s;
}

#header .navbar__list__item__link--cta:hover svg path {
  fill: #fff;
}

#header .navbar__list__item__link--cta:last-child {
  margin-right: 0;
}

#header .navbar__mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  #header {
    top: 1.5rem;
  }

  #header .navbar {
    display: none;
  }

  #header .navbar__mobile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  #header .navbar__mobile .logo {
    order: 2;
  }

  #header .navbar__mobile .hamburguer {
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00D27A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-direction: column;
    cursor: pointer;
    order: 1;
    margin: 0 3rem 0 2rem;
  }

  #header .navbar__mobile .hamburguer .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2.5px;
    transition: 0.3s;
  }

  #header .navbar__mobile .hamburguer.active .line:nth-child(1) {
    transform: translateY(6px) rotateZ(45deg);
  }

  #header .navbar__mobile .hamburguer.active .line:nth-child(3) {
    transform: translateY(-10px) rotateZ(-45deg);
  }

  #header .navbar__mobile .hamburguer.active .line:nth-child(2) {
    width: 0;
  }

  #header .navbar__mobile .nav-links {
    padding: 5rem 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-color: #00D27A;
    position: fixed;
    z-index: 998;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-clip-path: circle(100px at 0% -20%);
            clip-path: circle(100px at 0% -20%);
    transition: 1s ease-in-out;
    pointer-events: none;
  }

  #header .navbar__mobile .nav-links.open {
    -webkit-clip-path: circle(2000px at 0% -10%);
            clip-path: circle(2000px at 0% -10%);
    pointer-events: all;
  }

  #header .navbar__mobile .nav-links li {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header .navbar__mobile .nav-links li a {
    position: relative;
    transition: 0.3s ease;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 93.5%;
    letter-spacing: -0.03em;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  #header .navbar__mobile .nav-links li a i {
    margin-right: 15px;
  }

  #header .navbar__mobile .nav-links li a:hover {
    color: #fff !important;
  }

  #header .navbar__mobile .nav-links li a:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 20%;
    width: 60%;
    height: 0.05em;
    bottom: 35px;
    background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
    opacity: 0;
    -webkit-animation: fadeIn 400ms ease-out forwards;
            animation: fadeIn 400ms ease-out forwards;
  }

@-webkit-keyframes fadeIn {
    100% {
      opacity: 1;
    }
}

@keyframes fadeIn {
    100% {
      opacity: 1;
    }
}

  #header .navbar__mobile .nav-links li .btn-border {
    width: auto;
    position: relative;
  }

  #header .navbar__mobile .nav-links li .btn-border:hover::after {
    bottom: 35px;
    height: 1px;
  }

  #header .navbar__mobile .nav-links li .btn-border::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 35px;
    background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
    opacity: 0;
    -webkit-animation: fadeIn 400ms ease-out forwards;
            animation: fadeIn 400ms ease-out forwards;
  }
}

@media (max-width: 1024px) {
  #header {
    position: relative;
    padding: 0 0 1.5rem 0;
    margin-top: -1.5rem;
    z-index: 999 !important;
  }

  #header .navbar__mobile {
    justify-content: space-between;
  }
}

.footer__inner {
  width: 90%;
  margin: auto;
  padding: 5rem 0;
}

.footer__inner .list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__inner .list .item {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 159.5%;
  color: #131313;
}

.footer__inner .list .item .link {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 159.5%;
  color: #131313;
}

.footer__inner .list .item .sublist .subitem .panel {
  background-color: white;
  display: none;
}

.footer__inner .list .item .sublist .subitem .panel .contatcs {
  font-weight: normal;
  color: #131313;
  align-items: center;
  padding-left: 1rem;
  display: block;
}

.footer__inner .list .item .sublist .subitem .panel .contatcs svg {
  height: 1.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__inner .list .item .sublist .subitem .sublink {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 159.5%;
  color: #131313;
}

.footer__inner .list .item .sublist .subitem .hover {
  transition: 0.3s ease-in-out;
  position: relative;
}

.footer__inner .list .item .sublist .subitem .hover:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.05em;
  bottom: -5px;
  background-image: linear-gradient(to right, transparent 0%, rgb(0, 0, 1) 30%, rgba(0, 0, 0, 0.7) 50%, rgb(0, 0, 1) 70%, transparent 100%);
  opacity: 0;
  -webkit-animation: fadeIn 400ms ease-out forwards;
          animation: fadeIn 400ms ease-out forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.footer__inner .list .item:nth-child(2) .sublist .subitem .sublink {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 159.5%;
  color: #131313;
}

.footer__inner .list .item:nth-child(4) {
  max-width: 185px;
}

.footer__inner .list .share-and-win .title {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 159.5%;
}

.footer__inner .list .share-and-win .description {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.footer__inner .list .share-and-win .description strong {
  color: #00d27a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.footer__inner .list .social .sublist {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__inner .list .social .sublist .subitem {
  margin-left: 35px;
}

.footer__inner .list .social .sublist .subitem a img {
  height: 3rem;
  width: 3rem;
}

@media screen and (max-width: 1024px) {
  .footer__inner .list .social .sublist .subitem {
    margin-left: 10px;
  }

  .footer__inner .list .social .sublist .subitem:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 2rem 0;
  }

  .footer__inner .list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer__inner .list .item .sublist .subitem .panel .contatcs {
    padding-left: unset;
  }
}

@media (max-width: 1024px) {
  .footer__inner .list {
    gap: 4rem;
  }
}

#modal {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -99999999999;
  left: 0;
  height: 100%;
  top: 0;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  height: 100vh;
  opacity: 0;
}

#modal.active {
  opacity: 1;
  z-index: 9999;
  transition: 0.3s all ease;
}

#modal .modal-content {
  margin: auto;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-radius: 30px;
  width: 55%;
  overflow: hidden;
  height: 95vh;
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.3s all ease;
  pointer-events: all;
  margin-top: 1rem;
}

#modal .modal-content .modal-scroll {
  overflow: auto;
  padding: 3.5rem 3.7rem 0;
}

#modal .modal-content .modal-scroll::-webkit-scrollbar {
  width: 6px;
  border-right: solid 1px white;
}

#modal .modal-content .modal-scroll::-webkit-scrollbar-track {
  margin-top: 10px;
  border-radius: solid 10px transparent;
  scroll-margin-top: 2rem;
}

#modal .modal-content .modal-scroll::-webkit-scrollbar-thumb {
  background: #00D27A;
  border-radius: 20px;
  border: transparent 20px;
}

#modal .modal-content .svg-close {
  position: absolute;
  right: 2rem;
  cursor: pointer;
}

#modal .modal-content .title {
  font-family: proxima-nova;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 2.5rem;
  max-width: 60%;
}

#modal .modal-content .desc {
  max-width: 80%;
  font-family: proxima-nova;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 159.5%;
  color: #6a6a6a;
}

#modal .modal-content .send-type {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

#modal .modal-content .send-type ul {
  display: flex;
  gap: 3rem;
  border-bottom: 2px solid #d9deec;
}

#modal .modal-content .send-type ul li {
  margin-bottom: 10px;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}

#modal .modal-content .send-type ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: flex;
  margin-top: 0.6rem;
  border-bottom: 2px solid #00D27A;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.5s all ease;
  width: 0;
  transform: translateY(50%);
}

#modal .modal-content .send-type ul li.active::after {
  width: 100%;
}

#modal .modal-content .btns {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

#modal .modal-content .btns .copy .text {
  font-weight: 600;
}

#modal .modal-content .btns .copy .copybutton.copied svg path {
  stroke: #00D27A;
}

#modal .modal-content .btns .whats {
  background: #00D27A;
  border-radius: 10px;
  width: 312px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.3rem;
  color: white;
}

#modal .modal-content .btns .copy {
  border: 2px solid #d9deec;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 70px;
  text-align: center;
}

#modal .modal-content .btns .copy .text {
  flex: 1;
}

#modal .modal-content .btns .copy svg {
  margin-right: 1rem;
  cursor: pointer;
}

#modal .modal-content .send-by-email {
  display: flex;
}

#modal .modal-content .send-by-email .from .form {
  margin-top: 1rem;
}

#modal .modal-content .send-by-email .from .form .row {
  margin-bottom: 1rem;
  margin-left: 0;
}

#modal .modal-content .send-by-email .from .form .row .col {
  display: flex;
  padding-left: 0;
  padding-right: 15px;
  align-items: center;
  flex-grow: unset;
  position: relative;
}

#modal .modal-content .send-by-email .from .form .row .col input {
  width: 270px;
  border: 2px solid #000000;
  border-radius: 10px;
  padding: 1rem 0 1rem 2rem;
}

#modal .modal-content .send-by-email .from .form .row .col svg {
  margin-left: 1rem;
}

#modal .modal-content .send-by-email .from .form .row .col span {
  position: absolute;
  left: 2rem;
  bottom: 0.5rem;
  font-size: 10px;
  color: red;
}

#modal .modal-content .send-by-email .from .form .send {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper input[type=checkbox]:valid + .custom-checkbox::before,
#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper input[type=checkbox]:checked + .custom-checkbox::before {
  display: block;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper span {
  position: absolute;
  left: 2.4rem;
  bottom: -1rem;
  font-size: 10px;
  color: red;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper .custom-checkbox {
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 5px;
  position: relative;
}

#modal .modal-content .send-by-email .from .form .send .checkbox-wrapper .custom-checkbox::before {
  content: "";
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 6px;
  width: 12px;
  position: absolute;
  border-left: 1.5px solid #00D27A;
  border-bottom: 1.5px solid #00D27A;
  display: none;
}

#modal .modal-content .send-by-email .from .form .send .btn-send {
  background: #00D27A;
  border-radius: 10px;
  width: 270px;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 1.3rem;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  gap: 1.5rem;
}

#modal .modal-content .send-by-email .from .form .send .btn-send svg {
  transition: 0.3s all ease;
}

#modal .modal-content .send-by-email .from .form .send .btn-send.sending svg {
  -webkit-animation-name: fly;
          animation-name: fly;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.735, 0.43, 0.275, 0.76);
          animation-timing-function: cubic-bezier(0.735, 0.43, 0.275, 0.76);
}

#modal .modal-content .send-by-email .from .form .send .btn-send.sent {
  color: #00D27A;
  border: 1.5px solid #00D27A;
  background-color: transparent;
}

#modal .modal-content .send-by-email .from .form .send .btn-send.sent svg path {
  stroke: #00D27A;
}

#modal .modal-content .send-by-email .from .form .send .desc {
  max-width: 258px;
  font-size: 14px;
}

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

  25% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(0.5) translate(100vw, -100vh);
  }
}

@keyframes fly {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(0.5) translate(100vw, -100vh);
  }
}

#modal .modal-content .send-section {
  display: none;
  padding-bottom: 3rem;
}

#modal .modal-content .send-section.active {
  display: flex;
}

#modal .modal-content .img {
  display: flex;
  justify-content: center;
  max-height: 27vh;
  margin-top: auto;
}

#modal .modal-content .img img {
  -o-object-fit: contain;
     object-fit: contain;
}

#modal.active {
  opacity: 1;
  pointer-events: all;
  z-index: 99999999999;
}

#modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 1200px) {
  #modal .modal-content {
    height: 82%;
    margin-top: 5rem;
    width: 90%;
  }

  #modal .modal-content .send-by-email .from .form .row {
    gap: 1rem;
  }

  #modal .modal-content .send-by-email .from .form .send {
    gap: 2rem;
    align-items: unset;
    flex-direction: column;
  }

  #modal .modal-content .img {
    display: none;
  }

  #modal .modal-content .title {
    max-width: unset;
  }

  #modal .modal-content .send-section {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  #modal .modal-content .modal-scroll {
    padding: 0;
    width: 95%;
  }

  #modal .modal-content .modal-scroll .content,
  #modal .modal-content .modal-scroll .send-type,
  #modal .modal-content .modal-scroll .btns {
    padding: 2rem !important;
  }

  #modal .modal-content .modal-scroll .btns {
    width: 100%;
  }

  #modal .modal-content .modal-scroll .btns .copy {
    width: 95% !important;
  }

  #modal .modal-content .modal-scroll .btns .whats {
    width: 95%;
  }

  #modal .modal-content .modal-scroll .btns .whats svg {
    width: 3rem !important;
    margin-right: 2rem;
  }

  #modal .modal-content .modal-scroll .send-section {
    padding: 2rem;
  }
}

/* ============= PAGES ============= */

.octadesk-octachat-app {
  margin-bottom: 55px !important;
}

#octadesk-octachat-appchat {
  margin-bottom: 55px !important;
}

.hero-v4 {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero-v4 .imgWrapperMobile {
  display: none;
  position: absolute;
}

.hero-v4__left {
  width: 66.66%;
  display: flex;
  align-items: center;
  margin-left: 6rem;
}

.hero-v4__left .content {
  padding: 6rem 10rem 0;
}

.hero-v4__left .content .title {
  font-weight: bold;
  font-size: 4.5rem;
  letter-spacing: -0.03em;
  margin: 1rem 0;
}

.hero-v4__left .content .title strong {
  color: #00d27a;
  font-family: proxima-nova;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 93.5%;
  letter-spacing: -0.12188rem;
}

.hero-v4__left .content .subtitle {
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 159.5%;
  color: #6a6a6a;
  margin-bottom: 1rem;
  max-width: 500px;
  width: 92%;
}

.hero-v4__left .content .action {
  margin-bottom: 40px;
}

.hero-v4__left .content .button {
  width: 16rem;
  height: 4.4rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  background: #00d27a;
  margin-bottom: 1.3rem;
}

.hero-v4__left .content .button__wrapper {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  height: 100%;
}

.hero-v4__left .content .button__wrapper p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero-v4__left .content .button:hover {
  filter: brightness(0.85);
}

.hero-v4__left .content .apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.hero-v4__left .content .apps .apple {
  margin-right: 14px;
}

.hero-v4__left .content .apps .apple-wrapper a {
  width: 150px;
  height: 43px;
}

.hero-v4__left .content .apps .apple-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
  margin-left: -0.25rem;
}

.hero-v4__left .content .apps .apple-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero-v4__left .content .apps .apple-wrapper .apple-rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.75rem;
}

.hero-v4__left .content .apps .apple-wrapper .apple-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero-v4__left .content .apps .google {
  margin-right: 14px;
}

.hero-v4__left .content .apps .google-wrapper a {
  width: 150px;
  height: 43px;
}

.hero-v4__left .content .apps .google-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
}

.hero-v4__left .content .apps .google-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero-v4__left .content .apps .google-wrapper .google-rate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

.hero-v4__left .content .apps .google-wrapper .google-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero-v4__right {
  width: 33.33%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.hero-v4__right .backgrounds {
  position: relative;
  height: 100%;
}

.hero-v4__right .backgrounds .blue,
.hero-v4__right .backgrounds .green,
.hero-v4__right .backgrounds .purple {
  position: absolute;
}

.hero-v4__right .backgrounds .blue {
  z-index: -1;
  bottom: -54rem;
  right: -9.1rem;
}

.hero-v4__right .backgrounds .green {
  z-index: -1;
  bottom: -5rem;
  left: -20rem;
}

.hero-v4__right .backgrounds .purple {
  z-index: 0;
  bottom: -20rem;
  right: -10rem;
}

.hero-v4__right .doctorWrapper {
  position: absolute;
  bottom: -2%;
  right: 18%;
  height: 90%;
  width: 700px;
  display: flex;
  align-items: flex-end;
}

.hero-v4__right .doctorWrapper img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-v4__right .modal-wrapper {
  display: none;
}

.hero-v4__right .player {
  display: none;
}

@media screen and (max-width: 1680px) {
  .hero-v4__left .content .before svg {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .hero__left .content .title {
    font-size: 60px;
    line-height: 55px;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .hero__left .content {
    padding: 10rem 10rem 0 5rem;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    height: auto;
  }

  .hero--version2 .hero .imgWrapperMobile {
    display: none !important;
  }

  .hero--version2 .hero__right {
    height: 100vh;
  }

  .hero--version2 .hero__right .doctorWrapper {
    height: 100%;
    top: 0;
  }

  .hero--version2 .hero__right .doctorWrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero--version2 .hero__left {
    width: 100%;
  }

  .hero--version2 .hero__left .content .action {
    display: none;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }

  .hero--version3 .hero__right video {
    height: 100%;
  }

  .hero--version3 .hero__right .doctorWrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__left .content {
    padding: 10rem 10rem 2rem 5rem;
  }

  .hero__right .doctorWrapper {
    bottom: -8%;
    width: 500px;
  }

  .hero__left .content .title {
    font-size: 59px;
    line-height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    position: relative;
  }

  .hero--version3 .hero__right {
    width: 100%;
  }

  .hero--version3 .hero__right .modal-wrapper .modal-inner {
    height: 20%;
  }

  .hero--version3 .hero__right .modal-wrapper .modal-inner .close {
    right: 0rem;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }

  .hero--version3 .hero__right video {
    height: 100%;
  }

  .hero--version3 .hero__right .doctorWrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero--version3 .hero__left {
    width: 100%;
  }

  .hero--version3 .hero__left .content .title {
    font-size: 50px;
  }

  .hero__left {
    width: 100%;
  }

  .hero__right {
    width: 20%;
    right: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
  }

  .hero__right .doctorWrapper {
    top: 35%;
    width: 270px;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    flex-direction: column;
    z-index: 1;
  }

  .hero .imgWrapperMobile {
    display: none;
    bottom: 0;
    left: 0;
    height: 185px;
    width: 100%;
    z-index: -1;
  }

  .hero .imgWrapperMobile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__left {
    width: 100%;
  }

  .hero__left .content {
    padding: 10rem 2rem 2rem;
  }

  .hero__left .content .title {
    font-size: 36px;
    line-height: 38px;
  }

  .hero__right {
    z-index: 1;
    position: relative;
    width: 100%;
    background: none !important;
  }

  .hero__right .doctorWrapper {
    position: relative;
    margin: auto;
    z-index: 1;
  }

  .phoneWrapper {
    position: absolute;
    right: 0%;
    top: 0%;
    width: 80vw;
    height: 23%;
  }
}

.octadesk-octachat-app {
  margin-bottom: 55px !important;
}

#octadesk-octachat-appchat {
  margin-bottom: 55px !important;
}

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero .imgWrapperMobile {
  display: none;
  position: absolute;
}

.hero__left {
  width: 66.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__left .content {
  padding: 6rem 10rem 0;
}

.hero__left .content .title {
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 70px;
  letter-spacing: -0.03em;
  margin: 1rem 0;
}

.hero__left .content .subtitle {
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 159.5%;
  color: #6a6a6a;
  margin: 1rem 0;
  max-width: 500px;
  width: 92%;
}

.hero__left .content .action {
  margin-bottom: 40px;
  display: none;
}

.hero__left .content .button {
  width: 16rem;
  height: 4.4rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  background: #00d27a;
  margin-bottom: 1.3rem;
}

.hero__left .content .button__wrapper {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  height: 100%;
}

.hero__left .content .button__wrapper p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero__left .content .button:hover {
  filter: brightness(0.85);
}

.hero__left .content .apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.hero__left .content .apps .apple {
  margin-right: 14px;
}

.hero__left .content .apps .apple-wrapper a {
  width: 150px;
  height: 43px;
}

.hero__left .content .apps .apple-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
  margin-left: -0.25rem;
}

.hero__left .content .apps .apple-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero__left .content .apps .apple-wrapper .apple-rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.75rem;
}

.hero__left .content .apps .apple-wrapper .apple-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero__left .content .apps .google {
  margin-right: 14px;
}

.hero__left .content .apps .google-wrapper a {
  width: 150px;
  height: 43px;
}

.hero__left .content .apps .google-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
}

.hero__left .content .apps .google-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero__left .content .apps .google-wrapper .google-rate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

.hero__left .content .apps .google-wrapper .google-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero__right {
  width: 33.33%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.hero__right .doctorWrapper {
  position: absolute;
  bottom: -15%;
  right: 0%;
  height: 100%;
  width: 700px;
  display: flex;
  align-items: flex-end;
}

.hero__right .doctorWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__right .modal-wrapper {
  display: none;
}

.hero__right .player {
  display: none;
}

.hero--version2 {
  height: 110vh;
  margin-top: -3rem;
}

.hero--version2 .hero {
  height: 100vh;
  background: red;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero--version2 .hero__left {
  width: 66.66%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.hero--version2 .hero__left .content {
  padding: 6rem 10rem 0;
  position: relative;
}

.hero--version2 .hero__left .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  left: 8rem;
  border-left: 2px solid #00ff94;
}

.hero--version2 .hero__left .content .title {
  color: white;
  font-size: 4.5rem;
  margin: 1rem 0;
}

.hero--version2 .hero__left .content .subtitle {
  color: white;
  font-size: 1.125rem;
  width: 92%;
  margin: 1rem 0;
}

.hero--version2 .hero__left .content .action {
  margin-bottom: 40px;
  display: none;
}

.hero--version2 .hero__left .content .button {
  width: 16rem;
  height: 4.4rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  background: #00d27a;
  position: relative;
  z-index: 2;
  margin-bottom: 1.3rem;
}

.hero--version2 .hero__left .content .button__wrapper {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  height: 100%;
}

.hero--version2 .hero__left .content .button__wrapper p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version2 .hero__left .content .button:hover {
  filter: brightness(0.85);
}

.hero--version2 .hero__left .content .apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.hero--version2 .hero__left .content .apps .apple {
  margin-right: 14px;
}

.hero--version2 .hero__left .content .apps .apple-wrapper a {
  width: 150px;
  height: 43px;
}

.hero--version2 .hero__left .content .apps .apple-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
  margin-left: -0.25rem;
}

.hero--version2 .hero__left .content .apps .apple-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero--version2 .hero__left .content .apps .apple-wrapper .apple-rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.75rem;
}

.hero--version2 .hero__left .content .apps .apple-wrapper .apple-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version2 .hero__left .content .apps .google {
  margin-right: 14px;
}

.hero--version2 .hero__left .content .apps .google-wrapper a {
  width: 150px;
  height: 43px;
}

.hero--version2 .hero__left .content .apps .google-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
}

.hero--version2 .hero__left .content .apps .google-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero--version2 .hero__left .content .apps .google-wrapper .google-rate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

.hero--version2 .hero__left .content .apps .google-wrapper .google-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version2 .hero__right {
  width: 100%;
  position: relative;
  z-index: -2;
  height: 100vh;
  background: none !important;
}

.hero--version2 .hero__right .doctorwrapper {
  height: 102vh;
  width: 100%;
}

.hero--version2 .hero__right .doctorwrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  background: #000000;
}

.hero--version2 .hero__right .doctorwrapper video {
  width: 100%;
}

.hero--version2 .hero__right .modal-wrapper {
  display: none;
}

.hero--version2 .hero__right .player {
  display: none;
}

.hero--version2 .imgWrapperMobile {
  display: none;
}

.hero--version3 .hero {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.hero--version3 .hero .imgWrapperMobile {
  display: none;
  position: absolute;
}

.hero--version3 .hero__left {
  width: 66.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero--version3 .hero__left .content {
  padding: 6rem 10rem 0;
}

.hero--version3 .hero__left .content .title {
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 70px;
  letter-spacing: -0.03em;
  margin: 1rem 0;
}

.hero--version3 .hero__left .content .subtitle {
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 159.5%;
  color: #6a6a6a;
  margin: 1rem 0;
  max-width: 500px;
  width: 92%;
}

.hero--version3 .hero__left .content .action {
  margin-bottom: 40px;
  display: none;
}

.hero--version3 .hero__left .content .button {
  width: 16rem;
  height: 4.4rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  background: #00d27a;
  margin-bottom: 1.3rem;
}

.hero--version3 .hero__left .content .button__wrapper {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  height: 100%;
}

.hero--version3 .hero__left .content .button__wrapper p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version3 .hero__left .content .button:hover {
  filter: brightness(0.85);
}

.hero--version3 .hero__left .content .apps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.hero--version3 .hero__left .content .apps .apple {
  margin-right: 14px;
}

.hero--version3 .hero__left .content .apps .apple-wrapper a {
  width: 150px;
  height: 43px;
}

.hero--version3 .hero__left .content .apps .apple-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
  margin-left: -0.25rem;
}

.hero--version3 .hero__left .content .apps .apple-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero--version3 .hero__left .content .apps .apple-wrapper .apple-rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 0.75rem;
}

.hero--version3 .hero__left .content .apps .apple-wrapper .apple-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version3 .hero__left .content .apps .google {
  margin-right: 14px;
}

.hero--version3 .hero__left .content .apps .google-wrapper a {
  width: 150px;
  height: 43px;
}

.hero--version3 .hero__left .content .apps .google-wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
  filter: contrast(50%) brightness(0.6);
  height: 3rem;
}

.hero--version3 .hero__left .content .apps .google-wrapper a img:hover {
  filter: brightness(0.75);
}

.hero--version3 .hero__left .content .apps .google-wrapper .google-rate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

.hero--version3 .hero__left .content .apps .google-wrapper .google-rate .rating {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.hero--version3 .hero__right {
  width: 33.33%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  background: url("/assets/site/images/back.png") !important;
}

.hero--version3 .hero__right::after {
  content: "";
  position: absolute;
  background: linear-gradient(177deg, rgba(0, 85, 239, 0) 40%, #5855ef 100%);
  inset: 0;
}

.hero--version3 .hero__right::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15%;
  left: -24rem;
  background: url("/assets/site/images/back2.png") !important;
}

.hero--version3 .hero__right .doctorWrapper {
  position: relative;
  bottom: -10%;
  right: 10%;
  height: 105%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.hero--version3 .hero__right .doctorWrapper img {
  width: 120%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero--version3 .hero__right .player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.hero--version3 .hero__right .player .see {
  color: white;
  text-align: center;
}

.hero--version3 .hero__right .modal-wrapper {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999999;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s all ease;
  pointer-events: none;
}

.hero--version3 .hero__right .modal-wrapper.active {
  height: 100vh;
  opacity: 1;
  pointer-events: all;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner {
  width: min(95%, 900px);
  height: 80%;
  background: linear-gradient(#00d27a, #5855ef);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.22), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.158148), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.131144), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.11), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0888564), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.061852);
  padding: 10rem;
  gap: 9rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner .close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  z-index: 3;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner .left {
  width: 50%;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner .left .section-title {
  text-align: start;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner .right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.hero--version3 .hero__right .modal-wrapper .modal-inner .right img {
  width: 500px;
}

.hero--version3 .hero__right .modal-wrapper .video-modal .content .video a {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  top: 41%;
}

.hero--version3 .hero__right .modal-wrapper .video-modal .content .video img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.hero--version3 .hero__right video {
  height: 20rem;
}

@media screen and (max-width: 1367px) {
  .hero__left .content .title {
    font-size: 60px;
    line-height: 55px;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  .hero--version1 .hero__right .doctorWrapper img,
  .hero--version2 .hero__right .doctorWrapper img,
  .hero--version3 .hero__right .doctorWrapper img,
  .hero-v4 .hero__right .doctorWrapper img {
    height: 85%;
  }
}

@media screen and (max-width: 1280px) {
  .hero__left .content {
    padding: 10rem 10rem 0 5rem;
  }

  #hero {
    height: 115vh;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #hero {
    height: auto;
  }

  .hero {
    height: auto;
  }

  .hero--version2 .hero .imgWrapperMobile {
    display: none !important;
  }

  .hero--version2 .hero__right {
    height: 100vh;
  }

  .hero--version2 .hero__right .doctorWrapper {
    height: 100%;
    top: 0;
  }

  .hero--version2 .hero__right .doctorWrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero--version2 .hero__left {
    width: 100%;
  }

  .hero--version2 .hero__left .content .action {
    display: none;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }

  .hero--version3 .hero__right video {
    height: 100%;
  }

  .hero--version3 .hero__right .doctorWrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__left .content {
    padding: 10rem 10rem 2rem 5rem;
  }

  .hero__right .doctorWrapper {
    bottom: -8%;
    width: 500px;
  }

  .hero__left .content .title {
    font-size: 59px;
    line-height: 60px;
  }
}

@media screen and (max-width: 768px) {
  #hero {
    height: auto;
  }

  .hero {
    position: relative;
  }

  .hero--version3 .hero__right {
    width: 100%;
  }

  .hero--version3 .hero__right .modal-wrapper .modal-inner {
    height: 20%;
  }

  .hero--version3 .hero__right .modal-wrapper .modal-inner .close {
    right: 0rem;
  }

  .hero--version3 .hero__right::before {
    display: none;
  }

  .hero--version3 .hero__right video {
    height: 100%;
  }

  .hero--version3 .hero__right .doctorWrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero--version3 .hero__left {
    width: 100%;
  }

  .hero--version3 .hero__left .content .title {
    font-size: 50px;
  }

  .hero__left {
    width: 100%;
  }

  .hero__right {
    width: 20%;
    right: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
  }

  .hero__right .doctorWrapper {
    top: 35%;
    width: 270px;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  #hero {
    height: auto;
  }

  .hero {
    flex-direction: column;
    z-index: 1;
  }

  .hero .imgWrapperMobile {
    display: none;
    bottom: 0;
    left: 0;
    height: 185px;
    width: 100%;
    z-index: -1;
  }

  .hero .imgWrapperMobile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__left {
    width: 100%;
  }

  .hero__left .content {
    padding: 10rem 2rem 2rem;
  }

  .hero__left .content .title {
    font-size: 36px;
    line-height: 38px;
  }

  .hero__right {
    z-index: 1;
    position: relative;
    width: 100%;
    background: none !important;
  }

  .hero__right .doctorWrapper {
    position: relative;
    margin: auto;
    z-index: 1;
  }

  .phoneWrapper {
    position: absolute;
    right: 0%;
    top: 0%;
    width: 80vw;
    height: 23%;
  }
}

@media (max-width: 1024px) {
  #hero {
    height: auto;
  }

  .hero--version1 .hero__left .content,
  .hero--version2 .hero--version3 .hero__left .content {
    padding-top: 0 !important;
  }

  .hero--version1 .hero__left .content .title,
  .hero--version1 .hero__left .content .subtitle,
  .hero--version2 .hero--version3 .hero__left .content .title,
  .hero--version2 .hero--version3 .hero__left .content .subtitle {
    margin-left: 2rem;
  }

  .hero--version1 .hero__left .content .title,
  .hero--version2 .hero--version3 .hero__left .content .title {
    font-size: 36px;
    line-height: 38px;
  }

  .hero--version1 .hero__left .content .button,
  .hero--version2 .hero--version3 .hero__left .content .button {
    display: none;
  }

  .hero--version1 .hero__left .content .action,
  .hero--version2 .hero--version3 .hero__left .content .action {
    display: block;
  }

  .hero--version3 .hero__left .content {
    padding: 0 2rem 0 !important;
  }

  .hero--version3 .hero__left .content .title,
  .hero--version3 .hero__left .content .subtitle {
    margin-left: 2rem;
  }

  .hero--version3 .hero__left .content .title {
    font-size: 1.75rem;
    line-height: 38px;
  }

  .hero--version3 .hero__left .content .apps {
    flex-direction: column;
    gap: 1rem;
  }

  .hero--version3 .hero__left .content .apps .apple-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero--version3 .hero__left .content .apps .apple-wrapper .apple {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero--version3 .hero__left .content .button {
    display: none;
  }

  .hero--version3 .hero__left .content .action {
    display: block;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero--version3 .hero__right .modal-wrapper .video-modal .content .video img {
    height: 60%;
  }

  .hero-v4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    background: #ffffff;
  }

  .hero-v4__left {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .hero-v4__left .content {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-v4__left .content .title {
    width: 100%;
    font-size: 3rem;
    text-align: center;
  }

  .hero-v4__left .content .title strong {
    font-size: 3.2rem;
    color: #00d27a;
  }

  .hero-v4__left .content .subtitle {
    width: 100%;
    font-size: 1.2rem;
    color: #6a6a6a;
    text-align: center;
    padding: 0.75rem 0.25rem;
  }

  .hero-v4__left .content .button {
    display: none;
  }

  .hero-v4__left .content .action {
    display: block;
  }

  .hero-v4__left .content .apps {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-v4__left .content .apps .apple-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-v4__left .content .apps .apple-wrapper .apple {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-v4__right {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .hero-v4__right .backgrounds .blue {
    z-index: 0;
    bottom: -92rem;
    right: -7rem;
  }

  .hero-v4__right .backgrounds .purple {
    bottom: -39rem;
    right: -6rem;
  }

  .hero-v4__right .doctorWrapper {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .hero-v4__right .doctorWrapper img {
    height: 10rem;
  }
}

.howitworks {
  overflow: hidden;
  background-color: #00D27A;
  display: flex;
  width: 100%;
  height: 43.75rem;
}

.howitworks__left {
  width: 50%;
  padding: 12rem 0 0 12rem;
  position: relative;
}

.howitworks__left .howitworks-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.howitworks__left .howitworks-wrapper .title {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 105%;
  color: #ffffff;
  max-width: 200px;
  margin-bottom: 31px;
}

.howitworks__left .howitworks-wrapper .mpWrapper {
  margin-bottom: 32px;
}

.howitworks__left .howitworks-wrapper .desc {
  font-weight: normal;
  font-size: 1rem;
  line-height: 159.5%;
  color: #ffffff;
  max-width: 240px;
}

.howitworks__right {
  width: 50%;
  position: relative;
  height: 100%;
}

.howitworks__right .background {
  position: absolute;
  height: 100%;
  bottom: 0;
  right: 0;
}

.howitworks__right .phone {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(0.7);
}

.howitworks__right .player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.howitworks__right .player .see {
  color: white;
  text-align: center;
}

.howitworks .modal-wrapper {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999999;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s all ease;
  pointer-events: none;
}

.howitworks .modal-wrapper.active {
  height: 100vh;
  opacity: 1;
  pointer-events: all;
}

.howitworks .modal-wrapper .modal-inner {
  width: min(95%, 900px);
  height: 80%;
  background: linear-gradient(#00d27a, #5855ef);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.22), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.158148), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.131144), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.11), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0888564), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.061852);
  padding: 10rem;
  gap: 9rem;
  display: flex;
  align-items: center;
  position: relative;
}

.howitworks .modal-wrapper .modal-inner .close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  z-index: 3;
}

.howitworks .modal-wrapper .modal-inner .left {
  width: 50%;
}

.howitworks .modal-wrapper .modal-inner .left .section-title {
  text-align: start;
}

.howitworks .modal-wrapper .modal-inner .right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.howitworks .modal-wrapper .modal-inner .right img {
  width: 500px;
}

.howitworks .modal-wrapper .video-modal .content .video a {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  top: 41%;
}

.howitworks .modal-wrapper .video-modal .content .video img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.howitworks video {
  height: 20rem;
}

@media screen and (max-width: 1280px) {
  .howitworks__left {
    padding: 5rem 0 0 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .howitworks__center .phoneWrapper img {
    width: 100%;
  }

  .howitworks__right {
    padding: 0 2rem 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .howitworks__center {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .howitworks {
    padding-top: 0;
    flex-direction: column;
  }

  .howitworks__left {
    padding: 5rem 2rem;
  }

  .howitworks__left .title {
    font-size: 42px;
    line-height: 45px;
  }

  .howitworks__right {
    padding: 0 2rem 0 5rem;
  }

  .howitworks__right .list .item .loading_progress,
  .howitworks__right .list .item .loading_bar {
    left: -20%;
  }
}

@media (max-width: 1024px) {
  .howitworks {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    height: 135vh;
    margin-bottom: 5rem !important;
  }

  .howitworks__left {
    width: 75%;
    padding: 3rem 0;
    margin: 0 auto;
  }

  .howitworks__left .howitworks-wrapper {
    width: 75%;
    position: relative;
  }

  .howitworks__right {
    position: relative;
    margin: 0;
    padding: 0;
  }

  .howitworks__right .phone {
    position: relative;
    left: 0;
    bottom: -10%;
    transform: translate(0);
  }

  .howitworks__right .background {
    display: none;
  }

  .howitworks__right .player {
    transform: translate(50%, -50%);
  }

  .howitworks .modal-wrapper .modal-inner {
    width: 60%;
    height: 25%;
    padding: 0;
    gap: 0;
    position: relative;
  }

  .howitworks .modal-wrapper .modal-inner .close {
    position: absolute;
    top: 0;
    right: 0;
  }

  .howitworks .modal-wrapper .modal-inner .video-modal .content .video a svg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
}

.howitworksWhats {
  display: flex;
  margin: 115px 0 70px 0;
  position: relative;
}

.howitworksWhats .phoneWrapper {
  pointer-events: none;
  position: absolute;
  top: 45%;
  left: 0%;
  transform: translate(0%, -50%);
}

.howitworksWhats .phoneWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.howitworksWhats__right--inner {
  padding: 0 10rem 0 12rem;
}

.howitworksWhats__right--inner .title {
  color: #00D27A;
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 93.5%;
  letter-spacing: 0.575em;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.howitworksWhats__right--inner .subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
  max-width: 90%;
}

.howitworksWhats__right--inner .desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  color: #6a6a6a;
  margin-bottom: 35px;
}

.howitworksWhats__right--inner .desc p {
  margin: 10px 0;
}

.howitworksWhats__right--inner .cta {
  font-size: 1.1rem;
}

@media screen and (max-width: 1280px) {
  .howitworksWhats__right--inner {
    padding: 0 5rem 0 8rem;
  }
}

@media screen and (max-width: 1024px) {
  .howitworksWhats__left .bgWrapper {
    width: 50vw;
  }

  .howitworksWhats__left .bgWrapper img {
    width: 100%;
  }

  .howitworksWhats .phoneWrapper {
    max-width: 80vw;
    top: 48%;
    left: -15%;
  }

  .howitworksWhats__right--inner {
    padding: 0 2rem 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .howitworksWhats {
    flex-direction: column;
    margin-top: 0;
  }

  .howitworksWhats .phoneWrapper {
    max-width: 100%;
    top: 10%;
    left: 0%;
  }

  .howitworksWhats .howitworksWhats__left {
    width: 100%;
  }

  .howitworksWhats .howitworksWhats__right {
    margin-top: 30px;
    width: 85%;
  }
}

@media screen and (max-width: 767px) {
  .howitworksWhats__right {
    margin-top: 100px !important;
    width: 100% !important;
  }

  .howitworksWhats__right--inner .title {
    max-width: 62%;
    line-height: 15px;
  }

  .howitworksWhats__right--inner .subtitle,
  .howitworksWhats__right--inner .desc {
    max-width: 100%;
  }

  .howitworksWhats__right--inner .subtitle {
    font-size: 32px;
  }
}

.howitworksTimes {
  margin: 7rem 0 10rem 0;
  position: relative;
  overflow: hidden;
}

.howitworksTimes__inner {
  display: flex;
}

.howitworksTimes__inner .phoneWrapper {
  position: absolute;
  right: 12%;
  top: -3%;
  max-width: 400px;
}

.howitworksTimes__inner .phoneWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.howitworksTimes__inner__left--inner {
  padding: 2rem 7rem 2rem 12rem;
}

.howitworksTimes__inner__left--inner .title {
  color: #00D27A;
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 93.5%;
  letter-spacing: 0.575em;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.howitworksTimes__inner__left--inner .subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
  max-width: 50%;
}

.howitworksTimes__inner__left--inner .desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  color: #6a6a6a;
  margin-bottom: 35px;
  width: 70%;
}

.howitworksTimes__inner__left--inner .cta {
  font-size: 1.1rem;
}

.howitworksTimes__inner__right .bgWrapper {
  position: relative;
}

.howitworksTimes__inner__right .bgWrapper .effect {
  position: absolute;
  top: 0;
  right: 0;
}

.howitworksTimes__counter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.howitworksTimes__counter .counter-item {
  margin-left: 150px;
  margin-top: 100px;
}

.howitworksTimes__counter .counter-item .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #d9deec;
  margin-bottom: 7px;
}

.howitworksTimes__counter .counter-item .title img {
  margin-left: -90px;
  margin-right: 25px;
  width: 62px;
}

.howitworksTimes__counter .counter-item .number {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #00D27A;
  margin-bottom: 7px;
}

.howitworksTimes__counter .counter-item .desc {
  max-width: 270px;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #6a6a6a;
}

@media screen and (max-width: 1280px) {
  .howitworksTimes__inner__left--inner {
    padding: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .howitworksTimes__inner__right .bgWrapper {
    width: 50vw;
  }

  .howitworksTimes__inner__left--inner {
    padding: 5rem 2rem;
  }

  .howitworksTimes__counter {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .howitworksTimes__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .howitworksTimes__inner .phoneWrapper {
    position: absolute;
    right: 30%;
    top: 0%;
    width: 40vw;
  }

  .howitworksTimes__inner__right .bgWrapper {
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    overflow: hidden;
  }

  .howitworksTimes__inner__right .bgWrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .howitworksTimes__inner__right .bgWrapper .effect {
    right: -35%;
  }

  .howitworksTimes__counter {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .howitworksTimes {
    margin-top: 50px;
  }

  .howitworksTimes__inner__left--inner .title {
    max-width: 75%;
    line-height: 15px;
  }

  .howitworksTimes__inner__left--inner .subtitle {
    font-size: 32px;
  }

  .howitworksTimes__inner__left--inner .desc {
    width: 100%;
  }

  .howitworksTimes__counter {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 70px;
    flex-direction: column;
  }

  .howitworksTimes__counter .counter-item {
    margin-left: 85px;
    margin-top: 50px;
  }

  .howitworksTimes__counter .counter-item .title {
    font-size: 24px;
  }

  .howitworksTimes__counter .counter-item .number {
    font-size: 42px;
  }

  .howitworksTimes__counter .counter-item .desc {
    font-size: 24px;
  }
}

.ganhos {
  position: relative;
}

.ganhos__bg {
  height: 470px;
  width: 100%;
}

.ganhos__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ganhos__title {
  margin-top: 80px;
  font-style: normal;
  font-weight: 300;
  font-size: 200px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #f4f6fc;
  padding-left: 10rem;
  text-indent: -10px;
  margin-bottom: 250px;
}

.ganhos__container {
  position: absolute;
  width: 1160px;
  height: 660px;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #f2f2f2;
  box-sizing: border-box;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganhos__container--inner {
  position: relative;
  width: 100%;
}

.ganhos__container__carousel {
  width: 1160px;
  height: 660px;
}

.ganhos__container__carousel .slick-dots {
  bottom: 55px;
}

.ganhos__container__carousel .slick-dots li button {
  background-color: transparent;
}

.ganhos__container__carousel .slick-dots li button:before {
  border: 2px solid #e5e5e5;
  background-color: #e5e5e5;
  box-sizing: border-box;
  border-radius: 50%;
  height: 10px !important;
  width: 10px !important;
  content: "";
  z-index: 1;
  color: transparent;
  opacity: 1;
}

.ganhos__container__carousel .slick-dots li.slick-active button:before {
  border: solid 2px #139BFE;
  background-color: transparent;
}

.ganhos__container__carousel .item {
  width: 100%;
  height: 660px;
  display: flex;
  align-items: center;
  width: 100%;
}

.ganhos__container__carousel .item__left {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.ganhos__container__carousel .item__left__bg {
  width: 447px;
  height: 447px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganhos__container__carousel .item__left__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ganhos__container__carousel .item__right {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganhos__container__carousel .item__right--inner {
  padding: 5rem 5rem 2rem 0;
}

.ganhos__container__carousel .item__right--inner .title {
  color: #00D27A;
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 93.5%;
  letter-spacing: 0.575em;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.ganhos__container__carousel .item__right--inner .subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
  max-width: 80%;
}

.ganhos__container__carousel .item__right--inner .desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  color: #6a6a6a;
  margin-bottom: 35px;
  max-width: 85%;
}

.ganhos__container__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 105%;
  top: 45%;
  left: -2.5%;
  transform: translateY(-50%);
}

.ganhos__container__arrows .arrow {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.0196802), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0282725), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.035), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.0417275), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0503198), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #139BFE;
  height: 73px;
  width: 73px;
  border-radius: 50%;
  cursor: pointer;
}

.ganhos__container__arrows .arrow i {
  color: #fff;
  font-size: 30px;
}

.ganhos__container__arrows .arrow_left {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media screen and (max-width: 1024px) {
  .ganhos__container {
    width: 90%;
    margin: auto;
    max-width: 991px;
    height: 600px;
  }

  .ganhos__container .ganhos__container__carousel {
    height: 600px;
    width: 100%;
    max-width: 991px;
  }

  .ganhos__container .ganhos__container__carousel .item {
    height: 600px;
  }

  .ganhos__title {
    margin-top: 50px;
    margin-bottom: 185px;
  }

  .ganhos__container__arrows {
    top: 39%;
  }

  .ganhos__container__carousel .item__right--inner {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .ganhos__container__carousel .item__right--inner .subtitle {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 767px) {
  .ganhos__title {
    padding-left: 2rem;
    margin-bottom: 125%;
    font-size: 32vw;
  }

  .ganhos__container {
    height: auto !important;
  }

  .ganhos__container .slick-list {
    overflow: visible;
  }

  .ganhos__container--inner {
    height: 100% !important;
    position: relative;
  }

  .ganhos__container__carousel {
    height: 100% !important;
  }

  .ganhos__container__carousel .item {
    height: 100% !important;
    flex-direction: column;
  }

  .ganhos__container__carousel .item__left__bg {
    width: 360px;
    height: 250px;
  }

  .ganhos__container__carousel .item__left__bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .ganhos__container__carousel .item__right {
    width: 100%;
    padding: 0 2rem;
  }

  .ganhos__container__carousel .item__right--inner {
    padding-bottom: 5rem;
  }

  .ganhos__container__carousel .item__right--inner .desc {
    max-width: 100%;
  }

  .ganhos__container__arrows {
    display: none;
  }
}

.previsiveis {
  background-color: #4542D7;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 650px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.previsiveis::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0%;
  background-image: url(/assets/site/images/previsiveis-effect-right.png);
  background-repeat: no-repeat;
  height: 454px;
  width: 454px;
  z-index: -1;
}

.previsiveis__left {
  margin-right: 150px;
}

.previsiveis__left--inner {
  padding-left: 15rem;
}

.previsiveis__left--inner .title {
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 93.5%;
  letter-spacing: 0.575em;
  color: #00D27A;
  margin-bottom: 30px;
}

.previsiveis__left--inner .subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 300px;
}

.previsiveis__left--inner .desc {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  color: #ffffff;
  max-width: 300px;
  margin-bottom: 50px;
}

.previsiveis__left--inner .selector-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.previsiveis__left--inner .selector-wrapper .selector {
  display: flex;
  align-items: center;
}

.previsiveis__left--inner .selector-wrapper .selector .desc_left {
  width: 10rem;
}

.previsiveis__left--inner .selector-wrapper .selector .emphasis {
  color: #00ff94;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 159.5%;
}

.previsiveis__left--inner .selector-wrapper .selector .emphasis p {
  color: #00ff94;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 159.5%;
}

.previsiveis__left--inner .selector-wrapper .selector .item {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  max-width: 155px;
  margin-right: 10px;
}

.previsiveis__left--inner .selector-wrapper .selector .item strong {
  font-weight: 700;
}

.previsiveis__left--inner .selector-wrapper .selector .item:last-child {
  margin-left: 35px;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  padding: 1.5rem 3.3rem;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 34px;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  border: 7px solid #00d27a;
  border-radius: 50%;
  transition: 0.4s;
  margin-left: 2px;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox input:checked + .slider {
  background-color: rgba(255, 255, 255, 0.2);
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox input:focus + .slider {
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox input:checked + .slider:before {
  transform: translateX(3.4rem);
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .slider.round {
  border-radius: 34px;
}

.previsiveis__left--inner .selector-wrapper .selector .checkbox .slider.round:before {
  border-radius: 50%;
}

.previsiveis__left--inner .selector-wrapper .progressbar {
  margin-bottom: 0;
  position: relative;
  margin-right: 15px;
}

.previsiveis__left--inner .selector-wrapper .progressbar::before {
  content: "";
  position: absolute;
  height: 56px;
  width: 120%;
  border-radius: 100px !important;
  border-radius: 12.5rem;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: 0;
}

.previsiveis__left--inner .times {
  width: 110%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.previsiveis__left--inner .times .label {
  font-weight: 300;
  font-size: 18px;
  line-height: 159.5%;
  color: #ffffff;
  width: 80px;
  cursor: pointer;
}

.previsiveis__left--inner .obs {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 159.5%;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
}

.previsiveis__right {
  align-self: flex-end;
}

.previsiveis__right .imgWrapper {
  width: 100%;
  max-width: 550px;
  position: relative;
  margin-bottom: -15%;
}

.previsiveis__right .imgWrapper::after {
  content: "";
  position: absolute;
  left: 9%;
  width: 61%;
  height: 51%;
  bottom: 0;
  background: #fcfdfd;
}

.previsiveis__right .imgWrapper img {
  margin-bottom: -1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.previsiveis__right .imgWrapper .progressbar-content {
  position: absolute;
  left: 9%;
  width: 61%;
  top: 35%;
  z-index: 5;
  overflow: hidden;
  font-size: 59px;
  line-height: 60px;
}

.previsiveis__right .imgWrapper .progressbar-content .item {
  left: 5%;
  top: 0%;
  position: absolute;
  display: block;
  text-align: center;
  width: 90%;
  margin: auto;
  max-height: 0;
  transition: 0.3s ease;
  overflow: hidden;
  transform: translateX(150%);
  opacity: 0;
  z-index: 0;
}

.previsiveis__right .imgWrapper .progressbar-content .item .price {
  font-weight: normal;
  font-size: 22px;
  line-height: 159.5%;
  color: #131313;
}

.previsiveis__right .imgWrapper .progressbar-content .item .price span {
  font-weight: 600;
  font-size: 100px;
  line-height: 159.5%;
  color: #131313;
}

.previsiveis__right .imgWrapper .progressbar-content .item .desc {
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  text-align: center;
  color: #131313;
  width: 70%;
  margin: auto;
}

.previsiveis__right .imgWrapper .progressbar-content .item .desc strong {
  color: #00D27A;
}

.previsiveis__right .imgWrapper .progressbar-content .item.active {
  opacity: 1;
  max-height: 999px;
  transform: translateX(0%);
  z-index: 5;
  position: relative;
  left: 0;
}

@media screen and (max-width: 1367px) {
  .previsiveis__right .imgWrapper {
    margin-bottom: -20%;
  }
}

@media screen and (max-width: 1280px) {
  .previsiveis__left--inner {
    padding-left: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  .previsiveis {
    justify-content: center;
  }

  .previsiveis__left {
    margin-right: 50px;
  }

  .previsiveis__right .imgWrapper {
    width: 550px;
  }
}

@media screen and (max-width: 768px) {
  .previsiveis {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5rem;
    height: 900px;
  }

  .previsiveis__left {
    margin-right: 0px;
    margin-top: 70px;
  }

  .previsiveis__left--inner {
    padding-left: 0;
  }

  .previsiveis__left--inner .title,
  .previsiveis__left--inner .subtitle,
  .previsiveis__left--inner .desc {
    max-width: 100%;
  }

  .previsiveis__right {
    align-self: unset;
  }
}

@media screen and (max-width: 767px) {
  .previsiveis {
    padding-left: 2rem;
    padding-right: 2rem;
    height: auto;
  }

  .previsiveis__left--inner .selector .item {
    font-size: 16px;
  }

  .previsiveis__left--inner .subtitle {
    font-size: 42px;
  }

  .previsiveis__left--inner .progressbar {
    width: 100%;
    min-width: auto;
  }

  .previsiveis__right .imgWrapper {
    width: 370px;
  }

  .previsiveis__right .imgWrapper::after {
    background: transparent;
  }

  .previsiveis__right .imgWrapper .progressbar-content .item .price {
    font-size: 26px;
  }

  .previsiveis__right .imgWrapper .progressbar-content .item .price span {
    font-size: 70px;
  }

  .previsiveis__right .imgWrapper .progressbar-content .item .desc {
    font-size: 16px;
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .previsiveis {
    width: 100%;
    margin: 0;
  }

  .previsiveis__left {
    width: 100%;
  }

  .previsiveis__left--inner .subtitle {
    font-size: 2.5rem;
  }

  .previsiveis__left--inner .desc {
    margin-bottom: 0.25rem;
  }

  .previsiveis__left--inner .selector-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .previsiveis__left--inner .selector-wrapper .selector {
    display: block;
  }

  .previsiveis__left--inner .selector-wrapper .selector .item {
    margin: 0.5rem 0.25rem;
  }

  .previsiveis__left--inner .selector-wrapper .selector .item p {
    width: 175%;
  }

  .previsiveis__left--inner .selector-wrapper .selector .desc_left {
    margin-left: 0 !important;
    width: 100%;
  }

  .previsiveis__right {
    margin-bottom: 3rem;
  }
}

.faq {
  overflow: hidden;
  position: relative;
}

.faq__destaque {
  font-style: normal;
  font-weight: 300;
  font-size: 300px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #f4f6fc;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  z-index: -1;
}

.faq__header {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
}

.faq__header .title {
  font-style: normal;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 93.5%;
  letter-spacing: 0.575em;
  color: #00D27A;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.faq__header .subtitle {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 93.5%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
}

.faq__questions {
  max-width: 880px;
  width: 90%;
  margin: 35px auto 100px;
}

.faq__questions .list {
  margin-bottom: 55px;
}

.faq__questions .list .item {
  cursor: pointer;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #f2f2f2;
  box-sizing: border-box;
  transition: 0.3s;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.faq__questions .list .item:hover {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.faq__questions .list .item .question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #131313;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 159.5%;
  text-align: center;
}

.faq__questions .list .item .question span {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 159.5%;
  text-align: center;
  margin-right: 24px;
  color: #00D27A;
}

.faq__questions .list .item .question i {
  margin-left: auto;
  color: #00D27A;
  transition: 0.3s;
  pointer-events: none;
}

.faq__questions .list .item .answer {
  max-height: 0;
  color: #131313;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  font-style: italic;
  overflow: hidden;
  margin-left: 2rem;
  transition: 0.3s ease-in-out;
  max-width: 80%;
}

.faq__questions .list .item.active .answer {
  max-height: 999px;
  margin-top: 2rem;
}

.faq__questions .list .item.active .answer p {
  margin-bottom: 10px;
}

.faq__questions .list .item.active .answer ul li {
  margin-bottom: 10px;
}

.faq__questions .list .item.active .answer strong {
  font-weight: bold !important;
}

.faq__questions .list .item.active .question i {
  transform: rotate(180deg);
}

.faq__questions .list .item.none {
  display: none;
}

/* .download{
    height: 360px;
    background-color: #F4F6FC;
    position:relative;
    overflow:hidden;
    z-index: 1;
    .parallax{
        position:absolute;
        top:0;
        left:30%;
        transform:translateX(-50%);
        z-index:-1;
    }
    &__inner{
        z-index:1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        height: 100%;
        margin: auto;
        &__left{
            .title{
                font-style: normal;
                font-weight: normal;
                font-size: 50px;
                line-height: 93.5%;
                text-align: center;
                letter-spacing: -0.03em;
                color: #000000;
            }
        }
    }
}

@media screen and (max-width:1024px){
    .download{
        .parallax{
            left: 50%;
        }
    }
}

@media screen and (max-width:768px){
    .download{
        position: relative;
        &::after{
            position: absolute;
            content: '';
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba($color: #000000, $alpha: 0.1);
        }
    }
}
 */

.testimonial {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem 0 6rem 0;
}

.testimonial .arrows {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  padding: 0 8%;
}

.testimonial .arrows .back,
.testimonial .arrows .next {
  position: relative;
  background: #00D27A;
  width: 65px;
  height: 65px;
  margin-top: 10rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonial .arrows .back svg,
.testimonial .arrows .next svg {
  position: absolute;
}

.testimonial__inner {
  height: 100%;
}

.testimonial__inner__desc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.testimonial__inner__desc .text--green {
  font-size: 0.6875rem;
}

.testimonial__inner__desc h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  font-size: 3.125rem;
  text-align: center;
  letter-spacing: -0.03em;
  padding-top: 1.75rem;
}

.testimonial__inner__slider {
  display: flex;
  width: calc(50% + 240px);
  margin: 0 auto;
  align-items: center;
}

.testimonial__inner__slider .carroussel {
  flex: 1;
  min-width: 0;
  min-height: 0;
  position: relative;
}

.testimonial__inner__slider .carroussel .slick-list {
  padding-bottom: 9rem;
  overflow: visible !important;
  padding-left: 10rem;
  padding-right: 10rem;
  padding: 0 12rem;
}

.testimonial__inner__slider .carroussel .slick-slide {
  margin: 0 20px;
}

.testimonial__inner__slider .carroussel .slick-dots {
  bottom: 0;
  margin-bottom: -2rem;
  z-index: 5;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__inner__slider .carroussel .slick-dots li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  list-style: none;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__inner__slider .carroussel .slick-dots li.slick-active {
  background: transparent;
  border: 2px #00D27A solid;
}

.testimonial__inner__slider .carroussel .slick-dots button {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.testimonial__inner__slider .carroussel .slick-track {
  display: flex;
  align-items: stretch;
}

.testimonial__inner__slider .carroussel .item {
  height: 25rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
  border-bottom: 2px solid #00d27a;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  opacity: 0.5;
}

.testimonial__inner__slider .carroussel .item.slick-active {
  opacity: 1;
}

.testimonial__inner__slider .carroussel .item svg {
  height: 5rem;
}

.testimonial__inner__slider .carroussel .item p {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
  height: 60%;
}

.testimonial__inner__slider .carroussel .item .people {
  padding-top: 50px;
  display: flex;
}

.testimonial__inner__slider .carroussel .item .people__image {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial__inner__slider .carroussel .item .people__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__inner__slider .carroussel .item .people__info {
  padding-left: 20px;
}

.testimonial__inner__slider .carroussel .item .people__info p {
  line-height: normal;
}

.testimonial__inner__slider .carroussel .item .people__info p.name {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 159.5%;
}

.testimonial__inner__slider .carroussel .item .people__info .description p {
  color: #c4c4c4;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.testimonial__inner__slider .carroussel .item .people__info .description strong {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

@media screen and (max-width: 1024px) {
  .testimonial .arrows {
    padding: 0 5%;
  }

  .testimonial .arrows .back,
  .testimonial .arrows .next {
    width: 40px;
    height: 40px;
  }

  .testimonial__inner__slider .carroussel .slick-list {
    padding: 0 33px !important;
  }

  .testimonial__inner__slider .carroussel .slick-slide {
    margin: 0 17px;
  }

  .testimonial__inner__slider .carroussel .item {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}

@media (max-width: 1024px) {
  .testimonial__inner__desc {
    padding: 3rem 0 0 0;
  }

  .testimonial__inner__desc h3 {
    font-size: 2.5rem;
    padding: 2rem;
    text-align: start;
  }

  .testimonial__inner__slider .carroussel .slick-list .slick-track .item {
    padding: 4rem 4rem 4rem 2rem;
    height: 30rem !important;
  }
}

.card-email {
  width: 100%;
  background: #E5E5E5;
}

.card-email__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.card-email__inner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F8FCFF;
  margin-top: 3vh;
  margin-bottom: 3vh;
  width: 600px;
}

.card-email__inner__content__logo {
  margin-top: 2.6rem;
  margin-bottom: 2.5rem;
}

.card-email__inner__content__desc {
  max-width: 430px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.card-email__inner__content__code {
  border: 2px solid #D9DEEC;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: 70px;
  text-align: center;
}

.card-email__inner__content__btn {
  background: #00D27A;
  border-radius: 10px;
  width: 312px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.3rem;
  color: white;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.card-email__inner__content .footer-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #2D2D2D;
}

.card-email__inner__content .footer-card .up {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  align-items: center;
  width: 100%;
}

.card-email__inner__content .footer-card .up::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  width: 90%;
  height: 80%;
}

.card-email__inner__content .footer-card .stores {
  display: flex;
  gap: 1.2rem;
}

.card-email__inner__content .footer-card .stores img {
  height: 50px;
}

.card-email__inner__content .footer-card .social {
  display: flex;
  gap: 1rem;
}

.card-email__inner__content .down {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.card-email__inner__content .atendment {
  padding: 2rem 6rem 0 4rem;
  display: flex;
  justify-content: center;
  background-color: #E5E5E5;
  font-family: "Arial";
  font-style: normal;
  font-size: 13px;
  line-height: 134.99%;
  color: #626262;
}

.blog {
  min-height: 100vh;
}

.blog .space {
  width: 100%;
  height: 15rem;
  background-color: #fff;
  position: relative;
}

.blog__banner {
  width: 100%;
  height: 17rem;
  position: relative;
}

.blog__banner .background {
  margin-top: 3.2rem;
}

.blog__banner .background::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/site/images/background-blog.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.blog__banner__title {
  display: flex;
  align-items: center;
  padding: 6rem 0 0 6rem;
}

.blog__banner__title h1 {
  font-weight: 700;
  font-size: 4.0625rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.blog__banner__search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  height: 89px;
  background-color: #ffffff;
  width: 345px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.blog__banner__search input {
  border: 0;
  outline: 0;
  height: 100%;
  width: 80%;
  margin: 0;
  align-items: center;
  border-radius: 15px;
  padding-left: 3.4rem;
  font-family: "proxima-nova";
  font-weight: 600;
  font-style: normal;
  color: #6a6a6a;
  font-size: 18px;
}

.blog__banner__search form {
  width: 100%;
  height: 100%;
  display: flex;
}

.blog__banner__search button {
  border: 0;
  height: 100%;
  width: 15%;
  margin: 0;
  padding: 0;
  background-color: white;
  cursor: pointer;
}

.blog__select {
  height: 7rem;
  margin: 1.5rem 4rem;
  display: flex;
  align-items: center;
  transition-duration: 2s;
}

.blog__select ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog__select .category {
  width: 100%;
  border-bottom: 2px #e9ecf6 solid;
}

.blog__select .category p {
  font-family: "proxima-nova", "sans-serif";
  font-size: 1rem;
  line-height: 150%;
  color: #000000;
  padding-bottom: 2.5rem;
  cursor: pointer;
}

.blog__select .active {
  border-bottom: 2px #00ff94 solid;
  transition-duration: 0.83s;
}

.blog__spotlight {
  width: 100%;
}

.blog__spotlight__slider {
  position: relative;
}

.blog__spotlight__slider .arrow-prev {
  display: flex;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 3rem;
  z-index: 2;
}

.blog__spotlight__slider .arrow-prev .prev {
  background: #00D27A;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.blog__spotlight__slider .arrow-next {
  display: flex;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 3rem;
  z-index: 2;
  right: 0;
  top: 0;
}

.blog__spotlight__slider .arrow-next .next {
  background: #00D27A;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.blog__spotlight__slider .carroussel .slick-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog__spotlight__slider .carroussel .slick-dots .slick-active {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
}

.blog__spotlight__slider .carroussel .slick-dots .slick-active button {
  opacity: 0;
}

.blog__spotlight__slider .carroussel .slick-dots .slick-active:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px #00D27A solid;
  border-radius: 50%;
  background: #fff;
}

.blog__spotlight__slider .carroussel .slick-dots li {
  margin-right: 20px;
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
}

.blog__spotlight__slider .carroussel .slick-dots li button {
  opacity: 0;
}

.blog__spotlight__slider .carroussel .slick-dots li:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #e5e5e5;
  border-radius: 50%;
  top: 0;
}

.blog__spotlight__slider .carroussel .item {
  height: 72vh;
  margin: 0 4rem 1rem 4rem;
  display: flex !important;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.blog__spotlight__slider .carroussel .item .image {
  width: 50%;
}

.blog__spotlight__slider .carroussel .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__spotlight__slider .carroussel .item .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 75px 100px;
}

.blog__spotlight__slider .carroussel .item .content .categories {
  width: 100%;
  padding-bottom: 30px;
}

.blog__spotlight__slider .carroussel .item .content .categories ul {
  display: flex;
}

.blog__spotlight__slider .carroussel .item .content .categories ul li {
  margin-right: 30px;
  padding: 7px 10px;
  border: 2px solid #00d27a;
  box-sizing: border-box;
  border-radius: 200px;
  color: #00d27a;
}

.blog__spotlight__slider .carroussel .item .content .title {
  padding-bottom: 2rem;
}

.blog__spotlight__slider .carroussel .item .content .title h2 {
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 600;
  font-size: 2.4375rem;
  line-height: 101.5%;
  color: #131313;
}

.blog__spotlight__slider .carroussel .item .content .description {
  padding-bottom: 30px;
}

.blog__spotlight__slider .carroussel .item .content .description p {
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 158.5%;
  color: #6a6a6a;
}

.blog__spotlight__slider .carroussel .item .content a {
  width: 100%;
  text-decoration: none;
  color: #000;
}

.blog__spotlight__slider .carroussel .item .content a .btn {
  display: flex;
  align-items: center;
}

.blog__spotlight__slider .carroussel .item .content a .btn svg {
  margin-right: 20px;
}

.blog__list {
  padding: 0 50px;
  margin-top: 5rem;
}

.blog__list__card-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 20px;
  margin-bottom: 50px;
}

.blog__list__card-list .card-item {
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.blog__list__card-list .card-item .image {
  width: 100%;
  height: 200px;
}

.blog__list__card-list .card-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__list__card-list .card-item .content h3 {
  padding: 4.5rem 4.5rem 3.4rem 4.5rem;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 600;
  font-size: 1.4375rem;
  line-height: 131.5%;
  color: #3d3d3d;
}

.blog__list__card-list .card-item .content a {
  text-decoration: none;
  color: #00D27A;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 158.5%;
}

.blog__list__card-list .card-item .content a .btn {
  display: flex;
  align-items: center;
  padding: 0 0 54px 45px;
}

.blog__list__card-list .card-item .content a .btn svg {
  margin-right: 2rem;
}

@media (max-width: 500px) {
  .blog__list__card-list {
    grid-template-columns: none;
  }
}

.blog__list__load {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
}

.blog__list__load a {
  text-decoration: none;
}

.blog__list__load a .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #00D27A;
  padding: 2rem 5rem;
  border-radius: 10px;
}

.blog__list__load a .btn span {
  color: #fff;
  font-size: 1.125rem;
}

.blog__list__load .loading {
  -webkit-animation: rotation 5s infinite linear;
          animation: rotation 5s infinite linear;
  width: 40px;
  height: 40px;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@media (max-width: 1024px) {
  .blog__banner__title h1 {
    text-orientation: sideways;
    width: 1px;
  }

  .blog__banner__search {
    max-width: 70vw;
  }

  .blog__select ul li {
    text-align: center;
  }

  .blog__spotlight {
    margin-bottom: 5rem;
  }

  .blog__spotlight__slider .carroussel .item {
    min-height: 60vh;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block !important;
  }

  .blog__spotlight__slider .carroussel .item .image {
    width: 100%;
    height: 30%;
  }

  .blog__spotlight__slider .carroussel .item .content {
    padding: 0;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin: 0 4rem 0 4rem;
  }

  .blog__spotlight__slider .carroussel .item .content .btn {
    padding-bottom: 2rem;
  }

  .blog__spotlight__slider .carroussel .item .content .categories ul li {
    margin: 15px 15px 0 0;
    padding: 2px 5px;
  }

  .blog__spotlight__slider .carroussel .item .content .title {
    padding: 0;
  }

  .blog__spotlight__slider .carroussel .item .content .title h2 {
    font-size: 25px;
    padding-bottom: 2rem;
  }

  .blog__spotlight__slider .carroussel .item .content .description {
    padding: 0;
    padding-bottom: 2rem;
  }

  .blog__list__card-list .card-item .btn {
    margin-top: 3rem;
  }

  .blog__list__card-list .card-item .content h3 {
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .howitworksTimes {
    margin-top: -2rem;
  }

  .howitworksTimes ::-webkit-scrollbar {
    height: 5px;
    width: 5px;
  }

  .howitworksTimes ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  .howitworksTimes ::-webkit-scrollbar-thumb {
    background-color: #00d27a;
    border-radius: 5px;
  }

  .howitworksTimes ::-webkit-scrollbar-thumb:hover {
    background-color: #00a567;
  }

  .howitworksTimes .blog__select {
    margin: 0 0 2rem 0;
    overflow-y: auto;
    padding: 0 1.5rem;
  }

  .howitworksTimes .blog__select .category p {
    padding-bottom: 0;
  }

  .howitworksTimes .blog__select ul {
    gap: 2rem;
  }

  .howitworksTimes .blog__spotlight__slider .arrow-next,
  .howitworksTimes .blog__spotlight__slider .arrow-prev {
    display: none;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item {
    margin: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 85vh;
    padding: 1rem;
    overflow-y: auto;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .categories,
  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .title,
  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .description {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .categories {
    padding: 1rem 0 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .categories ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .howitworksTimes .blog__spotlight__slider .carroussel .slick-list .slick-track .item .content .categories ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.blog-detail {
  background: #f4f6fc;
}

.blog-detail .space {
  width: 100%;
  height: 12rem;
  background-color: #f4f6fc;
  position: relative;
}

.blog-detail__banner {
  width: 100%;
  height: 60vh;
  position: relative;
  margin-bottom: 4rem;
}

.blog-detail__banner .texts {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10rem;
}

.blog-detail__banner .texts .cat-date {
  display: flex;
  font-size: 1.5rem;
  line-height: 158.5%;
  padding-bottom: 2rem;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  margin: 2.5rem 0 1rem 0;
}

.blog-detail__banner .texts .cat-date ul {
  display: flex;
}

.blog-detail__banner .texts .cat-date ul li {
  margin-right: 0.5rem;
  padding: 0 1rem;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 20rem;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  font-size: 1.2rem;
  border-radius: 12.5rem;
  border: 2px solid #131313;
}

.blog-detail__banner .texts h1 {
  font-size: 3.75rem;
  line-height: 97.5%;
  max-width: 65%;
  padding-bottom: 3rem;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #131313;
}

.blog-detail__banner .texts .desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}

.blog-detail__banner .texts .desc p {
  font-size: 0.9375rem;
  line-height: 158.5%;
  max-width: 60%;
  font-weight: 400;
  font-family: "proxima-nova", "sans-serif";
}

.blog-detail__banner .texts .desc svg {
  cursor: pointer;
}

.blog-detail .background {
  width: 100%;
  height: 65vh;
}

.blog-detail .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.blog-detail__content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 158.5%;
  color: #6a6a6a;
  background: #fff;
  padding-top: 3rem;
}

.blog-detail__content .social {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}

.blog-detail__content .social ul li {
  width: 4rem;
  height: 4rem;
  border: 2px #00d27a solid;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px 1rem 2px;
}

.blog-detail__content .social ul li a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail__content .texts {
  padding: 3rem 23.94rem 5.44rem 23.94rem;
  position: relative;
}

.blog-detail__content .texts h2 {
  text-align: left !important;
}

.blog-detail__content .texts p {
  color: #6a6a6a;
  font-size: 1.125rem;
  font-style: normal;
  line-height: 158.5%;
  text-align: left !important;
}

.blog-detail__content .texts p strong {
  font-weight: 600;
  color: #000;
}

.blog-detail__content .texts p iframe,
.blog-detail__content .texts p img {
  width: 120% !important;
  margin-left: -4rem;
}

.blog-detail__content .texts h1 {
  color: #131313;
  font-family: "proxima-nova", "sans-serif";
  font-size: 2.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 119%;
}

.blog-detail__content .texts h2 {
  color: #131313;
  font-family: "proxima-nova", "sans-serif";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 158.5%;
}

.blog-detail__content .texts h3,
.blog-detail__content .texts h4,
.blog-detail__content .texts h5,
.blog-detail__content .texts h6 {
  color: #131313;
  font-family: "proxima-nova", "sans-serif";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 158.5%;
  text-align: left !important;
}

.blog-detail__content .texts table {
  border-collapse: collapse;
  width: 500px;
  border: 1px solid #333;
}

.blog-detail__content .texts table tbody tr td {
  border: 1px solid #333;
  padding: 1rem;
  background-color: #f8f8f8;
}

.blog-detail__content .texts ul {
  margin-left: 1.2rem;
  list-style: square;
}

.blog-detail__content .texts ol {
  margin-left: 1.2rem;
  list-style: decimal;
}

.blog-detail__read-more {
  min-height: 100vh;
  position: relative;
  background: #fff;
}

.blog-detail__read-more .top {
  overflow: hidden;
  position: relative;
}

.blog-detail__read-more .top .marquee {
  display: flex;
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 30rem;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #f4f6fc;
  -webkit-animation: animate 25s linear infinite;
          animation: animate 25s linear infinite;
}

.blog-detail__read-more .top .marquee p {
  white-space: nowrap;
}

.blog-detail__read-more .top .marquee p:not(:last-child) {
  padding-right: 100%;
}

@-webkit-keyframes animate {
  from {
    transform: translate(100%, 0);
  }

  to {
    transform: translate(-340%, 0);
  }
}

@keyframes animate {
  from {
    transform: translate(100%, 0);
  }

  to {
    transform: translate(-340%, 0);
  }
}

.blog-detail__read-more .top .title {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.blog-detail__read-more .top .title p {
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 93.5%;
  text-align: center;
  letter-spacing: 0.575em;
  color: #00d27a;
}

.blog-detail__read-more .top .title h2 {
  font-family: "proxima-nova", "sans-serif";
  font-style: normal;
  font-weight: 600;
  font-size: 5rem;
  line-height: 93.5%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
}

.blog-detail__read-more .slider {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.blog-detail__read-more .slider .carroussel {
  margin: 0 6rem;
  display: flex;
}

.blog-detail__read-more .slider .carroussel .item-card {
  overflow: hidden;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  box-shadow: 0px 4px 3.2rem rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  background: #fff;
  min-width: 18rem;
  max-height: 45rem;
  width: auto !important;
  margin: 3rem 1rem;
  text-decoration: none;
}

.blog-detail__read-more .slider .carroussel .item-card .image {
  height: 13rem;
  width: 100%;
}

.blog-detail__read-more .slider .carroussel .item-card .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-detail__read-more .slider .carroussel .item-card .content {
  font-style: normal;
  font-weight: 600;
}

.blog-detail__read-more .slider .carroussel .item-card .content h3 {
  padding: 2rem 2rem 0 2rem;
  color: #3d3d3d;
  font-size: 1.5rem;
  line-height: 131.5%;
  font-family: "proxima-nova", "sans-serif";
}

.blog-detail__read-more .slider .carroussel .item-card .content .read-more {
  padding-top: 3rem;
  padding-left: 2rem;
  padding-bottom: 3.5rem;
  display: flex;
  font-size: 1.2rem;
  line-height: 158.5%;
}

.blog-detail__read-more .slider .carroussel .item-card .content .read-more span {
  color: #00d27a;
}

.blog-detail__read-more .art {
  position: relative;
  margin-top: -15rem;
  z-index: 0;
  width: 100%;
  height: auto;
  bottom: 0;
  display: flex;
}

.blog-detail__read-more .art img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1024px) {
  .blog-detail__banner .texts {
    padding: 0 5rem;
  }

  .blog-detail__banner .texts .cat-date {
    display: block;
    font-size: 12px;
  }

  .blog-detail__banner .texts .cat-date ul {
    padding-bottom: 10px;
  }

  .blog-detail__banner .texts .cat-date ul li {
    margin-right: 10px;
  }

  .blog-detail__banner .texts h1 {
    font-size: 30px;
    max-width: 90%;
  }

  .blog-detail__banner .texts .desc p {
    max-width: 90%;
  }

  .blog-detail__banner .texts .desc svg {
    display: none;
  }

  .blog-detail__content {
    padding-top: 3rem;
    display: block;
    font-size: 15px;
  }

  .blog-detail__content .social {
    padding: 0 0 20px 40px;
  }

  .blog-detail__content .social ul {
    display: flex;
    align-items: center;
  }

  .blog-detail__content .texts {
    width: 80%;
    padding-left: 40px;
    padding-bottom: 3rem;
  }

  .blog-detail__read-more .top .marquee {
    font-size: 200px;
  }

  .blog-detail__read-more .slider .carroussel {
    display: block;
    padding: 0 20px;
  }

  .blog-detail__read-more .slider .carroussel .item-card .image {
    height: 170px;
  }

  .blog-detail__read-more .slider .carroussel .item-card .content h3 {
    padding: 20px 20px 0 20px;
  }

  .blog-detail__read-more .slider .carroussel .item-card .content .read-more {
    padding: 10px 0 30px 20px;
  }

  .blog-detail__read-more .slider .carroussel .item-card:last-child {
    margin-bottom: 0;
  }

  .blog-detail__read-more .art {
    height: 200px;
  }

  .blog-detail__read-more .art img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .blog-detail .space {
    height: 18rem;
  }

  .blog-detail__banner {
    width: 100%;
  }

  .blog-detail__banner .texts {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    padding: 2rem;
  }

  .blog-detail__banner .texts .cat-date {
    padding: 1rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .blog-detail__banner .texts .cat-date ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .blog-detail__banner .texts .cat-date ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0.5rem;
  }

  .blog-detail__banner .texts .desc {
    margin-bottom: 21rem;
  }

  .blog-detail__banner .texts .desc svg {
    display: none;
  }

  .blog-detail__content .social {
    padding: 0;
    position: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
  }

  .blog-detail__content .texts {
    width: 80%;
    padding: 0 0 3rem 40px;
  }

  .blog-detail__content .texts img,
  .blog-detail__content .texts iframe {
    height: 15rem !important;
    width: auto !important;
  }

  .blog-detail__read-more .top .title h2 {
    font-size: 2.5rem;
  }

  .blog-detail__read-more .slider .carroussel {
    padding: 2rem;
    margin: 0 0 11rem 0;
  }
}

.search {
  margin-top: 20rem;
}

.terms-of-use {
  margin-top: 9rem;
}

.terms-of-use__banner {
  background-image: url("/assets/site/images/background-terms.png");
  height: 13rem;
  display: flex;
  align-items: center;
  padding-left: 11rem;
}

.terms-of-use__banner p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 4.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 93.5%;
  letter-spacing: -0.12188rem;
}

.terms-of-use__policies {
  padding: 5rem 20rem;
}

.terms-of-use__policies .introduction {
  margin-bottom: 5rem;
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.terms-of-use__policies .title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
  gap: 0.5rem;
}

.terms-of-use__policies .title-wrapper .index {
  color: #00d27a;
  font-family: proxima-nova;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.075rem;
}

.terms-of-use__policies .title-wrapper .title {
  color: #000;
  font-family: proxima-nova;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.075rem;
}

.terms-of-use__policies .description {
  margin-bottom: 5rem;
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

@media (max-width: 1024px) {
  .terms-of-use {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .terms-of-use__banner {
    padding: 0;
    width: 100%;
  }

  .terms-of-use__banner p {
    font-size: 3rem;
    padding: 0 0.5rem;
    text-align: center;
    width: 100%;
  }

  .terms-of-use__policies {
    margin: 0;
    padding: 3rem 2rem;
  }
}

.community {
  height: 115vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: #f4f6fc;
  position: relative;
}

.community .title {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 30%;
  width: 100%;
  color: #000;
  font-family: proxima-nova;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.09375rem;
  text-align: center;
}

.community .title strong {
  color: #00d27a;
}

.community .content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  padding: 0 15%;
}

.community .content .images img {
  width: 30rem;
}

.community .content .assessments .app-store {
  display: flex;
  gap: 0.5rem;
  padding-left: 3rem;
}

.community .content .assessments .app-store .apple,
.community .content .assessments .app-store .google {
  display: flex;
  width: 16.25rem;
  padding: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.375rem;
  background: #fff;
  box-shadow: 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.03), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.04), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 100px 80px 0px rgba(0, 0, 0, 0.07);
}

.community .content .assessments .app-store .apple .logo,
.community .content .assessments .app-store .google .logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #000;
  text-align: center;
  font-family: proxima-nova;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 93.5%;
  letter-spacing: -0.045rem;
}

.community .content .assessments .app-store .apple .rate-wrapper,
.community .content .assessments .app-store .google .rate-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.community .content .assessments .app-store .apple .rate-wrapper .rate,
.community .content .assessments .app-store .google .rate-wrapper .rate {
  color: #000;
  text-align: center;
  font-family: proxima-nova;
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 93.5%;
  letter-spacing: -0.06375rem;
}

.community .content .assessments .app-store .apple .rate-wrapper .quantity,
.community .content .assessments .app-store .google .rate-wrapper .quantity {
  color: #6a6a6a;
  text-align: center;
  font-family: proxima-nova;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 93.5%;
  letter-spacing: -0.02625rem;
}

.community .all-comments {
  width: 100%;
  overflow: auto;
  margin-top: 0.5rem;
  max-height: 20rem;
  padding-left: 3rem;
}

.community .all-comments::-webkit-scrollbar-track {
  margin-top: 1.25rem;
  background-color: #f5f5f5;
}

.community .all-comments::-webkit-scrollbar {
  margin-top: 1.25rem;
  width: 5px;
  background-color: #f5f5f5;
}

.community .all-comments::-webkit-scrollbar-thumb {
  margin-top: 1.25rem;
  background-color: #000000;
  border-radius: 30px;
}

.community .all-comments .comments {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ebebeb;
  background: #fff;
  margin-top: 1rem;
  box-shadow: 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.03), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.04), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 100px 80px 0px rgba(0, 0, 0, 0.07);
}

.community .all-comments .comments__wrapper {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}

.community .all-comments .comments__wrapper .name-rate {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.community .all-comments .comments__wrapper .name-rate .rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.community .all-comments .comments__wrapper .comment,
.community .all-comments .comments__wrapper .date {
  width: 100%;
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.community::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 15rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}

@media screen and (max-width: 1367px) {
  .community .content {
    height: 65%;
  }
}

@media (max-width: 1024px) {
  .community {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .community .title {
    margin: 2.5rem auto;
    padding: 0 2rem;
    text-align: center;
    font-size: 2rem;
  }

  .community .content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
  }

  .community .content .images {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .community .content .images svg {
    height: 15rem;
  }

  .community .content .assessments .app-store {
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .community .content .assessments .app-store .apple .rate-wrapper .rate {
    font-size: 1rem;
  }

  .community .content .assessments .app-store .google .rate-wrapper .rate {
    font-size: 1rem;
  }

  .community .content .assessments .all-comments {
    padding: 2rem;
  }

  .community .content .assessments .all-comments::-webkit-scrollbar-track {
    margin-top: 3rem;
  }

  .community .content .assessments .all-comments::-webkit-scrollbar {
    margin-top: 3rem;
  }

  .community .content .assessments .all-comments::-webkit-scrollbar-thumb {
    margin-top: 3rem;
  }

  .community .content .assessments .all-comments .comments {
    box-shadow: none;
  }

  .community .content .assessments .all-comments .comments__wrapper {
    padding: 1.5rem 0.5rem;
  }
}

.patient-testimonials {
  height: 100vh;
  position: relative;
}

.patient-testimonials .title,
.patient-testimonials .subtitle {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.patient-testimonials .title {
  color: #00d27a;
  text-align: center;
  font-family: proxima-nova;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: 0.39531rem;
}

.patient-testimonials .subtitle {
  color: #000;
  text-align: center;
  font-family: proxima-nova;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.09375rem;
}

.patient-testimonials__carousel .arrows {
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-40%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  padding: 0 8%;
}

.patient-testimonials__carousel .arrows .back-1,
.patient-testimonials__carousel .arrows .next-1 {
  position: relative;
  background: #00D27A;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.patient-testimonials__carousel .arrows .back-1 svg,
.patient-testimonials__carousel .arrows .next-1 svg {
  position: absolute;
}

.patient-testimonials__carousel__slider {
  padding: 0 20rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-list {
  padding-bottom: 9rem;
  overflow: visible !important;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-slide {
  margin: 0 20px;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-dots {
  bottom: 15%;
  z-index: 5;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-dots li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  list-style: none;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-dots li.slick-active {
  background: transparent;
  border: 2px #00D27A solid;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-dots button {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.patient-testimonials__carousel__slider .carousel-wrapper .slick-track {
  display: flex;
  align-items: stretch;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item {
  border-radius: 1.25rem !important;
  height: 30rem;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  display: flex;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .image {
  width: 40%;
  height: 100%;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .image img {
  border-top-left-radius: 1.25rem !important;
  border-bottom-left-radius: 1.25rem !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  padding: 4rem 4rem 3rem 2rem;
  width: 60%;
  height: 100%;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .top-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .top-wrapper p {
  margin-right: 0.25rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .description {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
  margin-bottom: 2rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .person {
  margin-top: 3rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .person .name {
  color: #00d27a;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
  margin-bottom: 0.5rem;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .content .person .location {
  color: #6a6a6a;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.patient-testimonials__carousel__slider .carousel-wrapper .item .social {
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
}

@media screen and (max-width: 1367px) {
  .patient-testimonials {
    height: 115vh;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .item {
    height: 33rem;
  }
}

@media (max-width: 1024px) {
  .patient-testimonials {
    padding-top: 3rem;
    margin-bottom: 5rem;
    height: 120vh;
  }

  .patient-testimonials .subtitle {
    font-size: 2rem;
  }

  .patient-testimonials__carousel .arrows {
    top: 60%;
  }

  .patient-testimonials__carousel .arrows .slick-arrow {
    height: 2.5rem;
    width: 2.5rem;
  }

  .patient-testimonials__carousel__slider {
    width: 100%;
    padding: 0;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 85vh;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .image {
    height: auto;
    width: 50%;
    margin: 0 auto;
    padding-top: 1.25rem;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .image img {
    height: 10rem;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content {
    display: flex;
    padding: 0;
    width: 100%;
    gap: 0;
    justify-content: space-around;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .top-wrapper {
    gap: 0.75rem;
    padding-left: 0.25rem;
    padding-top: 0.25rem;
    align-items: center;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .top-wrapper .quotation svg {
    display: none;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .top-wrapper__text {
    font-size: 0.8rem;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .top-wrapper .stars svg {
    height: 1.1rem;
    width: 1.1rem;
    margin-top: -0.2rem;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .description {
    font-size: 1rem;
    padding: 0.25rem 0.75rem 0 0.75rem;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .content .person {
    margin: 0;
    padding: 0 0.5rem;
  }

  .patient-testimonials__carousel__slider .carousel-wrapper .slick-list .slick-track .item .social {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

.media-news {
  height: 40vh;
  display: flex;
  margin: 4rem 0 0 0;
  position: relative;
}

.media-news::after {
  content: "";
  position: absolute;
  margin: 3rem auto 0 auto;
  bottom: -10%;
  left: 50%;
  display: flex;
  width: 75%;
  height: 0.1rem;
  background-color: #e3e3f5;
  transform: translateX(-50%);
}

.media-news .container-1 {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;
  padding: 6.5rem 3rem;
  gap: 1.25rem;
  align-items: center;
}

.media-news .container-1 .text--bold {
  font-size: 3.125rem;
}

.media-news .container-1 .text--gray {
  font-size: 1rem;
}

.media-news .container-2 {
  width: 70%;
  height: 100%;
}

.media-news .container-2 .slider {
  margin-top: 2rem;
  position: relative;
}

.media-news .container-2 .slider .slick-list {
  overflow: hidden !important;
}

.media-news .container-2 .slider .slick-list .slick-track {
  padding-left: 3rem;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.media-news .container-2 .slider .slick-list .slick-track .item {
  display: flex;
  padding: 1.5rem 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  border-radius: 0.5rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
  width: 25rem !important;
  height: 13rem;
}

.media-news .container-2 .slider .slick-list .slick-track .item img {
  filter: grayscale(100%);
  height: 6rem;
}

.media-news .container-2 .slider .slick-list .slick-track .item p {
  color: #00d27a;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.media-news .container-2 .slider .slick-list .slick-track .item svg {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

.media-news .container-2 .slider .slick-dots {
  bottom: 10%;
  z-index: 5;
  position: absolute;
  display: flex;
  bottom: -1.5rem;
  left: 1rem;
}

.media-news .container-2 .slider .slick-dots li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  list-style: none;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-news .container-2 .slider .slick-dots li.slick-active {
  background: transparent;
  border: 2px #00D27A solid;
}

.media-news .container-2 .slider .slick-dots button {
  width: 100%;
  height: 100%;
  opacity: 0;
}

@media (max-width: 1024px) {
  .media-news {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15rem;
  }

  .media-news::after {
    bottom: -95%;
  }

  .media-news .container-1 {
    width: 100%;
    padding: 2rem;
  }

  .media-news .container-2 {
    width: 100%;
  }
}

.partners .partner {
  margin-top: 9rem;
  display: flex;
  height: 80vh;
  width: 100%;
  background: #f4f6fc;
}

.partners .partner__left {
  width: 60%;
  position: relative;
}

.partners .partner__left .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 7.5rem 0 0 12rem;
}

.partners .partner__left .content .title {
  width: 35rem;
}

.partners .partner__left .content .title p {
  font-size: 4.0625rem;
}

.partners .partner__left .content .subtitle {
  width: 20rem;
}

.partners .partner__left .content .subtitle p {
  font-size: 1.125rem;
}

.partners .partner__right {
  width: 40%;
  position: relative;
}

.partners .partner__right .image-banner img {
  height: 100%;
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.partners .partner__right .backgrounds .blue-partner-bg {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
}

.partners .partner__right .backgrounds .green-partner-bg {
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: -16rem;
}

.partners .partner__right .gradient {
  z-index: 3;
  width: 39.1875rem;
  height: 14.875rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(88, 85, 239, 0) 0%, #5855ef 100%);
}

.partners .partner__right .player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -15%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.partners .partner__right .modal-wrapper {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999999;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s all ease;
  pointer-events: none;
}

.partners .partner__right .modal-wrapper.active {
  height: 100vh;
  opacity: 1;
  pointer-events: all;
}

.partners .partner__right .modal-wrapper .modal-inner {
  width: min(95%, 900px);
  height: 80%;
  background: linear-gradient(#00d27a, #5855ef);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.22), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.158148), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.131144), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.11), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0888564), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.061852);
  padding: 10rem;
  gap: 9rem;
  display: flex;
  align-items: center;
  position: relative;
}

.partners .partner__right .modal-wrapper .modal-inner .close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  z-index: 3;
}

.partners .partner__right .modal-wrapper .modal-inner .left {
  width: 50%;
}

.partners .partner__right .modal-wrapper .modal-inner .left .section-title {
  text-align: start;
}

.partners .partner__right .modal-wrapper .modal-inner .right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.partners .partner__right .modal-wrapper .modal-inner .right img {
  width: 500px;
}

.partners .partner__right .modal-wrapper .video-modal .content .video a {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  top: 41%;
}

.partners .partner__right .modal-wrapper .video-modal .content .video img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.partners .partner__right video {
  height: 20rem;
}

.partners .partner-v2 {
  margin-top: 9rem;
  display: flex;
  height: 80vh;
  width: 100%;
  max-width: 100%;
  background-size: cover;
  position: relative;
}

.partners .partner-v2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  background: black;
  opacity: 0.5;
  z-index: 1;
}

.partners .partner-v2 .partner__left {
  width: 60%;
  position: relative;
  z-index: 3;
}

.partners .partner-v2 .partner__left .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 7.5rem 0 0 12rem;
}

.partners .partner-v2 .partner__left .content .title {
  width: 35rem;
}

.partners .partner-v2 .partner__left .content .title p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 4.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 93.5%;
  letter-spacing: -0.12188rem;
}

.partners .partner-v2 .partner__left .content .subtitle {
  width: 20rem;
}

.partners .partner-v2 .partner__left .content .subtitle p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .partner-v2 .partner__right {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: none;
}

.partners .partner-v2 .partner__right .image-banner {
  height: 100%;
  width: 100%;
}

.partners .partner-v2 .partner__right .image-banner .background-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.partners .partner-v2 .partner__right .backgrounds,
.partners .partner-v2 .partner__right .gradient,
.partners .partner-v2 .partner__right .player {
  display: none;
}

.partners .be-partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.3rem;
}

.partners .be-partner__start {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 5rem;
  text-align: center;
}

.partners .be-partner__start .title p {
  font-size: 2.5rem;
}

.partners .be-partner__start .subtitle {
  padding: 0 22rem;
}

.partners .be-partner__start .subtitle p {
  font-size: 1rem;
}

.partners .be-partner__cards {
  display: flex;
  gap: 0.9rem;
}

.partners .be-partner__cards .card {
  display: flex;
  width: 23.5625rem;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #d9deec;
  background: #fff;
  box-shadow: 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.03), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.04), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 100px 80px 0px rgba(0, 0, 0, 0.07);
}

.partners .be-partner__cards .card .description {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .be-partner__cta {
  margin-bottom: 7rem;
}

.partners .why-partner {
  height: 100vh;
  display: flex;
  background: url("/assets/site/images/partners-blue-plus-green.png");
  background-size: cover;
}

.partners .why-partner .why-left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .why-partner .why-left .info-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 9rem;
  gap: 1rem;
}

.partners .why-partner .why-left .info-wrapper .title {
  color: #fff;
  font-family: proxima-nova;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.075rem;
}

.partners .why-partner .why-left .info-wrapper .description {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
  width: 90%;
}

.partners .why-partner .why-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}

.partners .why-partner .why-right .itens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}

.partners .why-partner .why-right .itens .item {
  display: flex;
  width: 21rem;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  flex-shrink: 0;
  border: none;
}

.partners .why-partner .why-right .itens .item p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .how-partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 6.25rem 0;
  gap: 2.5rem;
  background: #5653e9;
}

.partners .how-partner .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.partners .how-partner .info-wrapper .title {
  color: #fff;
  text-align: center;
  font-family: proxima-nova;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.075rem;
}

.partners .how-partner .info-wrapper .subtitle {
  width: 70%;
  margin: 0 auto;
  color: #fff;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .how-partner .cards {
  display: flex;
  gap: 6rem;
  padding: 0 8rem;
}

.partners .how-partner .cards .card {
  display: flex;
  padding: 1rem 0rem 2rem 0rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1 0 0;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #00ff94;
  background: #5653e9;
}

.partners .how-partner .cards .card p {
  color: #fff;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .partners-brands-carousel {
  height: 40vh;
  display: flex;
  margin: 4rem 0 0 0;
  position: relative;
}

.partners .partners-brands-carousel::after {
  content: "";
  position: absolute;
  margin: 3rem auto 0 auto;
  bottom: -15% !important;
  left: 50%;
  display: flex;
  width: 75%;
  height: 0.1rem;
  background-color: #e3e3f5;
  transform: translateX(-50%);
}

.partners .partners-brands-carousel .container-1 {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  justify-content: center;
  padding: 6.5rem 3rem;
  gap: 1.25rem;
  align-items: flex-start;
}

.partners .partners-brands-carousel .container-1 .text--bold {
  font-size: 3.125rem;
}

.partners .partners-brands-carousel .container-2 {
  width: 70%;
  height: 100%;
}

.partners .partners-brands-carousel .container-2 .slider {
  margin-top: 2rem;
  position: relative;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list {
  overflow: hidden !important;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list .slick-track {
  padding-left: 3rem;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list .slick-track .item {
  display: flex;
  padding: 1.5rem 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  border-radius: 0.5rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
  width: 25rem !important;
  height: 13rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list .slick-track .item img {
  filter: grayscale(100%);
  height: 6rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list .slick-track .item p {
  color: #00d27a;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-list .slick-track .item svg {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-dots {
  bottom: 10%;
  z-index: 5;
  position: absolute;
  display: flex;
  bottom: -1.5rem;
  left: 1rem;
}

.partners .partners-brands-carousel .container-2 .slider .slick-dots li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  list-style: none;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners .partners-brands-carousel .container-2 .slider .slick-dots li.slick-active {
  background: transparent;
  border: 2px #00D27A solid;
}

.partners .partners-brands-carousel .container-2 .slider .slick-dots button {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.partners .enterprises {
  margin: 7rem 12rem 7rem 6.5rem;
}

.partners .enterprises .start {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.25rem;
}

.partners .enterprises .content-wrapper {
  display: flex;
}

.partners .enterprises .content-wrapper .left {
  width: 50%;
}

.partners .enterprises .content-wrapper .left img {
  height: 80%;
}

.partners .enterprises .content-wrapper .right {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 50%;
}

.partners .enterprises .content-wrapper .right .cards {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.partners .enterprises .content-wrapper .right .cards .card-1,
.partners .enterprises .content-wrapper .right .cards .card-2,
.partners .enterprises .content-wrapper .right .cards .card-3,
.partners .enterprises .content-wrapper .right .cards .card-4 {
  display: flex;
  width: 17.5625rem;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #d9deec;
  background: #fff;
}

.partners .enterprises .content-wrapper .right .cards .card-1 p,
.partners .enterprises .content-wrapper .right .cards .card-2 p,
.partners .enterprises .content-wrapper .right .cards .card-3 p,
.partners .enterprises .content-wrapper .right .cards .card-4 p {
  color: #131313;
  font-family: proxima-nova;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 159.5%;
}

.partners .partner-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.partners .partner-modal.active {
  opacity: 1;
  pointer-events: all;
}

.partners .partner-modal .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.partners .partner-modal .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50rem;
  height: 40rem;
  padding: 2rem 4.7rem;
  border-radius: 1.875rem;
  background: #fff;
  box-shadow: 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.03), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.04), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 100px 80px 0px rgba(0, 0, 0, 0.07);
}

.partners .partner-modal .content .title {
  width: 75%;
}

.partners .partner-modal .content .subtitle {
  width: 75%;
}

.partners .partner-modal .content .form-wrapper {
  width: 100%;
  display: grid;
  grid-template-areas: "title" "inputs";
  gap: 1rem;
}

.partners .partner-modal .content .form-wrapper .form-title {
  font-size: 1.125rem;
  grid-area: title;
}

.partners .partner-modal .content .form-wrapper .form {
  display: grid;
  grid-template-areas: "name email" "job business" "description description";
  gap: 1rem;
}

.partners .partner-modal .content .form-wrapper .form .text--bold {
  font-size: 1.125rem;
}

.partners .partner-modal .content .form-wrapper .form input {
  width: 100%;
}

.partners .partner-modal .content .form-wrapper .form input.error {
  border: 1px solid red;
}

.partners .partner-modal .content .form-wrapper .form textarea.error {
  border: 1px solid red;
}

.partners .partner-modal .content .form-wrapper .form .name {
  grid-area: name;
}

.partners .partner-modal .content .form-wrapper .form .email {
  grid-area: email;
}

.partners .partner-modal .content .form-wrapper .form .job {
  grid-area: job;
}

.partners .partner-modal .content .form-wrapper .form .business {
  grid-area: business;
}

.partners .partner-modal .content .form-wrapper .form .description {
  grid-area: description;
  height: 10rem;
  resize: none;
}

.partners .partner-modal .content .form-wrapper .form button {
  border: 1px solid #00d27a;
}

.partners .enterprises-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.partners .enterprises-modal.active {
  opacity: 1;
  pointer-events: all;
}

.partners .enterprises-modal .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.partners .enterprises-modal .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50rem;
  height: 40rem;
  padding: 2rem 4.7rem;
  border-radius: 1.875rem;
  background: #fff;
  box-shadow: 0px 2.767px 2.214px 0px rgba(0, 0, 0, 0.02), 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.03), 0px 12.522px 10.017px 0px rgba(0, 0, 0, 0.04), 0px 22.336px 17.869px 0px rgba(0, 0, 0, 0.04), 0px 41.778px 33.422px 0px rgba(0, 0, 0, 0.05), 0px 100px 80px 0px rgba(0, 0, 0, 0.07);
}

.partners .enterprises-modal .content .title {
  width: 75%;
}

.partners .enterprises-modal .content .subtitle {
  width: 75%;
}

.partners .enterprises-modal .content .form-wrapper {
  width: 100%;
  display: grid;
  grid-template-areas: "title" "inputs";
  gap: 1rem;
}

.partners .enterprises-modal .content .form-wrapper .form-title {
  font-size: 1.125rem;
  grid-area: title;
}

.partners .enterprises-modal .content .form-wrapper .form {
  display: grid;
  grid-template-areas: "name email" "job business" "description description";
  gap: 1rem;
}

.partners .enterprises-modal .content .form-wrapper .form .text--bold {
  font-size: 1.125rem;
}

.partners .enterprises-modal .content .form-wrapper .form input.error {
  border: 1px solid red;
}

.partners .enterprises-modal .content .form-wrapper .form textarea.error {
  border: 1px solid red;
}

.partners .enterprises-modal .content .form-wrapper .form .name {
  grid-area: name;
}

.partners .enterprises-modal .content .form-wrapper .form .email {
  grid-area: email;
}

.partners .enterprises-modal .content .form-wrapper .form .job {
  grid-area: job;
}

.partners .enterprises-modal .content .form-wrapper .form .business {
  grid-area: business;
}

.partners .enterprises-modal .content .form-wrapper .form .description {
  grid-area: description;
  height: 10rem;
  resize: none;
}

.partners .enterprises-modal .content .form-wrapper .form button {
  border: 1px solid #00d27a;
}

@media (max-width: 1024px) {
  .partners {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .partners .partner {
    background: #f4f6fc;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
  }

  .partners .partner__left {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .partners .partner__left .content {
    padding: 2rem;
  }

  .partners .partner__left .content .title {
    width: 100%;
  }

  .partners .partner__left .content .title p {
    font-size: 2rem;
  }

  .partners .partner__left .content .subtitle p {
    font-size: 1rem;
  }

  .partners .partner__right .image-banner img {
    position: relative;
  }

  .partners .partner__right .backgrounds .blue-partner-bg {
    right: -30rem;
  }

  .partners .partner__right .gradient {
    width: 50rem;
    right: -20rem;
  }

  .partners .partner__right .player {
    left: 100%;
    transform: translate(0);
  }

  .partners .partner__right .modal-wrapper .modal-inner {
    height: 50%;
    width: 50%;
    background: none;
    box-shadow: none;
  }

  .partners .partner__right .modal-wrapper .modal-inner .close {
    top: 7rem;
  }

  .partners .partner__right .modal-wrapper .modal-inner .video-modal .content .video img {
    height: 50%;
  }

  .partners .be-partner {
    padding: 2rem 2rem 2rem 3rem;
    width: 100%;
    margin: 15rem auto 0 auto !important;
  }

  .partners .be-partner__start {
    text-align: start;
  }

  .partners .be-partner__start .subtitle {
    padding: 0;
  }

  .partners .be-partner__cards {
    flex-direction: column;
    width: 95%;
  }

  .partners .be-partner__cards .card {
    width: 100%;
  }

  .partners .be-partner__cta {
    width: 95%;
  }

  .partners .why-partner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .partners .why-partner .why-left {
    padding: 2rem;
    width: 100%;
    background: #00d27a;
    border-radius: 0rem 0rem 0rem 18.75rem;
    position: relative;
  }

  .partners .why-partner .why-left .info-wrapper {
    width: 100%;
    padding: 0;
  }

  .partners .why-partner .why-left::after {
    position: absolute;
    bottom: 1rem;
    left: 5%;
    color: white;
    height: 1rem;
    font-size: 3.5rem;
  }

  .partners .why-partner .why-right {
    padding: 2rem;
    width: 100%;
    background: #139bfe;
  }

  .partners .why-partner .why-right .itens {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partners .why-partner .why-right .itens .item {
    padding: 0;
    width: 95%;
    margin-top: 2rem;
  }

  .partners .why-partner .why-right .partner-btn {
    width: 90%;
  }

  .partners .how-partner {
    padding: 2rem 0 0 0;
    margin: 0;
    gap: 0;
    width: 100%;
  }

  .partners .how-partner .info-wrapper {
    text-align: start;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
  }

  .partners .how-partner .info-wrapper .title {
    width: 100%;
    margin: 0;
    text-align: start;
  }

  .partners .how-partner .info-wrapper .title p {
    width: 100%;
  }

  .partners .how-partner .info-wrapper .subtitle {
    width: 100%;
    margin: 0;
  }

  .partners .how-partner .info-wrapper .subtitle p {
    width: 100%;
  }

  .partners .how-partner .cards {
    flex-direction: column;
    gap: 0;
    padding: 0 2rem 2rem 2rem;
  }

  .partners .how-partner .cards .card {
    padding: 3rem 0 2rem 0;
  }

  .partners .how-partner .partner-btn {
    width: 90%;
    margin-bottom: 4rem;
  }

  .partners .partners-brands-carousel {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 18rem;
  }

  .partners .partners-brands-carousel::after {
    bottom: -90% !important;
  }

  .partners .partners-brands-carousel .container-1 {
    width: 100%;
    padding: 2rem;
  }

  .partners .partners-brands-carousel .container-2 {
    width: 100%;
  }

  .partners .enterprises {
    margin: 5rem 0 0 0;
    padding: 2.5rem 2rem;
    width: 100%;
  }

  .partners .enterprises .content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .partners .enterprises .content-wrapper .left {
    width: 100%;
  }

  .partners .enterprises .content-wrapper .left img {
    height: auto;
    width: 90%;
    margin: 0 0 2rem 0;
  }

  .partners .enterprises .content-wrapper .right {
    width: 100%;
  }

  .partners .enterprises .content-wrapper .right .cards {
    grid-template-columns: 1fr;
  }

  .partners .enterprises .content-wrapper .right .cards .card-1,
  .partners .enterprises .content-wrapper .right .cards .card-2,
  .partners .enterprises .content-wrapper .right .cards .card-3,
  .partners .enterprises .content-wrapper .right .cards .card-4 {
    width: 100%;
  }

  .partners .enterprises .content-wrapper .right .partner-btn {
    width: 90%;
  }

  .partners .partner-modal ::-webkit-scrollbar,
  .partners .enterprises-modal ::-webkit-scrollbar {
    width: 5px;
  }

  .partners .partner-modal ::-webkit-scrollbar-track,
  .partners .enterprises-modal ::-webkit-scrollbar-track {
    margin: 2rem 0;
    background-color: #f1f1f1;
  }

  .partners .partner-modal ::-webkit-scrollbar-thumb,
  .partners .enterprises-modal ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #555;
  }

  .partners .partner-modal .content,
  .partners .enterprises-modal .content {
    overflow: auto;
    gap: 2rem;
    padding: 4rem 2rem;
    width: 20rem;
  }

  .partners .partner-modal .content .title,
  .partners .enterprises-modal .content .title {
    padding-top: 7rem;
    width: 75%;
    font-size: 1.5rem;
  }

  .partners .partner-modal .content .subtitle,
  .partners .enterprises-modal .content .subtitle {
    width: 95%;
    font-size: 1rem;
  }

  .partners .partner-modal .content .form-wrapper,
  .partners .enterprises-modal .content .form-wrapper {
    display: flex;
    flex-direction: column;
  }

  .partners .partner-modal .content .form-wrapper .form,
  .partners .enterprises-modal .content .form-wrapper .form {
    display: flex;
    flex-direction: column;
  }

  .partners .partner-modal .content .form-wrapper .form input,
  .partners .partner-modal .content .form-wrapper .form textarea,
  .partners .partner-modal .content .form-wrapper .form button,
  .partners .enterprises-modal .content .form-wrapper .form input,
  .partners .enterprises-modal .content .form-wrapper .form textarea,
  .partners .enterprises-modal .content .form-wrapper .form button {
    width: 95% !important;
  }

  .partners .enterprises-modal .content .title {
    padding-top: 3rem;
  }
}

/* ============= COMPONENTES ============= */

.cta {
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 93.5%;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00D27A;
  max-width: 300px;
  transition: 0.3s;
  transform-style: preserve-3d;
  overflow: hidden;
}

.cta i {
  transition: 0.3s;
  outline: none !important;
}

.cta:hover {
  color: #00D27A !important;
  border: 2px solid #00D27A;
  background-color: transparent !important;
}

.cta:hover i {
  transform: translateX(300%);
}

.cta__loadmore {
  justify-content: center;
  max-width: 270px;
  padding: 30px;
  margin: auto;
}

.cta__lg {
  padding: 30px;
}

.cta__lightblue {
  background: #00D27A;
  color: #fff;
  transition: 0.3s;
}

.cta__lightblue:hover {
  border: 2px solid #00D27A;
  color: #fff !important;
}

.cta__transparent {
  background-color: transparent;
  padding: 15px 15px 15px 0;
  color: #00D27A;
  max-width: 200px;
  transition: 0.3s;
}

.cta__transparent i {
  color: #00D27A;
}

.cta__transparent:hover {
  border: 1px solid #00D27A;
  padding: 15px;
}

.cta__transparent:hover i {
  transform: translateX(300%);
}

.partner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23.5625rem;
  height: 3.625rem;
  border-radius: 0.625rem;
  background: #00d27a;
  color: #fff;
  text-align: center;
  font-family: proxima-nova;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 93.5%;
  letter-spacing: -0.03375rem;
  text-decoration: none;
  cursor: pointer;
}

.partner-btn:hover {
  background: #fff;
  color: #00d27a;
  border: 1px solid #00d27a;
}

.download {
  height: 360px;
  background-color: #f4f6fc;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}

.download .parallax {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: -1;
}

.download__inner {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: auto;
}

.download__inner__left .title {
  font-style: normal;
  font-weight: normal;
  font-size: 50px;
  line-height: 93.5%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
}

.download__inner__right .buttons {
  display: flex;
}

.download__inner__right .buttons .btn {
  padding: 10px;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .download {
    position: relative;
  }

  .download .parallax {
    transform: translateX(0) !important;
  }

  .download::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .download__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .download__inner__left {
    z-index: 2;
  }

  .download__inner__left .title {
    background: #00d27a;
    padding: 1rem;
    border-radius: 1rem;
    font-family: "proxima-nova";
    color: #ffffff;
  }

  .download__inner__right {
    z-index: 2;
  }
}

/* ============= FONTS ============= */

