@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: #2098d1;
  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,
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,
body {
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  text-decoration: none !important;
  color: initial !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-slide:focus {
  outline: none !important;
}

.iziModal-button-close {
  position: absolute;
  right: 2%;
  top: 2%;
}

html {
  font-family: "proxima nova", sans-serif;
  scroll-behavior: smooth;
}

/* ============= INCLUDES ============= */

#header {
  z-index: 99;
  transition: 0.3s all cubic-bezier(0.18, 0.89, 0.32, 1.28);
  top: 0;
  position: fixed;
  width: 100%;
  top: 0px;
}

#header.sticky {
  top: -100px;
}

#header.menuOpened {
  overflow-x: visible;
}

.navbar__mobile--up {
  display: none;
}

.navbar__desktop--up {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 101px;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fff;
}

.navbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}

.navbar__left--list {
  display: flex;
  align-items: center;
}

.navbar__left--item {
  margin-right: 30px;
}

.navbar__left--item:last-child {
  margin-right: 0;
}

.navbar__left--logo {
  max-width: 132px;
  max-height: 48px;
  margin-right: 50px;
}

.navbar__left--logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.navbar__left--link {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 13px;
  color: #363636;
  text-decoration: none;
}

.navbar__right {
  flex: 1;
}

.navbar__right--list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar__right--implementos a {
  font-weight: normal;
  font-size: 14px;
  line-height: 13px;
  color: #505050;
}

.navbar__right--dropdown {
  border: 2px solid #4a90e2;
  border-radius: 4px;
  position: relative;
}

.navbar__right--dropdown::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-45%);
  height: 14px;
  width: 10px;
  background: url(/assets/site/images/ico_pin.png);
}

.navbar__right--dropdown button {
  color: #4a90e2;
  padding: 0.375rem 1rem 0.375rem 2.7rem;
}

.navbar__right--dropdown .dropdown-toggle::after {
  vertical-align: 0.15em;
}

.navbar__right--dropdown .dropdown-item {
  color: #4a90e2;
}

.navbar__right--dropdown .dropdown-menu {
  min-width: 15rem;
}

.navbar__right--whats {
  min-width: 170px;
  position: relative;
}

.navbar__right--whats::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-45%);
  height: 14px;
  width: 14px;
  background: url(/assets/site/images/small_whats.png);
}

.navbar__right--item {
  margin-left: 9px;
}

.navbar__right--item:nth-child(2) {
  margin-left: 2vw;
}

.navbar__right--link {
  text-decoration: none;
}

.navbar__down--list {
  position: relative;
  display: flex;
  align-items: center;
  height: 71px;
  width: 100%;
  z-index: 1;
}

.navbar__down--list.scroll .navbar__down--item--logo {
  max-width: 240px;
}

.navbar__down--itemSeminovos {
  position: relative;
}

.navbar__down--itemSeminovos a {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.navbar__down--item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s;
}

.navbar__down--item .title {
  position: relative;
  pointer-events: none;
}

.navbar__down--item .title::after {
  transition: 0.5s;
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  right: -25px;
  top: 50%;
  transform: translateY(-30%);
  background: url(/assets/site/images/arrow_down_nav.png);
  background-repeat: no-repeat;
  pointer-events: none;
}

.navbar__down--item--link {
  width: 102px;
  height: 37px;
}

.navbar__down--item--link img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar__down--item .inner__menu {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
}

.navbar__down--item .inner__menu__list {
  overflow: hidden;
  display: flex;
  background: #fdfdfd;
  height: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.navbar__down--item .inner__menu__list--itemFinancial {
  position: relative;
}

.navbar__down--item .inner__menu__list--itemFinancial a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.navbar__down--item .inner__menu__list--item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid #e6e6e6;
  border-width: 0px 1px 1px 1px;
  transition: 0.3s;
  flex: 1;
}

.navbar__down--item .inner__menu__list--item.active {
  background: #fafafa;
  border: none !important;
}

.navbar__down--item .inner__menu__list--item .top {
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.navbar__down--item .inner__menu__list--item .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.navbar__down--item .inner__menu__list--item .desc {
  height: 77px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 14px;
  text-align: center;
  color: #363636;
  pointer-events: none;
}

.navbar__down--item .inner__menu__list--item .inner__submenu {
  overflow: hidden;
  height: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
  background: #fafafa;
  transition: 0.3s;
  opacity: 0;
}

.navbar__down--item .inner__menu__list--item .inner__submenu.active {
  max-height: 65vh;
  min-height: 65vh;
  height: auto;
  overflow-y: auto;
  padding: 65px 0;
  opacity: 1;
}

.navbar__down--item .inner__menu__list--item .inner__submenu::-webkit-scrollbar {
  width: 0px;
}

.navbar__down--item .inner__menu__list--item .inner__submenu::-webkit-scrollbar-track {
  background: transparent;
}

.navbar__down--item .inner__menu__list--item .inner__submenu::-webkit-scrollbar-thumb {
  background: transparent;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 90%;
  margin: auto;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item:hover,
.navbar__down--item .inner__menu__list--item .inner__submenu__list--item.active {
  background: #ffffff;
  border-bottom: 6px solid #4a90e2;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item:hover .button,
.navbar__down--item .inner__menu__list--item .inner__submenu__list--item.active .button {
  opacity: 1;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item img,
.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .desc {
  pointer-events: none;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .button {
  position: relative;
  border-color: #4a90e2;
  width: 233px;
  padding: 12px;
  color: #4a90e2 !important;
  margin-bottom: 20px;
  opacity: 0;
  transition: 0.3s;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-30%);
  height: 15px;
  width: 27px;
  background: url(/assets/site/images/arrow-right-blue.png);
  background-repeat: no-repeat;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  padding-bottom: 15vh;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container.active {
  display: block;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner {
  padding: 5rem 0;
  width: 80%;
  margin: auto;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--category {
  text-align: left;
  font-weight: bold;
  font-size: 35px;
  line-height: 32px;
  letter-spacing: -1px;
  color: #3e3e3e;
  padding-top: 71px;
  border-top: 4px solid #4a90e2;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 57px;
  margin-bottom: 100px;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item {
  position: relative;
  height: 261px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 5rem;
  margin-top: 23px;
  margin-right: 23px;
  transition: 0.3s;
  background: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item::after {
  transition: 0.5s;
  content: "";
  position: absolute;
  height: 10px;
  width: 20px;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background: url(/assets/site/images/arrow_up_blue.png);
  background-repeat: no-repeat;
  pointer-events: none;
  overflow: hidden;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item:hover {
  border-bottom: 6px solid #4a90e2;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item:hover:after {
  opacity: 1;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item .product-link {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item .product-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 14px;
  text-align: center;
  color: #363636;
  margin-top: 15px;
}

.navbar__down--item .inner__menu__list--item:last-child {
  border-right: 0px solid transparent;
}

.navbar__down--item .inner__menu__list--link {
  width: 100%;
  height: 100%;
}

.navbar__down--item.active {
  border-bottom: none !important;
}

.navbar__down--item.active::before {
  content: "";
  position: fixed;
  left: 0;
  top: 106px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.navbar__down--item.active span::after {
  transform: matrix(1, 0, 0, -1, 0, -6);
}

.navbar__down--item.active .inner__menu__list {
  height: 192px;
  opacity: 1;
}

.navbar__down--item:nth-child(1) {
  max-width: 0px;
  transition: 0.3s;
}

.navbar__down--item:nth-child(2) {
  border-bottom: 6px solid #029afd;
}

.navbar__down--item:nth-child(3) {
  border-bottom: 6px solid #00c8ff;
}

.navbar__down--item:nth-child(3) .inner__menu__list--item .top {
  width: 100%;
}

.navbar__down--item:nth-child(3) .inner__menu__list--item .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.navbar__down--item:nth-child(4) {
  border-bottom: 6px solid #64deff;
  min-width: 300px;
}

.navbar__down--item:nth-child(5) {
  border-bottom: 6px solid #dcf8ff;
}

@media screen and (max-width: 1023px) {
  #header.sticky {
    top: 0;
  }

  .navbar__desktop--up {
    display: none;
  }

  .navbar__mobile--up {
    height: 125px;
    display: block;
  }

  .navbar__mobile--wrapper {
    background-color: #fff;
  }

  .navbar__mobile--wrapper--list {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
  }

  .navbar__mobile--wrapper--logo {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar__mobile--wrapper--logo--inner {
    max-width: 100px;
    height: 50px;
  }

  .navbar__mobile--wrapper--logo--inner img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }

  .navbar__mobile--wrapper--menu {
    position: relative;
  }

  .navbar__mobile--wrapper--menu .navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .navbar__mobile--wrapper--menu .navTrigger i {
    background-color: #4a90e2;
    border-radius: 2px;
    content: "";
    display: block;
    width: 100%;
    height: 4px;
  }

  .navbar__mobile--wrapper--menu .navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }

  .navbar__mobile--wrapper--menu .navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }

  .navbar__mobile--wrapper--menu .navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
  }

  .navbar__mobile--wrapper--menu .navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
  }

  .navbar__mobile--wrapper--menu .navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
  }

  .navbar__mobile--wrapper--menu .navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
  }

@-webkit-keyframes inM {
    50% {
      -webkit-transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
      -webkit-transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(9px) rotate(0deg);
    }

    100% {
      transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(9px) rotate(0deg);
    }

    100% {
      transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-9px) rotate(0deg);
    }

    100% {
      transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
      -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-9px) rotate(0deg);
    }

    100% {
      transform: translateY(-9px) rotate(135deg);
    }
}

  .navbar__mobile--wrapper .menu__mobile__container {
    height: 0;
    z-index: 200;
    background: #fff;
    position: fixed;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.5s;
    top: 70px;
    /* width */
    /* Track */
    /* Handle */
  }

  .navbar__mobile--wrapper .menu__mobile__container.active {
    height: 100vh;
  }

  .navbar__mobile--wrapper .menu__mobile__container::-webkit-scrollbar {
    width: 5px;
  }

  .navbar__mobile--wrapper .menu__mobile__container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .navbar__mobile--wrapper .menu__mobile__container::-webkit-scrollbar-thumb {
    background: #888;
  }

  .navbar__mobile--wrapper .menu__mobile__container--list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }

  .navbar__mobile--wrapper .menu__mobile__container--item {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e6e6e6;
    width: 100%;
  }

  .navbar__mobile--wrapper .menu__mobile__container--link {
    font-weight: bold;
    line-height: 12px;
    text-align: center;
    color: #363636;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar__mobile--wrapper .menu__mobile__container--link:hover {
    color: #4a90e2 !important;
  }

  .navbar__mobile--wrapper .menu__mobile__container--linkImplementos {
    font-weight: normal;
    padding-top: 50px;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social {
    width: 90%;
    margin: 75px auto 0 auto;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--whats {
    margin-bottom: 5px;
    position: relative;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--whats::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    height: 27px;
    width: 27px;
    background: url(/assets/site/images/whats_big.png);
    background-repeat: no-repeat;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--whats a {
    display: block;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia {
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
    border-radius: 4px;
    width: 100%;
    margin-right: 5px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia .socialMediaLink {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    transition: 0.3s;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia .socialMediaLink:hover:hover,
  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia .socialMediaLink:hover:focus,
  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia .socialMediaLink:hover: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;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia .socialMediaLink img {
    transition: 0.3s;
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }

  .navbar__mobile--wrapper .menu__mobile__container--social--media .socialMedia:last-child {
    margin-right: 0px;
  }

  .navbar__mobile--wrapper--whats {
    height: 50px;
    width: 100%;
  }

  .navbar__mobile--wrapper--whats a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    position: relative;
  }

  .navbar__mobile--wrapper--whats a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    height: 27px;
    width: 27px;
    background: url(/assets/site/images/whats_big.png);
    background-repeat: no-repeat;
  }

  .navbar__down--item .title::after {
    opacity: 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item {
    padding: 2rem;
  }

  .navbar__down--item:nth-child(4) {
    min-width: auto;
  }
}

@media screen and (max-width: 767px) {
  .navbar__down--item .inner__menu__list {
    transition: 0.3s;
    flex-direction: column;
  }

  .navbar__down--item .inner__menu__list--item .top {
    height: 100px;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu {
    position: relative;
    top: 0;
    background: #fff;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list {
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    width: 100%;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item img {
    width: 130px;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item:hover,
  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item.active {
    background: #f2f2f2;
    border-bottom: none;
    box-shadow: none;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container {
    padding-bottom: 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner {
    width: 95%;
    text-align: center;
    padding: 3rem 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--category {
    padding-top: 42px;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid {
    margin-top: 20px;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu__list--item .product__container__inner--grid .item {
    margin-right: 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenu.active {
    max-height: unset !important;
    min-height: unset !important;
    overflow-y: visible !important;
    padding: 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas {
    background: #e5e5e5;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item img {
    width: 100px;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item .button {
    width: auto;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item .button::after {
    opacity: 0;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item:hover,
  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item.active {
    background: #ffffff;
    border-bottom: 6px solid #4a90e2;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item:hover .button,
  .navbar__down--item .inner__menu__list--item .inner__submenuPecas__list--item.active .button {
    opacity: 1;
  }

  .navbar__down--item.active .inner__menu__list {
    height: 76vh;
    overflow-y: auto;
    padding: 0;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }

  .navbar__down--item.active .inner__menu__list::-webkit-scrollbar {
    width: 5px;
  }

  .navbar__down--item.active .inner__menu__list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .navbar__down--item.active .inner__menu__list::-webkit-scrollbar-thumb {
    background: #888;
  }

  .navbar__down--item.active .inner__menu__list::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .navbar__down--item.active .inner__menu__list--item {
    height: auto;
  }
}

@media screen and (max-width: 411px) {
  .navbar__down--item {
    font-size: 13px;
    line-height: 12px;
  }

  .navbar__down--item.active::before {
    opacity: 0;
    display: none;
  }

  .navbar__down--item .inner__menu__list--item .top {
    height: 50px;
  }

  .navbar__down--item .inner__menu__list--item .desc {
    height: 45px;
  }

  .navbar__down--item:nth-child(3) .inner__menu__list--item .top {
    height: 50px;
    width: 35%;
    margin: auto;
  }

  .navbar__down--item:nth-child(3) .inner__menu__list--item .desc {
    height: 45px;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__inner {
  padding: 3rem 5rem;
  width: 100%;
}

.footer__inner__social--list {
  display: flex;
  align-items: center;
  height: 58px;
  width: 100%;
}

.footer__inner__social--list .socialWrapper {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.footer__inner__social--logo {
  max-width: 150px;
}

.footer__inner__social--logo img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__inner__social--item {
  width: 15vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 4.5px;
}

.footer__inner__social--link {
  height: 100%;
  width: 100%;
}

.footer__inner__social--social {
  border: 1px solid #dadada;
  border-radius: 4px;
}

.footer__inner__social--social a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__inner__social--whats {
  min-width: 18vw;
}

.footer__inner__social--whats a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.footer__inner__social--whats a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/whats_big.png);
  background-repeat: no-repeat;
}

.footer__inner__newsletter {
  margin: 30px auto;
  height: 100px;
  border-top: 1px solid rgba(225, 225, 225, 0.57);
  border-bottom: 1px solid rgba(225, 225, 225, 0.57);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__inner__newsletter--list {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer__inner__newsletter--item {
  width: 100%;
  margin-right: 6px;
}

.footer__inner__newsletter--title {
  font-weight: bold;
  font-size: 20px;
  line-height: 33px;
  color: #464646;
}

.footer__inner__newsletter--form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__inner__newsletter--form input {
  background: #ffffff;
  border: 2px solid #f1f1f1;
  box-sizing: border-box;
  border-radius: 4px;
  height: 58px;
  padding-left: 31px;
}

.footer__inner__newsletter--form input:first-child {
  width: 20vw;
  margin-right: 6px;
}

.footer__inner__newsletter--form input:last-child {
  width: 25vw;
}

.footer__inner__newsletter--form input:focus {
  outline: none;
}

.footer__inner__newsletter--signup a {
  height: 58px;
  position: relative;
}

.footer__inner__newsletter--signup a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.footer__inner__unitiesAdresses {
  border-bottom: 1px solid rgba(225, 225, 225, 0.57);
  margin-bottom: 30px;
  padding-bottom: 32px;
}

.footer__inner__unitiesAdresses--list {
  display: flex;
  align-items: stretch;
}

.footer__inner__unitiesAdresses--item {
  min-height: 160px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  margin-right: 7px;
  border-bottom: 5px solid #4a90e2;
}

.footer__inner__unitiesAdresses--item .up {
  padding: 21px 0 21px 25px;
  height: 80%;
}

.footer__inner__unitiesAdresses--item .up .city {
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  color: #4a90e2;
  margin-bottom: 11px;
}

.footer__inner__unitiesAdresses--item .up .address {
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  color: #9d9d9d;
}

.footer__inner__unitiesAdresses--item .down {
  border-top: 1px solid #e3e3e3;
  max-height: 40px;
  display: flex;
  align-items: center;
}

.footer__inner__unitiesAdresses--item .down .number {
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  color: #9d9d9d;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  padding-left: 14%;
  position: relative;
}

.footer__inner__unitiesAdresses--item .down .number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-20%);
  height: 12px;
  width: 12px;
  background: url(/assets/site/images/phone.png);
  background-repeat: no-repeat;
}

.footer__inner__navbar {
  margin: 30px auto;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 35px;
}

.footer__inner__navbar--list {
  display: flex;
  align-items: flex-start;
}

.footer__inner__navbar--item:nth-child(3) {
  flex: 2;
}

.footer__inner__navbar--item {
  flex: 1;
}

.footer__inner__navbar--item .navbar__item--list {
  display: flex;
  flex-direction: column;
  flex-flow: column wrap;
  max-height: 160px;
}

.footer__inner__navbar--item .navbar__item--link {
  font-weight: normal;
  font-size: 15px;
  line-height: 33px;
  color: #888888;
}

.footer__inner__navbar--link {
  font-weight: bold;
  font-size: 15px;
  line-height: 33px;
  color: #464646;
}

.footer__inner__last--list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__inner__last--item {
  width: 100%;
}

.footer__inner__last--item:first-child .logo__wrapper {
  max-width: 78.88px;
  max-height: 30.72px;
}

.footer__inner__last--item:first-child .logo__wrapper a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.footer__inner__last--item:nth-child(2) {
  font-weight: normal;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  color: #b6b6b6;
  min-width: 450px;
}

.footer__inner__last--item:last-child {
  text-align: right;
}

.footer__inner__last--item:last-child .a_deen {
  width: 40px;
  position: relative;
  z-index: 1;
  height: 15px;
  opacity: 0.4;
}

.footer__inner__last--item:last-child .a_deen svg {
  width: 40px;
  height: 15px;
}

.footer__inner__last--item:last-child .a_deen svg path {
  stroke-dasharray: 800;
  transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #9b9b9b;
}

.footer__inner__last--item:last-child .a_deen svg:hover path {
  -webkit-animation-name: deen;
          animation-name: deen;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footer__inner {
    padding: 3rem;
  }

  .footer__inner__social--list {
    height: auto;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .footer__inner__social--list .socialWrapper {
    order: 3;
    width: 100%;
  }

  .footer__inner__social--item {
    width: 100%;
    height: 35px;
    background: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
    border-radius: 4px;
  }

  .footer__inner__social--logo {
    margin-bottom: 40px;
    box-shadow: none;
    order: 1;
  }

  .footer__inner__social--whats {
    height: 40px;
    order: 2;
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }

  .footer__inner__unitiesAdresses--list {
    flex-direction: column;
  }

  .footer__inner__unitiesAdresses--item {
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    max-height: 50px;
    overflow: hidden;
    border-bottom: none;
    transition: 0.5s ease-in-out;
    min-height: auto !important;
  }

  .footer__inner__unitiesAdresses--item .up {
    padding: 15px 0 21px 25px;
  }

  .footer__inner__unitiesAdresses--item .down .number {
    padding-bottom: 10px;
    padding-left: 50px;
  }

  .footer__inner__unitiesAdresses--item .down .number::before {
    height: 25px;
    left: 25px;
  }

  .footer__inner__unitiesAdresses--item::after {
    transition: 0.5s ease-in-out;
    position: absolute;
    right: 5%;
    top: 40%;
    width: 10px;
    height: 15px;
    content: "";
    background: url(/assets/site/images/arrow_down_accordion.png) no-repeat;
  }

  .footer__inner__unitiesAdresses--item.active {
    transition: 0.5s ease-in-out;
    max-height: 999px;
    border-bottom: 5px solid #4a90e2;
  }

  .footer__inner__unitiesAdresses--item.active::after {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 10px;
    height: 15px;
    content: "";
    background: url(/assets/site/images/arrow_up_accordion.png) no-repeat;
  }

  .footer__inner__newsletter,
  .footer__inner__navbar {
    display: none;
  }

  .footer__inner__last--list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer__inner__last--item {
    width: auto;
    min-width: auto !important;
  }

  .footer__inner__last--item:not(:last-child) {
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 411px) {
  .footer__inner__social--social img {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.gm-style .gm-style-iw-c {
  width: 275px;
  border-top: 4px solid #4a90e2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.gm-style .gm-style-iw-c .gm-style-iw-d {
  font-family: "proxima-nova";
  font-size: 15px;
  line-height: 140.5%;
  color: #626262;
  text-align: left;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .bubble .content {
  text-align: center;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .bubble .content .box .name {
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 7px;
  color: #4a90e2;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .bubble .content .box .address {
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .bubble .content .box .phone {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gm-style .gm-style-iw-c .gm-style-iw-d .bubble .content .box .phone i {
  margin-right: 5px;
  font-size: 18px;
}

.unities__maps {
  display: flex;
  height: 700px;
  width: 100%;
}

.unities__maps__left {
  width: 624px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.unities__maps__left::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.unities__maps__left--inner {
  max-width: 280px;
  z-index: 1;
}

.unities__maps__left--title {
  font-weight: bold;
  font-size: 70px;
  line-height: 55px;
  letter-spacing: -4.375px;
  color: #ffffff;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.unities__maps__left--title::after {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  bottom: 0;
  border: 4px solid #4a90e2;
}

.unities__maps__left--subtitle {
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -1px;
  color: #d0d0d0;
  margin-bottom: 35px;
}

.unities__maps__left--dropdown .dropdown-toggle {
  border: 2px solid #ffffff;
  box-sizing: border-box;
  border-radius: 4px;
  width: 280px;
  height: 60px;
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  color: #ffffff;
  text-align: left;
}

.unities__maps__left--dropdown .dropdown-toggle::after {
  margin-left: 4.255em;
  vertical-align: 0.1em;
}

.unities__maps__left--dropdown .dropdown-menu {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid #ffffff;
}

.unities__maps__left--dropdown .dropdown-menu a {
  color: #fff;
}

.unities__maps__left--dropdown .dropdown-menu a:hover {
  background: transparent;
  color: #4a90e2 !important;
}

.unities__maps__right {
  flex: 1;
  min-width: 65%;
}

@media screen and (max-width: 768px) {
  .unities__maps {
    flex-direction: column;
  }

  .unities__maps__right,
  .unities__maps__left {
    width: 100%;
  }

  .unities__maps__left {
    padding: 50px 0;
  }

  .unities__maps__left--title {
    font-style: normal;
    font-weight: bold;
    font-size: 35px;
    line-height: 32px;
    letter-spacing: -1.4px;
    color: #ffffff;
    max-width: 80%;
  }

  .unities__maps__left--title::after {
    width: 30px;
    border: none;
    border-bottom: 4px solid #4a90e2;
  }

  .unities__maps__left--subtitle {
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.6px;
    color: #ffffff;
    max-width: 80%;
  }
}

/* ============= PAGES ============= */

#home {
  overflow: hidden;
}

.banner__inicial__container {
  width: 100%;
  height: 672px;
}

.banner__inicial__container .slick-dots {
  position: absolute;
  bottom: 93px;
  left: 15vw;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner__inicial__container .slick-dots li button {
  background-color: transparent;
}

.banner__inicial__container .slick-dots li button:before {
  border: 2px solid #ffffff;
  box-sizing: border-box;
  border-radius: 50%;
  height: 10px !important;
  width: 10px !important;
  content: "";
  z-index: 1;
  color: transparent;
  opacity: 1;
}

.banner__inicial__container .slick-dots li.slick-active button:before {
  border: solid 2px #4a90e2;
  background-color: #4a90e2;
}

.banner__inicial__inner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  height: 672px;
  width: 100%;
  position: relative;
}

.banner__inicial__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
  z-index: -1;
}

.banner__inicial__inner--inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  max-width: 900px;
  padding-left: 15vw;
  z-index: 1;
}

.banner__inicial__inner--title {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
  margin-bottom: 35px;
}

.banner__inicial__inner--subtitle {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 35px;
}

.banner__inicial__inner--cta {
  width: 250px;
  position: relative;
}

.banner__inicial__inner--cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.novos__container {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.novos__container::before {
  position: absolute;
  content: "";
  background-color: #363636;
  left: 0;
  top: 0;
  height: 482px;
  width: 100%;
  z-index: -1;
}

.novos__container__inner {
  padding: 8vw 0 0 15vw;
  width: 100%;
}

.novos__container__inner--title {
  font-weight: bold;
  font-size: 70px;
  line-height: 55px;
  letter-spacing: -4px;
  color: #ffffff;
}

.novos__container__inner--subtitle {
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  color: #4a90e2;
  margin-top: 30px;
  padding-bottom: 35px;
  position: relative;
}

.novos__container__inner--subtitle::after {
  position: absolute;
  width: 97px;
  border-bottom: 4px solid #4a90e2;
  left: 0;
  bottom: 0;
  content: "";
}

.novos__container__inner--descWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 5vw;
}

.novos__container__inner--description {
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -1px;
  color: #9b9b9b;
  margin-top: 30px;
  margin-bottom: 42px;
  max-width: 250px;
}

.novos__container__inner--arrow {
  background: #444444;
  border-radius: 4px;
  padding: 15px 20px;
  transition: 0.3s;
  cursor: pointer;
}

.novos__container__inner--arrow:hover {
  background: #4a90e2;
}

.novos__container__inner--arrowPrev {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.novos__container__inner--ctaWrapper {
  padding-bottom: 90px;
  position: relative;
  max-width: 250px;
}

.novos__container__inner--ctaWrapper:hover::after {
  width: 100% !important;
}

.novos__container__inner--ctaWrapper::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 0;
  transition: 0.3s;
  border-bottom: 4px solid #4a90e2;
}

.novos__container__inner--cta {
  max-width: 250px;
  position: relative;
}

.novos__container__inner--cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.novos__carousel {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100% !important;
}

.novos__carousel--item {
  height: 233px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  margin-right: 20px;
  margin-bottom: 40px;
}

.novos__carousel--imgWrapper {
  max-width: 262px;
  height: 92px;
  margin: 48px auto 36px auto;
}

.novos__carousel--imgWrapper a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.novos__carousel--imgWrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

.novos__carousel--name {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.72px;
  color: #363636;
}

.seminovos__container {
  background: #fafafa;
  padding-bottom: 120px;
}

.seminovos__container__inner {
  padding-top: 82px;
  padding-left: 15vw;
}

.seminovos__container__inner--title {
  font-weight: bold;
  font-size: 70px;
  line-height: 55px;
  letter-spacing: -4px;
  color: #505050;
  margin-bottom: 35px;
}

.seemore__container {
  background: #fafafa;
  position: relative;
  padding-bottom: 100px;
}

.seemore__container__title {
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.8px;
  color: #5a5a5a;
  position: relative;
  padding-top: 23px;
  width: 150px;
  margin: auto;
  margin-bottom: 10px;
}

.seemore__container__title::before {
  content: "";
  border-bottom: 4px solid #4a90e2;
  width: 60%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
}

.seemore__container__destaque {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 190px;
  line-height: 173px;
  letter-spacing: -13.68px;
  opacity: 0.11;
  margin: auto;
  width: 95vw;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
}

.seemore__container__carousel {
  width: 95%;
  max-width: 85%;
  margin: -10% auto 0 auto;
  padding-bottom: 30px;
}

.seemore__container__carousel .slick-track {
  padding: 7rem 0 5rem;
}

.seemore__container__carousel .slick-current {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
}

.seemore__container__carousel .slick-current .button {
  opacity: 1;
}

.seemore__container__carousel .slick-current .seemore__container__carousel__item--imgWrapper {
  z-index: 2;
}

.seemore__container__carousel__item {
  z-index: 2;
  transition: 0.3s;
  border: 4px;
}

.seemore__container__carousel__item--imgWrapper {
  height: 270px;
  background-color: #545454;
  position: relative;
  z-index: -1;
}

.seemore__container__carousel__item--imgWrapper img {
  border-radius: 4px 4px 0 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.seemore__container__carousel__item--imgWrapper .titleMobile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  letter-spacing: -0.64px;
  color: #ffffff;
  display: none;
}

.seemore__container__carousel__item--content {
  background-color: #4a90e2;
  padding: 4rem 2rem 2rem 2rem;
  height: 280px;
  border-radius: 0 0 4px 4px;
}

.seemore__container__carousel__item--title {
  font-weight: normal;
  font-size: 25px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -1px;
  color: #ffffff;
}

.seemore__container__carousel__item--description {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.72px;
  color: #ffffff;
  max-width: 80%;
  text-align: center;
  margin: 15px auto;
}

.seemore__container__carousel__item--cta {
  margin: 30px auto 0 auto;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  justify-content: center !important;
  align-items: center;
  max-width: 80%;
  height: 58px;
  opacity: 0;
  transition: 0.3s;
}

.seemore__container .slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  transform: translateX(-50%);
}

.seemore__container .slick-dots li button {
  background-color: transparent;
}

.seemore__container .slick-dots li button:before {
  border: 2px solid #bcbcbc;
  box-sizing: border-box;
  border-radius: 50%;
  height: 10px !important;
  width: 10px !important;
  content: "";
  z-index: 1;
  color: transparent;
  opacity: 1;
}

.seemore__container .slick-dots li.slick-active button:before {
  border: solid 2px #4a90e2;
  background-color: #4a90e2;
}

@media screen and (max-width: 991px) {
  .banner__inicial {
    height: 575px;
  }

  .banner__inicial__container .slick-dots {
    bottom: 150px;
    left: 10vw;
  }

  .banner__inicial__inner--inner {
    max-width: 80%;
    padding-left: 10vw;
  }

  .banner__inicial__inner--title {
    font-size: 50px;
    line-height: 50px;
  }

  .novos__container__inner {
    padding: 8vw 0 0 10vw;
  }

  .novos__container__inner--title {
    font-size: 50px;
    line-height: 50px;
  }

  .seminovos__container__inner {
    padding-left: 10vw;
  }

  .seminovos__container__inner--title {
    font-size: 50px;
    line-height: 50px;
  }

  .seminovos__container__find {
    max-width: 95% !important;
  }

  .seminovos__container__find__inner--form {
    flex-direction: column;
  }

  .seminovos__container__find__inner--form .form__seminovo {
    flex-direction: column;
    width: 100%;
  }

  .seminovos__container__find__inner--form .form__seminovo select {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0px !important;
  }

  .seminovos__container__find__inner--form .button__blue {
    min-width: 100% !important;
    margin-top: 5px;
  }

  .seemore__container .slick-dots {
    bottom: -15px;
  }

  .seemore__container__destaque,
  .seemore__container__title {
    display: none;
  }

  .seemore__container__carousel .slick-current .seemore__container__carousel__item--imgWrapper::after {
    opacity: 0;
  }

  .seemore__container__carousel__item--imgWrapper {
    height: 110px;
    position: relative;
  }

  .seemore__container__carousel__item--imgWrapper::after {
    transition: 0.3s;
    background: rgba(74, 144, 226, 0.9);
    background-blend-mode: color;
    mix-blend-mode: normal;
    opacity: 0.37;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
  }

  .seemore__container__carousel__item--imgWrapper .titleMobile {
    display: flex !important;
    z-index: 1;
  }

  .seemore__container__carousel__item--imgWrapper a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .seemore__container__carousel__item--content {
    display: none;
  }
}

@media screen and (max-width: 411px) {
  .banner__inicial__container {
    height: 574px;
  }

  .banner__inicial__container .slick-dots {
    bottom: 55px;
  }

  .banner__inicial__inner--title {
    font-size: 35px;
    line-height: 32px;
    margin-bottom: 8px;
  }

  .banner__inicial__inner--subtitle {
    font-size: 15px;
    line-height: 14px;
  }

  .novos__container__inner--title {
    font-size: 35px;
    line-height: 32px;
    margin-bottom: 15px;
    max-width: 70%;
  }

  .novos__container__inner--subtitle {
    font-size: 13px;
    line-height: 12px;
  }

  .novos__container__inner--arrows {
    position: absolute;
    bottom: 135px;
  }

  .novos__container__inner--ctaWrapper {
    padding-bottom: 55px;
    margin-top: 75px;
  }

  .seminovos__container__inner {
    padding-top: 55px !important;
    padding-left: 0;
  }

  .seminovos__container__inner--title {
    font-size: 35px;
    line-height: 32px;
    max-width: 80%;
    margin: 0 auto 35px auto;
  }

  .seminovos__container__find {
    max-width: 100% !important;
    margin: auto;
  }

  .seminovos__container__find__inner--title {
    max-width: 80%;
  }

  .seminovos__carousel__item--imgWrapper {
    width: 110px !important;
  }

  .seminovos__carousel__item--imgWrapper img {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .seminovos__carousel__item--name {
    font-size: 10px !important;
    line-height: 12px !important;
    max-width: 80px !important;
    text-align: center !important;
    margin: auto !important;
  }
}

#about .about__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
}

#about .about__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

#about .about__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

#about .about__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

#about .about__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 15px;
}

#about .about__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
}

#about .aboutTabs__container {
  max-width: 80%;
  margin: auto;
}

#about .aboutTabs__container__header {
  height: 125px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

#about .aboutTabs__container__header__list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .aboutTabs__container__header__list--item:first-child {
  margin-right: 130px;
}

#about .aboutTabs__container__header__list--item {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.88px;
  color: #8f8f8f;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#about .aboutTabs__container__header__list--item.current {
  color: #4a90e2;
  border-bottom: 2px solid #4a90e2;
}

#about .aboutTabs__container__content {
  display: none;
}

#about .aboutTabs__container__content.current {
  display: block;
}

#about .aboutTabs__container__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 5rem;
}

#about .aboutTabs__container__text--left {
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
  max-width: 240px;
  margin-right: 65px;
  position: relative;
  padding-bottom: 34px;
}

#about .aboutTabs__container__text--left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  border-bottom: 4px solid #4a90e2;
}

#about .aboutTabs__container__text--left strong {
  margin-top: 6px;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
}

#about .aboutTabs__container__text--rightWrapper {
  max-width: 60%;
}

#about .aboutTabs__container__text--right {
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
}

#about .aboutTabs__container__text--cta {
  margin-top: 50px;
  max-width: 375px;
  height: 62px;
  position: relative;
}

#about .aboutTabs__container__text--cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  padding-left: 5%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

#about .aboutTabs__container__video {
  width: 100%;
  height: 648px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#about .aboutTabs__container__video::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  height: 50px;
  border-right: 2px solid #4a90e2;
}

#about .aboutTabs__container__video--modal {
  max-width: 1200px !important;
  width: 90%;
}

#about .aboutTabs__container__video--link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#about .aboutTabs__container__video--link i {
  font-size: 85px;
  color: #fff;
  font-weight: 300;
}

#about .timeline__container {
  width: 100%;
  padding-top: 100px;
  margin-top: -100px;
  background-color: #fafafa;
}

#about .timeline__container__inner {
  max-width: 90%;
  margin: auto;
}

#about .timeline__container__inner--title {
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -2.4px;
  color: #888888;
  margin: 110px auto 70px auto;
}

#about .timeline__container__inner--carousel {
  width: 100%;
  height: 233px;
}

#about .timeline__container__inner--carousel .slick-list {
  padding: 0 15% 0 2%;
}

#about .timeline__container__inner--carousel .slick-track {
  padding: 50px 0;
}

#about .timeline__container__inner--carousel--item {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  height: 100%;
  height: 230px;
  margin-right: 64px !important;
  position: relative;
}

#about .timeline__container__inner--carousel--item::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(/assets/site/images/marcador.png);
}

#about .timeline__container__inner--carousel--item::after {
  content: "";
  position: absolute;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  opacity: 0.15;
  border-bottom: 2px solid #000000;
}

#about .timeline__container__inner--carousel--item .inner {
  padding: 3rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 230px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

#about .timeline__container__inner--carousel--item .inner::-webkit-scrollbar {
  width: 2px;
  border-radius: 2px;
}

#about .timeline__container__inner--carousel--item .inner::-webkit-scrollbar-track {
  background: transparent;
}

#about .timeline__container__inner--carousel--item .inner::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

#about .timeline__container__inner--carousel--item .inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#about .timeline__container__inner--carousel--item .inner .year {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #3e3e3e;
  position: relative;
}

#about .timeline__container__inner--carousel--item .inner .year::after {
  content: "";
  margin-left: 20px;
  width: 41px;
  border-bottom: 2px solid #4a90e2;
  display: inline-flex;
  vertical-align: middle;
}

#about .timeline__container__inner--carousel--item .inner .text {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #9d9d9d;
  max-width: 80%;
  margin-top: 35px;
}

#about .timeline__container__inner__arrows {
  margin: 70px auto 0 auto;
  padding-bottom: 90px;
}

#about .timeline__container__inner__imgWrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .timeline__container__inner__imgWrapper::before {
  content: "";
  display: inline-flex;
  width: 45%;
  opacity: 0.15;
  border: 1px solid #000000;
  margin-right: 44px;
}

#about .timeline__container__inner__imgWrapper::after {
  content: "";
  display: inline-flex;
  width: 45%;
  opacity: 0.15;
  border: 1px solid #000000;
  margin-left: 44px;
}

#about .timeline__container__inner__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e4e4e4;
  border-radius: 4px;
  padding: 20px 30px;
  transition: 0.3s;
  cursor: pointer;
}

#about .timeline__container__inner__arrow.active {
  background: #4a90e2;
}

#about .timeline__container__inner__arrow:first-child {
  margin-right: 4px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: relative;
}

#about .company__container {
  width: 100%;
  height: 643px;
  position: relative;
}

#about .company__container__carousel {
  height: 643px;
  width: 100%;
}

#about .company__container__carousel--item {
  height: 643px;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#about .company__container__carousel--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.46%, rgba(0, 0, 0, 0.6) 100%);
}

#about .company__container__carousel--item .content {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 75px;
  max-width: 90%;
  margin: auto;
  flex-direction: column;
}

#about .company__container__carousel--item .content .imgAltTitle,
#about .company__container__carousel--item .content .imgAltSubtitle {
  font-size: 15px;
  line-height: 159.5%;
  text-align: center;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

#about .company__container__carousel--item .content .imgAltTitle {
  font-weight: bold;
}

#about .company__container__arrows {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#about .company__container__imgWrapper {
  width: 95%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about .company__container__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  background-color: #4a90e2;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

#about .company__container__arrow:hover {
  color: #fff !important;
  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;
}

#about .company__container__arrow:hover:hover,
#about .company__container__arrow:hover:focus,
#about .company__container__arrow:hover:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

#about .company__container__arrow:first-child {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media screen and (max-width: 991px) {
  .aboutTabs__container__text {
    flex-direction: column;
    padding: 5rem 0rem !important;
  }

  .aboutTabs__container__text--left {
    max-width: 100% !important;
    margin-right: 0 !important;
  }

  .aboutTabs__container__text--rightWrapper {
    max-width: 100% !important;
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 767px) {
  #about .about__banner__container {
    height: 445px;
  }

  #about .about__banner__container::before {
    opacity: 0;
  }

  #about .about__banner__container__inner--title {
    font-size: 22px;
    line-height: 24px;
  }

  #about .about__banner__container__inner--destaque {
    font-size: 40px;
    line-height: 36px;
    max-width: 75%;
  }

  #about .aboutTabs__container__header {
    height: 90px;
  }

  #about .aboutTabs__container__header__list--item {
    font-size: 16px;
    line-height: 18px;
  }

  #about .aboutTabs__container__header__list--item:first-child {
    margin-right: 45px;
  }

  #about .aboutTabs__container__text--right {
    font-size: 16px;
    line-height: 163.4%;
  }

  #about .aboutTabs__container__video {
    height: 190px;
  }

  #about .aboutTabs__container__video--link i {
    font-size: 70px;
  }

  #about .timeline__container__inner--carousel--item {
    margin-right: 30px !important;
  }

  #about .company__container {
    height: 379px;
  }

  #about .company__container__carousel--item {
    height: 379px;
  }
}

#unidades {
  overflow-x: hidden;
}

#unidades .unities__maps__left {
  flex: 1;
  width: calc(100% / 2) !important;
  min-width: none !important;
}

#unidades .unities__maps__right {
  min-width: auto !important;
}

.unity__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
}

.unity__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.unity__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.unity__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.unity__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 15px;
}

.unity__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
}

.unity__banner__container__inner--show {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  opacity: 0.7;
  margin-top: 38px;
}

.unity__banner__container__inner--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.unity__banner__container__inner--list--item {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  padding-bottom: 16px;
  margin-top: 38px;
  cursor: pointer;
}

.unity__banner__container__inner--list--item.current {
  font-weight: bold;
  border-bottom: 2px solid #4a90e2;
}

.unity__banner__container__inner--list--item:not(:last-child) {
  margin-right: 40px;
}

.unity__main__container--list li:nth-of-type(even) {
  display: flex;
  flex-direction: row-reverse;
}

.unity__main__container--list li:nth-of-type(odd) {
  display: flex;
  flex-direction: row;
}

.unity__main__container--inner {
  display: flex;
  height: 474px;
  width: 100%;
}

.unity__main__container--inner--left {
  height: 100%;
  flex: 1;
}

.unity__main__container--inner--left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.unity__main__container--inner--right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unity__main__container--inner--right--inner {
  padding-left: 3rem;
}

.unity__main__container--inner--right--inner .unity {
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
  margin-bottom: 6px;
}

.unity__main__container--inner--right--inner .city {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 42px;
}

.unity__main__container--inner--right--inner .city::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  border-bottom: 4px solid #4a90e2;
}

.unity__main__container--inner--right--inner .address {
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  max-width: 80%;
}

.unity__main__container--inner--right--inner .first {
  margin-top: 27px;
}

.unity__main__container--inner--right--inner .second {
  margin-top: 10px;
}

.unity__main__container--inner--right--inner .cta__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.unity__main__container--inner--right--inner .cta__list .button {
  margin-right: 10px;
  min-width: 240px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
}

.unity__main__container--inner--right--inner .cta__list .button i {
  color: #4a90e2;
  font-size: 18px;
}

.unity__main__container--inner--right--inner .cta__list .button .icon {
  margin-right: 15px;
}

.unity__main__container--inner--right--inner .cta__list .whats {
  border: 2px solid #4ae26a !important;
  color: #4ae26a !important;
}

@media screen and (max-width: 1024px) {
  .unity__main__container--inner--right--inner {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .unity__banner__container__inner--destaque {
    font-size: 65px;
    line-height: 57px;
  }

  .unity__banner__container__inner--list--item:not(:last-child) {
    margin-right: 20px;
    font-size: 20px;
  }

  .unity__main__container li:nth-of-type(even) {
    flex-direction: column !important;
  }

  .unity__main__container--inner {
    flex-direction: column !important;
    height: auto;
  }

  .unity__main__container--inner--right--inner {
    padding: 2rem;
    width: 90%;
  }

  .unity__main__container--inner--left {
    height: 350px;
  }

  #unidades .unities__maps__left {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .unity__banner__container::before {
    opacity: 0;
  }

  .unity__banner__container__inner--list {
    flex-direction: column;
    align-items: flex-start;
  }

  .unity__banner__container__inner--list--item {
    margin-right: 0;
    margin-top: 15px;
    font-size: 18px;
  }

  .unity__banner__container__inner--destaque {
    font-size: 40px;
    line-height: 36px;
  }

  .unity__main__container--inner--left {
    height: auto;
  }

  .unity__main__container--inner--right--inner .city {
    margin-bottom: 20px;
  }

  .unity__main__container--inner--right--inner .address {
    font-size: 16px;
    line-height: 163.4%;
    max-width: 100%;
  }

  .unity__main__container--inner--right--inner .second {
    margin-top: 0;
  }

  .unity__main__container--inner--right--inner .cta__list {
    flex-direction: column;
  }

  .unity__main__container--inner--right--inner .cta__list a {
    padding: 14px 30px;
    margin-right: 0;
    margin: 5px 0;
    min-width: 100% !important;
  }
}

@media screen and (max-width: 411px) {
  .unity__banner__container__inner--destaque {
    font-size: 36px;
    line-height: 20px;
  }
}

.product__banner__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product__banner__container__inner {
  width: 100%;
  padding: 5rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product__banner__container__inner--left .title {
  font-weight: bold;
  font-size: 70px;
  line-height: 81.9%;
  letter-spacing: -3px;
  color: #363636;
  max-width: 330px;
  margin-bottom: 45px;
}

.product__banner__container__inner--left .button {
  height: 58px;
  position: relative;
}

.product__banner__container__inner--left .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.product__banner__container__inner--right {
  max-height: 275px;
  max-width: 600px;
}

.product__banner__container__inner--right img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product__info__container {
  width: 100%;
  background: #343434;
}

.product__info__container__inner {
  width: 100%;
  padding: 8rem 10rem;
}

.product__info__container__inner--top {
  display: flex;
  align-items: flex-start;
}

.product__info__container__inner--top .title {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #ffffff;
  max-width: 272px;
  position: relative;
  padding-bottom: 36px;
  margin-right: 50px;
}

.product__info__container__inner--top .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.product__info__container__inner--top .textWrapper .desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #ffffff;
  max-width: 80%;
  margin-bottom: 57px;
}

.product__info__container__inner--top .textWrapper .button {
  color: #fff !important;
  width: 280px !important;
  position: relative;
  padding: 20px 70px 20px 30px;
  height: 58px;
}

.product__info__container__inner--top .textWrapper .button::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
  transform: rotate(90deg) translateY(-50%);
}

.product__info__container__inner--bottom {
  margin-top: 130px;
}

.product__info__container__inner--bottom table thead tr th {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 12px;
  color: #4a90e2;
  padding: 0 25px;
  text-align: center;
}

.product__info__container__inner--bottom table thead tr th:first-child {
  text-align: left;
  padding-left: 0;
}

.product__info__container__inner--bottom table tbody tr td {
  font-weight: bold;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: -1px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  min-width: 250px;
  text-align: center;
}

.product__info__container__inner--bottom table tbody tr td:first-child {
  text-align: left;
  padding-left: 0;
}

.product__photos__container {
  width: 100%;
}

.product__photos__container__inner {
  width: 100%;
  padding: 5rem 10rem;
  display: grid;
  grid-gap: 23px;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
}

.product__photos__container__inner--item .photoWrapper img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__photos__container__inner--item .desc {
  font-weight: normal;
  font-size: 15px;
  line-height: 14px;
  color: #363636;
  margin-top: 15px;
  text-align: left;
}

.product__photos__container--arrows {
  display: none;
}

.product__contact__container {
  width: 100%;
}

.product__contact__container__inner {
  width: 100%;
  padding-left: 10rem;
  display: flex;
  align-items: center;
}

.product__contact__container__inner--left {
  flex: 1;
}

.product__contact__container__inner--left .titleWrapper {
  position: relative;
  max-width: 375px;
  padding-bottom: 36px;
}

.product__contact__container__inner--left .titleWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.product__contact__container__inner--left .titleWrapper .title {
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
}

.product__contact__container__inner--left .titleWrapper .title strong {
  font-weight: bold;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  margin-top: 6px;
}

.product__contact__container__inner--left .imgWrapper {
  width: 375px;
  height: 156px;
}

.product__contact__container__inner--left .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: 63px;
}

.product__contact__container__inner--right {
  flex: 1;
  background: #f3f3f3;
}

.product__contact__container__inner--right form {
  max-width: 403px;
  margin: auto;
  padding: 7rem 0;
}

.product__contact__container__inner--right form input,
.product__contact__container__inner--right form select {
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  height: 57px;
  margin-top: 14px;
  width: 100%;
  padding-left: 20px;
}

.product__contact__container__inner--right form input::-webkit-input-placeholder,
.product__contact__container__inner--right form select::-webkit-input-placeholder {
  opacity: 0.7;
}

.product__contact__container__inner--right form input.valid,
.product__contact__container__inner--right form select.valid {
  border: 1px solid #4a90e2;
}

.product__contact__container__inner--right form input.error,
.product__contact__container__inner--right form select.error {
  border: 1px solid red;
}

.product__contact__container__inner--right form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(/assets/site/images/arrow_down_grey.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.product__contact__container__inner--right form .inputGroup {
  width: 100%;
}

.product__contact__container__inner--right form .inputWrapper {
  display: flex;
}

.product__contact__container__inner--right form .inputWrapper .inputGroup:first-child,
.product__contact__container__inner--right form .inputWrapper select:first-child {
  margin-right: 14px;
}

.product__contact__container__inner--right form .inputWrapper #estados {
  max-width: 105px;
}

.product__contact__container__inner--right form .checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.product__contact__container__inner--right form .checkbox-group input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.product__contact__container__inner--right form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.product__contact__container__inner--right form .checkbox-group .custom-checkbox {
  max-width: 15px;
  width: 100%;
  margin-right: 20px;
  height: 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.product__contact__container__inner--right form .checkbox-group .custom-checkbox.error {
  border: 1px solid red;
}

.product__contact__container__inner--right form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4a90e2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.product__contact__container__inner--right form .checkbox-group .privacy-message {
  font-size: 14px;
  line-height: 105%;
  letter-spacing: -0.72px;
  color: #afafaf;
}

.product__contact__container__inner--right form .checkbox-group .privacy-message a {
  color: #afafaf;
  font-weight: bold;
}

.product__contact__container__inner--right form .button {
  margin-top: 26px;
  max-width: 250px;
  position: relative;
}

.product__contact__container__inner--right form .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .product__banner__container__inner {
    padding: 5rem;
  }

  .product__info__container__inner {
    padding: 5rem;
  }

  .product__info__container__inner--top .title {
    max-width: 100%;
  }

  .product__photos__container__inner {
    padding: 5rem;
  }

  .product__contact__container__inner {
    padding-left: 5rem;
  }
}

@media screen and (max-width: 991px) {
  .product__banner__container__inner {
    flex-direction: column;
    padding: 4rem 0 5rem;
    align-items: flex-start;
    width: 90%;
  }

  .product__banner__container__inner--right {
    margin-top: 25px;
  }

  .product__info__container__inner {
    width: 90%;
    padding: 5rem 0rem;
    margin: auto;
  }

  .product__info__container__inner--top .textWrapper .desc {
    max-width: 100%;
  }

  .product__info__container__inner--bottom {
    display: none;
  }

  .product__photos__container__inner {
    padding: 2rem 0;
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  }

  .product__contact__container__inner {
    padding: 0;
    width: 100%;
    margin: auto;
    flex-direction: column;
  }

  .product__contact__container__inner--left {
    padding: 2rem;
  }

  .product__contact__container__inner--left .imgWrapper {
    width: 90%;
    height: auto;
    margin-bottom: 35px;
  }

  .product__contact__container__inner--right {
    width: 100%;
  }

  .product__contact__container__inner--right form {
    padding: 3rem 0;
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .product__banner__container__inner--left .title {
    font-size: 40px;
    line-height: 81.9%;
    max-width: 65%;
  }

  .product__info__container__inner--top {
    flex-direction: column;
  }

  .product__info__container__inner--top .textWrapper .desc {
    margin-top: 20px;
  }

  .product__photos__container {
    position: relative;
  }

  .product__photos__container__inner--item .desc {
    text-align: center;
  }

  .product__photos__container--arrows {
    display: flex;
    position: absolute;
    top: 45%;
    left: 5%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 100%;
  }

  .product__photos__container--arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 20px;
    background-color: #4a90e2;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .product__photos__container--arrow:hover {
    color: #fff !important;
    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;
  }

  .product__photos__container--arrow:hover:hover,
  .product__photos__container--arrow:hover:focus,
  .product__photos__container--arrow:hover:active {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
  }

  .product__photos__container--arrow:first-child {
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
}

#service {
  overflow-x: hidden;
}

.service__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
}

.service__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.service__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.service__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.service__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 13px;
}

.service__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
  max-width: 800px;
  margin-bottom: 36px;
  width: 95%;
}

.service__banner__container__inner .button {
  max-width: 295px;
  position: relative;
}

.service__banner__container__inner .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.service__desc__container {
  width: 100%;
  background-color: #fff;
}

.service__desc__container__inner {
  display: flex;
  padding: 8rem 0 8rem 12vw;
  justify-content: flex-start;
  max-width: 80%;
  margin-right: auto;
}

.service__desc__container__inner--left {
  margin-right: 60px;
}

.service__desc__container__inner--left .title {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  position: relative;
  padding-bottom: 47px;
  max-width: 272px;
}

.service__desc__container__inner--left .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.service__desc__container__inner--right {
  flex: 1;
}

.service__desc__container__inner--right .desc {
  margin-right: auto;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  margin-bottom: 60px;
}

.service__desc__container__inner--right .desc p {
  margin-bottom: 1rem;
}

.service__desc__container__inner--right .button {
  max-width: 295px;
  position: relative;
}

.service__desc__container__inner--right .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.service__container {
  width: 100%;
  height: 643px;
  position: relative;
}

.service__container__carousel {
  height: 643px;
  width: 100%;
}

.service__container__carousel--item {
  height: 643px;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.service__container__carousel--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.46%, rgba(0, 0, 0, 0.6) 100%);
}

.service__container__carousel--item .content {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 75px;
  max-width: 90%;
  margin: auto;
  flex-direction: column;
}

.service__container__carousel--item .content .imgAltTitle,
.service__container__carousel--item .content .imgAltSubtitle {
  font-size: 15px;
  line-height: 159.5%;
  text-align: center;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.service__container__carousel--item .content .imgAltTitle {
  font-weight: bold;
}

.service__container__arrows {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.service__container__imgWrapper {
  width: 95%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service__container__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  background-color: #4a90e2;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.service__container__arrow:hover {
  color: #fff !important;
  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;
}

.service__container__arrow:hover:hover,
.service__container__arrow:hover:focus,
.service__container__arrow:hover:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.service__container__arrow:first-child {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.service__contact__container {
  position: relative;
  width: 100%;
}

.service__contact__container__inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.service__contact__container__inner--left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.service__contact__container__inner--left .titleWrapper {
  position: relative;
  max-width: 240px;
  padding-bottom: 36px;
  margin-left: 10rem;
}

.service__contact__container__inner--left .titleWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.service__contact__container__inner--left .titleWrapper .title {
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
}

.service__contact__container__inner--left .titleWrapper .title strong {
  font-weight: bold;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  margin-top: 6px;
}

.service__contact__container__inner--left .message {
  margin-top: 50px;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  margin-left: 10rem;
  max-width: 275px;
}

.service__contact__container__inner--left .imgWrapper {
  width: 375px;
}

.service__contact__container__inner--left .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.service__contact__container__inner--left .imgWrapperDestaque {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 375px;
  max-height: 400px;
}

.service__contact__container__inner--left .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: 63px;
}

.service__contact__container__inner--right {
  flex: 1;
  background: #f3f3f3;
}

.service__contact__container__inner--right form {
  max-width: 403px;
  margin: auto;
  padding: 7rem 0;
}

.service__contact__container__inner--right form input,
.service__contact__container__inner--right form textarea,
.service__contact__container__inner--right form select {
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  height: 57px;
  margin-top: 14px;
  width: 100%;
  padding: 0 20px;
}

.service__contact__container__inner--right form input::-webkit-input-placeholder,
.service__contact__container__inner--right form textarea::-webkit-input-placeholder,
.service__contact__container__inner--right form select::-webkit-input-placeholder {
  opacity: 0.7;
  padding: 1.5rem 0;
}

.service__contact__container__inner--right form input.valid,
.service__contact__container__inner--right form textarea.valid,
.service__contact__container__inner--right form select.valid {
  border: 1px solid #4a90e2;
}

.service__contact__container__inner--right form input.error,
.service__contact__container__inner--right form textarea.error,
.service__contact__container__inner--right form select.error {
  border: 1px solid red;
}

.service__contact__container__inner--right form select {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/assets/site/images/arrow_down_grey.png), #ffffff;
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.service__contact__container__inner--right form textarea {
  height: 103px;
  padding-top: 15px;
}

.service__contact__container__inner--right form .inputWrapper {
  display: flex;
}

.service__contact__container__inner--right form .inputWrapper input:first-child {
  margin-right: 14px;
}

.service__contact__container__inner--right form .inputWrapper--city .uf {
  max-width: 105px;
}

.service__contact__container__inner--right form .checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.service__contact__container__inner--right form .checkbox-group input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.service__contact__container__inner--right form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.service__contact__container__inner--right form .checkbox-group .custom-checkbox {
  max-width: 15px;
  width: 100%;
  margin-right: 20px;
  height: 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.service__contact__container__inner--right form .checkbox-group .custom-checkbox.error {
  border: 1px solid red;
}

.service__contact__container__inner--right form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4a90e2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.service__contact__container__inner--right form .checkbox-group .privacy-message {
  font-size: 14px;
  line-height: 105%;
  letter-spacing: -0.72px;
  color: #afafaf;
}

.service__contact__container__inner--right form .checkbox-group .privacy-message a {
  color: #afafaf;
  font-weight: bold;
}

.service__contact__container__inner--right form .button {
  margin-top: 26px;
  max-width: 250px;
  position: relative;
}

.service__contact__container__inner--right form .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .service__banner__container::before {
    left: 5vw;
  }

  .service__banner__container__inner {
    padding-left: 8vw;
  }

  .service__desc__container__inner {
    padding: 4rem 0 4rem 5vw;
  }

  .service__container {
    height: 500px;
  }

  .service__container__carousel {
    height: 500px;
  }

  .service__container__carousel--item {
    height: 500px;
  }

  .service__contact__container__inner--left .title,
  .service__contact__container__inner--left .message {
    margin-left: 3vw;
  }
}

@media screen and (max-width: 991px) {
  .service__banner__container__inner--destaque {
    font-size: 65px;
    line-height: 65px;
  }

  .service__desc__container__inner {
    flex-direction: column;
  }

  .service__desc__container__inner--left .title {
    max-width: 100%;
  }

  .service__desc__container__inner--right {
    margin-top: 2rem;
  }

  .service__contact__container__inner {
    flex-direction: column;
  }

  .service__contact__container__inner--left {
    width: 100%;
    flex-direction: column;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .service__contact__container__inner--left .title {
    margin-left: 5vw;
  }

  .service__contact__container__inner--left .message {
    margin-left: 5vw;
  }

  .service__contact__container__inner--left .imgWrapper {
    margin-top: 2rem;
  }

  .service__contact__container__inner--left .imgWrapperDestaque {
    top: 25%;
    max-width: 300px;
    max-height: 300px;
  }

  .service__contact__container__inner--right {
    width: 100%;
  }

  .service__contact__container__inner--right form {
    max-width: 90%;
    padding: 3rem 0;
  }
}

@media screen and (max-width: 411px) {
  .service__banner__container {
    background-attachment: scroll !important;
    background-position: center center !important;
    height: 452px;
  }

  .service__banner__container::before {
    opacity: 0;
  }

  .service__banner__container__inner--destaque {
    font-size: 40px;
    line-height: 36px;
  }

  .service__desc__container__inner {
    max-width: 95%;
  }

  .service__desc__container__inner--left {
    margin-right: 0;
  }

  .service__container {
    height: 379px;
  }

  .service__container__carousel {
    height: 379px;
  }

  .service__container__carousel--item {
    background-position: center center !important;
    height: 379px;
  }

  .service__container__carousel--item .content {
    padding-bottom: 25px;
  }

  .service__contact__container {
    overflow: hidden;
  }

  .service__contact__container__inner--left .imgWrapperDestaque {
    top: 25%;
    left: unset;
    right: -37%;
    max-width: 230px;
    max-height: 230px;
  }

  .service__contact__container__inner--left .titleWrapper {
    margin-left: 2rem;
  }
}

#piece {
  overflow-x: hidden;
}

#piece .unities__maps__left {
  flex: 1;
}

.piece__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
}

.piece__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.piece__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.piece__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.piece__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 13px;
}

.piece__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
  max-width: 70%;
  margin-bottom: 36px;
}

.piece__banner__container__inner .button {
  max-width: 295px;
  position: relative;
}

.piece__banner__container__inner .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.piece__desc__container {
  width: 100%;
  background-color: #fff;
  padding-top: 5rem;
}

.piece__desc__container .brand {
  max-width: 212px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 12vw;
  margin-bottom: 70px;
}

.piece__desc__container__inner {
  display: flex;
  padding-left: 12vw;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 90%;
  margin-right: auto;
}

.piece__desc__container__inner--left {
  padding-bottom: 7rem;
}

.piece__desc__container__inner--left .title {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  position: relative;
  padding-bottom: 47px;
  max-width: 272px;
}

.piece__desc__container__inner--left .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.piece__desc__container__inner .imgWrapperDestaque {
  width: 200px;
  height: 300px;
}

.piece__desc__container__inner .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.piece__desc__container__inner--right {
  padding-bottom: 7rem;
  max-width: 370px;
}

.piece__desc__container__inner--right .desc {
  margin-right: auto;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  margin-bottom: 50px;
}

.piece__desc__container__inner--right .button {
  max-width: 295px;
  position: relative;
}

.piece__desc__container__inner--right .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.piece__container {
  width: 100%;
  height: 643px;
  position: relative;
}

.piece__container__carousel {
  height: 643px;
  width: 100%;
}

.piece__container__carousel--item {
  height: 643px;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.piece__container__carousel--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.46%, rgba(0, 0, 0, 0.6) 100%);
}

.piece__container__carousel--item .content {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 75px;
  max-width: 90%;
  margin: auto;
  flex-direction: column;
}

.piece__container__carousel--item .content .imgAltTitle,
.piece__container__carousel--item .content .imgAltSubtitle {
  font-size: 15px;
  line-height: 159.5%;
  text-align: center;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.piece__container__carousel--item .content .imgAltTitle {
  font-weight: bold;
}

.piece__container__arrows {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.piece__container__imgWrapper {
  width: 95%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.piece__container__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  background-color: #4a90e2;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.piece__container__arrow:hover {
  color: #fff !important;
  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;
}

.piece__container__arrow:hover:hover,
.piece__container__arrow:hover:focus,
.piece__container__arrow:hover:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.piece__container__arrow:first-child {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.piece__contact__container {
  position: relative;
  width: 100%;
}

.piece__contact__container__inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.piece__contact__container__inner--left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.piece__contact__container__inner--left .titleWrapper {
  position: relative;
  max-width: 240px;
  padding-bottom: 36px;
  margin-left: 10rem;
}

.piece__contact__container__inner--left .titleWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.piece__contact__container__inner--left .titleWrapper .title {
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
}

.piece__contact__container__inner--left .titleWrapper .title strong {
  font-weight: bold;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  margin-top: 6px;
}

.piece__contact__container__inner--left .imgWrapper {
  width: 375px;
}

.piece__contact__container__inner--left .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.piece__contact__container__inner--left .imgWrapperDestaque {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 375px;
  max-height: 400px;
}

.piece__contact__container__inner--left .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: 63px;
}

.piece__contact__container__inner--right {
  flex: 1;
  background: #f3f3f3;
}

.piece__contact__container__inner--right form {
  max-width: 403px;
  margin: auto;
  padding: 7rem 0;
}

.piece__contact__container__inner--right form input,
.piece__contact__container__inner--right form textarea,
.piece__contact__container__inner--right form select {
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  height: 57px;
  margin-top: 14px;
  width: 100%;
  padding: 0 20px;
}

.piece__contact__container__inner--right form input::-webkit-input-placeholder,
.piece__contact__container__inner--right form textarea::-webkit-input-placeholder,
.piece__contact__container__inner--right form select::-webkit-input-placeholder {
  opacity: 0.7;
  padding: 1.5rem 0;
}

.piece__contact__container__inner--right form input.valid,
.piece__contact__container__inner--right form textarea.valid,
.piece__contact__container__inner--right form select.valid {
  border: 1px solid #4a90e2;
}

.piece__contact__container__inner--right form input.error,
.piece__contact__container__inner--right form textarea.error,
.piece__contact__container__inner--right form select.error {
  border: 1px solid red;
}

.piece__contact__container__inner--right form select {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/assets/site/images/arrow_down_grey.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.piece__contact__container__inner--right form textarea {
  height: 103px;
  padding-top: 15px;
}

.piece__contact__container__inner--right form .inputWrapper {
  display: flex;
}

.piece__contact__container__inner--right form .inputWrapper input:first-child {
  margin-right: 14px;
}

.piece__contact__container__inner--right form .inputWrapper--city .uf {
  max-width: 105px;
}

.piece__contact__container__inner--right form .button {
  margin-top: 26px;
  max-width: 250px;
  position: relative;
}

.piece__contact__container__inner--right form .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .piece__banner__container::before {
    left: 5vw;
  }

  .piece__banner__container__inner {
    padding-left: 8vw;
  }

  .piece__banner__container__inner--destaque {
    max-width: 800px;
  }

  .piece__desc__container .brand {
    margin-left: 5vw;
  }

  .piece__desc__container__inner {
    max-width: 95%;
    padding-left: 5vw;
  }
}

@media screen and (max-width: 991px) {
  #piece .service__contact__container__inner--left .imgWrapperDestaque {
    top: 20%;
  }
}

@media screen and (max-width: 767px) {
  .piece__banner__container {
    height: 452px;
    background-attachment: scroll !important;
  }

  .piece__banner__container::before {
    opacity: 0;
  }

  .piece__banner__container__inner--destaque {
    max-width: 800px;
    font-size: 40px;
    line-height: 36px;
  }

  .piece__container {
    height: 379px;
  }

  .piece__container__carousel {
    height: 379px;
  }

  .piece__container__carousel--item {
    background-position: center center !important;
    height: 379px;
  }

  .piece__container__carousel--item .content {
    padding-bottom: 25px;
  }

  .piece__desc__container .brand {
    margin-bottom: 40px;
  }

  .piece__desc__container__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .piece__desc__container__inner--left,
  .piece__desc__container__inner--right {
    padding-bottom: 3rem;
  }

  .piece__desc__container__inner .imgWrapperDestaque {
    max-width: 190px;
  }
}

@media screen and (max-width: 411px) {
  .piece__contact__container {
    overflow: hidden;
  }

  .piece__contact__container__inner--left .imgWrapperDestaque {
    top: 41%;
    left: unset;
    right: -37%;
    max-width: 230px;
    max-height: 230px;
  }

  .piece__contact__container__inner--left .textWrapper .message {
    margin-left: 2rem;
  }

  .piece__contact__container__inner--left .textWrapper .title {
    margin-left: 2rem;
  }
}

#tires {
  overflow-x: hidden;
}

#tires .unities__maps__left {
  flex: 1;
}

.tires__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
}

.tires__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.tires__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.tires__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.tires__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 13px;
}

.tires__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
  max-width: 70%;
  margin-bottom: 36px;
}

.tires__banner__container__inner .button {
  max-width: 295px;
  position: relative;
}

.tires__banner__container__inner .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.tires__desc__container {
  width: 100%;
  background-color: #fff;
  padding-top: 5rem;
}

.tires__desc__container .brand {
  max-width: 212px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 12vw;
  margin-bottom: 70px;
}

.tires__desc__container__inner {
  display: flex;
  padding-left: 12vw;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 90%;
  margin-right: auto;
}

.tires__desc__container__inner--left {
  padding-bottom: 7rem;
}

.tires__desc__container__inner--left .title {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  position: relative;
  padding-bottom: 47px;
  max-width: 272px;
}

.tires__desc__container__inner--left .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.tires__desc__container__inner .imgWrapperDestaque {
  width: 200px;
  height: 300px;
}

.tires__desc__container__inner .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.tires__desc__container__inner--right {
  padding-bottom: 7rem;
  max-width: 370px;
}

.tires__desc__container__inner--right .desc {
  margin-right: auto;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  margin-bottom: 50px;
}

.tires__desc__container__inner--right .button {
  max-width: 295px;
  position: relative;
}

.tires__desc__container__inner--right .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.tires__container {
  width: 100%;
  height: 643px;
  position: relative;
}

.tires__container__carousel {
  height: 643px;
  width: 100%;
}

.tires__container__carousel--item {
  height: 643px;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.tires__container__carousel--item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.46%, rgba(0, 0, 0, 0.6) 100%);
}

.tires__container__carousel--item .content {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 75px;
  max-width: 90%;
  margin: auto;
  flex-direction: column;
}

.tires__container__carousel--item .content .imgAltTitle,
.tires__container__carousel--item .content .imgAltSubtitle {
  font-size: 15px;
  line-height: 159.5%;
  text-align: center;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.tires__container__carousel--item .content .imgAltTitle {
  font-weight: bold;
}

.tires__container__arrows {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.tires__container__imgWrapper {
  width: 95%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tires__container__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  background-color: #4a90e2;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.tires__container__arrow:hover {
  color: #fff !important;
  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;
}

.tires__container__arrow:hover:hover,
.tires__container__arrow:hover:focus,
.tires__container__arrow:hover:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.tires__container__arrow:first-child {
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.tires__contact__container {
  position: relative;
  width: 100%;
}

.tires__contact__container__inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.tires__contact__container__inner--left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.tires__contact__container__inner--left .titleWrapper {
  position: relative;
  max-width: 240px;
  padding-bottom: 36px;
  margin-left: 10rem;
}

.tires__contact__container__inner--left .titleWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.tires__contact__container__inner--left .titleWrapper .title {
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
}

.tires__contact__container__inner--left .titleWrapper .subtitle {
  font-weight: bold;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  margin-top: 6px;
}

.tires__contact__container__inner--left .imgWrapper {
  width: 375px;
}

.tires__contact__container__inner--left .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.tires__contact__container__inner--left .imgWrapperDestaque {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 375px;
  max-height: 400px;
}

.tires__contact__container__inner--left .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: 63px;
}

.tires__contact__container__inner--right {
  flex: 1;
  background: #f3f3f3;
}

.tires__contact__container__inner--right form {
  max-width: 403px;
  margin: auto;
  padding: 7rem 0;
}

.tires__contact__container__inner--right form input,
.tires__contact__container__inner--right form textarea,
.tires__contact__container__inner--right form select {
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  height: 57px;
  margin-top: 14px;
  width: 100%;
  padding: 0 20px;
}

.tires__contact__container__inner--right form input::-webkit-input-placeholder,
.tires__contact__container__inner--right form textarea::-webkit-input-placeholder,
.tires__contact__container__inner--right form select::-webkit-input-placeholder {
  opacity: 0.7;
  padding: 1.5rem 0;
}

.tires__contact__container__inner--right form select {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/assets/site/images/arrow_down_grey.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.tires__contact__container__inner--right form textarea {
  height: 103px;
  padding-top: 15px;
}

.tires__contact__container__inner--right form .inputWrapper {
  display: flex;
}

.tires__contact__container__inner--right form .inputWrapper input:first-child {
  margin-right: 14px;
}

.tires__contact__container__inner--right form .inputWrapper .uf {
  max-width: 105px;
}

.tires__contact__container__inner--right form .checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.tires__contact__container__inner--right form .checkbox-group input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.tires__contact__container__inner--right form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.tires__contact__container__inner--right form .checkbox-group .custom-checkbox {
  max-width: 15px;
  width: 100%;
  margin-right: 20px;
  height: 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.tires__contact__container__inner--right form .checkbox-group .custom-checkbox.error {
  border: 1px solid red;
}

.tires__contact__container__inner--right form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4a90e2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.tires__contact__container__inner--right form .checkbox-group .privacy-message {
  font-size: 14px;
  line-height: 105%;
  letter-spacing: -0.72px;
  color: #afafaf;
}

.tires__contact__container__inner--right form .checkbox-group .privacy-message a {
  color: #afafaf;
  font-weight: bold;
}

.tires__contact__container__inner--right form .button {
  margin-top: 26px;
  max-width: 250px;
  position: relative;
}

.tires__contact__container__inner--right form .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .tires__banner__container::before {
    left: 5vw;
  }

  .tires__banner__container__inner {
    padding-left: 8vw;
  }

  .tires__banner__container__inner--destaque {
    max-width: 800px;
  }

  .tires__desc__container .brand {
    margin-left: 5vw;
  }

  .tires__desc__container__inner {
    max-width: 95%;
    padding-left: 5vw;
  }
}

@media screen and (max-width: 991px) {
  #tires .service__contact__container__inner--left .imgWrapperDestaque {
    top: 20%;
  }
}

@media screen and (max-width: 767px) {
  .tires__banner__container {
    height: 452px;
    background-attachment: scroll !important;
  }

  .tires__banner__container::before {
    opacity: 0;
  }

  .tires__banner__container__inner--destaque {
    max-width: 800px;
    font-size: 40px;
    line-height: 36px;
  }

  .tires__container {
    height: 379px;
  }

  .tires__container__carousel {
    height: 379px;
  }

  .tires__container__carousel--item {
    background-position: center center !important;
    height: 379px;
  }

  .tires__container__carousel--item .content {
    padding-bottom: 25px;
  }

  .tires__desc__container .brand {
    margin-bottom: 40px;
  }

  .tires__desc__container__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tires__desc__container__inner--left,
  .tires__desc__container__inner--right {
    padding-bottom: 3rem;
  }

  .tires__desc__container__inner .imgWrapperDestaque {
    max-width: 190px;
  }
}

@media screen and (max-width: 411px) {
  .tires__contact__container {
    overflow: hidden;
  }

  .tires__contact__container__inner--left .imgWrapperDestaque {
    top: 41%;
    left: unset;
    right: -37%;
    max-width: 230px;
    max-height: 230px;
  }

  .tires__contact__container__inner--left .textWrapper .message {
    margin-left: 2rem;
  }

  .tires__contact__container__inner--left .textWrapper .title {
    margin-left: 2rem;
  }
}

.used__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
  z-index: -1;
}

.used__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.used__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.used__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.used__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 15px;
}

.used__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #ffffff;
}

.used__main__container {
  width: 100%;
}

.used__main__container__inner {
  max-width: 80% !important;
  margin: 0 auto;
}

.used__main__container__inner .seminovos__container__find {
  width: 100%;
  margin: -12% auto 0;
  max-width: 100% !important;
}

.used__main__container__inner--formWrapper {
  width: 100%;
  margin: 55px 0;
  position: relative;
}

.used__main__container__inner--formWrapper .arrow_select {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  color: #9d9d9d;
  pointer-events: none;
}

.used__main__container__inner--formWrapper form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: auto;
  width: 280px;
  border: 2px solid #9d9d9d;
  border-radius: 4px;
  outline: none;
  font-weight: bold;
  font-size: 18px;
  line-height: 16px;
  color: #9d9d9d;
  height: 58px;
  display: flex;
  justify-content: center;
  padding-left: 26px;
  cursor: pointer;
}

.used__main__container__inner--grid {
  margin-bottom: 115px;
  display: grid;
  grid-gap: 23px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.used__main__container__inner--grid--item {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  border-bottom: 5px solid #4a90e2;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.used__main__container__inner--grid--item .inner {
  height: 100%;
}

.used__main__container__inner--grid--item .inner .inner_top {
  height: calc(100% / 2);
  width: 80%;
  margin: auto;
  padding: 50px 0 40px;
}

.used__main__container__inner--grid--item .inner .inner_top .title {
  max-width: 65%;
  font-weight: bold;
  font-size: 20px;
  line-height: 21px;
  color: #363636;
  margin-bottom: 25px;
}

.used__main__container__inner--grid--item .inner .inner_top .item_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.used__main__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.used__main__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper .top {
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  color: #9d9d9d;
}

.used__main__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper .bottom {
  font-size: 18px;
  line-height: 21px;
  color: #363636;
}

.used__main__container__inner--grid--item .inner .inner_bottom {
  max-height: 220px;
  height: calc(100% / 2);
  width: 100%;
  position: relative;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}

.used__main__container__inner--grid--item .inner .inner_bottom:hover::after {
  width: 100%;
}

.used__main__container__inner--grid--item .inner .inner_bottom:hover a {
  color: #fff !important;
  opacity: 1;
}

.used__main__container__inner--grid--item .inner .inner_bottom::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(74, 144, 226, 0.5), rgba(74, 144, 226, 0.5));
  z-index: 1;
}

.used__main__container__inner--grid--item .inner .inner_bottom a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  color: #ffffff;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}

.used__main__container__inner--grid--item .inner .inner_bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1024px) {
  .used__banner__container::before {
    left: 5vw;
  }

  .used__banner__container__inner {
    padding-left: 8vw;
  }

  .used__banner__container__inner--destaque {
    max-width: 800px;
  }

  .used__main__container__inner {
    max-width: 83% !important;
  }
}

@media screen and (max-width: 991px) {
  .used__main__container__inner--grid {
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
  }

  .used__main__container__inner--grid--item .inner .inner_top {
    width: 85%;
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .used__banner__container {
    height: 452px;
    background-attachment: scroll !important;
  }

  .used__banner__container::before {
    opacity: 0;
  }

  .used__banner__container__inner--destaque {
    max-width: 800px;
    font-size: 40px;
    line-height: 36px;
  }

  .used__main__container__inner {
    max-width: 90% !important;
  }

  .used__main__container__inner--formWrapper form select {
    width: 100%;
  }
}

.usedDetails__whatsFixed svg {
  width: 25px;
  height: 25px;
  pointer-events: none;
}

.usedDetails__whatsFixed .open-whats {
  background-color: #4ae26a;
  border-radius: 0.3rem 0 0 0.3rem;
  padding: 2rem 0.75rem;
  cursor: pointer;
  box-shadow: 0 0 0.3rem 0 rgba(50, 50, 50, 0.75);
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.usedDetails__whatsFixed .whats-oppened {
  background-color: #4ae26a;
  border-radius: 0.3rem 0 0 0.3rem;
  padding: 2rem 0.75rem;
  cursor: pointer;
  box-shadow: 0 0 0.3rem 0 rgba(50, 50, 50, 0.75);
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: none;
}

.usedDetails__whatsFixed .whats-oppened .close-whats {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -35px;
  padding: 0.75rem;
  border-radius: 0.3rem 0 0 0.3rem;
  box-shadow: 0 0 0.3rem 0 rgba(50, 50, 50, 0.75);
  background-color: #4ae26a;
  z-index: -1;
}

.usedDetails__whatsFixed .whats-oppened .whats-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  z-index: 1;
}

.usedDetails__whatsFixed .whats-oppened .whats-main .desc {
  margin: 10px 0;
  color: #fff;
}

.usedDetails__whatsFixed .whats-oppened .whats-main .desc strong {
  font-size: 22px;
}

.usedDetails__whatsFixed .whats-oppened .whats-main .time {
  color: #fff;
  font-size: 12px;
}

.usedDetails__banner__container {
  width: 100%;
  height: 563px;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-attachment: fixed !important;
  z-index: -1;
}

.usedDetails__banner__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
  mix-blend-mode: normal;
  opacity: 0.81;
}

.usedDetails__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid rgba(255, 255, 255, 0.297421);
  z-index: 1;
}

.usedDetails__banner__container__inner {
  padding-top: 230px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.usedDetails__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-bottom: 15px;
}

.usedDetails__banner__container__inner--destaque {
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 45px;
  letter-spacing: -2px;
  color: #ffffff;
  max-width: 800px;
}

.usedDetails__banner__container__inner--local {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
  margin-top: 27px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.usedDetails__banner__container__inner--local i {
  margin-right: 15px;
  color: #4a90e2;
}

.usedDetails__banner__container__inner--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 35px;
}

.usedDetails__banner__container__inner--list--item {
  margin-right: 3rem;
}

.usedDetails__banner__container__inner--list--item .top {
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #bcbcbc;
  margin-bottom: 15px;
}

.usedDetails__banner__container__inner--list--item .bottom {
  font-weight: normal;
  font-size: 30px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #ffffff;
}

.usedDetails__banner__container__inner--list--item:last-child {
  margin-right: 0;
}

.usedDetails__carousel__container {
  display: flex;
  width: 100%;
}

.usedDetails__carousel__container--carouselWrapper {
  flex: 1;
  height: 100%;
  width: calc(100% / 2);
  position: relative;
}

.usedDetails__carousel__container--carousel {
  width: 100%;
  height: 100%;
}

.usedDetails__carousel__container--carousel .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  text-align: center;
  align-items: center;
  transform: translateX(-50%);
}

.usedDetails__carousel__container--carousel .slick-dots li button {
  background-color: transparent;
}

.usedDetails__carousel__container--carousel .slick-dots li button:before {
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 50%;
  height: 8px !important;
  width: 8px !important;
  content: "";
  z-index: 1;
  color: transparent;
  opacity: 1;
}

.usedDetails__carousel__container--carousel .slick-dots li.slick-active button:before {
  border: solid 2px #4a90e2;
  background-color: #4a90e2;
}

.usedDetails__carousel__container--carousel--item {
  height: 574px;
  width: 100%;
  position: relative;
}

.usedDetails__carousel__container--carousel--item .play {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.usedDetails__carousel__container--carousel--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.usedDetails__carousel__container--carousel--item video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.usedDetails__carousel__container--carouselMiniatures--item {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.usedDetails__carousel__container--carouselMiniatures--item video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.usedDetails__carousel__container--carouselMiniatures--item img {
  width: 155px;
  height: 115px;
  -o-object-fit: cover;
     object-fit: cover;
}

.usedDetails__carousel__container--arrows {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 3%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.usedDetails__carousel__container--arrow {
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 14px;
  background-color: #4a90e2;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.usedDetails__carousel__container--arrow:hover {
  color: #fff !important;
  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;
}

.usedDetails__carousel__container--arrow:hover:hover,
.usedDetails__carousel__container--arrow:hover:focus,
.usedDetails__carousel__container--arrow:hover:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.usedDetails__carousel__container--arrow:first-child {
  transform: matrix(-1, 0, 0, 1, 0, 0);
  left: 5%;
}

.usedDetails__carousel__container--description {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usedDetails__carousel__container--description--inner {
  width: 100%;
  max-width: 450px;
  margin: 50px auto 0;
}

.usedDetails__carousel__container--description--inner .price {
  font-weight: normal;
  font-size: 45px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #363636;
  margin-bottom: 40px;
}

.usedDetails__carousel__container--description--inner .divider {
  width: 100%;
  opacity: 0.12;
  border-bottom: 1px solid #000000;
  margin-bottom: 40px;
}

.usedDetails__carousel__container--description--inner .desc {
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #363636;
  width: 90%;
  margin-bottom: 30px;
}

.usedDetails__carousel__container--description--inner .btnWrapper {
  margin: 15px 0;
}

.usedDetails__carousel__container--description--inner .btnWrapper svg {
  margin-right: 15px;
}

.usedDetails__carousel__container--description--inner .available {
  margin: 40px 0 15px;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #363636;
}

.usedDetails__carousel__container--description--inner .available strong {
  font-weight: bold;
}

.usedDetails__features__container {
  display: flex;
}

.usedDetails__features__container .item {
  width: 100%;
  padding: 5rem 4rem;
}

.usedDetails__features__container .item--left ul li {
  margin-left: 1.5rem;
  position: relative;
}

.usedDetails__features__container .item--left ul li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(/assets/site/images/check.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.usedDetails__features__container .item .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #363636;
  margin-bottom: 30px;
  position: relative;
}

.usedDetails__features__container .item .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 60px;
  border-bottom: 2px solid #4a90e2;
}

.usedDetails__features__container .item ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.usedDetails__features__container .item ul li {
  font-weight: normal;
  font-size: 18px;
  line-height: 255.9%;
  letter-spacing: -1px;
  color: #363636;
}

.usedDetails__features__container .item ul li strong {
  font-weight: bold;
}

.usedDetails__contact__container {
  position: relative;
  width: 100%;
}

.usedDetails__contact__container__inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.usedDetails__contact__container__inner--left {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.usedDetails__contact__container__inner--left .textWrapper .title {
  margin-left: 10rem;
  max-width: 275px;
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -2.4px;
  color: #888888;
  position: relative;
  padding-bottom: 36px;
}

.usedDetails__contact__container__inner--left .textWrapper .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 4px solid #4a90e2;
  width: 70px;
}

.usedDetails__contact__container__inner--left .textWrapper .title strong {
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
  margin-top: 10px;
}

.usedDetails__contact__container__inner--left .textWrapper .message {
  margin-top: 50px;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
  margin-left: 10rem;
  max-width: 275px;
}

.usedDetails__contact__container__inner--left .imgWrapper {
  width: 375px;
}

.usedDetails__contact__container__inner--left .imgWrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.usedDetails__contact__container__inner--left .imgWrapperDestaque {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 375px;
  max-height: 400px;
}

.usedDetails__contact__container__inner--left .imgWrapperDestaque img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: 63px;
}

.usedDetails__contact__container__inner--right {
  flex: 2;
  max-width: 55%;
  background: #f3f3f3;
}

.usedDetails__contact__container__inner--right form {
  max-width: 403px;
  margin: auto;
  padding: 7rem 0;
}

.usedDetails__contact__container__inner--right form input,
.usedDetails__contact__container__inner--right form select,
.usedDetails__contact__container__inner--right form textarea {
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  height: 57px;
  margin-top: 14px;
  width: 100%;
  padding-left: 20px;
}

.usedDetails__contact__container__inner--right form input::-webkit-input-placeholder,
.usedDetails__contact__container__inner--right form select::-webkit-input-placeholder,
.usedDetails__contact__container__inner--right form textarea::-webkit-input-placeholder {
  opacity: 0.7;
}

.usedDetails__contact__container__inner--right form input.valid,
.usedDetails__contact__container__inner--right form select.valid,
.usedDetails__contact__container__inner--right form textarea.valid {
  border: 1px solid #4a90e2;
}

.usedDetails__contact__container__inner--right form input.error,
.usedDetails__contact__container__inner--right form select.error,
.usedDetails__contact__container__inner--right form textarea.error {
  border: 1px solid red;
}

.usedDetails__contact__container__inner--right form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(/assets/site/images/arrow_down_grey.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.usedDetails__contact__container__inner--right form textarea {
  height: 103px;
  padding-top: 15px;
  resize: none;
}

.usedDetails__contact__container__inner--right form .inputGroup {
  width: 100%;
}

.usedDetails__contact__container__inner--right form .inputWrapper {
  display: flex;
}

.usedDetails__contact__container__inner--right form .inputWrapper .inputGroup:first-child,
.usedDetails__contact__container__inner--right form .inputWrapper select:first-child {
  margin-right: 14px;
}

.usedDetails__contact__container__inner--right form .inputWrapper #estados {
  max-width: 105px;
}

.usedDetails__contact__container__inner--right form .checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.usedDetails__contact__container__inner--right form .checkbox-group input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.usedDetails__contact__container__inner--right form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.usedDetails__contact__container__inner--right form .checkbox-group .custom-checkbox {
  max-width: 15px;
  width: 100%;
  margin-right: 20px;
  height: 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.usedDetails__contact__container__inner--right form .checkbox-group .custom-checkbox.error {
  border: 1px solid red;
}

.usedDetails__contact__container__inner--right form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4a90e2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.usedDetails__contact__container__inner--right form .checkbox-group .privacy-message {
  font-size: 14px;
  line-height: 105%;
  letter-spacing: -0.72px;
  color: #afafaf;
}

.usedDetails__contact__container__inner--right form .checkbox-group .privacy-message a {
  color: #afafaf;
  font-weight: bold;
}

.usedDetails__contact__container__inner--right form .button {
  margin-top: 26px;
  max-width: 250px;
  position: relative;
}

.usedDetails__contact__container__inner--right form .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.usedDetails__seemore__container {
  background-color: #fafafa;
}

.usedDetails__seemore__container__inner {
  max-width: 90%;
  margin: auto;
}

.usedDetails__seemore__container__inner--title {
  font-size: 11px;
  line-height: 10px;
  text-align: center;
  letter-spacing: 15.5px;
  text-transform: uppercase;
  color: #b3b3b3;
  padding: 75px 0;
  font-weight: bold;
}

.usedDetails__seemore__container__inner--grid {
  margin-bottom: 115px;
  display: grid;
  grid-gap: 23px;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
}

.usedDetails__seemore__container__inner--grid--item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  border-bottom: 5px solid #4a90e2;
  border-radius: 0 0 5px 5px;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top {
  width: 80%;
  margin: auto;
  padding: 50px 0 40px;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top .title {
  max-width: 65%;
  font-weight: bold;
  font-size: 20px;
  line-height: 21px;
  color: #363636;
  margin-bottom: 25px;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top .item_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper .top {
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  color: #9d9d9d;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_top .item_list .item_item .wrapper .bottom {
  font-size: 18px;
  line-height: 21px;
  color: #363636;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom {
  height: 196px;
  min-width: 345px;
  position: relative;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom:hover::after {
  width: 100%;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom:hover a {
  color: #fff !important;
  opacity: 1;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(74, 144, 226, 0.5), rgba(74, 144, 226, 0.5));
  z-index: 1;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  color: #ffffff;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}

.usedDetails__seemore__container__inner--grid--item .inner .inner_bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1024px) {
  .usedDetails__banner__container::before {
    left: 5vw;
  }

  .usedDetails__banner__container__inner {
    padding-left: 8vw;
  }

  .usedDetails__features__container .item {
    padding: 2rem;
  }

  .usedDetails__features__container .item ul li {
    font-size: 16px;
  }

  .usedDetails__seemore__container__inner--grid {
    padding-bottom: 120px !important;
  }

  .usedDetails__seemore__container__inner--grid--item {
    margin: 0 10px;
  }

  .usedDetails__seemore__container .slick-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    text-align: center;
    align-items: center;
    transform: translateX(-50%);
  }

  .usedDetails__seemore__container .slick-dots li button {
    background-color: transparent;
  }

  .usedDetails__seemore__container .slick-dots li button:before {
    border: 2px solid #979797;
    box-sizing: border-box;
    border-radius: 50%;
    height: 10px !important;
    width: 10px !important;
    content: "";
    z-index: 1;
    color: transparent;
    opacity: 1;
  }

  .usedDetails__seemore__container .slick-dots li.slick-active button:before {
    border: solid 2px #4a90e2;
    background-color: #4a90e2;
  }
}

@media screen and (max-width: 991px) {
  #usedDetails .service__contact__container__inner--left .imgWrapperDestaque {
    top: 40%;
  }
}

@media screen and (max-width: 767px) {
  #usedDetails {
    overflow: hidden;
  }

  .usedDetails__banner__container {
    background-attachment: scroll !important;
    background-position: center center !important;
  }

  .usedDetails__banner__container::before {
    opacity: 0;
  }

  .usedDetails__banner__container__inner--destaque {
    font-size: 40px;
    line-height: 36px;
    max-width: 90%;
  }

  .usedDetails__banner__container__inner--list {
    margin-top: 20px;
  }

  .usedDetails__banner__container__inner--list--item {
    margin-right: 1rem;
  }

  .usedDetails__banner__container__inner--list--item .top {
    margin-bottom: 2px;
  }

  .usedDetails__banner__container__inner--list--item .bottom {
    font-size: 16px;
    line-height: 24px;
  }

  .usedDetails__carousel__container {
    flex-direction: column;
  }

  .usedDetails__carousel__container--carouselMiniatures {
    display: none;
  }

  .usedDetails__carousel__container--carouselWrapper {
    width: 100%;
  }

  .usedDetails__carousel__container .slick-dots {
    bottom: 15px;
  }

  .usedDetails__carousel__container--arrows {
    left: 3%;
    width: 95%;
  }

  .usedDetails__carousel__container--arrows img {
    width: 100%;
    max-width: 36px;
    padding: 10px;
  }

  .usedDetails__carousel__container--description--inner {
    width: 90%;
  }

  .usedDetails__features__container {
    flex-direction: column-reverse;
  }

  .usedDetails__features__container .item ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .usedDetails__contact__container__inner {
    flex-direction: column;
  }

  .usedDetails__contact__container__inner--left {
    width: 100%;
    flex-direction: column;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .usedDetails__contact__container__inner--left .title {
    margin-left: 5vw;
  }

  .usedDetails__contact__container__inner--left .message {
    margin-left: 5vw;
  }

  .usedDetails__contact__container__inner--left .imgWrapper {
    margin-top: 2rem;
  }

  .usedDetails__contact__container__inner--left .imgWrapperDestaque {
    top: 25%;
    max-width: 300px;
    max-height: 300px;
  }

  .usedDetails__contact__container__inner--right {
    width: 100%;
    max-width: 100%;
  }

  .usedDetails__contact__container__inner--right form {
    max-width: 90%;
    padding: 3rem 0;
  }
}

@media screen and (max-width: 411px) {
  .usedDetails__carousel__container--carousel--item {
    height: 335px;
  }

  .usedDetails__contact__container {
    overflow: hidden;
  }

  .usedDetails__contact__container__inner--left .imgWrapperDestaque {
    top: 41%;
    left: unset;
    right: -37%;
    max-width: 230px;
    max-height: 230px;
  }

  .usedDetails__contact__container__inner--left .textWrapper .message {
    margin-left: 2rem;
  }

  .usedDetails__contact__container__inner--left .textWrapper .title {
    margin-left: 2rem;
  }
}

.contact__banner__container {
  padding-top: 170px;
  width: 100%;
  height: 600px;
  position: relative;
  background-color: #fafafa;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: -1;
}

.contact__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 335px;
  border-left: 1px solid #000000;
  z-index: 1;
  opacity: 0.12;
}

.contact__banner__container__inner {
  padding-top: 100px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.contact__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #888888;
  margin-bottom: 15px;
}

.contact__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #5f5f5f;
  max-width: 70%;
}

.contact__form__container {
  background-color: #fff;
  position: relative;
  margin-bottom: 130px;
}

.contact__form__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 100%;
  border-left: 1px solid #000000;
  z-index: 1;
  opacity: 0.12;
}

.contact__form__container__inner {
  padding-top: 62px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
  max-width: 85%;
}

.contact__form__container__inner form input::-webkit-input-placeholder,
.contact__form__container__inner form select::-webkit-input-placeholder,
.contact__form__container__inner form textarea::-webkit-input-placeholder {
  opacity: 0.7;
}

.contact__form__container__inner form input:valid,
.contact__form__container__inner form input:focus,
.contact__form__container__inner form select:valid,
.contact__form__container__inner form select:focus,
.contact__form__container__inner form textarea:valid,
.contact__form__container__inner form textarea:focus {
  color: #000;
  opacity: 1;
  border-bottom: 4px solid #4a90e2;
  border-radius: 0 0 4px 4px;
}

.contact__form__container__inner form input:valid::-webkit-input-placeholder,
.contact__form__container__inner form input:focus::-webkit-input-placeholder,
.contact__form__container__inner form select:valid::-webkit-input-placeholder,
.contact__form__container__inner form select:focus::-webkit-input-placeholder,
.contact__form__container__inner form textarea:valid::-webkit-input-placeholder,
.contact__form__container__inner form textarea:focus::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

.contact__form__container__inner form input.valid,
.contact__form__container__inner form select.valid,
.contact__form__container__inner form textarea.valid {
  border: 1px solid #4a90e2;
}

.contact__form__container__inner form input.error,
.contact__form__container__inner form select.error,
.contact__form__container__inner form textarea.error {
  border: 1px solid red;
}

.contact__form__container__inner form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/assets/site/images/arrow_down_grey.png);
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
}

.contact__form__container__inner form textarea {
  height: 150px !important;
  resize: none;
  padding-top: 1rem;
}

.contact__form__container__inner form input,
.contact__form__container__inner form select,
.contact__form__container__inner form textarea {
  width: 100%;
  outline: none;
  border: 2px solid #f1f1f1;
  border-radius: 4px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #afafaf;
  transition: 0.3s;
}

.contact__form__container__inner form select option {
  color: #000;
}

.contact__form__container__inner form .inputWrapper {
  display: flex;
  align-items: center;
}

.contact__form__container__inner form .inputWrapper input:first-child,
.contact__form__container__inner form .inputWrapper select:first-child {
  margin-right: 20px;
}

.contact__form__container__inner form .inputWrapper select:first-child {
  max-width: 135px;
}

.contact__form__container__inner form .inputWrapper .button {
  margin-right: 70px;
  margin-top: 10px;
  height: 70px;
  min-width: 264px;
  position: relative;
}

.contact__form__container__inner form .inputWrapper .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.contact__form__container__inner form .inputWrapper .text {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 163.4%;
  color: #b4b4b4;
  max-width: 50%;
}

.contact__form__container__inner form .checkbox-group {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.contact__form__container__inner form .checkbox-group input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -9999;
}

.contact__form__container__inner form .checkbox-group input[type=checkbox]:checked + .custom-checkbox::after {
  display: block;
}

.contact__form__container__inner form .checkbox-group .custom-checkbox {
  max-width: 15px;
  width: 100%;
  margin-right: 20px;
  height: 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #e5e5e5;
}

.contact__form__container__inner form .checkbox-group .custom-checkbox.error {
  border: 1px solid red;
}

.contact__form__container__inner form .checkbox-group .custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4a90e2;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact__form__container__inner form .checkbox-group .privacy-message {
  font-size: 14px;
  line-height: 105%;
  letter-spacing: -0.72px;
  color: #afafaf;
}

.contact__form__container__inner form .checkbox-group .privacy-message a {
  color: #afafaf;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .contact__banner__container::before {
    left: 5vw;
  }

  .contact__banner__container__inner {
    padding-left: 8vw;
  }

  .contact__form__container::before {
    left: 5vw;
  }

  .contact__form__container__inner {
    padding-left: 8vw;
  }
}

@media screen and (max-width: 767px) {
  .contact__banner__container {
    height: 300px;
  }

  .contact__banner__container::before {
    opacity: 0;
  }

  .contact__banner__container__inner--destaque {
    font-size: 40px;
    line-height: 36px;
  }

  .contact__form__container {
    margin-bottom: 50px;
  }

  .contact__form__container::before {
    opacity: 0;
  }

  .contact__form__container__inner {
    padding-left: 0;
    max-width: 90%;
    margin: auto;
  }

  .contact__form__container__inner form .inputWrapper {
    flex-direction: column;
  }

  .contact__form__container__inner form .inputWrapper input,
  .contact__form__container__inner form .inputWrapper select {
    margin-right: 0 !important;
  }

  .contact__form__container__inner form .inputWrapper--nowrap {
    flex-direction: row;
  }

  .contact__form__container__inner form .inputWrapper--nowrap select:first-child {
    margin-right: 10px !important;
  }

  .contact__form__container__inner form .inputWrapper .button {
    min-width: 70%;
    position: relative;
    margin-right: auto;
  }

  .contact__form__container__inner form .inputWrapper .text {
    display: none;
  }
}

.financial__banner__container {
  width: 100%;
  height: 560px;
  position: relative;
  background-color: #fafafa;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: -1;
}

.financial__banner__container::before {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 0;
  height: 425px;
  border-left: 1px solid #000000;
  z-index: 1;
  opacity: 0.12;
}

.financial__banner__container__inner {
  padding-top: 125px;
  padding-left: 12vw;
  z-index: 1;
  position: relative;
  height: 100%;
}

.financial__banner__container__inner--title {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #888888;
  margin-bottom: 15px;
}

.financial__banner__container__inner--destaque {
  font-weight: bold;
  font-size: 80px;
  line-height: 73px;
  letter-spacing: -4px;
  color: #5f5f5f;
  max-width: 70%;
}

.financial__banner__container__inner--desc {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.88px;
  color: #888888;
  margin-top: 23px;
  max-width: 500px;
}

.financial__container {
  max-width: 80%;
  margin: auto;
}

.financial__container__header {
  height: 125px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.financial__container__header__list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.financial__container__header__list--item {
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.88px;
  color: #8f8f8f;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.financial__container__header__list--item.current {
  color: #4a90e2;
  border-bottom: 2px solid #4a90e2;
}

.financial__container__content {
  display: none;
}

.financial__container__content.current {
  display: block;
}

.financial__container__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem;
}

.financial__container__text--left {
  margin-right: 65px;
  position: relative;
}

.financial__container__text--left .text {
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -2.4px;
  color: #888888;
  max-width: 240px;
  position: relative;
  padding-bottom: 34px;
  margin-bottom: 105px;
}

.financial__container__text--left .text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  border-bottom: 4px solid #4a90e2;
}

.financial__container__text--left .text strong {
  margin-top: 10px;
  font-weight: bold;
  font-size: 35px;
  line-height: 29px;
  letter-spacing: -2.375px;
  color: #5f5f5f;
}

.financial__container__text--left .img_back {
  z-index: -1;
}

.financial__container__text--left .img_front {
  position: absolute;
  right: -22%;
  bottom: -2%;
  z-index: 1;
}

.financial__container__text--left .img_front img {
  width: 80%;
}

.financial__container__text--rightWrapper {
  max-width: 60%;
}

.financial__container__text--rightWrapper .button {
  margin-top: 100px;
  max-width: 375px;
  height: 62px;
  position: relative;
}

.financial__container__text--rightWrapper .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  padding-left: 5%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.financial__container__text--right {
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #b4b4b4;
}

.financial__container__banner {
  height: 100%;
  height: 440px;
}

.financial__container__banner img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.financial__container__faq {
  width: 100%;
  margin-bottom: 102px;
}

.financial__container__faq .accordion {
  margin-top: 50px;
  width: 100%;
  margin-right: auto;
}

.financial__container__faq .accordion .item {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  margin-bottom: 15px;
}

.financial__container__faq .accordion .item .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: normal;
  font-size: 20px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #3e3e3e;
  height: 115px;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

.financial__container__faq .accordion .item .title span {
  margin: 0 39px;
  font-weight: normal;
  font-size: 35px;
  line-height: 163.4%;
  letter-spacing: -1px;
  color: #4a90e2;
}

.financial__container__faq .accordion .item .title::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 40%;
  background: url(/assets/site/images/arrow_up_blue.png) no-repeat !important;
  width: 16px;
  height: 16px;
  transition: 0.5s;
}

.financial__container__faq .accordion .item .title.active::after {
  transform: rotate(180deg) !important;
}

.financial__container__faq .accordion .item .title.active + .list {
  max-height: 999px !important;
}

.financial__container__faq .accordion .item .list {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.financial__container__faq .accordion .item .list .list__inner {
  margin: 0 0 35px 0;
}

.financial__container__faq .accordion .item .list .list__inner .list__item {
  font-weight: normal;
  font-size: 15px;
  line-height: 163.4%;
  color: #b4b4b4;
  width: 70%;
  margin-right: auto;
  padding-left: 10%;
}

@media screen and (max-width: 1024px) {
  .financial__banner__container::before {
    left: 5vw;
  }

  .financial__banner__container__inner {
    padding-left: 8vw;
  }

  .financial__banner__container__inner--destaque {
    max-width: 800px;
  }

  .financial__container {
    max-width: 90%;
  }

  .financial__container__text {
    padding: 5rem 0;
  }
}

@media screen and (max-width: 991px) {
  .financial__banner__container__inner--destaque {
    max-width: 90%;
    font-size: 68px;
    line-height: 62px;
  }

  .financial__container__text {
    flex-direction: column;
    padding: 3rem 0;
  }

  .financial__container__text--left .text {
    margin-bottom: 25px;
  }

  .financial__container__text--rightWrapper {
    max-width: 100%;
    margin-top: 1rem;
  }

  .financial__container__text--rightWrapper .button {
    margin-top: 50px;
  }

  .financial__container__faq .accordion .item .title {
    padding-right: 2rem;
  }

  .financial__container__faq .accordion .item .list .list__item {
    padding-left: 17% !important;
    width: 90% !important;
  }
}

@media screen and (max-width: 767px) {
  .financial__banner__container {
    height: 493px;
  }

  .financial__banner__container::before {
    opacity: 0;
  }

  .financial__banner__container__inner--destaque {
    max-width: 800px;
    font-size: 40px;
    line-height: 36px;
  }

  .financial__container {
    max-width: 100%;
  }

  .financial__container__header__list--item {
    font-size: 16px;
    line-height: 18px;
    max-width: 90px;
  }

  .financial__container__text {
    max-width: 90%;
    margin: auto;
  }

  .financial__container__text--left .img_bg img {
    width: 90%;
  }

  .financial__container__text--left .img_front img {
    width: 75%;
  }

  .financial__container__text--left .img_front--consorcio {
    right: -60%;
  }

  .financial__container__text--left .img_front--consorcio img {
    width: 55%;
  }

  .financial__container__banner {
    height: 270px;
  }

  .financial__container__faq {
    margin-bottom: 0;
  }

  .financial__container__faq .accordion {
    margin: 50px auto 0 auto;
    width: 95%;
  }

  .financial__container__faq .accordion .item .title {
    font-size: 16px;
    line-height: 18px;
  }

  .financial__container__faq .accordion .item .title span {
    margin: 0 15px;
  }
}

/* ============= COMPONENTES ============= */

.button {
  padding: 17px 30px;
  font-weight: bold;
  font-size: 16px;
  line-height: 13px;
  color: #ffffff;
  border-radius: 4px;
  transition: 0.3s;
}

.button:hover {
  color: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.button__whats {
  font-size: 14px;
  background-color: #4ae26a;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.button__whats--nav {
  padding: 15px 20px 15px 40px;
}

.button__blue {
  background-color: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.button__blue--lg {
  padding: 20px 30px;
}

.button__darkBlue {
  background: #002f65;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 13px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.button__transparent {
  border: 2px solid #e9e9e9;
  background-color: transparent;
  font-weight: bold;
  font-size: 15px;
  line-height: 21px;
  color: #9d9d9d;
}

.button__transparent:hover {
  color: #9d9d9d !important;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.button__lg {
  width: 295px;
}

.seminovos__container {
  background: #fafafa;
  padding-bottom: 120px;
}

.seminovos__container__inner {
  padding-top: 82px;
}

.seminovos__container__find {
  background: #ffffff;
  box-shadow: 0px 32px 34px rgba(0, 0, 0, 0.138713), 0px 2px 4px rgba(0, 0, 0, 0.164991), 0px 12px 24px rgba(0, 0, 0, 0.0234375);
  border-radius: 4px;
  max-width: 80%;
  width: 95%;
}

.seminovos__container__find__inner {
  padding: 48px 2rem 35px 2rem;
}

.seminovos__container__find__inner--title {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -1px;
  color: #4a90e2;
  margin-bottom: 20px;
}

.seminovos__container__find__inner--form {
  display: flex;
  width: 100%;
  align-items: center;
}

.seminovos__container__find__inner--form.hide {
  display: none;
}

.seminovos__container__find__inner--form.show {
  display: flex;
}

.seminovos__container__find__inner--form .form__seminovo {
  display: flex;
  align-items: center;
  flex: 1;
}

.seminovos__container__find__inner--form .form__seminovo .custom-select {
  margin-right: 13px;
  height: 70px;
}

.seminovos__container__find__inner--form .form__seminovo .custom-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.seminovos__container__find__inner--form .button__blue {
  min-width: 250px;
  height: 70px;
  position: relative;
}

.seminovos__container__find__inner--form .button__blue::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-30%);
  height: 27px;
  width: 27px;
  background: url(/assets/site/images/arrow_left_btn.png);
  background-repeat: no-repeat;
}

.seminovos__carousel .slick-slide {
  opacity: 0.5;
  transition: 0.3s;
}

.seminovos__carousel .slick-current {
  opacity: 1;
}

.seminovos__carousel__item {
  margin-bottom: 25px;
  opacity: 0.5;
  transition: 0.3s;
}

.seminovos__carousel__item--imgWrapper {
  height: 55px;
  width: 185px;
}

.seminovos__carousel__item--imgWrapper img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

.seminovos__carousel__item--name {
  font-weight: normal;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  color: #363636;
  width: 185px;
  margin-top: 8px;
}

.error-span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: red;
  margin-top: 1rem;
  display: none;
}

.send-success,
.send-fail {
  padding-top: 1rem;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 126.69%;
  letter-spacing: 0.055em;
}

/* ============= FONTS ============= */

