@charset "UTF-8";
/* ESTILOS -------------------- */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* FUENTES */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.hamburger {
  padding: 8px 8px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.45s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger-box {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 18px;
  height: 2px;
  background-color: #CF792E;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -5px;
}
.hamburger-inner::after {
  bottom: -5px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.appear-animation {
  opacity: 0;
}

.appear-animation-visible {
  opacity: 1;
}

.animated,
.appear-animation {
  animation-fill-mode: both;
  animation-duration: 1.25s;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.25);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.125);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 200px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.8, 0.8);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  17% {
    transform: rotate(60deg);
    opacity: 1;
  }
  34% {
    transform: rotate(120deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
  67% {
    transform: rotate(240deg);
    opacity: 1;
  }
  84% {
    transform: rotate(300deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes semi {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes semi2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*  Variables   */
/*  Variables end   */
/* GENERAL -------------------- */
/*  COLORES  */
/*  Validados COLORES  */
/* Ajustes colores*/
/*  FIN Validados COLORES  */
/*$orange     : #E77A22;
$orange-dark: #CF792E;
$white      : #ffffff;
$header     : #F7F9FC;
$footer     : #808080;
$gold       : #FFD700;
$salmon     : #FFA459;
$grey-white : #ECECEC;
$grey       : #4D4D4D;
$grey-light : #6F6F6F;
$grey-extra-light : #DADADA;
$watergreen : #00667F;*/
/*  FIN Validados COLORES  */
/*  COLORES END   */
/* GENERAL -------------------- */
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
}
html .maxancho,
body .maxancho {
  max-width: 1600px;
  margin: 0 auto;
}

body {
  overflow-x: hidden;
}

.grecaptcha-badge {
  right: -300px !important;
}

a,
button,
.animar,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .back-white,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select,
main .carrusel-year .year-slide ul li.control,
main .carrusel-year .listed-items ul li.control,
main .no-carrousel .year-slide ul li.control,
main .no-carrousel .listed-items ul li.control,
main .carrusel-year .year-slide ul li.control::before,
main .carrusel-year .listed-items ul li.control::before,
main .no-carrousel .year-slide ul li.control::before,
main .no-carrousel .listed-items ul li.control::before,
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon,
main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon,
main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon,
main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon,
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon img,
main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon img,
main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon img,
main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon img,
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi p,
main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi p,
main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi p,
main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi p,
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button,
main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button,
main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button,
main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button,
main .back-carru .a-slide .carrusel-txt.quien .carru-links .mas,
main .back-carru .no-slide .carrusel-txt.quien .carru-links .mas,
main.servicios .inverse .backwhite-pos img,
main.beneficios .inverse .backwhite-pos img,
main.contacto .inverse .backwhite-pos img,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger img,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger .hamburger-box .hamburger-inner,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner::before,
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner::after,
header .maxancho .col-12 .mainNav .ancho-2 .menu,
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn span,
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-right,
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-double-down,
.modal .modal-dialog .modal-content .modal-body .actions .aviso,
form .form-group .icon,
form .form-control .icon,
form .form-group .custom-file-label,
form .form-control .custom-file-label,
form .form-group input[type=text],
form .form-group textarea,
form .form-group input[type=file],
form .form-group input[type=number],
form .form-control input[type=text],
form .form-control textarea,
form .form-control input[type=file],
form .form-control input[type=number],
.btn-whatsapp .triangle,
.btn-whatsapp small,
.btn-whatsapp,
.enviar {
  -webkit-transition: all 0.5s ease;
  /* Safari 3.1 to 6.0 */
  -o-transition: all 0.5s ease;
  moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  padding: 0;
}
a strong,
p strong,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
}

p {
  font-weight: 300;
  font-size: 4vw;
  line-height: 135%;
  margin: 0;
  padding: 0;
}
p strong {
  color: #6F6F6F;
}

h3 {
  font-size: 6vw;
}

h5 {
  font-weight: 700;
  color: #6C6D70;
  font-size: 7.5vw;
}

h6 {
  font-weight: 700;
  font-size: 5vw;
}

.gradient-text {
  background: linear-gradient(45deg, #811811, #f5d582);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  padding: 0 0 10px 0;
}

.backcolor-grey {
  background: #EDEEEF;
}

.btn-whatsapp {
  z-index: 2000;
  padding: 2px 30px 2px 20px;
  position: fixed;
  right: -20px;
  bottom: 25vh;
  border-radius: 2px;
  color: white;
  font-size: 1.125rem;
}
.btn-whatsapp small {
  position: absolute;
  margin: -7px auto auto -50px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #f5d582;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}
.btn-whatsapp .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent #f5d582 transparent;
  transform: rotate(224deg);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.btn-whatsapp:hover {
  right: -20px;
}
.btn-whatsapp:hover small {
  background: #4fc75b !important;
  color: white !important;
  animation-name: semi;
  transform: rotate(360deg);
}
.btn-whatsapp:hover small .triangle {
  border-color: transparent transparent #4fc75b transparent;
}
.btn-whatsapp.fixado {
  position: fixed;
  bottom: 25vh;
}

.button-b {
  background: #811811;
  color: #ffffff;
  border-radius: 30px;
  padding: 3px 20px 4px;
  display: inline-flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-decoration: none;
  width: 85%;
}
.button-b:hover {
  background: #ffffff;
  color: #811811;
}

.button-n {
  border: none;
  outline: none;
  box-shadow: none;
  background: linear-gradient(to top, #811811, #f5d582);
  border-radius: 30px;
  padding: 3px 20px 4px;
  display: inline-flex;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.875rem;
  margin-top: 10px;
}
.button-n:hover {
  background: #6F6F6F;
  color: #811811;
}

.conditiopen {
  text-decoration: none;
  color: #811811;
}
.conditiopen:hover {
  color: #ffffff;
  background: #811811;
}

form section article {
  max-width: 1100px;
}
form section article h5 {
  color: #811811;
}
form section article h6 {
  font-weight: 400;
  font-size: 115%;
  color: #811811;
}
form .form-group, form .form-control {
  padding: 10px 15px;
  position: relative;
}
form .form-group label, form .form-control label {
  padding: 0 0 10px;
  font-weight: 600;
  color: #939598;
}
form .form-group label a, form .form-control label a {
  text-decoration: none;
  color: #6C6D70;
}
form .form-group input[type=text], form .form-group textarea,
form .form-group input[type=file], form .form-group input[type=number], form .form-control input[type=text], form .form-control textarea,
form .form-control input[type=file], form .form-control input[type=number] {
  background: white;
  border: none;
  padding: 4px 15px;
  width: 100%;
  border-radius: 24px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  color: #6C6D70;
  font-size: 95%;
}
form .form-group input[type=text]:focus, form .form-group input[type=text].focus-visible, form .form-group textarea:focus, form .form-group textarea.focus-visible,
form .form-group input[type=file]:focus,
form .form-group input[type=file].focus-visible, form .form-group input[type=number]:focus, form .form-group input[type=number].focus-visible, form .form-control input[type=text]:focus, form .form-control input[type=text].focus-visible, form .form-control textarea:focus, form .form-control textarea.focus-visible,
form .form-control input[type=file]:focus,
form .form-control input[type=file].focus-visible, form .form-control input[type=number]:focus, form .form-control input[type=number].focus-visible {
  outline: #5b110b auto 1px;
  box-shadow: none;
  background: rgb(255, 242, 249.9879518072);
  color: #ff59bf;
}
form .form-group input[type=text]::-moz-placeholder, form .form-group textarea::-moz-placeholder, form .form-group input[type=file]::-moz-placeholder, form .form-group input[type=number]::-moz-placeholder, form .form-control input[type=text]::-moz-placeholder, form .form-control textarea::-moz-placeholder, form .form-control input[type=file]::-moz-placeholder, form .form-control input[type=number]::-moz-placeholder {
  font-size: 100%;
  color: #6C6D70;
}
form .form-group input[type=text]::placeholder, form .form-group textarea::placeholder,
form .form-group input[type=file]::placeholder, form .form-group input[type=number]::placeholder, form .form-control input[type=text]::placeholder, form .form-control textarea::placeholder,
form .form-control input[type=file]::placeholder, form .form-control input[type=number]::placeholder {
  font-size: 100%;
  color: #6C6D70;
}
form .form-group input[type=text], form .form-group select, form .form-group input[type=number], form .form-control input[type=text], form .form-control select, form .form-control input[type=number] {
  height: 48px;
}
form .form-group select, form .form-control select {
  position: relative;
  border: none;
  padding: 4px 15px;
  width: 100%;
  border-radius: 24px;
  color: #6C6D70;
  font-size: 95%;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background-position: right 0.75rem center;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E77A22'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  background-size: 22px 20px;
}
form .form-group .custom-file-input, form .form-control .custom-file-input {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: 400px;
  margin: 0;
  opacity: 0;
  height: 54px;
  margin-bottom: 12px;
}
form .form-group .custom-file-label, form .form-control .custom-file-label {
  background: white;
  color: #DADADA;
  border: none;
  padding: 4px 15px 4px 75px;
  width: 100%;
  max-width: 400px;
  height: 48px;
  border-radius: 24px;
  font-size: 95%;
  color: #6C6D70;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: absolute;
  z-index: 6;
  left: 15px;
}
form .form-group .custom-file-label.added, form .form-control .custom-file-label.added {
  color: #6F6F6F;
}
form .form-group .icon, form .form-control .icon {
  position: absolute;
  padding: 0px 8px;
  padding: 6px 10px;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  background: #811811;
  color: white;
  margin-top: 5px;
  left: 35px;
  z-index: 7;
}
form .form-group .icon img, form .form-control .icon img {
  transform: rotate(180deg);
}
form input[type=submit] {
  margin-top: 15px;
}
form.workcv {
  margin-top: 0;
}
form.workcv .form-group {
  padding: 10px 15px 5px;
}
form.workcv .form-group label {
  padding: 0 0 5px;
}
form.solicitudes .custom-file-input,
form.solicitudes .custom-file-label, form.workcv .custom-file-input,
form.workcv .custom-file-label {
  max-width: calc(100% - 30px);
}
form.solicitudes .custom-file-input, form.workcv .custom-file-input {
  margin-bottom: 0;
}

.spacer {
  height: 60px;
}

.modal .modal-dialog {
  max-width: 600px !important;
}
.modal .modal-dialog .modal-content {
  padding: 20px;
  border-radius: 35px;
  background: rgba(236, 236, 236, 0.9);
  border: 1px solid #DADADA;
}
.modal .modal-dialog .modal-content .modal-header, .modal .modal-dialog .modal-content .modal-body {
  border: none;
  position: relative;
}
.modal .modal-dialog .modal-content .btn-close {
  position: absolute;
  background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center/12px auto no-repeat;
  background-color: #811811;
  top: 0px;
  right: -10px;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: none;
  color: white;
  border-radius: 15px;
  opacity: 1;
}
.modal .modal-dialog .modal-content .btn-close:hover {
  background-color: #ff59bf;
}
.modal .modal-dialog .modal-content .modal-title {
  text-align: center;
  font-size: 150%;
  line-height: 120%;
  padding: 0 20px;
  width: 100%;
}
.modal .modal-dialog .modal-content .modal-title span {
  display: block;
  color: #ff59bf;
}
.modal .modal-dialog .modal-content .modal-title small {
  font-size: 70%;
  color: #ff59bf;
  font-weight: 400;
}
.modal .modal-dialog .modal-content .modal-body .parametros {
  padding-bottom: 20px;
}
.modal .modal-dialog .modal-content .modal-body .parametros label {
  padding: 0 0 10px;
  font-weight: 600;
  line-height: 110%;
}
.modal .modal-dialog .modal-content .modal-body .parametros label small {
  display: block;
  font-weight: 400;
}
.modal .modal-dialog .modal-content .modal-body .parametros input[type=text], .modal .modal-dialog .modal-content .modal-body .parametros textarea,
.modal .modal-dialog .modal-content .modal-body .parametros input[type=file], .modal .modal-dialog .modal-content .modal-body .parametros input[type=number] {
  background: white;
  border: none;
  padding: 4px 15px;
  width: 100%;
  border-radius: 24px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.modal .modal-dialog .modal-content .modal-body .parametros input[type=text], .modal .modal-dialog .modal-content .modal-body .parametros input[type=number], .modal .modal-dialog .modal-content .modal-body .parametros select {
  height: 48px;
}
.modal .modal-dialog .modal-content .modal-body .parametros select {
  position: relative;
  border: none;
  padding: 4px 15px;
  width: 100%;
  border-radius: 24px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E77A22'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  background-size: 22px 20px;
}
.modal .modal-dialog .modal-content .modal-body .reqitem {
  padding: 0 20px 10px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  width: 90%;
}
.modal .modal-dialog .modal-content .modal-body .reqitem img {
  width: 24px;
  position: relative;
}
.modal .modal-dialog .modal-content .modal-body .reqitem .reqlista {
  margin: 0 0 0 10px;
}
.modal .modal-dialog .modal-content .modal-body .reqitem .reqlista p {
  font-weight: 600;
}
.modal .modal-dialog .modal-content .modal-body .reqitem .reqlista p strong {
  color: #ff59bf;
}
.modal .modal-dialog .modal-content .modal-body .actions {
  text-align: center;
  padding: 0 10px 15px;
}
.modal .modal-dialog .modal-content .modal-body .actions .aviso {
  color: red;
  font-size: 75%;
  text-align: center;
  padding: 0 10px 10px;
  opacity: 0;
}
.modal .modal-dialog .modal-content .modal-body .actions .aviso.is-active {
  opacity: 1;
}
.modal .modal-dialog .modal-content .modal-body .actions .button-n {
  margin: 0 5px;
}
.modal .modal-dialog .modal-content .modal-body .disclaim {
  text-align: center;
  font-size: 75%;
  line-height: 110%;
  padding: 20px 0 0;
}
.modal .modal-dialog .modal-content .trabajos .modal-header {
  padding: 15px 15px 0;
}
.modal .modal-dialog .modal-content .trabajos .modal-body {
  padding: 0 15px 15px;
}
.modal .modal-dialog .modal-content .trabajos .modal-title {
  line-height: 80%;
}
.modal .modal-dialog .modal-content .trabajos .modal-title small {
  font-size: 70%;
  color: #ff59bf;
  font-weight: 700;
  display: block;
  padding: 10px 0;
}

.modal-backdrop.show {
  opacity: 0.2;
}
.modal-backdrop {
  background: white;
}

@media (min-width: 576px) {
  h3 {
    font-size: 4.5vw;
  }
  h5 {
    font-size: 4.125vw;
  }
  h6 {
    font-size: 3.75vw;
  }
  p {
    font-size: 2.25vw;
  }
}
@media (min-width: 768px) {
  h5 {
    font-size: 3vw;
  }
  h6 {
    font-size: 2.5vw;
  }
  p {
    font-size: 1.625vw;
  }
  .modal .modal-dialog .modal-content {
    padding: 20px 30px;
  }
  .modal .modal-dialog .modal-content .modal-title {
    padding: 0 45px;
  }
  .modal .modal-dialog .modal-content .modal-body .reqitem {
    padding: 0 20px 10px calc(20% - 20px);
    width: 80%;
  }
  .modal .modal-dialog .modal-content .modal-body .actions {
    padding: 0 20px 15px;
  }
  .spacer {
    height: 180px;
  }
}
@media (min-width: 992px) {
  h5 {
    font-size: 2rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  form {
    margin-top: 90px;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 3.75vw;
  }
}
header a, header p {
  font-size: 12px;
}
header {
  position: relative;
  background: #F7F9FC;
  width: 100%;
}
header .maxancho .col-12 {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
header .maxancho .col-12 .dolar-h {
  padding: 20px 5px 15px;
  width: 100%;
  position: relative;
  z-index: 200;
  background: #F7F9FC;
}
header .maxancho .col-12 .dolar-h .dolar p {
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 700;
  color: #6F6F6F;
}
header .maxancho .col-12 .dolar-h .dolar p span {
  padding: 0 10px;
}
header .maxancho .col-12 .dolar-h .dolar p .tipo-cambio {
  color: #811811;
}
header .maxancho .col-12 .dolar-h .dolar p .compra {
  border-left: 1px solid #6F6F6F;
  border-right: 1px solid #6F6F6F;
}
header .maxancho .col-12 .dolar-h .dolar p .valor {
  font-weight: 400;
  font-size: 65%;
  padding-left: 5px;
}
header .maxancho .col-12 .mainNav {
  border-bottom: 1px solid rgb(192.5, 192.5, 192.5);
  border-top: 1px solid rgb(192.5, 192.5, 192.5);
  padding: 20px 15px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
header .maxancho .col-12 .mainNav .ancho-1 {
  width: 35%;
}
header .maxancho .col-12 .mainNav .ancho-1 .logo-coope {
  position: relative;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  z-index: 200;
}
header .maxancho .col-12 .mainNav .ancho-1 .logo-coope img {
  display: flex;
  width: 100%;
  max-width: 125px;
}
header .maxancho .col-12 .mainNav .ancho-2 {
  width: 65%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
header .maxancho .col-12 .mainNav .ancho-2 small {
  color: #6F6F6F;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 3px 0 15px;
}
header .maxancho .col-12 .mainNav .ancho-2 .csronline {
  display: inline-flex;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to top, #811811, rgb(244.2444444444, 209.8266666667, 120.5555555556));
  border-radius: 30px;
  border: 0px;
  padding: 4px 18px;
  line-height: 100%;
  position: relative;
  z-index: 200;
}
header .maxancho .col-12 .mainNav .ancho-2 .csronline:hover {
  background: #ffffff;
  border: 1px solid #811811;
  color: #811811;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger {
  position: relative;
  z-index: 190;
  width: 36px;
  height: 36px;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger img {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 4px;
  right: 4px;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger .hamburger-box {
  height: 18px;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger .hamburger-box .hamburger-inner {
  opacity: 0;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active img {
  opacity: 0;
  transform: rotate(360deg);
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner {
  opacity: 1;
  background: #811811;
}
header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner::before, header .maxancho .col-12 .mainNav .ancho-2 .hamburger.is-active .hamburger-inner::after {
  background-color: #811811;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu {
  position: absolute;
  top: calc(-100vh - 690px);
  width: calc(100vw - 0px);
  right: 0;
  padding: 80px 0 0;
  background-color: #EDEEEF;
  z-index: 100;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu.is-active {
  top: 0;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 {
  display: flex;
  flex-flow: row wrap;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .linea-vertical {
  min-height: 100%;
  background-image: linear-gradient(to bottom, #f5d582, #811811);
  width: 25px;
  position: relative;
  display: inline-flex;
  z-index: 1000;
  border: none;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu {
  padding: 0 0 30px 25px;
  width: calc(100% - 25px);
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 8px 0;
  width: calc(100% - 15px);
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn span {
  background: linear-gradient(to right, #811811, #f5d582);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-right,
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-double-down {
  font-size: 60%;
  width: 15px;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-right {
  color: #6F6F6F;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn .fa-angle-double-down {
  color: #811811;
  position: absolute;
  opacity: 0;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:hover, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:focus {
  font-weight: 700;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:hover .fa-angle-right path, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:focus .fa-angle-right path {
  color: #811811;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:hover span, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn:focus span {
  padding-left: 5px;
  background: linear-gradient(to right, #811811, #f5d582);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn.is-active .fa-angle-right {
  opacity: 0;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .gradient-btn.is-active .fa-angle-double-down {
  opacity: 1;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .submenu {
  padding-left: 0px !important;
  display: none;
  list-style-type: none;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .submenu li {
  list-style-type: none;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .submenu li a {
  color: #6C6D70;
  font-weight: 400 !important;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 100%;
  width: 92.5%;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .submenu li a:hover {
  background: #811811;
  border-radius: 2px;
  color: white;
}
header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .submenu .linea-vertical {
  display: none;
}

@media (min-width: 768px) {
  header .maxancho .col-12 .dolar-h {
    padding: 20px 20px 15px;
  }
  header .maxancho .col-12 .mainNav {
    padding: 20px 30px;
  }
}
@media (min-width: 992px) {
  header .maxancho .col-12 .dolar-h {
    position: absolute;
    background: none;
    padding: 10px;
    z-index: 90;
    width: 390px;
    left: calc(50vw - 195px);
    border: 1px solid #DADADA;
    border-radius: 30px;
  }
  header .maxancho .col-12 .mainNav {
    padding: 20px calc(7.5vw - 10px);
    border: none;
  }
  header .maxancho .col-12 .mainNav .ancho-1 .logo-coope img {
    max-width: 160px;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu {
    top: 80px;
    left: 100vw;
    padding-top: 10px;
    background: none;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu.is-active {
    top: 80px;
    left: 0;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 {
    display: flex;
    flex-flow: row wrap;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .linea-vertical {
    display: none;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub {
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0 30px 0 20px;
    border-right: 1px solid #DADADA;
    position: relative;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub:last-of-type, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub:last-of-type {
    border: none;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .gradient-btn, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .gradient-btn {
    width: auto;
    padding: 0;
    font-size: 16px;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .gradient-btn span, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .gradient-btn span {
    width: calc(100% - 15px);
    color: #6F6F6F;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .gradient-btn:hover, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .gradient-btn:hover {
    font-weight: 500;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .gradient-btn:hover span, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .gradient-btn:hover span {
    padding: 0;
    color: #811811;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .gradient-btn.is-active span, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .gradient-btn.is-active span {
    color: #811811;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .submenu, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .submenu {
    position: absolute;
    left: 0;
    top: 30px;
    border: 1px solid #DADADA;
    background-color: #EDEEEF;
    padding: 10px 0;
    min-width: 200px;
    width: 25vw;
    max-width: 280px;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .submenu .linea-vertical, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .submenu .linea-vertical {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15px;
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .nosub .submenu .gradient-btn, header .maxancho .col-12 .mainNav .ancho-2 .menu .halto-1 .navmenu .withsub .submenu .gradient-btn {
    width: auto;
    padding: 5px 25px 5px 20px;
    margin-left: 15px;
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  header p, header a {
    font-size: 14px;
  }
  header .maxancho .col-12 .dolar-h {
    width: 430px;
    left: calc(50% - 215px);
  }
  header .maxancho .col-12 .mainNav .ancho-2 .menu {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  header .maxancho .col-12 .mainNav {
    padding: 20px 80px;
  }
}
.antifoot {
  min-height: 100%;
  margin-bottom: -330px;
}
.antifoot:after {
  content: "";
  display: block;
  height: 330px;
}

footer {
  height: 330px;
  position: relative;
  z-index: 100;
  background: #811811;
  color: #ffffff;
}
footer .maxancho .opciones {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  padding: 50px 0;
}
footer .maxancho .opciones a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  text-decoration: none;
  color: white;
  padding: 2px 0;
  line-height: 100%;
  font-weight: 500;
}
footer .maxancho .social {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
}
footer .maxancho .social a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  color: #811811;
  background: #ffffff;
  margin: 0 10px;
  font-size: 1.25rem;
}
footer .maxancho .social a:hover {
  color: white;
  background: #6C6D70;
}
footer .maxancho .f-cr-pos {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
footer .maxancho .f-cr-pos .logo1na {
  width: auto;
  max-width: 70px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  margin: 0;
}
footer .maxancho .f-cr-pos .logo1na a {
  display: flex;
}
footer .maxancho .f-cr-pos .logo1na a img {
  width: 100%;
  padding-right: 20px;
}
footer .maxancho .f-cr-pos .cpright {
  width: auto;
  max-width: 250px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border-left: 1px solid white;
  padding-left: 20px;
  margin: 0;
}
footer .maxancho .f-cr-pos .cpright p {
  font-size: 16px;
  line-height: 115%;
  font-weight: 500;
  margin: 0;
}
footer .maxancho .f-cr-pos .cpright p span {
  display: block;
}

@media (min-width: 576px) {
  .antifoot {
    margin-bottom: -300px;
  }
  .antifoot:after {
    height: 300px;
  }
  footer {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .antifoot {
    margin-bottom: -200px;
  }
  .antifoot:after {
    height: 200px;
  }
  footer {
    height: 200px;
  }
  footer .maxancho .opciones {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-content: flex-start;
    padding: 50px 0 20px;
  }
  footer .maxancho .opciones a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    font-size: 14px;
  }
  footer .maxancho .social {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
  }
  footer .maxancho .social a {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    margin: 0 15px 0 0;
    font-size: 1.125rem;
  }
  footer .maxancho .f-cr-pos {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
  }
  footer .maxancho .f-cr-pos .logo1na {
    max-width: 80px;
  }
  footer .maxancho .f-cr-pos .logo1na a img {
    padding-right: 10px;
  }
  footer .maxancho .f-cr-pos .cpright {
    border-left: none;
    padding: 2px 0 0 10px;
  }
  footer .maxancho .f-cr-pos .cpright p {
    font-size: 14px;
  }
  footer .maxancho .f-cr-pos .cpright p span {
    padding-top: 2px;
  }
}
@media (min-width: 992px) {
  .antifoot {
    margin-bottom: -275px;
  }
  .antifoot:after {
    height: 275px;
  }
  footer {
    height: 275px;
  }
  footer .maxancho .opciones {
    padding: 75px 0 40px;
  }
  footer .maxancho .f-cr-pos {
    padding-top: 75px;
  }
}
@media (min-width: 1200px) {
  .antifoot {
    margin-bottom: -300px;
  }
  .antifoot:after {
    height: 300px;
  }
  footer {
    height: 300px;
  }
  footer .maxancho .opciones {
    padding: 90px 0 40px;
  }
  footer .maxancho .f-cr-pos {
    padding-top: 90px;
  }
}
main {
  background: #F7F9FC;
}
main .backg {
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
main .backg .txt {
  padding: 0 30px 30px;
}
main .backg .txt h3 {
  line-height: 110%;
}
main .backg .item {
  width: 100%;
}
main .backg .img-item {
  width: 90vw;
  margin: 0 10vw 0 0;
}
main .backg .img-item img {
  width: 95vw;
  height: 71.25vw;
  border-top-right-radius: 35.625vw;
  border-bottom-right-radius: 35.625vw;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
main .backg ul {
  padding: 0 0 0 15px;
}
main .backg .share {
  color: white;
  background: #811811;
  font-weight: 500;
  padding: 14px 20px;
  line-height: 100%;
  margin-top: 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
main .backg .share span {
  padding: 0;
}
main .backg .share a {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #811811;
  text-decoration: none;
  margin-left: 10px;
  background: white;
  border: 1px solid white;
  font-size: 100%;
}
main .backg .share a:hover {
  background: #811811;
  color: white;
}
main .btn-mobile {
  background: linear-gradient(to right, #811811, #f5d582);
  width: 100vw;
  bottom: 0;
  padding: 20px;
  border-bottom: 20px solid #6C6D70;
  text-decoration: none;
  color: white;
  font-weight: 900;
  text-align: center;
  position: fixed;
  z-index: 1020;
}
main .carrusel-year, main .no-carrousel {
  position: relative;
  margin-left: 30px;
  padding: 60px 0 0;
}
main .carrusel-year .year-slide, main .carrusel-year .listed-items, main .no-carrousel .year-slide, main .no-carrousel .listed-items {
  position: relative;
}
main .carrusel-year .year-slide ul, main .carrusel-year .listed-items ul, main .no-carrousel .year-slide ul, main .no-carrousel .listed-items ul {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  padding: 0;
  margin: 0;
  top: -10px;
  position: relative;
  overflow: scroll;
  padding-bottom: 10px;
}
main .carrusel-year .year-slide ul li.control, main .carrusel-year .listed-items ul li.control, main .no-carrousel .year-slide ul li.control, main .no-carrousel .listed-items ul li.control {
  position: relative;
  color: #6C6D70;
  margin: 0 12px 5px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
main .carrusel-year .year-slide ul li.control:hover, main .carrusel-year .listed-items ul li.control:hover, main .no-carrousel .year-slide ul li.control:hover, main .no-carrousel .listed-items ul li.control:hover {
  color: #811811;
}
main .carrusel-year .year-slide ul li.control::before, main .carrusel-year .listed-items ul li.control::before, main .no-carrousel .year-slide ul li.control::before, main .no-carrousel .listed-items ul li.control::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0;
  background: #811811;
  z-index: 1;
}
main .carrusel-year .year-slide ul li.control.tns-nav-active::before, main .carrusel-year .listed-items ul li.control.tns-nav-active::before, main .no-carrousel .year-slide ul li.control.tns-nav-active::before, main .no-carrousel .listed-items ul li.control.tns-nav-active::before {
  height: 3px;
}
main .carrusel-year .year-slide .tns-inner, main .carrusel-year .listed-items .tns-inner, main .no-carrousel .year-slide .tns-inner, main .no-carrousel .listed-items .tns-inner {
  background: #EDEEEF;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  overflow: hidden;
}
main .carrusel-year .year-slide .slider-year, main .carrusel-year .listed-items .slider-year, main .no-carrousel .year-slide .slider-year, main .no-carrousel .listed-items .slider-year {
  margin: 0;
  position: relative;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt, main .carrusel-year .listed-items .slider-year .carrusel-txt, main .no-carrousel .year-slide .slider-year .carrusel-txt, main .no-carrousel .listed-items .slider-year .carrusel-txt {
  padding: 40px 0;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 {
  padding: 0 30px 40px;
  margin: 0;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 img {
  width: 100%;
  border-radius: 35px;
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 .txt-item, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 .txt-item, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 .txt-item {
  padding: 20px 5px;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item h6, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 .txt-item h6, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 .txt-item h6, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 .txt-item h6 {
  color: #811811;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item .button-b, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 .txt-item .button-b, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 .txt-item .button-b, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 .txt-item .button-b {
  width: 85%;
  margin-top: 20px;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi {
  padding: 20px 30px;
  margin: 10px 0 10px 30px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background: #ffffff;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  text-decoration: none;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon {
  width: 32.5%;
  max-width: 110px;
  aspect-ratio: 1/1;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 20px;
  background: #f5d582;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon img, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon img, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi .icon img, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi .icon img {
  width: 40%;
  max-width: 40px;
  padding: 0 0 10px;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi p, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi p, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi p, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi p {
  color: #6C6D70;
  font-weight: 700;
  padding: 5px 15px;
  width: 67.5%;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover .icon, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover .icon, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover .icon, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover .icon {
  background: #811811;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover .icon img, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover .icon img, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover .icon img, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover .icon img {
  padding: 10px 0;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover p, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover p, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi:hover p, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi:hover p {
  color: #811811;
  padding: 5px 5px 5px 25px;
}
main .carrusel-year .year-slide .slider-year .carrusel-txt:last-of-type, main .carrusel-year .listed-items .slider-year .carrusel-txt:last-of-type, main .no-carrousel .year-slide .slider-year .carrusel-txt:last-of-type, main .no-carrousel .listed-items .slider-year .carrusel-txt:last-of-type {
  padding-bottom: 0;
}
main .carrusel-year .year-slide .credit, main .carrusel-year .listed-items .credit, main .no-carrousel .year-slide .credit, main .no-carrousel .listed-items .credit {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
main .carrusel-year .year-slide .credit .backg-ahorro,
main .carrusel-year .year-slide .credit .backg-bienes, main .carrusel-year .listed-items .credit .backg-ahorro,
main .carrusel-year .listed-items .credit .backg-bienes, main .no-carrousel .year-slide .credit .backg-ahorro,
main .no-carrousel .year-slide .credit .backg-bienes, main .no-carrousel .listed-items .credit .backg-ahorro,
main .no-carrousel .listed-items .credit .backg-bienes {
  padding: 20px 30px 20px 30px;
  margin: 10px 30px 40px 30px;
  border-radius: 20px;
  background: #DADADA;
}
main .carrusel-year .year-slide .credit .backg-ahorro .button-c,
main .carrusel-year .year-slide .credit .backg-bienes .button-c, main .carrusel-year .listed-items .credit .backg-ahorro .button-c,
main .carrusel-year .listed-items .credit .backg-bienes .button-c, main .no-carrousel .year-slide .credit .backg-ahorro .button-c,
main .no-carrousel .year-slide .credit .backg-bienes .button-c, main .no-carrousel .listed-items .credit .backg-ahorro .button-c,
main .no-carrousel .listed-items .credit .backg-bienes .button-c {
  margin: 20px 0 5px;
  padding: 3px 20px;
  background: #811811;
  color: #ffffff;
  display: inline-flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  text-decoration: none;
  border-radius: 15px;
  font-size: 85%;
}
main .carrusel-year .year-slide .credit .backg-ahorro .button-c span,
main .carrusel-year .year-slide .credit .backg-bienes .button-c span, main .carrusel-year .listed-items .credit .backg-ahorro .button-c span,
main .carrusel-year .listed-items .credit .backg-bienes .button-c span, main .no-carrousel .year-slide .credit .backg-ahorro .button-c span,
main .no-carrousel .year-slide .credit .backg-bienes .button-c span, main .no-carrousel .listed-items .credit .backg-ahorro .button-c span,
main .no-carrousel .listed-items .credit .backg-bienes .button-c span {
  font-size: 125%;
  font-weight: 600;
  margin-right: 5px;
}
main .carrusel-year .year-slide .credit .backg-ahorro .button-c:hover,
main .carrusel-year .year-slide .credit .backg-bienes .button-c:hover, main .carrusel-year .listed-items .credit .backg-ahorro .button-c:hover,
main .carrusel-year .listed-items .credit .backg-bienes .button-c:hover, main .no-carrousel .year-slide .credit .backg-ahorro .button-c:hover,
main .no-carrousel .year-slide .credit .backg-bienes .button-c:hover, main .no-carrousel .listed-items .credit .backg-ahorro .button-c:hover,
main .no-carrousel .listed-items .credit .backg-bienes .button-c:hover {
  background: #ffffff;
  color: #811811;
}
main .carrusel-year .year-slide .credit .backg-ahorro ul,
main .carrusel-year .year-slide .credit .backg-bienes ul, main .carrusel-year .listed-items .credit .backg-ahorro ul,
main .carrusel-year .listed-items .credit .backg-bienes ul, main .no-carrousel .year-slide .credit .backg-ahorro ul,
main .no-carrousel .year-slide .credit .backg-bienes ul, main .no-carrousel .listed-items .credit .backg-ahorro ul,
main .no-carrousel .listed-items .credit .backg-bienes ul {
  display: block;
  padding-left: 0;
  top: 0;
}
main .carrusel-year .year-slide .credit .backg-ahorro h6, main .carrusel-year .listed-items .credit .backg-ahorro h6, main .no-carrousel .year-slide .credit .backg-ahorro h6, main .no-carrousel .listed-items .credit .backg-ahorro h6 {
  min-height: 60px;
  color: #811811;
}
main .carrusel-year .year-slide .credit .backg-ahorro p, main .carrusel-year .listed-items .credit .backg-ahorro p, main .no-carrousel .year-slide .credit .backg-ahorro p, main .no-carrousel .listed-items .credit .backg-ahorro p {
  min-height: 100px;
}
main .carrusel-year .year-slide .credit .backg-bienes, main .carrusel-year .listed-items .credit .backg-bienes, main .no-carrousel .year-slide .credit .backg-bienes, main .no-carrousel .listed-items .credit .backg-bienes {
  padding: 0;
  margin: 35px 30px 5px;
  border-radius: 0 35px 35px 0;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: flex-start;
  align-content: center;
  width: calc(100% - 60px);
}
main .carrusel-year .year-slide .credit .backg-bienes:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes:last-of-type {
  margin: 35px 30px;
}
main .carrusel-year .year-slide .credit .backg-bienes .pic, main .carrusel-year .listed-items .credit .backg-bienes .pic, main .no-carrousel .year-slide .credit .backg-bienes .pic, main .no-carrousel .listed-items .credit .backg-bienes .pic {
  width: 38%;
  min-height: 100%;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
main .carrusel-year .year-slide .credit .backg-bienes .pic img, main .carrusel-year .listed-items .credit .backg-bienes .pic img, main .no-carrousel .year-slide .credit .backg-bienes .pic img, main .no-carrousel .listed-items .credit .backg-bienes .pic img {
  border-radius: 0 35px 35px 0;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos, main .carrusel-year .listed-items .credit .backg-bienes .datos, main .no-carrousel .year-slide .credit .backg-bienes .datos, main .no-carrousel .listed-items .credit .backg-bienes .datos {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 20px 4vw;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos h6, main .carrusel-year .listed-items .credit .backg-bienes .datos h6, main .no-carrousel .year-slide .credit .backg-bienes .datos h6, main .no-carrousel .listed-items .credit .backg-bienes .datos h6 {
  font-size: 95%;
  margin-bottom: 2px;
  width: 100%;
  color: #811811;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos h6 span, main .carrusel-year .listed-items .credit .backg-bienes .datos h6 span, main .no-carrousel .year-slide .credit .backg-bienes .datos h6 span, main .no-carrousel .listed-items .credit .backg-bienes .datos h6 span {
  display: block;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos h6.price, main .carrusel-year .listed-items .credit .backg-bienes .datos h6.price, main .no-carrousel .year-slide .credit .backg-bienes .datos h6.price, main .no-carrousel .listed-items .credit .backg-bienes .datos h6.price {
  color: #939598;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos h6.price small, main .carrusel-year .listed-items .credit .backg-bienes .datos h6.price small, main .no-carrousel .year-slide .credit .backg-bienes .datos h6.price small, main .no-carrousel .listed-items .credit .backg-bienes .datos h6.price small {
  font-size: 80%;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos h6:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes .datos h6:last-of-type {
  margin-bottom: 15px;
}
main .carrusel-year .year-slide .credit .backg-bienes .datos .button-c, main .carrusel-year .listed-items .credit .backg-bienes .datos .button-c, main .no-carrousel .year-slide .credit .backg-bienes .datos .button-c, main .no-carrousel .listed-items .credit .backg-bienes .datos .button-c {
  margin: 0;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios, main .carrusel-year .listed-items .credit .backg-bienes.convenios, main .no-carrousel .year-slide .credit .backg-bienes.convenios, main .no-carrousel .listed-items .credit .backg-bienes.convenios {
  flex-flow: column;
  background: none;
  width: calc(100% - 60px);
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic {
  width: 65vw;
  max-width: 440px;
  height: 32VW;
  max-height: 250px;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic img, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic img, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic img, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic img {
  border-radius: 0 150px 0 0;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos {
  border-radius: 0 20px 0 0;
  background: #DADADA;
  padding-bottom: 20px;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos p, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos p, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos p, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos p {
  margin: 15px 0 0;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos p strong, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos p strong, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos p strong, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos p strong {
  color: #811811;
  font-weight: 700;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos h6, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos h6, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos h6, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos h6 {
  margin-bottom: 0;
  width: 100%;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos .button-c, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos .button-c, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos .button-c, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos .button-c {
  margin-top: 15px;
}
main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos .button-n, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos .button-n, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos .button-n, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos .button-n {
  margin-right: 10px;
}
main .carrusel-year .year-slide.docdown, main .carrusel-year .listed-items.docdown, main .no-carrousel .year-slide.docdown, main .no-carrousel .listed-items.docdown {
  background: none;
  border-radius: 0;
}
main .carrusel-year .year-slide.docdown .tns-inner, main .carrusel-year .listed-items.docdown .tns-inner, main .no-carrousel .year-slide.docdown .tns-inner, main .no-carrousel .listed-items.docdown .tns-inner {
  background: none;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item, main .carrusel-year .listed-items.docdown .slider-year article .menu-item, main .no-carrousel .year-slide.docdown .slider-year article .menu-item, main .no-carrousel .listed-items.docdown .slider-year article .menu-item {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0 5px 25px;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button, main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button, main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button, main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button {
  background: none;
  border: none;
  width: 100%;
  border-bottom: 1px solid #6F6F6F;
  box-shadow: none !important;
  font-weight: 400;
  color: #6C6D70;
  padding: 3px 10px 3px 20px;
  font-size: 100%;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button::before, main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button::before, main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button::before, main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button::before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236F6F6F'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  transform: rotate(-90deg);
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  margin-right: 10px;
  content: "";
  transition: transform 0.2s ease-in-out;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button::after, main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button::after, main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button::after, main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button::after {
  background: none !important;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button:not(.collapsed), main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button:not(.collapsed), main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button:not(.collapsed), main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button:not(.collapsed) {
  color: #939598;
  font-weight: 600;
  padding: 6px 10px 0 20px;
  font-size: 115%;
}
main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button:not(.collapsed)::before, main .carrusel-year .listed-items.docdown .slider-year article .menu-item .accordion-button:not(.collapsed)::before, main .no-carrousel .year-slide.docdown .slider-year article .menu-item .accordion-button:not(.collapsed)::before, main .no-carrousel .listed-items.docdown .slider-year article .menu-item .accordion-button:not(.collapsed)::before {
  transform: rotate(0);
}
main .carrusel-year .year-slide.docdown .slider-year article .listado, main .carrusel-year .listed-items.docdown .slider-year article .listado, main .no-carrousel .year-slide.docdown .slider-year article .listado, main .no-carrousel .listed-items.docdown .slider-year article .listado {
  background: #EDEEEF;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
}
main .carrusel-year .year-slide.docdown .slider-year article .listado .accordion-body, main .carrusel-year .listed-items.docdown .slider-year article .listado .accordion-body, main .no-carrousel .year-slide.docdown .slider-year article .listado .accordion-body, main .no-carrousel .listed-items.docdown .slider-year article .listado .accordion-body {
  padding-right: 0;
}
main .no-carrousel {
  background: #EDEEEF;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
}
main .no-carrousel .listed-items {
  padding: 20px 0;
}
main .back-carru.carrousel {
  padding: 40px 0 20px;
}
main .back-carru .pos-txt h3 {
  color: #939598;
  font-weight: 700;
}
main .back-carru .pos-txt h3.padded {
  padding-left: 30px;
}
main .back-carru .a-slide, main .back-carru .no-slide {
  margin: 0;
}
main .back-carru .a-slide .carrusel-txt, main .back-carru .no-slide .carrusel-txt {
  width: 210px;
  padding: 10px;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item, main .back-carru .no-slide .carrusel-txt .back-carru-item {
  border: 1px solid #6F6F6F;
  border-radius: 10px;
  padding: 20px 15px;
  background: white;
  width: 200px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  text-decoration: none;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item:hover, main .back-carru .no-slide .carrusel-txt .back-carru-item:hover {
  padding: 20px 5px 20px 25px;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item .pos-img, main .back-carru .no-slide .carrusel-txt .back-carru-item .pos-img {
  width: 30px;
  margin-bottom: 8px;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item p, main .back-carru .a-slide .carrusel-txt .back-carru-item h6, main .back-carru .no-slide .carrusel-txt .back-carru-item p, main .back-carru .no-slide .carrusel-txt .back-carru-item h6 {
  color: #6F6F6F;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item p span, main .back-carru .a-slide .carrusel-txt .back-carru-item p strong, main .back-carru .a-slide .carrusel-txt .back-carru-item h6 span, main .back-carru .a-slide .carrusel-txt .back-carru-item h6 strong, main .back-carru .no-slide .carrusel-txt .back-carru-item p span, main .back-carru .no-slide .carrusel-txt .back-carru-item p strong, main .back-carru .no-slide .carrusel-txt .back-carru-item h6 span, main .back-carru .no-slide .carrusel-txt .back-carru-item h6 strong {
  font-weight: 600;
}
main .back-carru .a-slide .carrusel-txt .back-carru-item h6, main .back-carru .no-slide .carrusel-txt .back-carru-item h6 {
  font-weight: 600;
}
main .back-carru .a-slide .carrusel-txt.quien, main .back-carru .no-slide .carrusel-txt.quien {
  width: 240px;
}
main .back-carru .a-slide .carrusel-txt.quien .carru-links, main .back-carru .no-slide .carrusel-txt.quien .carru-links {
  border: none !important;
  background: none;
  padding: 0;
  border-radius: 25px;
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: center;
  overflow: hidden;
}
main .back-carru .a-slide .carrusel-txt.quien .carru-links img, main .back-carru .no-slide .carrusel-txt.quien .carru-links img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
main .back-carru .a-slide .carrusel-txt.quien .carru-links .backcarru-links, main .back-carru .no-slide .carrusel-txt.quien .carru-links .backcarru-links {
  background: #6F6F6F;
  position: relative;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 0 10px 2px;
  min-height: 60px;
  line-height: 120%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}
main .back-carru .a-slide .carrusel-txt.quien .carru-links .mas, main .back-carru .no-slide .carrusel-txt.quien .carru-links .mas {
  position: absolute;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  text-decoration: none;
}
main .back-carru .a-slide .carrusel-txt.quien .carru-links .mas:hover, main .back-carru .no-slide .carrusel-txt.quien .carru-links .mas:hover {
  opacity: 1;
}
main .back-carru .a-slide .tns-nav, main .back-carru .no-slide .tns-nav {
  padding: 15px 0;
  text-align: center;
}
main .back-carru .a-slide .tns-nav button, main .back-carru .no-slide .tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #5b110b;
  margin: 0 10px 0 0;
  border: none;
  display: inline-flex;
  padding: 0;
}
main .back-carru .a-slide .tns-nav button.tns-nav-active, main .back-carru .no-slide .tns-nav button.tns-nav-active {
  background: #811811;
}
main .back-carru .no-slide {
  display: flex;
  flex-flow: row wrap;
  padding-left: 15px;
  margin-bottom: 50px;
}
main .backinfo {
  margin: 0 60px 0;
  padding: 30px 0;
}
main .backinfo p {
  padding: 45px 0 20px;
}
main .backinfo .link-down {
  font-size: 10px;
  font-weight: 700;
}
main .backinfo .link-down a {
  color: #811811;
  text-decoration: none;
}
main .backinfo .link-down a:hover {
  color: #f5d582;
}
main .cbacko {
  background: #EDEEEF;
  color: #000000;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin: 0 0 0 30px;
}
main .cbacko.padded {
  padding: 40px 50px;
}
main .cbacko.ptop {
  padding: 50px 0 20px;
}
main .cbacko ul li {
  color: #ffffff;
}
main .condiciones {
  padding: 30px 35px;
  max-width: 1200px;
}
main .condiciones p {
  font-size: 0.8125rem;
  line-height: 140%;
}
main .condiciones h6 {
  color: #939598;
}
main .condiciones ul {
  list-style-type: none;
  font-size: 105% !important;
  line-height: 140%;
  font-weight: 300;
  color: #6C6D70;
  padding: 5px 0;
  margin: 0;
}
main .condiciones ul li {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 25px;
}
main .condiciones ul li:before {
  content: "→";
  color: #811811;
  margin-left: -25px;
  width: 20px;
  position: absolute;
}
main .condiciones ul li span {
  font-weight: 700;
}
main .condiciones ul li p {
  font-weight: 300;
}
main.home .back-carru {
  padding: 40px 30px 20px;
}
main.home .backg {
  overflow-x: hidden;
}
main.home .top-slide .tns-nav {
  padding: 15px 0;
  text-align: center;
}
main.home .top-slide .tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(207, 121, 46, 0.5019607843);
  margin: 0 10px 0 0;
  border: none;
  display: inline-flex;
  padding: 0;
}
main.home .top-slide .tns-nav button.tns-nav-active {
  background: #811811;
}
main.coope .mission {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  width: 100%;
}
main.coope .mission .cbacko {
  width: calc(100% - 30px);
}
main.coope .mission .cbacko .back-mission {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background: #811811;
  color: #ffffff;
  padding: 20px 80px 20px 30px;
  margin: 0 20px 20px 0;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  border-top-left-radius: 15px;
  max-width: 515px;
}
main.coope .mission .mission-txt {
  padding: 40px 55px;
}
main.coope .mission .mission-txt h5 {
  padding-bottom: 10px;
}
main.coope .backg-psocial {
  padding: 30px;
}
main.coope .backg-psocial .pos-img {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
}
main.coope .backg-psocial .pos-img img {
  width: 80%;
  border-top-right-radius: 30vw;
}
main.coope .backg-psocial .cbackg {
  padding: 25px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
main.coope .backg-psocial .cbackg img {
  width: 10%;
}
main.coope .backg-psocial .cbackg h5 {
  display: inline-flex;
  width: calc(90% - 10px);
  margin: 0 0 0 10px;
}
main.coope .backg-psocial .cbackg p {
  padding: 10px 0;
}
main.coope .backg-psocial-inv .pos-img {
  align-items: end;
}
main.coope .backg-psocial-inv .pos-img img {
  border-top-right-radius: 0;
  border-top-left-radius: 30vw;
}
main.coope .backg-psocial-inv .cbackg {
  flex-flow: row-reverse wrap;
}
main.coope .backg-psocial-inv .cbackg img {
  rotate: 180deg;
}
main.coope .backg-psocial-inv .cbackg h5 {
  margin: 0 10px 0 0;
}
main.coope .backg-psocial-inv .cbackg h5, main.coope .backg-psocial-inv .cbackg p {
  text-align: right;
}
main.coope .txt-zonaj {
  padding: 30px 60px 45px;
}
main.coope .docdown {
  padding: 0;
}
main.servicios .afilia, main.beneficios .afilia, main.contacto .afilia {
  padding-top: 60px;
}
main.servicios .cback-cred, main.beneficios .cback-cred, main.contacto .cback-cred {
  margin: 45px 0 0 30px;
  padding: 40px 40px 65px;
  border-bottom-left-radius: 35px;
  border-top-left-radius: 35px;
}
main.servicios .cback-cred h4, main.beneficios .cback-cred h4, main.contacto .cback-cred h4 {
  font-weight: 700;
  color: #939598;
  font-size: 5.5vw;
}
main.servicios .cback-cred h4 a, main.beneficios .cback-cred h4 a, main.contacto .cback-cred h4 a {
  color: #811811;
  text-decoration: none;
}
main.servicios .cback-cred h4 a:hover, main.beneficios .cback-cred h4 a:hover, main.contacto .cback-cred h4 a:hover {
  color: #f5d582;
}
main.servicios .cback-cred.calcular, main.beneficios .cback-cred.calcular, main.contacto .cback-cred.calcular {
  background: #DADADA;
  border-bottom-left-radius: 0;
  position: relative;
  z-index: 10;
}
main.servicios .cback-cred.calcular .advice p, main.beneficios .cback-cred.calcular .advice p, main.contacto .cback-cred.calcular .advice p {
  font-size: 105% !important;
  font-weight: 300;
  line-height: 140%;
  display: block;
}
main.servicios .cback-cred.calcular .advice ul, main.beneficios .cback-cred.calcular .advice ul, main.contacto .cback-cred.calcular .advice ul {
  list-style-type: none;
  font-size: 105% !important;
  line-height: 140%;
  font-weight: 300;
  color: #6C6D70;
  padding: 5px 0;
  margin: 0;
}
main.servicios .cback-cred.calcular .advice ul li, main.beneficios .cback-cred.calcular .advice ul li, main.contacto .cback-cred.calcular .advice ul li {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 25px;
}
main.servicios .cback-cred.calcular .advice ul li:before, main.beneficios .cback-cred.calcular .advice ul li:before, main.contacto .cback-cred.calcular .advice ul li:before {
  content: "→";
  color: #811811;
  margin-left: -25px;
  width: 20px;
  position: absolute;
}
main.servicios .cback-cred.calcular .advice ul li span, main.beneficios .cback-cred.calcular .advice ul li span, main.contacto .cback-cred.calcular .advice ul li span {
  font-weight: 700;
}
main.servicios .cback-cred.calcular .advice ul li p, main.beneficios .cback-cred.calcular .advice ul li p, main.contacto .cback-cred.calcular .advice ul li p {
  font-weight: 300;
}
main.servicios .cback-cred.calcular h4, main.beneficios .cback-cred.calcular h4, main.contacto .cback-cred.calcular h4 {
  padding-top: 25px;
}
main.servicios .cback-cred.requisitos, main.beneficios .cback-cred.requisitos, main.contacto .cback-cred.requisitos {
  background: white;
  margin-top: -25px;
  position: relative;
  z-index: 20;
}
main.servicios .cback-cred.requisitos .backreq, main.beneficios .cback-cred.requisitos .backreq, main.contacto .cback-cred.requisitos .backreq {
  max-width: 860px;
}
main.servicios .cback-cred.requisitos .backreq ul, main.beneficios .cback-cred.requisitos .backreq ul, main.contacto .cback-cred.requisitos .backreq ul {
  padding-left: 36px;
}
main.servicios .cback-cred.requisitos .backreq ul li, main.beneficios .cback-cred.requisitos .backreq ul li, main.contacto .cback-cred.requisitos .backreq ul li {
  list-style-type: none;
}
main.servicios .cback-cred.requisitos .backreq ul li::before, main.beneficios .cback-cred.requisitos .backreq ul li::before, main.contacto .cback-cred.requisitos .backreq ul li::before {
  background: transparent url("../images/svg/arrow-orange.svg") scroll 0 0 no-repeat;
  display: block;
  content: "";
  width: 24px;
  height: 18px;
  position: relative;
  left: -36px;
  top: 21px;
}
main.servicios .cback-cred.requisitos .backreq ul li p, main.beneficios .cback-cred.requisitos .backreq ul li p, main.contacto .cback-cred.requisitos .backreq ul li p {
  margin: 0 0 0 30px;
}
main.servicios .cback-cred.requisitos .backreq ul li p a, main.beneficios .cback-cred.requisitos .backreq ul li p a, main.contacto .cback-cred.requisitos .backreq ul li p a {
  text-decoration: none;
  font-weight: 700;
  color: #f5d582;
}
main.servicios .cback-cred.requisitos .backreq ul li p a:hover, main.beneficios .cback-cred.requisitos .backreq ul li p a:hover, main.contacto .cback-cred.requisitos .backreq ul li p a:hover {
  color: #f5d582;
}
main.servicios .cback-cred.cbacko, main.beneficios .cback-cred.cbacko, main.contacto .cback-cred.cbacko {
  position: relative;
  z-index: 15;
  margin-top: -90px;
  padding-top: 120px;
}
main.servicios .cback-cred.cbacko h2, main.beneficios .cback-cred.cbacko h2, main.contacto .cback-cred.cbacko h2 {
  font-size: 130%;
  font-weight: 300;
}
main.servicios .cback-cred.cbacko h6, main.beneficios .cback-cred.cbacko h6, main.contacto .cback-cred.cbacko h6 {
  margin-bottom: 4px;
  font-weight: 700;
}
main.servicios .cback-cred.cbacko.ahorrar, main.beneficios .cback-cred.cbacko.ahorrar, main.contacto .cback-cred.cbacko.ahorrar {
  margin-top: -30px;
  padding-top: 40px;
}
main.servicios .cback-cred.ahorro, main.beneficios .cback-cred.ahorro, main.contacto .cback-cred.ahorro {
  margin: 30px 0 0 30px;
  max-width: 1000px;
}
main.servicios .inverse .intro5, main.beneficios .inverse .intro5, main.contacto .inverse .intro5 {
  margin-bottom: 50px;
}
main.servicios .inverse .backwhite-pos, main.beneficios .inverse .backwhite-pos, main.contacto .inverse .backwhite-pos {
  padding: 20px 30px 20px 0;
  margin: 20px 0 0 -40px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #ffffff;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
main.servicios .inverse .backwhite-pos:last-of-type, main.beneficios .inverse .backwhite-pos:last-of-type, main.contacto .inverse .backwhite-pos:last-of-type {
  margin-bottom: 30px;
}
main.servicios .inverse .backwhite-pos img, main.beneficios .inverse .backwhite-pos img, main.contacto .inverse .backwhite-pos img {
  width: 20%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
main.servicios .inverse .backwhite-pos .txtbot, main.beneficios .inverse .backwhite-pos .txtbot, main.contacto .inverse .backwhite-pos .txtbot {
  width: 80%;
  padding: 0 25px;
}
main.servicios .inverse .backwhite-pos .txtbot h6, main.beneficios .inverse .backwhite-pos .txtbot h6, main.contacto .inverse .backwhite-pos .txtbot h6 {
  color: #6C6D70;
  font-weight: 500;
}
main.servicios .condiciones, main.beneficios .condiciones, main.contacto .condiciones {
  padding-left: 75px;
}
main.servicios .condiciones blockquote, main.beneficios .condiciones blockquote, main.contacto .condiciones blockquote {
  font-size: 85%;
}
main.servicios .modal .resultados, main.beneficios .modal .resultados, main.contacto .modal .resultados {
  display: none;
}
main.servicios .carrusel-year .year-slide {
  background: none;
}
main.servicios .carrusel-year .year-slide .tns-inner {
  background: none;
}
main.servicios .carrusel-year .year-slide .slider-year .carrusel-txt {
  background: #EDEEEF;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  padding: 25px 0 0;
}
main.beneficios .slconvenio .year-slide {
  background: none;
}
main.beneficios .slconvenio .year-slide .tns-inner {
  background: none;
}
main.beneficios .slconvenio .year-slide .slider-year .carrusel-txt {
  background: #EDEEEF;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  padding: 25px 0;
}
main.contacto {
  padding-top: 50px;
}
main.contacto .cback-cred.cbacko {
  margin-top: 0;
  padding-top: 40px;
}
main.contacto .cback-cred.cbacko textarea {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 576px) {
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 {
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img {
    width: calc(45% - 15px);
    aspect-ratio: 1/1;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item {
    padding: 5px 0 5px 30px;
    width: calc(55% + 10px);
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item .button-b {
    width: 90%;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .menu-item {
    flex-flow: row wrap;
    justify-content: flex-start;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button {
    border: none;
    width: auto;
    font-size: 115%;
    border-right: 1px solid #6F6F6F;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .menu-item .accordion-button:last-of-type {
    border-right: none;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .listado {
    background: #811811;
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .listado .accordion-body {
    padding-right: 0;
  }
  main.servicios .cback-cred h4, main.beneficios .cback-cred h4, main.contacto .cback-cred h4 {
    font-size: 28px;
  }
  main.servicios .cback-cred h6, main.beneficios .cback-cred h6, main.contacto .cback-cred h6 {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  main .backg .txt {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    min-height: 100%;
    padding: 0 40px;
  }
  main .backg .img-item {
    width: 100%;
    text-align: right;
  }
  main .backg .img-item img {
    width: 40vw;
    height: 30vw;
    border-radius: 0;
    border-top-left-radius: 15vw;
    border-bottom-left-radius: 15vw;
    position: relative;
    right: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main .cbacko {
    margin: 0 0 0 15px;
  }
  main .btn-mobile {
    display: none;
  }
  main .carrusel-year, main .no-carrousel {
    margin-left: 15px;
  }
  main .carrusel-year .year-slide, main .carrusel-year .listed-items, main .no-carrousel .year-slide, main .no-carrousel .listed-items {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  main .carrusel-year .year-slide ul, main .carrusel-year .listed-items ul, main .no-carrousel .year-slide ul, main .no-carrousel .listed-items ul {
    padding-left: 60px;
  }
  main .carrusel-year .year-slide ul li.control, main .carrusel-year .listed-items ul li.control, main .no-carrousel .year-slide ul li.control, main .no-carrousel .listed-items ul li.control {
    width: auto;
  }
  main .carrusel-year .year-slide .tns-inner, main .carrusel-year .listed-items .tns-inner, main .no-carrousel .year-slide .tns-inner, main .no-carrousel .listed-items .tns-inner {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 {
    padding: 30px 60px;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 img {
    width: calc(45% - 15px);
    aspect-ratio: 4/3;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 .txt-item, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 .txt-item, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 .txt-item {
    width: calc(55% + 10px);
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi {
    padding: 20px 30px 20px 50px;
    margin: 10px 0 10px 30px;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
  }
  main .carrusel-year .year-slide .credit, main .carrusel-year .listed-items .credit, main .no-carrousel .year-slide .credit, main .no-carrousel .listed-items .credit {
    padding: 20px 40px;
  }
  main .carrusel-year .year-slide .credit .backg-ahorro,
  main .carrusel-year .year-slide .credit .backg-bienes, main .carrusel-year .listed-items .credit .backg-ahorro,
  main .carrusel-year .listed-items .credit .backg-bienes, main .no-carrousel .year-slide .credit .backg-ahorro,
  main .no-carrousel .year-slide .credit .backg-bienes, main .no-carrousel .listed-items .credit .backg-ahorro,
  main .no-carrousel .listed-items .credit .backg-bienes {
    padding: 20px 30px 20px 30px;
    margin: 10px 15px 40px 15px;
    border-radius: 20px;
    background: #939598;
    width: calc(50% - 35px);
    max-width: 500px;
    min-height: 225px;
  }
  main .carrusel-year .year-slide .credit .backg-ahorro h6, main .carrusel-year .listed-items .credit .backg-ahorro h6, main .no-carrousel .year-slide .credit .backg-ahorro h6, main .no-carrousel .listed-items .credit .backg-ahorro h6 {
    color: #811811;
  }
  main .carrusel-year .year-slide .credit .backg-bienes, main .carrusel-year .listed-items .credit .backg-bienes, main .no-carrousel .year-slide .credit .backg-bienes, main .no-carrousel .listed-items .credit .backg-bienes {
    padding: 0;
    margin: 20px;
    border-radius: 0 45px 45px 0;
    width: calc(50% - 40px);
    min-height: 175px;
    max-width: 585px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes:last-of-type {
    margin: 20px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .pic img, main .carrusel-year .listed-items .credit .backg-bienes .pic img, main .no-carrousel .year-slide .credit .backg-bienes .pic img, main .no-carrousel .listed-items .credit .backg-bienes .pic img {
    border-radius: 0 45px 45px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos, main .carrusel-year .listed-items .credit .backg-bienes .datos, main .no-carrousel .year-slide .credit .backg-bienes .datos, main .no-carrousel .listed-items .credit .backg-bienes .datos {
    padding: 20px 25px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos h6, main .carrusel-year .listed-items .credit .backg-bienes .datos h6, main .no-carrousel .year-slide .credit .backg-bienes .datos h6, main .no-carrousel .listed-items .credit .backg-bienes .datos h6 {
    font-size: 105%;
    margin-bottom: 5px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos h6:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes .datos h6:last-of-type {
    margin-bottom: 20px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios, main .carrusel-year .listed-items .credit .backg-bienes.convenios, main .no-carrousel .year-slide .credit .backg-bienes.convenios, main .no-carrousel .listed-items .credit .backg-bienes.convenios {
    flex-flow: row;
    width: calc(100% - 40px);
    max-width: 1200px;
    background: #DADADA;
    border-radius: 0 45px 45px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic {
    width: 40%;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic img, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic img, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic img, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic img {
    border-radius: 0 100px 100px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos {
    background: none;
  }
  main .carrusel-year .year-slide.docdown, main .carrusel-year .listed-items.docdown, main .no-carrousel .year-slide.docdown, main .no-carrousel .listed-items.docdown {
    background: none;
    border-radius: 0;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .menu-item, main .carrusel-year .listed-items.docdown .slider-year article .menu-item, main .no-carrousel .year-slide.docdown .slider-year article .menu-item, main .no-carrousel .listed-items.docdown .slider-year article .menu-item {
    padding-left: 50px;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .listado, main .carrusel-year .listed-items.docdown .slider-year article .listado, main .no-carrousel .year-slide.docdown .slider-year article .listado, main .no-carrousel .listed-items.docdown .slider-year article .listado {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  main .no-carrousel {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    margin-left: 15px;
    padding: 60px 0 0;
  }
  main .no-carrousel .listed-items {
    padding: 30px 0;
  }
  main .condiciones {
    padding: 40px 75px;
  }
  main.coope .mission {
    flex-flow: row;
    align-items: stretch;
  }
  main.coope .mission .cbacko {
    width: 40%;
    min-height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
  main.coope .mission .cbacko.ptop {
    padding: 75px 0 60px;
  }
  main.coope .mission .mission-txt {
    width: calc(60% - 15px);
    background: #EDEEEF;
    color: black;
    padding: 40px 10vw 40px 45px;
  }
  main.coope .mission .mission-txt h5 {
    color: white;
  }
  main.servicios .afilia, main.beneficios .afilia {
    padding-top: 90px;
  }
  main.servicios .cback-cred, main.beneficios .cback-cred {
    margin-left: 0;
  }
  main.servicios .cback-cred.calcular, main.beneficios .cback-cred.calcular {
    padding: 40px 60px 25px;
    max-width: 660px;
    border-radius: 0;
    z-index: 40;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
  }
  main.servicios .cback-cred.requisitos, main.beneficios .cback-cred.requisitos {
    margin-top: -100px;
    padding: 150px 60px 60px;
    border-radius: 0;
  }
  main.servicios .cback-cred.cbacko, main.beneficios .cback-cred.cbacko {
    margin-top: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 90px;
    padding: 45px 60px 75px;
  }
  main.servicios .cback-cred.cbacko.ahorrar, main.beneficios .cback-cred.cbacko.ahorrar {
    border-top-left-radius: 35px;
    margin-top: -60px;
    margin-left: 15px;
  }
  main.servicios .cback-cred.ahorro, main.beneficios .cback-cred.ahorro {
    margin: 30px 0 0 15px;
    padding: 45px 90px 105px 60px;
    width: 90%;
    max-width: 1050px;
    z-index: 4;
    border-top-left-radius: 35px;
    border-top-right-radius: 140px;
    border-bottom-right-radius: 140px;
  }
  main.servicios .cback-cred.inverse, main.beneficios .cback-cred.inverse {
    padding: 45px 90px 45px 60px;
    z-index: 10;
    position: relative;
  }
  main.servicios .solicitudes, main.beneficios .solicitudes {
    margin-top: 0;
  }
  main.servicios .solicitudes.inverse, main.beneficios .solicitudes.inverse {
    margin-top: -60px;
    z-index: 5;
    position: relative;
  }
  main.servicios .solicitudes.inverse .ahorrar, main.beneficios .solicitudes.inverse .ahorrar {
    padding-top: 105px;
  }
  main.servicios .solicitudes.inverse.nopad .ahorrar, main.beneficios .solicitudes.inverse.nopad .ahorrar {
    padding-right: 0;
  }
  main.servicios .solicitudes.inverse .backwhite-pos, main.beneficios .solicitudes.inverse .backwhite-pos {
    margin: 20px 0 0 0;
    padding: 30px 30px 30px 0;
    border-radius: 0;
    border-top-left-radius: 70px;
    border-bottom-left-radius: 70px;
    align-items: center;
    align-content: center;
  }
  main.servicios .solicitudes.inverse .backwhite-pos img, main.beneficios .solicitudes.inverse .backwhite-pos img {
    width: 85px;
    left: -10px;
    margin-top: -5px;
  }
  main.servicios .solicitudes.inverse .backwhite-pos .txtbot, main.beneficios .solicitudes.inverse .backwhite-pos .txtbot {
    width: calc(100% - 85px);
    padding: 0 30px;
  }
  main.servicios .solicitudes.inverse .backwhite-pos .txtbot h6, main.beneficios .solicitudes.inverse .backwhite-pos .txtbot h6 {
    font-size: 130%;
    margin-bottom: 0;
    font-weight: 600;
  }
  main.servicios .solicitudes.inverse .backwhite-pos:last-of-type, main.beneficios .solicitudes.inverse .backwhite-pos:last-of-type {
    margin-bottom: 50px;
  }
  main.servicios .solicitudes.inverse .backwhite-pos:hover img, main.beneficios .solicitudes.inverse .backwhite-pos:hover img {
    left: -3px;
  }
  main.servicios .condiciones, main.beneficios .condiciones {
    padding-left: 95px;
  }
  main.servicios .carrusel-year .year-slide .slider-year .carrusel-txt {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  main.beneficios .slconvenio .year-slide .slider-year .carrusel-txt {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
  main.blog .back-carru {
    padding: 50px 0 30px 15px;
  }
  main.blog .back-carru .pos-txt h3 {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  main {
    padding: 0 0 0 calc(7.5vw - 10px);
  }
  main .backg .txt {
    padding: 0 8vw 0 15px;
  }
  main .backg .txt p {
    font-size: 1.625vw;
  }
  main .backg .img-item img {
    width: 50vw;
    height: 37.5vw;
    border-radius: 0;
    border-top-left-radius: 19vw;
    border-bottom-left-radius: 19vw;
  }
  main .back-carru.carrousel {
    padding: 50px 0 30px 60px;
  }
  main .back-carru .pos-txt {
    text-align: left;
    margin-left: 40px;
  }
  main .back-carru .pos-txt h3 {
    font-size: 1.875rem;
  }
  main .back-carru .a-slide, main .back-carru .no-slide {
    margin: 0;
    padding-left: 30px;
  }
  main .back-carru .a-slide .carrusel-txt, main .back-carru .no-slide .carrusel-txt {
    width: 210px;
    padding: 10px 0 10px 10px;
  }
  main .back-carru .a-slide .carrusel-txt .back-carru-item, main .back-carru .no-slide .carrusel-txt .back-carru-item {
    border: none;
    border-left: 1px solid #6F6F6F;
    border-radius: 0;
    padding: 0 15px 20px;
    background: none;
  }
  main .back-carru .no-slide {
    padding-left: 15px;
  }
  main .backinfo {
    margin: 0;
    padding: 60px 120px 60px 90px;
    max-width: 1300px;
  }
  main .backinfo .link-down {
    font-size: 80%;
    font-weight: 500;
  }
  main .backinfo .link-down a {
    color: #811811;
    text-decoration: none;
  }
  main .backinfo .link-down a:hover {
    color: #f5d582;
  }
  main.home .carrusel-year, main.contacto .carrusel-year {
    margin-left: 15px;
  }
  main.home .carrusel-year .year-slide, main.contacto .carrusel-year .year-slide {
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
  }
  main.home .carrusel-year .year-slide ul, main.contacto .carrusel-year .year-slide ul {
    padding-left: 100px;
  }
  main.home .carrusel-year .year-slide ul li.control, main.contacto .carrusel-year .year-slide ul li.control {
    margin: 0 7vw 5px 20px;
  }
  main.home .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3, main.contacto .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 {
    padding: 30px 100px 15px;
  }
  main.home .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img, main.contacto .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img {
    width: calc(50% - 15px);
    max-width: 550px;
    aspect-ratio: 16/9;
  }
  main.home .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item, main.contacto .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item {
    max-width: 650px;
    padding: 5px 50px 5px;
    width: calc(50% + 10px);
  }
  main.home .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item .button-b, main.contacto .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item .button-b {
    width: auto;
    padding: 4px 35px;
    margin-top: 12px;
  }
  main.home .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item h6, main.contacto .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 .txt-item h6 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
  main.home .back-carru .a-slide .carrusel-txt .back-carru-item:hover, main.home .back-carru .no-slide .carrusel-txt .back-carru-item:hover, main.contacto .back-carru .a-slide .carrusel-txt .back-carru-item:hover, main.contacto .back-carru .no-slide .carrusel-txt .back-carru-item:hover {
    padding: 0 5px 20px 25px;
  }
  main.coope .mission .cbacko {
    width: 37.5%;
  }
  main.coope .mission .mission-txt {
    width: calc(62.5% - 15px);
    padding: 55px 9vw 55px 45px;
  }
  main.coope .back-carru .a-slide {
    max-width: 960px;
    margin: 0 auto 0 calc(42.5vw - 470px);
    padding-left: 0;
  }
  main.coope .carrusel-year.finance .year-slide .controls {
    top: -55px;
  }
  main.coope .carrusel-year.finance .year-slide .controls li.control {
    margin: 10px 3.5vw 10px;
  }
  main.coope .carrusel-year.docs {
    padding: 20px 0 0;
  }
  main.coope .carrusel-year.docs .year-slide .controls {
    top: -5px;
  }
  main.coope .carrusel-year.docs .year-slide .controls li.control {
    margin: 10px 1.75vw 10px;
  }
  main.coope .backg-psocial {
    padding: 30px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-flow: row;
  }
  main.coope .backg-psocial .pos-img {
    width: 40%;
    min-height: 100%;
  }
  main.coope .backg-psocial .pos-img img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
  }
  main.coope .backg-psocial .cbackg {
    width: 60%;
    padding: 55px 45px 40px;
  }
  main.coope .backg-psocial .cbackg img {
    width: 10%;
  }
  main.coope .backg-psocial .cbackg h5 {
    display: inline-block;
    color: #811811 !important;
  }
  main.coope .backg-psocial-inv {
    display: flex;
    flex-flow: row-reverse;
  }
  main.coope .backg-psocial-inv .pos-img {
    align-items: end;
  }
  main.coope .backg-psocial-inv .pos-img img {
    border-radius: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
  }
  main.coope .backg-psocial-inv .cbackg {
    text-align: right;
  }
  main.coope .backg-psocial-inv .cbackg img {
    rotate: 180deg;
  }
  main.coope .txt-zonaj {
    padding: 35px 70px 15px 15px;
  }
  main.coope .txt-zonaj p {
    padding: 0;
    width: 90%;
    max-width: 1120px;
  }
  main.coope .docdown .slider-year article .listado {
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
  }
  main.servicios .afilia {
    padding-top: 120px;
  }
  main.servicios .afiliaciones {
    margin-top: 50px;
  }
  main.blog .back-carru .pos-txt {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  main .backg .txt {
    padding: 0 10vw 0 15px;
  }
  main .backg .txt p {
    font-size: 1.125vw;
    padding: 20px 0 10px;
  }
  main .backg .img-item img {
    -o-object-position: top;
       object-position: top;
    aspect-ratio: 13/4;
  }
  main .carrusel-year .year-slide ul, main .carrusel-year .listed-items ul, main .no-carrousel .year-slide ul, main .no-carrousel .listed-items ul {
    padding-left: 9.5vw;
  }
  main .carrusel-year .year-slide .tns-inner, main .carrusel-year .listed-items .tns-inner, main .no-carrousel .year-slide .tns-inner, main .no-carrousel .listed-items .tns-inner {
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 {
    padding: 30px 9.5vw 45px;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-3 img, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-3 img, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-3 img {
    max-width: 650px;
    aspect-ratio: 16/8;
  }
  main .carrusel-year .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .carrusel-year .listed-items .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .year-slide .slider-year .carrusel-txt .backg-c-ddi, main .no-carrousel .listed-items .slider-year .carrusel-txt .backg-c-ddi {
    padding: 20px 30px 20px 50px;
    margin: 10px 0 10px 90px;
  }
  main .carrusel-year .year-slide .credit, main .carrusel-year .listed-items .credit, main .no-carrousel .year-slide .credit, main .no-carrousel .listed-items .credit {
    padding: 45px 110px 45px calc(9.5vw - 15px);
  }
  main .carrusel-year .year-slide .credit .backg-ahorro, main .carrusel-year .listed-items .credit .backg-ahorro, main .no-carrousel .year-slide .credit .backg-ahorro, main .no-carrousel .listed-items .credit .backg-ahorro {
    padding: 35px 45px 25px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes, main .carrusel-year .listed-items .credit .backg-bienes, main .no-carrousel .year-slide .credit .backg-bienes, main .no-carrousel .listed-items .credit .backg-bienes {
    border-radius: 0 80px 80px 0;
    min-height: 225px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes:last-of-type {
    margin: 20px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .pic, main .carrusel-year .listed-items .credit .backg-bienes .pic, main .no-carrousel .year-slide .credit .backg-bienes .pic, main .no-carrousel .listed-items .credit .backg-bienes .pic {
    width: 45%;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .pic img, main .carrusel-year .listed-items .credit .backg-bienes .pic img, main .no-carrousel .year-slide .credit .backg-bienes .pic img, main .no-carrousel .listed-items .credit .backg-bienes .pic img {
    border-radius: 0 80px 80px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos, main .carrusel-year .listed-items .credit .backg-bienes .datos, main .no-carrousel .year-slide .credit .backg-bienes .datos, main .no-carrousel .listed-items .credit .backg-bienes .datos {
    padding: 40px 45px 40px 25px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos h6, main .carrusel-year .listed-items .credit .backg-bienes .datos h6, main .no-carrousel .year-slide .credit .backg-bienes .datos h6, main .no-carrousel .listed-items .credit .backg-bienes .datos h6 {
    font-size: 135%;
  }
  main .carrusel-year .year-slide .credit .backg-bienes .datos h6:last-of-type, main .carrusel-year .listed-items .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .year-slide .credit .backg-bienes .datos h6:last-of-type, main .no-carrousel .listed-items .credit .backg-bienes .datos h6:last-of-type {
    margin-bottom: 30px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios, main .carrusel-year .listed-items .credit .backg-bienes.convenios, main .no-carrousel .year-slide .credit .backg-bienes.convenios, main .no-carrousel .listed-items .credit .backg-bienes.convenios {
    border-radius: 0 80px 80px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic {
    width: 40%;
    max-height: 310px;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .pic img, main .carrusel-year .listed-items .credit .backg-bienes.convenios .pic img, main .no-carrousel .year-slide .credit .backg-bienes.convenios .pic img, main .no-carrousel .listed-items .credit .backg-bienes.convenios .pic img {
    border-radius: 0 150px 150px 0;
  }
  main .carrusel-year .year-slide .credit .backg-bienes.convenios .datos, main .carrusel-year .listed-items .credit .backg-bienes.convenios .datos, main .no-carrousel .year-slide .credit .backg-bienes.convenios .datos, main .no-carrousel .listed-items .credit .backg-bienes.convenios .datos {
    padding: 40px 65px 40px 45px;
  }
  main .carrusel-year .year-slide.docdown .slider-year article .menu-item, main .carrusel-year .listed-items.docdown .slider-year article .menu-item, main .no-carrousel .year-slide.docdown .slider-year article .menu-item, main .no-carrousel .listed-items.docdown .slider-year article .menu-item {
    padding-left: calc(9.5vw - 10px);
  }
  main .carrusel-year .year-slide.docdown .slider-year article .listado, main .carrusel-year .listed-items.docdown .slider-year article .listado, main .no-carrousel .year-slide.docdown .slider-year article .listado, main .no-carrousel .listed-items.docdown .slider-year article .listado {
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
  main .no-carrousel {
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
  main .back-carru.carrousel {
    padding-left: calc(9.5vw - 30px);
  }
  main .back-carru .pos-txt h3 {
    font-size: 2.125rem;
  }
  main .back-carru .pos-txt p {
    font-size: 1.125rem;
  }
  main .back-carru .a-slide, main .back-carru .no-slide {
    margin: 0;
  }
  main .back-carru .a-slide .carrusel-txt, main .back-carru .no-slide .carrusel-txt {
    width: 250px;
  }
  main .back-carru .a-slide .carrusel-txt .back-carru-item, main .back-carru .no-slide .carrusel-txt .back-carru-item {
    width: 240px;
  }
  main .back-carru .a-slide .carrusel-txt .back-carru-item p, main .back-carru .a-slide .carrusel-txt .back-carru-item h6, main .back-carru .no-slide .carrusel-txt .back-carru-item p, main .back-carru .no-slide .carrusel-txt .back-carru-item h6 {
    font-size: 1rem;
  }
  main .backinfo {
    padding: 100px 120px 60px 120px;
  }
  main.coope .mission .cbacko {
    width: 520px;
  }
  main.coope .mission .cbacko.ptop {
    padding: 105px 0 90px;
  }
  main.coope .mission .mission-txt {
    padding: 55px calc(95% - 1010px) 55px 5%;
    width: calc(100% - 420px);
    margin: 0 auto 0 0;
  }
  main.coope .mission .backg-psocial .cbackg {
    padding: 55px 80px 40px;
  }
  main.coope .txt-zonaj {
    padding: 35px 70px 15px 30px;
  }
  main.coope .carrusel-year .year-slide .docdown .carrusel-txt {
    padding: 30px 0 60px;
  }
  main.servicios .carrusel-year .year-slide .slider-year .carrusel-txt {
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
  main.beneficios .slconvenio .year-slide .slider-year .carrusel-txt {
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
}
@media (min-width: 1600px) {
  main {
    padding: 0 0 0 calc(50vw - 800px + 90px);
  }
}
.form .modal1 {
  z-index: 9000;
}
.form .modal1 .modal-dialog .modal-content {
  border: none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  color: #ffffff;
  background: #ff59bf;
}
.form .modal1 .modal-dialog .modal-content .modal-body,
.form .modal1 .modal-dialog .modal-content .modal-header {
  border: none;
}
.form .modal1 .modal-dialog .modal-content .modal-header {
  position: relative;
}
.form .modal1 .modal-dialog .modal-content .modal-header #PreinscribeLabel {
  font-size: 20px;
}
.form .modal1 .modal-dialog .modal-content .modal-header .modal-title {
  padding: 20px 50px 0 20px;
}
.form .modal1 .modal-dialog .modal-content .modal-header .modal-title .nombre {
  display: block;
  font-size: 85%;
  color: #f5d582;
  line-height: 120%;
  margin: -5px 0 0 0;
}
.form .modal1 .modal-dialog .modal-content .modal-header .btn-close {
  margin: auto 20px auto 0;
}
.form .modal1 .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: none;
  color: #811811;
  font-size: 1.75rem;
  z-index: 9000;
}
.form .modal1 .modal-dialog .modal-content .modal-body {
  text-align: center;
}
.form .modal1 .modal-dialog .modal-content .modal-body h2 {
  text-transform: uppercase;
  padding: 10px 60px;
}
.form .modal1 .modal-dialog .modal-content .modal-body p {
  font-size: 100%;
  line-height: 115%;
}
.form .modal1 .modal-dialog .modal-content .modal-body a {
  text-decoration: none;
  color: #f5d582 !important;
}
.form .modal1 .modal-dialog .modal-content .modal-body .mail-img {
  position: relative;
  max-width: 360px;
  margin: 15px auto;
  text-align: center;
}
.form .modal1 .modal-dialog .modal-content .modal-body .mail-img .abs {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 55px;
  top: calc(50% - 40px);
}
.form .modal1 .modal-dialog .modal-content .modal-body form {
  padding: 0 15px;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset {
  display: flex;
  flex-flow: column wrap;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: relative;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .back-white {
  background: #ffffff;
  color: #6F6F6F !important;
  width: 55%;
  font-size: 100%;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid #6C6D70;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .back-white span {
  margin: 0px 18px;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .img-xs {
  width: 10%;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group label {
  width: 100%;
  font-size: 90%;
  padding: 10px 0 3px 10px;
  text-align: left;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group label.radio {
  width: 55px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding-left: 15px;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .mailabel {
  max-width: calc(100% - 110px);
  text-align: left;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select {
  width: 100%;
  font-size: 95%;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid #6C6D70;
  color: #6C6D70;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input[type=radio],
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select[type=radio] {
  width: 20px;
  margin: -5px 0 0 0;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input::-moz-placeholder, .form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select::-moz-placeholder {
  color: #6C6D70;
  font-size: 100%;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input::placeholder,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select::placeholder {
  color: #6C6D70;
  font-size: 100%;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input:hover, .form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group input:focus,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select:hover,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .form-select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #f5d582;
  background: #DADADA;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group .with-errors {
  position: absolute;
  bottom: -35px;
  right: 0;
  font-size: 75%;
  color: red;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group.has-error input,
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .form-group.has-error .form-select {
  border: 1px solid red;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .enviar {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 20px 0 40px;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .enviar input {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #ffffff;
  color: #811811;
  border: 1px solid #ffffff;
  border-radius: 30px;
  padding: 8px 15px;
  text-transform: uppercase;
  width: 80%;
}
.form .modal1 .modal-dialog .modal-content .modal-body form fieldset .enviar input:hover, .form .modal1 .modal-dialog .modal-content .modal-body form fieldset .enviar input:focus {
  border: 1px solid #ffffff;
  outline: none;
  box-shadow: none;
  background: #811811;
  color: #ffffff;
}

@media (min-width: 768px) {
  .form .modal1 {
    z-index: 9000;
  }
}
.error h1 {
  font-size: 42px;
}
.error p {
  font-size: 20px;
  color: #ed0909;
}
.error a {
  font-size: 12px;
}
.error .test {
  color: var(#000080);
}
.error .margin {
  min-height: calc(100vh - 350px);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 92px 30px 50px 30px;
}
.error .margin .logo-pos {
  text-align: center;
}
.error .margin .logo-pos .logo {
  height: 171px;
  width: 148px;
}
.error .margin .txt-pos {
  text-align: center;
  padding-top: 52px;
}
.error .margin .txt-pos .tit {
  display: block;
}
.error .margin .txt-pos .tit1 {
  display: inline;
}
.error .margin .txt-pos .sub {
  display: inline;
}
.error .margin .txt-pos .sub1 {
  display: inline;
}
.error .margin .txt-pos p {
  padding-top: 30px;
  padding-bottom: 39px;
}
.error .margin .txt-pos button {
  width: 190px;
  height: 48px;
  background: #0000ff;
  border-radius: 4px;
}
.error .margin .txt-pos button a {
  text-decoration: none;
  color: #ffffff;
}

@media (min-width: 768px) {
  .error .margin {
    display: flex;
    flex-flow: row;
    justify-content: center;
  }
  .error .margin .logo-pos {
    text-align: center;
  }
  .error .margin .logo-pos .logo {
    height: 165px;
    width: 143px;
  }
  .error .margin .txt-pos {
    text-align: left;
    padding-top: 0px;
  }
  .error .margin .txt-pos h1 {
    font-size: 46px;
  }
  .error .margin .txt-pos .tit {
    display: inline;
  }
  .error .margin .txt-pos .sub {
    display: block;
  }
}
@media (min-width: 992px) {
  .error .margin .logo-pos .logo {
    height: 165px;
    width: 143px;
  }
  .error .margin .txt-pos .sub {
    display: inline;
  }
  .error .margin .txt-pos .sub1 {
    display: block;
  }
}
@media (min-width: 1200px) {
  .error .margin .txt-pos .tit1 {
    display: block;
  }
}
.maintenance h1 {
  font-size: 42px;
}
.maintenance p {
  font-size: 20px;
}
.maintenance a {
  font-size: 12px;
}
.maintenance {
  display: flex;
  flex-flow: row;
  justify-content: center;
  position: relative;
}
.maintenance .margin {
  margin: 92px 30px 50px 30px;
}
.maintenance .margin .logo-pos {
  text-align: center;
}
.maintenance .margin .logo-pos .logo {
  height: 171px;
  width: 148px;
}
.maintenance .margin .txt-pos {
  text-align: center;
  padding-top: 52px;
}
.maintenance .margin .txt-pos .tit {
  display: block;
}
.maintenance .margin .txt-pos .tit1 {
  display: inline;
}
.maintenance .margin .txt-pos .sub {
  display: inline;
}
.maintenance .margin .txt-pos .sub1 {
  display: inline;
}
.maintenance .margin .txt-pos p {
  padding-top: 30px;
  padding-bottom: 39px;
}
.maintenance .margin .txt-pos button {
  width: 190px;
  height: 48px;
  background: #0000ff;
  border-radius: 4px;
}
.maintenance .margin .txt-pos button a {
  text-decoration: none;
  color: #ffffff;
}
.maintenance .footer {
  height: 78px;
  background-color: #0000ff;
  color: #ffffff;
}
.maintenance .footer .item {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 78px;
}

@media (min-width: 768px) {
  .maintenance .margin {
    display: flex;
    flex-flow: row;
    justify-content: center;
  }
  .maintenance .margin .logo-pos {
    text-align: center;
  }
  .maintenance .margin .logo-pos .logo {
    height: 165px;
    width: 143px;
  }
  .maintenance .margin .txt-pos {
    text-align: left;
    padding-top: 0px;
  }
  .maintenance .margin .txt-pos h1 {
    font-size: 46px;
  }
  .maintenance .margin .txt-pos .tit {
    display: inline;
  }
  .maintenance .margin .txt-pos .sub {
    display: block;
  }
}
@media (min-width: 992px) {
  .maintenance .margin .logo-pos .logo {
    height: 165px;
    width: 143px;
  }
  .maintenance .margin .txt-pos .sub {
    display: inline;
  }
  .maintenance .margin .txt-pos .sub1 {
    display: block;
  }
}
@media (min-width: 1200px) {
  .maintenance .margin .txt-pos .tit1 {
    display: block;
  }
}/*# sourceMappingURL=global.css.map */