@charset "UTF-8";
/* _Mixins */
/* Asi se deben implementar en los scss */
/* @include for-phone(sm){} */
/* @include for-tablet(md){} */
/* @include for-desktop(min-max-sm){} */
/* Responsive */
.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,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 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);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 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);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  opacity: 0;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    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% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    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;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, 0, 100%);
    transform: translate3d(0, 0, 100%);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, 0, 100%);
    transform: translate3d(0, 0, 100%);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-x: hidden;
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-x: hidden;
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY();
    transform: translateY(0);
    display: block;
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    display: none;
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    display: block;
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    display: none;
  }
}
.rotation {
  -webkit-animation: rotation 2s 2s linear;
  animation: rotation 2s 2s linear;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.zoomInCenter {
  -webkit-animation-name: zoomInCenter;
  animation-name: zoomInCenter;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoomInCenter {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomInCenter {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.slideInUpLine {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Green */
/* Purple*/
/* Orange */
/* Yellow */
/* Gold */
/* Blue */
/* Gray*/
/* Black */
/* $Fonts: Family & weights */
.container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) and (max-width: 990px) {
  .container {
    width: 96%;
    max-width: 100%;
    padding: 0;
  }
}

.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .container, .container-sm {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container, .container-sm {
    max-width: 100%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 992px) {
  .container, .container-sm {
    max-width: 96%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1200px) {
  .container, .container-sm {
    max-width: 1138px;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

/*************************************************************************************************************
    Source Sans Pro
*************************************************************************************************************/
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-BoldIt.svg#SourceSansPro-BoldIt") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-It.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-It.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-It.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-It.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-It.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-It.svg#SourceSansPro-It") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-LightIt.svg#SourceSansPro-LightIt") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-It_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-It_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-It_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-It_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-It_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-It_1.svg#SourceSansPro-It") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLightIt.svg#SourceSansPro-ExtraLightIt") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Regular.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular.svg#SourceSansPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Bold.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold.svg#SourceSansPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Regular_1.svg#SourceSansPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-BlackIt.svg#SourceSansPro-BlackIt") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Black.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Black.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Black.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Black.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Black.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Black.svg#SourceSansPro-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-SemiboldIt.svg#SourceSansPro-SemiboldIt") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Light.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Light.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Light.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Light.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Light.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Light.svg#SourceSansPro-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight.svg#SourceSansPro-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Light_1.svg#SourceSansPro-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-ExtraLight_1.svg#SourceSansPro-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Bold_1.svg#SourceSansPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold.svg#SourceSansPro-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.eot");
  src: url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.eot?#iefix") format("embedded-opentype"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.woff2") format("woff2"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.woff") format("woff"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.ttf") format("truetype"), url("fonts/sources/sourceSansPro/SourceSansPro-Semibold_1.svg#SourceSansPro-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*************************************************************************************************************
    Open Sans
*************************************************************************************************************/
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-BoldItalic.eot");
  src: url("fonts/sources/OpenSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-BoldItalic.woff2") format("woff2"), url("fonts/sources/OpenSans-BoldItalic.woff") format("woff"), url("fonts/sources/OpenSans-BoldItalic.ttf") format("truetype"), url("fonts/sources/OpenSans-BoldItalic.svg#OpenSans-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-ExtraBold.eot");
  src: url("fonts/sources/OpenSans-ExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-ExtraBold.woff2") format("woff2"), url("fonts/sources/OpenSans-ExtraBold.woff") format("woff"), url("fonts/sources/OpenSans-ExtraBold.ttf") format("truetype"), url("fonts/sources/OpenSans-ExtraBold.svg#OpenSans-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-Bold.eot");
  src: url("fonts/sources/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-Bold.woff2") format("woff2"), url("fonts/sources/OpenSans-Bold.woff") format("woff"), url("fonts/sources/OpenSans-Bold.ttf") format("truetype"), url("fonts/sources/OpenSans-Bold.svg#OpenSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-Italic.eot");
  src: url("fonts/sources/OpenSans-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-Italic.woff2") format("woff2"), url("fonts/sources/OpenSans-Italic.woff") format("woff"), url("fonts/sources/OpenSans-Italic.ttf") format("truetype"), url("fonts/sources/OpenSans-Italic.svg#OpenSans-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-Light.eot");
  src: url("fonts/sources/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-Light.woff2") format("woff2"), url("fonts/sources/OpenSans-Light.woff") format("woff"), url("fonts/sources/OpenSans-Light.ttf") format("truetype"), url("fonts/sources/OpenSans-Light.svg#OpenSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-LightItalic.eot");
  src: url("fonts/sources/OpenSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-LightItalic.woff2") format("woff2"), url("fonts/sources/OpenSans-LightItalic.woff") format("woff"), url("fonts/sources/OpenSans-LightItalic.ttf") format("truetype"), url("fonts/sources/OpenSans-LightItalic.svg#OpenSans-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-ExtraBoldItalic.eot");
  src: url("fonts/sources/OpenSans-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-ExtraBoldItalic.woff2") format("woff2"), url("fonts/sources/OpenSans-ExtraBoldItalic.woff") format("woff"), url("fonts/sources/OpenSans-ExtraBoldItalic.ttf") format("truetype"), url("fonts/sources/OpenSans-ExtraBoldItalic.svg#OpenSans-ExtraBoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-Medium.eot");
  src: url("fonts/sources/OpenSans-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-Medium.woff2") format("woff2"), url("fonts/sources/OpenSans-Medium.woff") format("woff"), url("fonts/sources/OpenSans-Medium.ttf") format("truetype"), url("fonts/sources/OpenSans-Medium.svg#OpenSans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-Regular.eot");
  src: url("fonts/sources/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-Regular.woff2") format("woff2"), url("fonts/sources/OpenSans-Regular.woff") format("woff"), url("fonts/sources/OpenSans-Regular.ttf") format("truetype"), url("fonts/sources/OpenSans-Regular.svg#OpenSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-SemiBoldItalic.eot");
  src: url("fonts/sources/OpenSans-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-SemiBoldItalic.woff2") format("woff2"), url("fonts/sources/OpenSans-SemiBoldItalic.woff") format("woff"), url("fonts/sources/OpenSans-SemiBoldItalic.ttf") format("truetype"), url("fonts/sources/OpenSans-SemiBoldItalic.svg#OpenSans-SemiBoldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-SemiBold.eot");
  src: url("fonts/sources/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-SemiBold.woff2") format("woff2"), url("fonts/sources/OpenSans-SemiBold.woff") format("woff"), url("fonts/sources/OpenSans-SemiBold.ttf") format("truetype"), url("fonts/sources/OpenSans-SemiBold.svg#OpenSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("fonts/sources/OpenSans-MediumItalic.eot");
  src: url("fonts/sources/OpenSans-MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/OpenSans-MediumItalic.woff2") format("woff2"), url("fonts/sources/OpenSans-MediumItalic.woff") format("woff"), url("fonts/sources/OpenSans-MediumItalic.ttf") format("truetype"), url("fonts/sources/OpenSans-MediumItalic.svg#OpenSans-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/*************************************************************************************************************
    Neutra Text
*************************************************************************************************************/
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/sources/neutraText/NeutraText-BookItalic.eot");
  src: url("fonts/sources/neutraText/NeutraText-BookItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/neutraText/NeutraText-BookItalic.woff2") format("woff2"), url("fonts/sources/neutraText/NeutraText-BookItalic.woff") format("woff"), url("fonts/sources/neutraText/NeutraText-BookItalic.ttf") format("truetype"), url("fonts/sources/neutraText/NeutraText-BookItalic.svg#NeutraText-BookItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/sources/neutraText/NeutraText-Bold.eot");
  src: url("fonts/sources/neutraText/NeutraText-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/neutraText/NeutraText-Bold.woff2") format("woff2"), url("fonts/sources/neutraText/NeutraText-Bold.woff") format("woff"), url("fonts/sources/neutraText/NeutraText-Bold.ttf") format("truetype"), url("fonts/sources/neutraText/NeutraText-Bold.svg#NeutraText-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/sources/neutraText/NeutraText-Book.eot");
  src: url("fonts/sources/neutraText/NeutraText-Book.eot?#iefix") format("embedded-opentype"), url("fonts/sources/neutraText/NeutraText-Book.woff2") format("woff2"), url("fonts/sources/neutraText/NeutraText-Book.woff") format("woff"), url("fonts/sources/neutraText/NeutraText-Book.ttf") format("truetype"), url("fonts/sources/neutraText/NeutraText-Book.svg#NeutraText-Book") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/sources/neutraText/NeutraText-BoldItalic.eot");
  src: url("fonts/sources/neutraText/NeutraText-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/sources/neutraText/NeutraText-BoldItalic.woff2") format("woff2"), url("fonts/sources/neutraText/NeutraText-BoldItalic.woff") format("woff"), url("fonts/sources/neutraText/NeutraText-BoldItalic.ttf") format("truetype"), url("fonts/sources/neutraText/NeutraText-BoldItalic.svg#NeutraText-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neutra Text";
  src: url("fonts/sources/neutraText/NeutraText-Demi.eot");
  src: url("fonts/sources/neutraText/NeutraText-Demi.eot?#iefix") format("embedded-opentype"), url("fonts/sources/neutraText/NeutraText-Demi.woff2") format("woff2"), url("fonts/sources/neutraText/NeutraText-Demi.woff") format("woff"), url("fonts/sources/neutraText/NeutraText-Demi.ttf") format("truetype"), url("fonts/sources/neutraText/NeutraText-Demi.svg#NeutraText-Demi") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*************************************************************************************************************
    Bebas Neue
*************************************************************************************************************/
@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/sources/bebasNue/BebasNeueBold.eot");
  src: url("fonts/sources/bebasNue/BebasNeueBold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/bebasNue/BebasNeueBold.woff2") format("woff2"), url("fonts/sources/bebasNue/BebasNeueBold.woff") format("woff"), url("fonts/sources/bebasNue/BebasNeueBold.ttf") format("truetype"), url("fonts/sources/bebasNue/BebasNeueBold.svg#BebasNeueBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/sources/bebasNue/BebasNeue-Regular.eot");
  src: url("fonts/sources/bebasNue/BebasNeue-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/sources/bebasNue/BebasNeue-Regular.woff2") format("woff2"), url("fonts/sources/bebasNue/BebasNeue-Regular.woff") format("woff"), s url("fonts/sources/bebasNue/BebasNeue-Regular.ttf") format("truetype"), url("fonts/sources/bebasNue/BebasNeue-Regular.svg#BebasNeue-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*************************************************************************************************************
    Rufina
*************************************************************************************************************/
@font-face {
  font-family: "Rufina";
  src: url("fonts/sources/rufina/Rufina-Regular.eot");
  src: url("fonts/sources/rufina/Rufina-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/sources/rufina/Rufina-Regular.woff2") format("woff2"), url("fonts/sources/rufina/Rufina-Regular.woff") format("woff"), url("fonts/sources/rufina/Rufina-Regular.ttf") format("truetype"), url("fonts/sources/rufina/Rufina-Regular.svg#Rufina-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rufina";
  src: url("fonts/sources/rufina/Rufina-Bold.eot");
  src: url("fonts/sources/rufina/Rufina-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/rufina/Rufina-Bold.woff2") format("woff2"), url("fonts/sources/rufina/Rufina-Bold.woff") format("woff"), url("fonts/sources/rufina/Rufina-Bold.ttf") format("truetype"), url("fonts/sources/rufina/Rufina-Bold.svg#Rufina-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*************************************************************************************************************
    Roboto
*************************************************************************************************************/
@font-face {
  font-family: "Roboto";
  src: url("fonts/sources/roboto/Roboto-Medium.eot");
  src: url("fonts/sources/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/sources/roboto/Roboto-Medium.woff2") format("woff2"), url("fonts/sources/roboto/Roboto-Medium.woff") format("woff"), url("fonts/sources/roboto/Roboto-Medium.ttf") format("truetype"), url("fonts/sources/roboto/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/sources/roboto/Roboto-Bold.eot");
  src: url("fonts/sources/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/roboto/Roboto-Bold.woff2") format("woff2"), url("fonts/sources/roboto/Roboto-Bold.woff") format("woff"), url("fonts/sources/roboto/Roboto-Bold.ttf") format("truetype"), url("fonts/sources/roboto/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/sources/roboto/Roboto-Light.eot");
  src: url("fonts/sources/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("fonts/sources/roboto/Roboto-Light.woff2") format("woff2"), url("fonts/sources/roboto/Roboto-Light.woff") format("woff"), url("fonts/sources/roboto/Roboto-Light.ttf") format("truetype"), url("fonts/sources/roboto/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/sources/roboto/Roboto-Regular.eot");
  src: url("fonts/sources/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/sources/roboto/Roboto-Regular.woff2") format("woff2"), url("fonts/sources/roboto/Roboto-Regular.woff") format("woff"), url("fonts/sources/roboto/Roboto-Regular.ttf") format("truetype"), url("fonts/sources/roboto/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/sources/roboto/Roboto-SemiBold.eot");
  src: url("fonts/sources/roboto/Roboto-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/roboto/Roboto-SemiBold.woff2") format("woff2"), url("fonts/sources/roboto/Roboto-SemiBold.woff") format("woff"), url("fonts/sources/roboto/Roboto-SemiBold.ttf") format("truetype"), url("fonts/sources/roboto/Roboto-SemiBold.svg#Roboto-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*************************************************************************************************************
    Helvetica Neue
*************************************************************************************************************/
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Light.svg#HelveticaNeue-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Black.svg#HelveticaNeue-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Heavy.svg#HelveticaNeue-Heavy") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Bold.svg#HelveticaNeue-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Roman.svg#HelveticaNeue-Roman") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Medium.svg#HelveticaNeue-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.eot");
  src: url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.woff2") format("woff2"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.woff") format("woff"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.ttf") format("truetype"), url("fonts/sources/HelveticaNeue/HelveticaNeue-Thin.svg#HelveticaNeue-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

html {
  behavior: url(/Content/css/pie/PIE.htc);
}

body {
  background: none;
}
body.menuMobActive, body.navMobActive {
  overflow: hidden;
  position: fixed;
  inset: 0;
}
body .Main {
  margin-top: 20px;
  padding-top: 0;
}
body .bg-blue {
  background-color: #1d70b7;
}

/**************** TEXT COLOR ***************/
.text-green {
  color: #86C157 !important;
}

.text-purple {
  color: #9b236d !important;
}

.text-blue {
  color: #0071bc !important;
}

.text-cyan {
  color: #107275;
}

/***************** BG COLOR *****************/
.bg-color-sheen-green {
  background-color: #69bc00 !important;
}

.bg-color-purple {
  background-color: #9b236d !important;
}

.bg-color-blue {
  background-color: #0071bc !important;
}

.bg-color-dark-turquoise {
  background-color: #007a7b !important;
}

.bg-color-green {
  background-color: #86C157 !important;
}

/***************  Botones ****************/
.btn-success {
  padding: 10px 20px;
  border-radius: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .btn-success {
    padding: 10px;
  }
}
.btn-success .arrow-btn {
  font-size: 20px;
  line-height: 0.6;
}
.btn-success:hover {
  padding: 10px 30px;
  font-weight: 600;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .btn-success:hover {
    padding: 10px 12px;
  }
}
.btn-success.btn-border-white {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 7px 15px;
}
.btn-success.btn-border-white:hover, .btn-success.btn-border-white:active, .btn-success.btn-border-white:focus {
  background-color: rgba(4, 4, 4, 0.17);
  border: 1px solid #fff;
  padding: 7px 25px;
  font-weight: 700;
}

.btn-green {
  background-color: #86C157;
}
.btn-green:hover {
  background-color: #69bc00;
}

.btn-purple {
  background-color: #9b236d;
}
.btn-purple:hover {
  background-color: #af2387;
}

ul {
  list-style: disc;
}

ul, ol {
  padding-left: 25px;
}
ul li, ol li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}

.ie ul.bullet01 {
  padding-left: 0;
}
.ie ul.bullet01 li {
  padding: 0 0 5px 20px;
  display: block;
  list-style: none;
  background: url(../img/bullet01.gif) left 10px no-repeat;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) and (max-width: 990px) {
  .container {
    width: 96%;
    max-width: 100%;
    padding: 0;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .container, .container-sm {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container, .container-sm {
    max-width: 100%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 992px) {
  .container, .container-sm {
    max-width: 96%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1200px) {
  .container, .container-sm {
    max-width: 1138px;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

.migas {
  margin-top: 50px;
}

.img-banner {
  width: 100%;
  max-width: none;
}

.display-none, .not-show {
  display: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.width-60porce {
  width: 60px;
}

.width-74porce {
  width: 74px;
}

.back-none {
  background: none;
}

.height-119 {
  height: 119px;
}

.hidden-xs {
  display: none;
}
@media (min-width: 768px) {
  .hidden-xs {
    display: block;
  }
}
.hidden-xs {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

@media (min-width: 768px) {
  .hidden-dk {
    display: none;
  }
}
.hidden-dk {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

.image-large {
  display: none !important;
}
@media (min-width: 768px) {
  .image-large {
    display: block !important;
  }
}
.image-large {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

.image-small {
  display: block !important;
}
@media (min-width: 768px) {
  .image-small {
    display: none !important;
  }
}
.image-small {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.gnb-visible {
  display: inherit !important;
}

.gnb-hidden {
  display: none !important;
}

/**************    BANNER CONTIGENCIA     ***************/
.seccionHome .banner-contigencia.active-contingencia {
  display: block;
}
.seccionHome .banner-contigencia.active-contingencia img {
  width: 100%;
  max-width: 100%;
}
.seccionHome.navMobActive .banner-contigencia.active-contingencia {
  display: none;
}

/**************    BANNER CONTIGENCIA     ***************/
.banner-contigencia {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.banner-contigencia .btn-close-contigencia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 20px;
  height: 20px;
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  line-height: 0;
  font-size: 16px;
}
.banner-contigencia .btn-close-contigencia:hover {
  background-color: #ffffff;
  color: #333333;
  font-weight: 700;
}

.container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) and (max-width: 990px) {
  .container {
    width: 96%;
    max-width: 100%;
    padding: 0;
  }
}

.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .container, .container-sm {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container, .container-sm {
    max-width: 100%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 992px) {
  .container, .container-sm {
    max-width: 96%;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1200px) {
  .container, .container-sm {
    max-width: 1138px;
  }
}
.container, .container-sm {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}

.spacer-10 {
  display: block;
  height: 10px;
  margin: 10px 0;
}

.spacer-20 {
  display: block;
  height: 20px;
  margin: 20px 0;
}

.spacer-30 {
  display: block;
  height: 30px;
  margin: 20px 0;
}

.spacer-40 {
  display: block;
  height: 20px;
  margin: 40px 0;
}

.mar-top-6 {
  margin-top: 6px;
}

.mar-top--10 {
  margin-top: -10px;
}

.mar-top-14 {
  margin-top: 14px;
}

.mar-top-25 {
  margin-top: 25px;
}

.mar-top-40 {
  margin-top: 40px;
}

.mar-bot-14 {
  margin-bottom: 14px;
}

.mar-bot-50 {
  margin-bottom: 50px;
}

.mar-left-30 {
  margin-left: 30px;
}

.pad-top-10 {
  padding-top: 10px;
}

.pad-top-30 {
  padding-top: 30px;
}

.pad-0 {
  padding: 0;
}

.pad-top-65 {
  padding-top: 65px !important;
}

ul.small-line-height li {
  padding-bottom: 0 !important;
}

@media all and (min-width: 768px) {
  .padd-3-right {
    padding-right: 7px;
  }
  .padd-3-left {
    padding-left: 2px;
  }
  .padd-0-right {
    padding-right: 0;
  }
  .padd-0-left {
    padding-left: 0;
  }
  .padd-0-right .subhome-image {
    border-radius: 0 0 0 100px;
  }
  .padd-0-left .subhome-image {
    border-radius: 0 0 100px 0;
  }
  .padd-10-left {
    padding-left: 10px;
  }
  .padd-10-right {
    padding-right: 10px;
  }
}
html,
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Sans Pro", sans-serif;
  margin-top: 0;
}

h1, .h1 {
  font-size: 34px;
}

h2, .h2 {
  font-size: 28px;
}

h3, .h3 {
  font-size: 22px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

h1 small, .h1 small {
  font-size: 24px;
}

h2 small, .h2 small {
  font-size: 18px;
}

h3 small, .h3 small,
h4 small, .h4 small {
  font-size: 14px;
}

a {
  font-family: "Source Sans Pro", sans-serif;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

/**************************************************
    Titulos
**************************************************/
h1.title-filter {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #535353;
}

h1.title-info {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #808080;
}

h1.result-filter {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #000;
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}

.font-smaller {
  font-size: smaller;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-13-3 {
  font-size: 13.3px !important;
}

.font-italic {
  font-style: italic;
}

.font-italic-bold {
  font-style: italic;
  font-weight: 600;
}

.font-italic-azul {
  font-style: italic;
  color: #0073AE !important;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000;
}

.text-left {
  text-align: left;
}

.text-underline {
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
  display: block;
}

.text-justify {
  text-align: justify !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

/* .slick-slide img
{
    display: block;
} */
.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  padding: 0 5px;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* SLICK THEME */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 47%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}

.slick-prev {
  left: 25px;
  width: 25px;
  height: 25px;
  background: url(../../img/ic-arrow-prev-edu.png) !important;
}

.slick-prev:before {
  content: " ";
}

.slick-next {
  right: 25px;
  width: 25px;
  height: 25px;
  background: url(../../img/ic-arrow-next-edu.png) !important;
}

.slick-next:before {
  content: " ";
}

button.slick-prev.slick-arrow.slick-disabled {
  opacity: 0.5;
}

button.slick-next.slick-arrow.slick-disabled {
  opacity: 0.5;
}

/* Estilos solo para el HOME del DEADER */
.dropdown-canales {
  position: relative;
  margin-left: 15px;
  margin-right: 10px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .dropdown-canales {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 80%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .dropdown-canales {
    width: 100%;
  }
}
.dropdown-canales .item-canales {
  background: transparent;
  border: 0;
  padding: 0;
  color: #333333;
  position: relative;
  z-index: 1;
  cursor: pointer;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .dropdown-canales .item-canales {
    background-color: #0071bc;
    display: block;
    width: 100%;
    color: #ffffff !important;
    padding: 4px 10px;
    border-radius: 37px;
  }
}
.dropdown-canales .item-canales::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .dropdown-canales .item-canales::after {
    display: none;
  }
}
.dropdown-canales .submenu-canales {
  position: absolute;
  top: -10px;
  width: 280px;
  padding: 10px;
  display: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 50px 10px 10px;
  border-radius: 7px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .dropdown-canales .submenu-canales {
    padding-top: 20px;
    right: 0;
    -webkit-transform: none;
            transform: none;
    left: auto;
    top: 100%;
  }
}
.dropdown-canales .submenu-canales li {
  margin-bottom: 7px;
}
.dropdown-canales .submenu-canales li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
}
.dropdown-canales .submenu-canales li a .icon-canal {
  display: inline-block;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 7px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 7px;
}
.dropdown-canales .submenu-canales li a .icon-canal.red-oficinas {
  background-image: url(../files/images/new-home/icono_oficinas.png);
}
.dropdown-canales .submenu-canales li a .icon-canal.cajeros-servibanca {
  background-image: url(../files/images/new-home/icono_cajeros.png);
}
.dropdown-canales .submenu-canales li a .icon-canal.lineas-servicio-cliente {
  background-image: url(../files/images/new-home/icono_lineas.png);
}
.dropdown-canales .submenu-canales li a .icon-canal.contactenos {
  background-image: url(../files/images/new-home/icono_PQR.png);
}
.dropdown-canales .submenu-canales li a .icon-canal.asistente-virtual {
  background-image: url(../files/images/new-home/icono_Asistente.png);
}
.dropdown-canales .submenu-canales li a .icon-canal.asesor-virtual {
  background-image: url(../files/images/new-home/icono_chat.png);
}
.dropdown-canales .submenu-canales li a:hover {
  color: #86C157;
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.red-oficinas {
  background-image: url(../files/images/new-home/icono_oficinas-hover.png);
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.cajeros-servibanca {
  background-image: url(../files/images/new-home/icono_cajeros-hover.png);
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.lineas-servicio-cliente {
  background-image: url(../files/images/new-home/icono_lineas-hover.png);
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.contactenos {
  background-image: url(../files/images/new-home/icono_PQR-hover.png);
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.asistente-virtual {
  background-image: url(../files/images/new-home/icono_Asistente-hover.png);
}
.dropdown-canales .submenu-canales li a:hover .icon-canal.asesor-virtual {
  background-image: url(../files/images/new-home/icono_chat-hover.png);
}
.dropdown-canales:hover {
  background-color: #ffffff;
}
.dropdown-canales:hover .submenu-canales {
  background-color: #ffffff;
  display: block;
  color: #86C157;
  opacity: 1;
  visibility: visible;
}
.dropdown-canales:hover .item-canales {
  color: #86C157 !important;
  background-color: #ffffff;
  padding: 0 10px;
  font-weight: 700;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .dropdown-canales:hover .item-canales {
    background-color: #0071bc;
    color: #ffffff !important;
  }
}
.dropdown-canales:hover .item-canales:after {
  border-color: #86C157;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.dropdown-canales.active .submenu-canales {
  display: block;
}

.seccionHome .header .dropdown-canales .item-canales {
  color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .dropdown-canales .item-canales {
    color: #333333;
  }
}
.seccionHome .header .dropdown-canales .item-canales::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.seccionHome .header .dropdown-canales:hover {
  color: #333333;
  font-weight: 700;
}
.seccionHome .header .dropdown-canales:hover .item-canales {
  color: #86C157 !important;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .dropdown-canales:hover .item-canales {
    color: #ffffff !important;
  }
}
.seccionHome .header .dropdown-canales:hover .item-canales::after {
  border-right: 2px solid #86C157;
  border-bottom: 2px solid #86C157;
}
.seccionHome .header .header-sup .header-buscador {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup .header-buscador {
    display: none;
  }
}
.seccionHome .header .header-sup .header-buscador input {
  color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup .header-buscador input {
    color: #333333;
  }
}
.seccionHome .header .header-sup .header-buscador .find-btn span.fa.fa-search {
  color: #ffffff;
  border-color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup .header-buscador .find-btn span.fa.fa-search {
    color: #333333;
    border-color: #333333;
  }
}
.seccionHome .header .header-sup .header-buscador .find-btn span.fa.fa-search::before {
  background-color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup .header-buscador .find-btn span.fa.fa-search::before {
    background-color: #333333;
  }
}
.seccionHome .header .header-sup > a.item-canales {
  color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup > a.item-canales {
    color: #333333;
  }
}
.seccionHome .header .header-sup > a.item-canales:hover {
  color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .header .header-sup > a.item-canales:hover {
    color: #333333;
  }
}

.header {
  position: relative;
  width: 100%;
  z-index: 100;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header {
    position: relative;
    padding: 0 15px;
  }
}
.header .container {
  width: 100%;
  max-width: 1138px;
  padding: 0;
}
.header .wp-top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.header .wp-header-logo {
  width: 40%;
}
.header .header-logo img {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.header .wp-main-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
.header ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.header ul li {
  font-family: "Helvetica Neue";
  font-weight: 300;
}
.header ul li a {
  cursor: pointer;
  font-family: "Helvetica Neue";
  font-weight: 300;
}
.header ul li:hover {
  font-weight: 700;
}
.header ul li:hover a {
  font-weight: 700;
}
.header.active-bg .cont-header {
  background-color: #F2F2F2;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header.active-bg .cont-header {
    background-color: #ffffff;
  }
}
.header.active-bg .cont-header .header-sup > a.item-canales {
  color: #333333;
}
.header.active-bg .cont-header .dropdown-canales .item-canales {
  color: #333333;
}
.header.active-bg .cont-header .dropdown-canales .item-canales::after {
  color: #333333;
}
.header .cont-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 0 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .cont-header {
    padding: 20px 0 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.header {
  /*******************************************************
  * LOGO *
  *******************************************************/
}
.header .header-logo {
  width: 20%;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-logo {
    width: 42%;
  }
}
.header {
  /*******************************************************
  * HEADER SUP *
  *******************************************************/
}
.header .header-sup {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 10px 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 60%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 5px 0 0;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.header .header-sup .header-buscador {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup .header-buscador {
    width: 100%;
    max-width: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 12px 0 7px;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.header .header-sup .header-buscador input {
  font-size: 16px;
  width: 100px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 2px solid #A5A5A5;
  background-color: transparent;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup .header-buscador input {
    line-height: 1;
    font-size: 12px;
    color: #333333;
  }
}
.header .header-sup .header-buscador input:focus {
  width: 220px;
}
.header .header-sup .header-buscador .find-btn {
  font-size: 18px;
  color: #A5A5A5;
  background: none;
  border: 0;
  padding: 0 3px;
  border-radius: 3px;
  opacity: 1;
  display: inline-block;
}
.header .header-sup .header-buscador .find-btn span.fa.fa-search {
  color: #A5A5A5;
  display: block;
  opacity: 1;
  width: 15px;
  height: 15px;
  border: 2px solid #A5A5A5;
  border-radius: 50%;
  position: relative;
}
.header .header-sup .header-buscador .find-btn span.fa.fa-search::before {
  position: absolute;
  width: 90%;
  height: 3px;
  background-color: #A5A5A5;
  display: block;
  content: "";
  top: 50%;
  border-radius: 4px;
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0px 8px;
          transform-origin: 0px 8px;
}
.header .header-sup .btnNavMob {
  width: 26px;
  height: 24px;
  position: relative;
  display: block;
  cursor: pointer;
  margin: 0;
  display: none;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup .btnNavMob {
    display: inline-block;
  }
}
.header .header-sup .btnNavMob.btnMobActive span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.header .header-sup .btnNavMob.btnMobActive span:nth-child(2) {
  opacity: 0;
}
.header .header-sup .btnNavMob.btnMobActive span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}
.header .header-sup .btnNavMob span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1A1A1A;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  /* Líneas en posición */
}
.header .header-sup .btnNavMob span:nth-child(1) {
  top: 0;
}
.header .header-sup .btnNavMob span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .header-sup .btnNavMob span:nth-child(3) {
  bottom: 0;
}
.header .header-sup > a {
  font-family: "Helvetica Neue";
  color: #ffffff;
  display: block;
  margin: 0 10px;
}
.header .header-sup > a.item-canales {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #333333;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup > a.item-canales {
    display: inline-block;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    color: #333333;
    margin: 0;
  }
}
.header .header-sup > a.item-canales:hover {
  font-weight: 700;
  color: #333333;
}
.header .header-sup > a.item-canales:hover:after {
  width: 100%;
}
.header .header-sup > a.item-canales:after {
  content: "";
  background-color: #ffffff;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header .header-sup > a.banca-virtual {
  background-color: #86C157;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 4px 35px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup > a.banca-virtual {
    width: 74%;
    max-width: 150px;
    padding: 5px;
    display: inline-block;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .header .header-sup > a.banca-virtual {
    width: 120px;
  }
}
.header .header-sup > a.banca-virtual:hover {
  padding: 4px 25px;
  font-size: 16px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-sup > a.banca-virtual:hover {
    max-width: 165px;
  }
}
.header {
  /*******************************************************
  * HEADER MID *
  *******************************************************/
}
.header .header-mid {
  width: 80.5%;
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-top: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.header .header-mid .btnCloseMenu {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 18px;
  color: #585858;
  font-family: "Helvetica Neue";
  font-weight: 700;
  display: block;
  padding: 5px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .btnCloseMenu {
    display: none;
  }
}
.header .header-mid .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  list-style: none;
  padding: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header .header-mid .menu__list .menu__item {
  padding: 10px 7px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 1024px) {
  .header .header-mid .menu__list .menu__item {
    padding: 10px 4px;
  }
}
.header .header-mid .menu__list .menu__item {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item {
    width: 100%;
  }
}
.header .header-mid .menu__list .menu__item > a {
  color: #ffffff;
  padding: 0 10px;
  display: block;
  font-size: 16px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 1280px) {
  .header .header-mid .menu__list .menu__item > a {
    padding: 0 7px;
  }
}
.header .header-mid .menu__list .menu__item > a {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 1024px) {
  .header .header-mid .menu__list .menu__item > a {
    padding: 0 4px;
    font-size: 16px;
  }
}
.header .header-mid .menu__list .menu__item > a {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 992px) {
  .header .header-mid .menu__list .menu__item > a {
    font-size: 13px;
  }
}
.header .header-mid .menu__list .menu__item > a {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item > a {
    color: #333333;
    font-size: 16px;
    position: relative;
  }
}
.header .header-mid .menu__list .menu__item > a:after {
  content: "";
  display: block;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item > a:after {
    display: none;
  }
}
.header .header-mid .menu__list .menu__item:hover > a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item:hover > a {
    color: #333333;
  }
}
.header .header-mid .menu__list .menu__item:hover > a:after {
  width: 100%;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item:hover > a:after {
    width: auto;
  }
}
.header .header-mid .menu__list .menu__item.has-sub.active-nav .mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .header-mid .menu__list .menu__item.has-sub.active-nav .mega-menu .btnCloseMenu {
  display: block;
  position: relative;
  z-index: 99;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item.has-sub.active-nav .mega-menu .btnCloseMenu {
    display: none;
  }
}
.header .header-mid .menu__list .menu__item.active-item .mega-menu {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item.active-item .mega-menu {
    display: block;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #F2F2F2;
  padding: 10px 30px 30px;
  display: none;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu {
    position: relative;
    background-color: #f8f8f8;
    top: 0;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .title-mega-menu {
  width: 100%;
  color: #0071bc;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  gap: 30px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu {
    -webkit-column-count: initial;
       -moz-column-count: initial;
            column-count: initial;
    width: 100%;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column {
  margin-bottom: 10px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column {
    margin-bottom: 15px;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column:last-child {
  margin-bottom: 0;
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column.active-item ul {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column.active-item ul {
    display: block;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column h3 a {
  color: #585858;
  font-weight: 700;
  font-size: 18px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column h3 a {
    padding-left: 4px;
    display: block;
    position: relative;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column h4 a {
  color: #585858;
  font-weight: 700;
  font-size: 16px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column h4 a {
    padding-left: 4px;
    display: block;
    position: relative;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column a {
  color: #585858;
  font-weight: 300;
  padding: 4px 15px;
  border-radius: 10px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column a {
    padding: 0;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column a:hover {
  background-color: #ffffff;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column a:hover {
    background-color: transparent;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column .font-smaller {
  margin-bottom: 0;
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column ul {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column ul {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 15px;
    display: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column li {
  line-height: 1;
  margin-bottom: 0px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column li {
    margin-bottom: 15px;
  }
}
.header .header-mid .menu__list .menu__item .mega-menu .grid-submenu .mega-menu__column li:last-child {
  margin-bottom: 0;
}
.header .header-mid .menu__list .menu__item .mega-menu .wp-list-botons {
  width: 100%;
  padding: 20px 0 0;
}
.header .header-mid .menu__list .menu__item .mega-menu .wp-list-botons .list-botons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.header .header-mid .menu__list .menu__item .mega-menu .wp-list-botons .list-botons a {
  font-weight: 300;
  background-color: #86C157;
  padding: 7px 20px;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
}
.header .header-mid .menu__list .menu__item .mega-menu .wp-list-botons .list-botons a:hover {
  background-color: #398439;
  padding: 7px 25px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header .header-mid .menu__list .menu__item.menu__item_filiales:hover .menu-filiales {
    display: block;
    width: 90%;
    max-width: 700px;
  }
}
.header .header-mid .menu__list .menu__item.menu__item_filiales:hover .menu-filiales {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1200px) {
  .header .header-mid .menu__list .menu__item.menu__item_filiales:hover .menu-filiales {
    max-width: 740px;
  }
}
.header .header-mid .menu__list .menu__item.menu__item_filiales:hover .menu-filiales {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.header .header-mid .menu__list .menu__item.menu__item_filiales.active-item .menu-filiales {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item.menu__item_filiales.active-item .menu-filiales {
    display: block;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 7px;
  }
}
.header .header-mid .menu__list .menu__item.menu__item_filiales ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item.menu__item_filiales ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 0 0;
    background-color: #ffffff;
    border-radius: 7px;
  }
}
.header .header-mid .menu__list .menu__item.menu__item_filiales ul li {
  margin: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item.menu__item_filiales ul li {
    width: 50% !important;
    margin-bottom: 30px;
    text-align: center;
  }
}
.header .header-mid .menu__list .menu__item.menu__item_filiales ul li a img {
  width: 85%;
}
.header .header-mid .menu__list .menu__item.menu__item_filiales ul li a:hover img {
  width: 100%;
}
.header .header-mid .menu__list .menu__item .menu-filiales {
  position: absolute;
  right: 5%;
  top: 100%;
  width: 0;
  background-color: #F2F2F2;
  padding: 10px;
  display: none;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 25px 25px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .header-mid .menu__list .menu__item .menu-filiales {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
  }
}
.header .header-mid .menu__list .menu__item .menu-filiales li.col-filial-big {
  width: 18%;
}
.header .header-mid .menu__list .menu__item .menu-filiales li.col-filial-small {
  width: 14%;
}
.header .header-mid .menu__list .menu__item .menu-filiales li.col-filial-md {
  width: 16%;
}
.header .header-mid .menu__list .menu__item .menu-filiales li img {
  width: 85%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .header-mid .menu__list .menu__item__quienes {
  position: relative;
}
.header .header-mid .menu__list .menu__item__quienes::before, .header .header-mid .menu__list .menu__item__quienes::after {
  content: "";
  background-color: #ffffff;
  width: 1px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .header-mid .menu__list .menu__item__quienes::before {
  left: 0px;
}
.header .header-mid .menu__list .menu__item__quienes::after {
  right: 0px;
}
.header.navActive .main-menu {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header.navActive .main-menu {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    overflow-y: auto;
    padding-bottom: 50%;
  }
}
.header .main-menu {
  background-color: #0071bc;
  width: auto;
  border-radius: 30px;
  padding: 0px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .main-menu {
    position: fixed;
    background-color: #ffffff;
    z-index: 110;
    top: 114px;
    right: 0;
    border-radius: 0;
    padding-top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-top: 14px;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
}
.header .main-menu a.active-item .arrow-nav {
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}
.header .main-menu a.active-item .arrow-nav:after {
  -webkit-transform: rotate(85deg) translate(-4px, -4px);
          transform: rotate(85deg) translate(-4px, -4px);
}
.header .main-menu .arrow-nav {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .main-menu .arrow-nav {
    position: absolute;
    width: 2px;
    height: 9px;
    background-color: #585858;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 9px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
.header .main-menu .arrow-nav:after {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .header .main-menu .arrow-nav:after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 9px;
    background-color: #585858;
    -webkit-transform: rotate(-85deg) translate(-4px, 4px);
            transform: rotate(-85deg) translate(-4px, 4px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.seccionBanca-virtual header,
.seccionBanca-virtual footer {
  display: none;
}

.logo-gnb-banca {
  margin-bottom: 20px;
}

.copyright {
  font-size: 12px;
}

/* Banca Virtual */
.seccion-banca-virtual {
  background-image: url(../../Content/files/images/banca-virtual/bg-banca-vitual.jpg);
  background-position: center bottom;
  background-size: cover;
}
@media (min-width: 1600px) {
  .seccion-banca-virtual {
    min-height: 100vh;
  }
}
.seccion-banca-virtual {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .wrapper {
    height: 100%;
  }
}
.seccion-banca-virtual .wrapper {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1600px) {
  .seccion-banca-virtual .wrapper {
    min-height: 100vh;
  }
}
.seccion-banca-virtual .wrapper {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .wrapper > .container {
    height: 100%;
  }
}
.seccion-banca-virtual .wrapper > .container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1600px) {
  .seccion-banca-virtual .wrapper > .container {
    min-height: 100vh;
  }
}
.seccion-banca-virtual .wrapper > .container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.seccion-banca-virtual .row {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .row {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    height: 100%;
  }
}
.seccion-banca-virtual .row {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1600px) {
  .seccion-banca-virtual .row {
    min-height: 100vh;
  }
}
.seccion-banca-virtual .row {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .row .col-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.seccion-banca-virtual .row .col-main {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 768px) {
  .seccion-banca-virtual .row .col-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.seccion-banca-virtual .row .col-img {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccion-banca-virtual .main-text {
  width: 100%;
}
.seccion-banca-virtual .img-section {
  width: 100%;
}
@media (min-width: 768px) {
  .seccion-banca-virtual .img-section {
    width: 97%;
    margin-top: 20px;
  }
}
.seccion-banca-virtual .img-section {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 1600px) {
  .seccion-banca-virtual .img-section {
    width: 100%;
  }
}
.seccion-banca-virtual .img-section {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccion-banca-virtual #nav-tabContent-banca {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 30px;
  border-radius: 10px;
}

#tablist-banca {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
}
#tablist-banca .nav-banca {
  width: 50%;
  border: 0;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  color: #2D609D;
}
#tablist-banca .nav-banca.active {
  color: #86C157;
  font-weight: 700;
  text-decoration: underline;
}

.link-politicas {
  color: #585858;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.link-politicas:hover {
  color: #585858;
  text-decoration: underline;
  font-size: 11.2px;
}

.content-contact {
  position: relative;
}
.content-contact p {
  color: #434343;
}
.content-contact p.link-registro {
  text-align: center;
  margin: 0.5rem 0;
  font-weight: 500;
}
.content-contact p.link-registro a {
  font-weight: 700;
}
.content-contact a {
  color: #2D609D;
}
.content-contact .list-links {
  list-style: none;
  padding: 0;
  font-size: 14px;
  width: 80%;
  display: block;
  margin: 30px auto;
}
.content-contact .list-links li .txt-links {
  font-size: 14px;
}
.content-contact .list-links li .txt-links a {
  color: #585858;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}
.content-contact .list-links li:first-child .txt-links a {
  color: #2D609D;
  margin-left: 8px;
}

/* Popup oculto inicialmente */
.popup-box {
  position: absolute;
  bottom: 80%; /* se muestra arriba del enlace */
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-10px);
          transform: translateX(-50%) translateY(-10px);
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 45px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  /* Animación al mostrar */
}
.popup-box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.popup-box {
  /* Opcional: un pequeño triángulo debajo del popup */
}
.popup-box::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.popup-box .list-linea-atencion {
  list-style: none;
  padding: 0;
}
.popup-box .list-linea-atencion li.divider {
  margin: 18px 0;
}
.popup-box .list-linea-atencion li.divider:before {
  content: "";
  width: 40%;
  display: block;
  height: 0.5px;
  background-color: #707070;
  opacity: 0.4;
}
.popup-box .list-linea-atencion li a {
  color: #434343;
  display: inline-block;
  line-height: 1.2;
}
.popup-box {
  /* Botón de cierre */
}
.popup-box .close-popup {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #2D609D;
  font-weight: 700;
}

/* Footer */
.footer-banca-v {
  background-color: #fff;
}
.footer-banca-v .container {
  padding: 0;
}

.seccionHome h1, .seccionHome h2, .seccionHome h3, .seccionHome h4, .seccionHome a, .seccionHome p, .seccionHome li, .seccionHome span {
  font-family: "Open Sans", sans-serif;
}
.seccionHome img {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: block;
}
.seccionHome .section .container {
  width: 100%;
  max-width: 1138px;
  position: relative;
  padding: 20px 40px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .section .container {
    padding: 20px 20px;
  }
}
.seccionHome .wp-home {
  margin-top: -120px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .wp-home {
    margin-top: 0px;
  }
}
.seccionHome #banner {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 650px;
}
.seccionHome #banner:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.seccionHome #banner:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0, 0, 0, 0.65)), color-stop(100%, rgba(10, 10, 10, 0)));
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(10, 10, 10, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#0a0a0a', GradientType=1 );
}
.seccionHome #banner .container {
  padding: 0;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  z-index: 2;
}
.seccionHome #banner .cont-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.seccionHome #banner img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner img {
    max-height: 100vh;
  }
}
@media (max-width: 500px) {
  .seccionHome #banner img {
    min-height: 58vh;
    max-height: 100vh;
  }
}
.seccionHome #banner .btn-banner {
  border: 1px solid #ffffff;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  width: 80%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: medium;
  margin: 0 auto 20px;
  padding: 4px 20px;
  font-weight: 400;
}
.seccionHome #banner .main-banner {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-family: "Open Sans";
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner {
    width: 80%;
    max-width: 380px;
    left: 1%;
    top: 5%;
    -webkit-transform: none;
            transform: none;
  }
}
.seccionHome #banner .main-banner .title-small {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  text-shadow: 1px 1px 4px #333333;
  font-size: xx-large;
  font-weight: 300;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner .title-small {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .seccionHome #banner .main-banner .title-small {
    font-size: 13px;
  }
}
.seccionHome #banner .main-banner .title-banner {
  line-height: 1;
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  text-shadow: 1px 1px 4px #333333;
  margin-bottom: 15px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner .title-banner {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .seccionHome #banner .main-banner .title-banner {
    font-size: 45px;
  }
}
.seccionHome #banner .main-banner .subtitle-banner {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  text-shadow: 1px 1px 4px #333333;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner .subtitle-banner {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .seccionHome #banner .main-banner .subtitle-banner {
    font-size: 18px;
  }
}
.seccionHome #banner .main-banner .subtitle-banner strong {
  font-weight: 700;
  text-shadow: 1px 1px 4px #333333;
}
.seccionHome #banner .main-banner p {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-shadow: 0 0 1px #333333;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .seccionHome #banner .main-banner p {
    font-size: 11px;
  }
}
.seccionHome #banner .main-banner .btn-banner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #ffffff;
  padding: 7px 20px;
  border-radius: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.seccionHome #banner .main-banner .btn-banner:hover {
  font-weight: 700;
}
.seccionHome #banner .main-banner .btn-banner:hover span {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}
.seccionHome #banner .main-banner .btn-banner span {
  display: none;
  font-size: 28px;
  font-weight: 500;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  line-height: 0.7;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  margin-left: 3px;
  width: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #banner .main-banner .btn-banner span {
    display: block;
  }
}
.seccionHome {
  /****************************************************** 
          QUICK ACTIONS 
  ******************************************************/
}
.seccionHome #quick-actions {
  background-color: #86C157;
  padding: 40px;
}
.seccionHome #quick-actions .wp-quick-actions {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #quick-actions .wp-quick-actions {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #quick-actions .wp-quick-actions .quick-actions__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box {
  background-color: rgba(69, 141, 12, 0.25);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: 0px 3px 4px #162B45;
          box-shadow: 0px 3px 4px #162B45;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box:hover {
  scale: 1.05;
  -webkit-box-shadow: 0px 0px 7px #162B45;
          box-shadow: 0px 0px 7px #162B45;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box:hover .quick-actions__icon img {
  width: 95%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box:hover .quick-actions__icon img.quick-actions__small {
  width: 95%;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box:hover .quick-actions__text p.quick-actions__title img {
  width: 75px;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #quick-actions .wp-quick-actions .quick-actions__box .content-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .content-box > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #quick-actions .wp-quick-actions .quick-actions__box .content-box > a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__icon {
  width: 40%;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__icon img {
  width: 70%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__icon img.quick-actions__small {
  width: 80%;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text {
  width: 60%;
  color: #ffffff;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text p.quick-actions__title {
  margin-bottom: 30px;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text p.quick-actions__title img {
  width: 65px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text p.quick-actions__title span {
  display: block;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text p strong {
  font-weight: 700;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text .quick-actions__button {
  border: 1px solid #ffffff;
  display: inline-block;
  color: #ffffff;
  padding: 4px 20px;
  border-radius: 20px;
  min-width: 100px;
  text-align: center;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__box .quick-actions__text .quick-actions__button:hover {
  background-color: #ffffff;
  color: #86C157;
  font-weight: 700;
}
.seccionHome #quick-actions .wp-quick-actions .quick-actions__list .quick-actions__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #quick-actions .wp-quick-actions .quick-actions__list .quick-actions__item {
    padding: 15px 0;
  }
}
.seccionHome {
  /****************************************************** 
          RECOMMENDATIONS 
  ******************************************************/
}
.seccionHome #recommendations {
  background-color: #f8f8f8;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.seccionHome #recommendations .recommendations-section__title {
  text-align: center;
  margin: 30px auto 30px;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}
.seccionHome #recommendations .recommendations-grid {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #recommendations .recommendations-grid {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.seccionHome #recommendations .recommendations-grid .recommendation-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #recommendations .recommendations-grid .recommendation-card {
    padding: 15px 0;
  }
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card:hover .recommendation-card__image-wrapper .recommendation-card__image {
  scale: 1.4;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card:hover .recommendation-card__content .recommendation-card__title {
  font-weight: 600;
  color: #0071bc;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card:hover .recommendation-card__content .recommendation-card__title span {
  font-weight: 600;
  color: #0071bc;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card:hover .recommendation-card__content .recommendation-card__cta {
  background-image: url(../../Content/files/images/new-home/icon-arrow-blue-action.png);
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__image-wrapper {
  height: 140px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__image-wrapper .recommendation-card__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px 20px;
  height: 40%;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__content .recommendation-card__title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #333333;
  margin-bottom: 0;
  width: 82%;
  padding-right: 10px;
  text-align: left;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__content .recommendation-card__title span {
  display: block;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.2;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__content .recommendation-card__title span.txt-small {
  font-size: 11px;
}
.seccionHome #recommendations .recommendations-grid .recommendation-card .link-card .recommendation-card__content .recommendation-card__cta {
  width: 40px;
  height: 40px;
  font-size: 0;
  margin-bottom: 0;
  background-image: url(../../Content/files/images/new-home/icon-arrow-blue.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.seccionHome {
  /****************************************************** 
          BENEFITS 
  ******************************************************/
}
.seccionHome #benefits .benefits-grid {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #benefits .benefits-grid {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.seccionHome #benefits .benefits-grid.col-md-6:last-child .benefit-card {
  padding: 0 5px 0 10px;
}
.seccionHome #benefits .benefits-grid .benefit-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 0 5px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #benefits .benefits-grid .benefit-card {
    padding: 15px 0;
  }
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card {
  background-color: #F2F7F5;
  display: block;
  padding: 20px;
  width: 100%;
  color: #333333;
  border-radius: 10px;
  position: relative;
  height: 260px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover {
  -webkit-box-shadow: 0 0 10px rgba(95, 99, 97, 0.35);
          box-shadow: 0 0 10px rgba(95, 99, 97, 0.35);
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover .benefit-card__title {
  font-weight: 600;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover .benefit-card__title strong {
  font-weight: 900;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover .benefit-card__image {
  width: 64%;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover .benefit-card__cta {
  font-weight: 600;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card:hover .benefit-card__cta span {
  display: inline-block;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__title {
  width: 100%;
  font-size: 22px;
  line-height: 1.1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: left;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__title span {
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__title .txt-green {
  color: #99C455;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__image {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__image {
    position: relative;
    margin-right: 0;
    margin-left: auto;
    bottom: 0;
    width: 50%;
  }
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__cta {
  border: 1px solid #333333;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 0;
  padding: 4px 20px;
  border-radius: 30px;
  position: absolute;
  bottom: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.seccionHome #benefits .benefits-grid .benefit-card .link-card .benefit-card__cta span {
  display: none;
  font-size: 28px;
  font-weight: 500;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  line-height: 0.7;
  -webkit-transform: translateY(-1px);
  transform: translateY(-3px);
  margin-left: 3px;
  width: 0;
  vertical-align: middle;
}
.seccionHome {
  /****************************************************** 
          BENEFITS 
  ******************************************************/
}
.seccionHome #services .container {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #services .container {
    padding-top: 0;
  }
}
.seccionHome #services .info-services__grid {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #services .info-services__grid {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.seccionHome #services .info-services__grid .col-md-6:nth-last-child(-n+2) .info-service {
  padding-bottom: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome #services .info-services__grid .col-md-6:nth-last-child(-n+2) .info-service {
    padding: 0px 0px 15px;
  }
}
.seccionHome #services .info-services__grid .info-service {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 0px 15px;
}
.seccionHome #services .info-services__grid .info-service .link-card {
  background-color: #F0F7FF;
  width: 100%;
  min-height: 110px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.seccionHome #services .info-services__grid .info-service .link-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.seccionHome #services .info-services__grid .info-service .link-card:hover .info-service__icon img {
  width: 80%;
}
.seccionHome #services .info-services__grid .info-service .link-card:hover .info-service__wp-txt .info-service__txt {
  font-weight: 700;
}
.seccionHome #services .info-services__grid .info-service .link-card:hover .info-service__wp-txt .info-service_card__cta {
  background-image: url(../../Content/files/images/new-home/icon-arrow-blue-action.png);
}
.seccionHome #services .info-services__grid .info-service .link-card .info-service__icon {
  width: 30%;
}
.seccionHome #services .info-services__grid .info-service .link-card .info-service__icon img {
  width: 65%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.seccionHome #services .info-services__grid .info-service .link-card .info-service__wp-txt {
  width: 70%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.seccionHome #services .info-services__grid .info-service .link-card .info-service__wp-txt .info-service__txt {
  margin-bottom: 0;
  line-height: 1;
  color: #0071bc;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: left;
  padding-right: 2px;
  width: 80%;
}
.seccionHome #services .info-services__grid .info-service .link-card .info-service__wp-txt .info-service_card__cta {
  display: inline-block;
  margin-bottom: 0;
  background-image: url(../../Content/files/images/new-home/icon-arrow-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.seccionHome {
  /******************************************************
      MINI Banner
  *******************************************************/
}
.seccionHome .services-slider {
  overflow: hidden;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.seccionHome .services-slider .row-min-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  min-height: 230px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider .row-min-banner {
    min-height: 240px;
  }
}
.seccionHome .services-slider .wp-txt-banner {
  padding: 17px 10px;
  position: relative;
}
.seccionHome .services-slider .wp-txt-banner.wp-banner-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 0;
}
.seccionHome .services-slider .wp-txt-banner.min-banner-center-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
  width: 70%;
  text-align: center;
  margin-bottom: 0px;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
    width: 90%;
  }
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 992px) {
  .seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
    width: 74%;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full .box-blue {
  padding: 15px 40px;
  border-radius: 100px;
  background-color: rgba(0, 113, 188, 0.8);
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full .box-blue .title-banner {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
}
.seccionHome .services-slider .wp-txt-banner .cont-txt-mini-banner-full .link-cover {
  display: inline-block;
  width: auto;
}
.seccionHome .services-slider .wp-img-float-left {
  width: 40%;
  position: absolute;
  left: -10px;
  z-index: 1;
}
@media (min-width: 768px) {
  .seccionHome .services-slider .wp-img-float-left {
    width: 50%;
    left: -17%;
  }
}
.seccionHome .services-slider .wp-img-float-left {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (min-width: 992px) {
  .seccionHome .services-slider .wp-img-float-left {
    width: 40%;
    left: -10px;
  }
}
.seccionHome .services-slider .wp-img-float-left {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider .wp-img-float-left img {
  width: 85%;
  max-width: none;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider .wp-img-float-left img {
    width: 150%;
    max-width: 170px;
    -webkit-transform: translateX(-55px);
    transform: translateX(-55px);
  }
}
.seccionHome .services-slider .wp-img-float-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  text-align: right;
}
.seccionHome .services-slider .wp-img-float-right .img-right {
  width: 85%;
  max-width: none;
  margin-left: auto;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.seccionHome .services-slider .img-cover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.seccionHome .services-slider .img-cover.border-0 {
  border-radius: 0;
}
.seccionHome .services-slider .title-banner {
  line-height: 1;
}
.seccionHome .services-slider p {
  font-size: 17px;
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider p {
    font-size: 16px;
  }
}
.seccionHome .services-slider p:last-child {
  margin-bottom: 0;
}
.seccionHome .services-slider .shape-border-left {
  width: 60%;
  height: 140%;
  border-top-left-radius: 60%;
  border-bottom-left-radius: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.seccionHome .services-slider .shape-border-right {
  width: 60%;
  height: 140%;
  border-top-right-radius: 60%;
  border-bottom-right-radius: 60%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 98%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  background-color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
  border-radius: 40px;
  padding: 5px;
  position: relative;
  z-index: 1;
  color: #333333;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1080px) {
  .seccionHome .services-slider .wp-info-dates .wp-box-dates {
    width: 75%;
  }
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .icon {
  width: 60px;
  margin-left: -28px;
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text {
  width: 90%;
  padding-left: 5px;
  font-size: 14px;
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a {
  display: inline-block;
  color: #333333;
  line-height: 1;
  margin-bottom: 0;
  background-color: transparent;
  padding-bottom: 0;
}
@media (min-width: 1080px) {
  .seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a {
    width: auto;
  }
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a strong {
  display: block;
}
@media (min-width: 1080px) {
  .seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a strong {
    display: inline;
  }
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a strong {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider .wp-info-dates .wp-box-dates .info-text a.link-mail {
  word-break: break-all;
  overflow-wrap: break-word;
}
.seccionHome .services-slider #alivio-financiero {
  background-image: url(../files/images/new-home/mini-banners/banner-alivio-financiero.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50% auto;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider #alivio-financiero {
    background-size: 40% auto;
  }
}
@media (min-width: 1400px) {
  .seccionHome .services-slider #alivio-financiero {
    background-size: 50% auto;
  }
}
.seccionHome .services-slider #alivio-financiero {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
.seccionHome .services-slider #cambio-de-moneda {
  background-image: url(../files/images/new-home/mini-banners/banner-cambio-de-monedas-y-billetes.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.seccionHome .services-slider #cambio-de-moneda:before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(left top, right top, color-stop(28%, rgb(255, 255, 255)), color-stop(46%, rgba(255, 255, 255, 0.75)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-gradient(linear, left top, right top, color-stop(28%, rgb(255, 255, 255)), color-stop(46%, rgba(255, 255, 255, 0.75)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255) 28%, rgba(255, 255, 255, 0.75) 46%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .services-slider #cambio-de-moneda:before {
    display: block;
  }
}
.seccionHome .services-slider #cambio-de-moneda .wp-txt-banner {
  color: #00727c;
}
.seccionHome .services-slider #cambio-de-moneda .wp-txt-banner .txt-big {
  font-size: 22px;
}
.seccionHome .services-slider #canales-contacto-clientes {
  background-image: url(../files/images/new-home/mini-banners/bg-banner-datos.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.seccionHome .services-slider #actualice-sus-datos {
  background-image: url(../files/images/new-home/mini-banners/bg-actualice-datos2.jpg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.seccionHome .services-slider #actualice-sus-datos:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(235, 227, 215);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgb(235, 227, 215)), color-stop(48%, rgb(242, 238, 231)), color-stop(100%, rgba(249, 249, 249, 0)));
  background: -webkit-gradient(linear, left top, right top, from(rgb(235, 227, 215)), color-stop(48%, rgb(242, 238, 231)), to(rgba(249, 249, 249, 0)));
  background: linear-gradient(to right, rgb(235, 227, 215) 0%, rgb(242, 238, 231) 48%, rgba(249, 249, 249, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe3d7', endColorstr='#f9f9f9', GradientType=1 );
}
.seccionHome .services-slider .title-mini-banner {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 15px;
}
.seccionHome .services-slider .title-mini-banner.title-big {
  font-size: 22px;
}
.seccionHome .services-slider .title-mini-banner .title-date {
  font-weight: 300;
}
.seccionHome .services-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #585858;
  opacity: 1;
  width: 16px !important;
  height: 16px !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.seccionHome .services-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 17px !important;
  height: 17px !important;
  background-color: #86C157;
  border: 1px solid #86C157;
}
.seccionHome .col-img img {
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.seccionHome .col-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: anchor-center;
      -ms-flex-align: anchor-center;
          align-items: anchor-center;
}
.seccionHome .wp-slider-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .seccionHome .wp-slider-services {
    min-height: 158px;
  }
}
.seccionHome .wp-slider-services .link-cover {
  display: block;
  width: 100%;
  height: 100%;
}

.title-modal {
  font-size: 24px;
}

#proceso-seleccion-objetiva-2026 .modal-dialog {
  max-width: 780px;
}

.modal.fade .modal-dialog button.close {
  top: 10px;
}

.list li a {
  color: #333333;
  text-decoration: none;
}
.list li a span {
  display: inline-block;
}
.list li a span p {
  display: inline-block;
  margin-bottom: 0;
}

#moneda-extranjera .modal-dialog {
  width: 90%;
  max-width: 520px;
}

.footer {
  background-color: #f8f8f8;
}
.footer .container {
  padding: 40px 40px 10px;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .container {
    padding: 30px 20px 10px;
  }
}
.footer .footer-grid {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .footer-grid {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.footer .footer-grid .col-logo-footer {
  text-align: center;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .footer-grid .col-logo-footer {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer .footer-grid .col-logo-footer .footer-logo {
  display: inline-block;
  width: 80%;
  max-width: 180px;
}
.footer .footer-grid .col-indicadores-footer {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .footer-grid .col-indicadores-footer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 15px;
  }
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper {
  width: 100%;
  max-width: 262px;
  height: auto;
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores {
  border: 1px solid #808080;
  padding: 12px 20px 12px 0px;
  border-radius: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: justify;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 600;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores:hover {
  border-color: #99C455;
  font-weight: 600;
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores:hover .icont-desc span.sp.icont-rg {
  background-color: #99C455;
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores span.sp.icont-lt {
  display: none;
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores .icont-desc span.sp.icont-rg {
  background-image: none;
  background-color: #808080;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -49px;
  top: -13px;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer .footer-grid .col-indicadores-footer .calificacion-indicadores-wrapper .icont.indicadores .icont-desc span.sp.icont-rg:before {
  content: "❯";
  color: #ffffff;
  -webkit-transform: rotate(45deg) translate(7px, 0px);
          transform: rotate(45deg) translate(7px, 0px);
  display: block;
}
.footer .footer-grid .col-servicios-footer {
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 767px) {
  .footer .footer-grid .col-servicios-footer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
    margin-bottom: 5px;
  }
}
.footer .footer-grid .col-servicios-footer .footer__links {
  list-style: none;
  padding: 0;
}
.footer .footer-grid .col-servicios-footer .footer__links li a {
  color: #333333;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  font-size: 14px;
}
.footer .footer-grid .col-servicios-footer .footer__links li a:after {
  content: "";
  background-color: #333333;
  display: block;
  height: 1px;
  width: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .footer-grid .col-servicios-footer .footer__links li a:hover:after {
  width: 100%;
}
.footer .copytight-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.footer .copytight-legal p {
  font-size: 11px;
  text-align: center;
  color: #333333;
  margin: 7px auto;
  font-weight: 400;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 1024px) {
  .footer .copytight-legal p {
    font-size: 10px;
  }
}
.footer .copytight-legal .img-intendencia {
  position: absolute;
  right: 0;
  /*********************************************************************************
       MAX Width 
  *********************************************************************************/
}
@media (max-width: 1024px) {
  .footer .copytight-legal .img-intendencia {
    position: relative;
  }
}

.indicadores-hover-container {
  color: #666666;
  font-size: 14px;
  padding: 0;
  border: 1px solid #808080;
  border-top: 0;
  top: 62px;
  position: absolute;
  background: #f8f8f8;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 5px 14px 0px #F2F7F5;
          box-shadow: 0 5px 14px 0px #F2F7F5;
  z-index: 1;
  display: none;
  width: 100.6%;
  left: -1px;
}
.indicadores-hover-container h3 {
  font-size: 14px;
  font-weight: 600;
}
.indicadores-hover-container .indicadores-tabla {
  width: 100%;
}
.indicadores-hover-container .indicadores-tabla td {
  padding: 3px 15px;
  padding-bottom: 6px;
  color: #333333;
}
.indicadores-hover-container .indicadores-tabla-title {
  background: #f8f8f8;
  font-weight: 600;
}
.indicadores-hover-container .indicadores-tabla-item {
  border-bottom: 1px solid #F2F2F2;
  font-size: 0.8em;
}