@charset "UTF-8";
/**
 * * @author DISEGNOSIS
 * */
/* @font-face
 * font-family: 'ProximaNova'
 * src: url(../fonts/ProximaNovaRegular.ttf) format('truetype') */
@font-face {
  font-family: "Muli-Regular";
  src: url(../fonts/Muli-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Muli-SemiBold";
  src: url(../fonts/Muli-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Muli-Bold";
  src: url(../fonts/Muli-Bold.ttf) format("truetype");
}
* {
  box-sizing: border-box;
  font-family: "Muli-SemiBold", sans-serif;
  font-weight: 700;
}

body {
  background: #fff;
  margin: 0;
  height: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #404040;
  font-size: 1em;
}

header {
  position: fixed;
  background: #fff;
  width: 100vw;
  height: 80px;
  z-index: 3;
  -moz-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  -webkit-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: auto;
}
header .logo {
  margin-top: 6px;
}

nav {
  margin: 0 13vw 0 -13vw;
}
nav a {
  color: #404040;
  text-decoration: none;
  margin-right: 2.2em;
  transition: 0.4s ease;
}
nav a:hover {
  color: #ff6600;
}
nav a:last-child {
  margin-right: 0;
}

.right {
  display: flex;
  justify-content: flex-end;
  align-content: center;
}

.contact-button {
  background: #ff6600;
  border-radius: 25px;
  padding: 13px 40px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.contact-button:hover {
  background: #ff8e42;
}
.contact-button a {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.contact-button a:hover {
  color: #fff;
}

.telefono {
  display: flex;
  color: #404040;
  font-weight: normal;
  margin-top: 1em;
  margin-right: 2.2em;
}
.telefono i {
  font-size: 0.8em;
  color: #404040;
  margin-top: 0.4em;
  margin-right: 0.9em;
}

.telefono-mobile {
  display: none;
  margin-top: 0.55em;
  margin-right: 0.6em;
}
.telefono-mobile i {
  color: #0084ff;
  font-size: 2em;
  margin-right: 0.3em;
}
.telefono-mobile i:hover {
  color: #404040;
}

/* main
 * max-width: 1366px
 * margin: auto */
h2 {
  font-family: "Muli-Bold", sans-serif;
  font-size: 1.8em;
  color: #404040;
  text-align: center;
  line-height: 1.5em;
}

p {
  font-family: "Muli-Regular", sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-align: left;
  line-height: 1.6em;
}

a:hover {
  color: #ff6600;
}

.destination {
  position: absolute;
  z-index: -1;
  left: 0;
  margin-top: -79px;
}

.hide {
  display: none;
}

.error {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  font-size: 0.9em;
  color: #e74c3c;
  font-weight: 400;
}

.input-requirements {
  font-size: 0.7em;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  list-style: disc;
  width: 100%;
  margin: 10px 0;
  padding: 0;
  color: #969696;
}
.input-requirements li.invalid {
  color: #e74c3c;
}
.input-requirements li.valid {
  color: #2ecc71;
}
.input-requirements li.valid:after {
  content: "✓";
  display: inline-block;
  padding-left: 13px;
}

.borde-rojo {
  border-color: #e74c3c;
}

.borde-verde {
  border-color: #2ecc71;
  border-width: 2.2px;
}

input:not([type=submit]):valid {
  border-color: #2ecc71;
}

input:not([type=submit]) + .input-requirements {
  overflow: hidden;
  max-height: 0;
  transition: max-height 1s ease-out;
}

input:not([type=submit]):hover + .input-requirements,
input:not([type=submit]):focus + .input-requirements,
input:not([type=submit]):active + .input-requirements {
  max-height: 1000px;
  transition: max-height 1s ease-in;
}

.gracias {
  display: flex;
  justify-content: center;
  color: #2ecc71;
}

.slider {
  margin: 80px auto 0;
  z-index: 0;
}
.slider figure img {
  margin-top: 80px;
}
.slider figcaption {
  position: absolute;
  width: calc(90vw - 30%);
  left: 9.5vw;
  bottom: 175px;
}
.slider figcaption h1 {
  font-size: 3.3em;
  color: #fff;
  margin-bottom: -0.06em;
}
.slider figcaption h1 small {
  font-size: 0.6em;
}
.slider figcaption h2 {
  font-family: "Muli-SemiBold", sans-serif;
  color: #fff;
  text-align: left;
  font-size: 1.2em;
  font-weight: 400;
}
.slider figcaption .separator {
  background-color: #fffd00;
  width: 121px;
  height: 4px;
  margin-top: 33px;
  margin-bottom: 26px;
}
.slider .leadform-wrapper {
  position: absolute;
  top: 125px;
  left: calc(90vw - 21%);
}
.slider .leadform-wrapper .form-group {
  padding: 20px;
}
.slider .leadform-wrapper .form-group .nombre-completo {
  display: flex;
}
.slider .leadform-wrapper .form-group .nombre {
  margin-right: 1em;
}
.slider .leadform-wrapper .form-group #submit-button {
  width: 100%;
  border: 0;
  border-radius: 25px;
  margin: 25px auto;
  padding: 15px 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.slider .leadform-wrapper .form-group #submit-button:hover {
  background: #ff8e42;
}
.slider .leadform-wrapper .form-group .h2 {
  font-family: "Muli-Bold", sans-serif;
  font-size: 1.1em;
  margin: 25px auto 35px;
}

.que-es {
  display: flex;
  justify-content: center;
  background: #edf6ff;
}
.que-es article {
  flex: 1;
}
.que-es article .content {
  padding: 3em 0 3em 10vw;
}
.que-es article .content h2 {
  text-align: left;
}
.que-es article .content .details {
  display: flex;
  flex-direction: column;
}
.que-es article .content .details .row {
  display: flex;
}
.que-es article .content .details .row .icon {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1.6em 43px 0 0;
}
.que-es article .content .details .row:first-child .icon {
  margin-right: 33px;
}
.que-es article .content .details .row:last-child .icon {
  margin-right: 34px;
}
.que-es article .content .details .row h3 {
  color: #0084ff;
  font-size: 1.3em;
  font-weight: normal;
  line-height: 1em;
}
.que-es figure {
  flex: 1.4;
  background: url("../img/propuesta-de-valor.png") left top no-repeat;
  background-size: cover;
  margin: 3px 0 0;
}

.beneficios {
  width: 80vw;
  margin: 0 auto;
  padding: 1em auto;
}
.beneficios .content {
  max-width: 1140px;
  margin: auto;
}
.beneficios .content h2 {
  margin: 2em auto;
}
.beneficios .content .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.beneficios .content .boxes .box {
  flex: 1 0 25%;
  position: relative;
  margin-bottom: 0.5%;
}
.beneficios .content .boxes .box .flip-container {
  width: 100%;
  height: 427px;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}
.beneficios .content .boxes .box .flip-container:hover .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.beneficios .content .boxes .box .flip-container .hover .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.beneficios .content .boxes .box .flip-container .flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  width: 96%;
  position: relative;
}
.beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 409px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.beneficios .content .boxes .box .flip-container .flipper .front {
  z-index: 1;
}
.beneficios .content .boxes .box .flip-container .flipper .front img {
  z-index: 0;
  border-radius: 8px;
  width: 96%;
}
.beneficios .content .boxes .box .flip-container .flipper .front h4 {
  position: absolute;
  top: 266px;
  color: #fff;
  font-size: 1.3em;
  font-weight: normal;
  text-align: center;
  width: 96%;
  padding: 1em 2em;
  z-index: 1;
}
.beneficios .content .boxes .box .flip-container .flipper .back {
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.4);
  z-index: 2;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.beneficios .content .boxes .box .flip-container .flipper .back h5 {
  position: absolute;
  top: 66px;
  color: #0084ff;
  font-size: 1.3em;
  font-weight: normal;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 1em 2em;
}
.beneficios .content .boxes .box .flip-container .flipper .back p {
  position: absolute;
  right: 0;
  top: 133px;
  left: 0;
  color: #404040;
  text-align: center;
  padding: 0 1.3em;
  line-height: 1.6em;
}

.como-funciona {
  background: #edf6ff;
  margin: 0;
  padding: 1em 0 0;
}
.como-funciona .content {
  max-width: 1140px;
  margin: auto;
}
.como-funciona .content h2 {
  margin: 2em auto;
}
.como-funciona .content .columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.como-funciona .content .columns .col {
  flex: 1;
}
.como-funciona .content .columns .col:first-child {
  padding: 0 1vw 3em 0;
}
.como-funciona .content .columns .col:nth-child(2) {
  flex: 1.5;
  align-self: flex-end;
}
.como-funciona .content .columns .col:last-child {
  padding: 0 0 3em 1vw;
}
.como-funciona .content .columns .col img {
  width: 100%;
  height: auto;
  max-width: 535px;
}
.como-funciona .content .columns .col .boxes .box {
  flex: 1;
  display: flex;
  justify-content: space-around;
}
.como-funciona .content .columns .col .boxes .box h4 {
  color: #0084ff;
  font-size: 1.3em;
  font-weight: normal;
  margin-bottom: 0.03em;
}
.como-funciona .content .columns .col .boxes .box p {
  font-weight: 400;
}

.faq-container {
  padding: 3em 0;
}
.faq-container .content {
  max-width: 1140px;
  margin: auto;
}
.faq-container .content h3 {
  font-size: 1.1em;
  line-height: 2.2em;
}
.faq-container .content .faq-border {
  width: 100%;
  border: 1px solid #e5e5e5;
  margin: 0 auto;
}
.faq-container .content .faq-border a {
  color: #222;
  text-decoration: none;
  padding: 0 3.3em;
}
.faq-container .content .faq-border a:hover {
  background: #ff6600;
  color: #fff;
}
.faq-container .content .faq-border .faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-container .content .faq-border .faq i {
  font-size: 1.6em;
}
.faq-container .content .faq-border .respuesta {
  padding: 0 5.3em;
}

.mapa {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: url("../img/mapa.jpg") center bottom;
  background-size: cover;
  margin: 0;
  width: 100%;
  height: 693px;
}
.mapa .content {
  max-width: 1140px;
}
.mapa .content .box {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 22vw;
  border-radius: 14px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
  margin-left: 10vw;
  padding: 1em 2vw 3em;
}
.mapa .content .box h3 {
  color: #0084ff;
  font-size: 1.3em;
  text-align: center;
  font-weight: 400;
  margin: 2em auto;
}
.mapa .content .box .info {
  display: flex;
  flex-direction: column;
}
.mapa .content .box .info .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mapa .content .box .info .row .icon {
  margin-right: 1em;
}
.mapa .content .box .info .row a {
  color: #404040;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
}
.mapa .content .box .info .row a:hover {
  color: #ff6600;
}
.mapa .content .box .contact-button {
  align-self: center;
  width: 230px;
  background: #ff6600;
  border-radius: 22.5px;
  padding: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mapa .content .box .contact-button:hover {
  background: #ff8e42;
}
.mapa .content .box .contact-button a {
  display: block;
  font-family: "Muli-Bold", sans-serif;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.mapa .content .box .contact-button a:hover {
  color: #fff;
}

footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: #222;
  height: 66px;
}
footer .content {
  max-width: 1140px;
  margin: auto;
}
footer .content p {
  color: #757575;
  font-size: 0.8em;
  width: 80vw;
  margin: 0 auto;
}

#button-top {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  position: fixed;
  font-size: 2em;
  background-color: #ff6600;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  border-radius: 50%;
  bottom: 22px;
  right: 33px;
  z-index: 99;
  width: 47px;
  height: 47px;
  border: 0;
  -moz-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  -webkit-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  transition: all 0.6s ease;
}
#button-top:hover {
  background-color: #0084ff;
  transform: translateY(-6px);
}

.black-madness-mobile {
  display: none;
}

.black-madness {
  display: flex;
  height: 55px;
  margin-top: 80px;
  margin-bottom: -135px;
  z-index: 1;
}
.black-madness .red {
  flex: 1;
  background: #f00;
}
.black-madness .black {
  flex: 3.13;
  display: flex;
  align-items: center;
  background: #000 url("../img/black-madness.jpg") no-repeat center left;
  padding-left: 200px;
}
.black-madness .black div {
  font-family: "Muli-Regular";
  font-size: 1.2em;
  font-weight: 600;
  color: #fefefe;
  text-align: center;
  line-height: 33px;
}
.black-madness .black div .black-friday {
  border-bottom: 3px solid #f00;
}
.black-madness .black div .yellow {
  color: #fffc00;
}
.black-madness .black div .big {
  color: #fffc00;
  font-size: 1.4em;
  letter-spacing: -1px;
  font-weight: 800;
  text-align: center;
  line-height: 33px;
  margin-top: 0.3em;
  margin-left: 0.3em;
  margin-right: 33px;
}
.black-madness .madness-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f00;
  border-radius: 25px;
  padding: 1px 33px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.black-madness .madness-button:hover {
  background: #ff4242;
}
.black-madness .madness-button a {
  display: block;
  font-size: 0.9em;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.black-madness .madness-button a:hover {
  color: #fff;
}

@keyframes show-left {
  0% {
    opacity: 0;
    margin-left: -25%;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}
@keyframes show-right {
  0% {
    opacity: 0;
    margin-right: -25%;
  }
  100% {
    opacity: 1;
    margin-right: 0;
  }
}
@keyframes show-top {
  0% {
    opacity: 0;
    margin-top: -66px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes slider;
@media only screen and (max-width: 2570px) {
  nav {
    margin: 0 5vw 0 -5vw;
  }

  .slider figure img {
    margin-top: 222px;
  }
  .slider figcaption {
    left: 27.7vw;
    bottom: 106px;
  }
  .slider figcaption .stretch1 {
    width: 17vw;
  }
  .slider figcaption .stretch2 {
    width: 20vw;
  }
  .slider figcaption .stretch3 {
    width: 15vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 29%);
  }
  .slider .swiper-pagination {
    left: 27.5vw;
    bottom: 85px;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 0 3em 27.8vw;
  }

  .beneficios {
    margin-bottom: 4em;
  }
  .beneficios .content .boxes .box {
    margin-bottom: 1.8%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 363px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 363px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 222px;
  }

  .mapa {
    background-position-y: center;
  }
  .mapa .content .box {
    width: 15vw;
    margin-left: 27.8vw;
  }
}
@media only screen and (max-width: 1930px) {
  nav {
    margin: 0 6vw 0 -6vw;
  }

  .black-madness .black {
    flex: 5.5;
  }

  .slider figure img {
    margin-top: 17px;
  }
  .slider figcaption {
    left: 20.2vw;
    bottom: 99px;
  }
  .slider figcaption .stretch1 {
    width: 19vw;
  }
  .slider figcaption .stretch2 {
    width: 30vw;
  }
  .slider figcaption .stretch3 {
    width: 20vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 29.3%);
  }
  .slider .swiper-pagination {
    left: 19.9vw;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 1vw 3em 20.3vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 1.8%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 363px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 363px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 233px;
  }

  .mapa .content .box {
    width: 18vw;
    margin-left: 19.8vw;
  }
}
@media only screen and (max-width: 1610px) {
  .black-madness .black {
    flex: 10.5;
  }

  .slider figure img {
    margin-top: -88px;
  }
  .slider figcaption {
    left: 14.2vw;
  }
  .slider figcaption .stretch1 {
    width: 23vw;
  }
  .slider figcaption .stretch2 {
    width: 33vw;
  }
  .slider figcaption .stretch3 {
    width: 25vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 27.1%);
  }
  .slider .swiper-pagination {
    left: 13.9vw;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 1vw 3em 14vw;
  }

  .mapa .content .box {
    width: 20vw;
    margin-left: 14vw;
  }
}
@media only screen and (max-width: 1450px) {
  .black-madness .black {
    flex: 23.5;
  }

  .slider figure img {
    margin-top: -133px;
  }
  .slider figcaption {
    left: 10.4vw;
  }
  .slider figcaption .stretch1 {
    width: 28vw;
  }
  .slider figcaption .stretch2 {
    width: 36vw;
  }
  .slider figcaption .stretch3 {
    width: 27vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 25.8%);
  }
  .slider .swiper-pagination {
    left: 10.1vw;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 1vw 3em 10.5vw;
  }

  .mapa .content .box {
    width: 22vw;
    margin-left: 10.5vw;
  }
}
@media only screen and (max-width: 1368px) {
  .black-madness .black {
    flex: 63.5;
  }

  .slider figure img {
    margin-top: -147px;
  }
  .slider figcaption {
    left: 8.3vw;
    bottom: 99px;
  }
  .slider figcaption .stretch1 {
    width: 32vw;
  }
  .slider figcaption .stretch2 {
    width: 42vw;
  }
  .slider figcaption .stretch3 {
    width: 29vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 25.1%);
  }
  .slider .swiper-pagination {
    left: 7.9vw;
  }

  .que-es article {
    flex: 1.1;
  }
  .que-es article .content {
    padding: 3em 0 3em 8.4vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 1.9%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 348px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 348px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 222px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 47px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 122px;
  }

  .mapa .content .box {
    width: 24vw;
    margin-left: 8.4vw;
  }
}
@media only screen and (max-width: 1290px) {
  .black-madness .black {
    flex: 166;
    background: #000 url("../img/black-madness.jpg") no-repeat -30px 0;
    padding-left: 191px;
  }

  .slider figcaption {
    left: 5.5vw;
  }
  .slider figcaption .stretch1 {
    width: 35vw;
  }
  .slider figcaption .stretch2 {
    width: 45vw;
  }
  .slider figcaption .stretch3 {
    width: 30vw;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 22.5%);
  }
  .slider .swiper-pagination {
    left: 5.1vw;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 1vw 3em 5.5vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 1.9%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 325px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 325px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 199px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 33px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 99px;
  }

  .mapa .content .box {
    width: 24vw;
    margin-left: 5.5vw;
  }
}
@media only screen and (max-width: 1120px) {
  .black-madness .black {
    background: #000 url("../img/black-madness.jpg") no-repeat -66px 0;
    padding-left: 122px;
  }
  .black-madness .black div {
    font-size: 1em;
  }
  .black-madness .black div .big {
    font-size: 1.3em;
  }

  .slider figure img {
    margin-top: -99px;
  }
}
@media only screen and (max-width: 1028px) {
  .black-madness .black {
    padding-left: 139px;
  }

  header .content {
    justify-content: space-around;
  }

  nav {
    margin: 0 4vw 0 -4vw;
  }

  .slider figure img {
    margin-top: -115px;
  }
  .slider figcaption {
    left: 6.5vw;
  }
  .slider figcaption .stretch1 {
    width: 43vw;
  }
  .slider figcaption .stretch2 {
    width: 50vw;
  }
  .slider figcaption .stretch3 {
    width: 39vw;
  }
  .slider figcaption h1 {
    font-size: 2.8em;
  }
  .slider .leadform-wrapper {
    left: calc(90vw - 26%);
  }
  .slider .leadform-wrapper .form-group .h2 {
    padding: 0 20px;
  }
  .slider .swiper-container {
    height: 566px;
  }
  .slider .swiper-pagination {
    left: 5.9vw;
  }

  .que-es article {
    flex: 1.3;
  }
  .que-es article .content {
    padding: 3em 0 3em 6.5vw;
  }
  .que-es article .content h2 {
    margin-right: 8vw;
  }
  .que-es article .content .details .row p {
    padding-right: 14vw;
  }
  .que-es figure {
    flex: 0.9;
    margin-left: -133px;
  }

  .beneficios {
    width: 90vw;
  }
  .beneficios .content {
    width: 97%;
  }
  .beneficios .content .boxes .box {
    margin-bottom: 1.7%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 285px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 285px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 177px;
    font-size: 1.1em;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 13px;
    font-size: 1.1em;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 70px;
    font-size: 0.9em;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 890.625px;
  }

  .como-funciona .content h2 {
    margin-bottom: 1em;
  }

  .mapa .content .box {
    width: 33vw;
    margin-left: 6.4vw;
  }
}
@media only screen and (max-width: 1000px) {
  .slider figure img {
    margin-top: -33px;
  }
}
@media only screen and (max-width: 900px) {
  .telefono {
    display: none;
  }

  .telefono-mobile {
    display: flex;
  }

  .black-madness-mobile {
    display: flex;
    height: 153px;
    margin-top: 80px;
    margin-bottom: -80px;
    z-index: 1;
  }
  .black-madness-mobile .red {
    flex: 1;
    background: #f00;
  }
  .black-madness-mobile .black {
    flex: 133;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000 url("../img/black-madness-mobile.jpg") no-repeat center left;
  }
  .black-madness-mobile .black p {
    font-family: "Muli-Regular";
    font-size: 1em;
    font-weight: 600;
    color: #fefefe;
    text-align: center;
    line-height: 1em;
    margin: 0.3em 0;
  }
  .black-madness-mobile .black p .black-friday {
    border-bottom: 3px solid #f00;
  }
  .black-madness-mobile .black p .yellow {
    color: #fffc00;
  }
  .black-madness-mobile .black p .big {
    color: #fffc00;
    font-size: 1.3em;
    letter-spacing: -1px;
    font-weight: 800;
    text-align: center;
    line-height: 33px;
    margin-top: 0.3em;
    margin-left: 0.3em;
    margin-right: 33px;
  }
  .black-madness-mobile .madness-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f00;
    border-radius: 25px;
    margin-top: 3px;
    padding: 6px 33px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
  }
  .black-madness-mobile .madness-button:hover {
    background: #ff4242;
  }
  .black-madness-mobile .madness-button a {
    display: block;
    font-size: 0.9em;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  .black-madness-mobile .madness-button a:hover {
    color: #fff;
  }

  .black-madness {
    display: none;
  }

  .slider {
    margin: 80px auto 0;
    background: #0084ff;
  }
  .slider figure {
    background: #0084ff;
  }
  .slider figure img {
    display: none;
  }
  .slider figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 213px;
  }
  .slider figcaption .stretch1 {
    width: 50vw;
  }
  .slider figcaption .stretch2 {
    width: 57vw;
  }
  .slider figcaption .stretch3 {
    width: 45vw;
  }
  .slider figcaption h1 {
    font-size: 2.3em;
    text-align: center;
  }
  .slider figcaption h1 small {
    font-size: 1em;
  }
  .slider figcaption h2 {
    text-align: center;
  }
  .slider figcaption .separator {
    display: none;
  }
  .slider .leadform-wrapper {
    top: 315px;
    left: 24.4vw;
    width: 75.5vw;
  }
  .slider .leadform-wrapper .form-group {
    padding-bottom: 0;
  }
  .slider .leadform-wrapper .form-group .lead-form {
    min-width: 210px;
  }
  .slider .swiper-container {
    height: 688px;
  }
  .slider .swiper-pagination {
    display: none;
  }

  .mobile-slider {
    background: #0084ff;
  }
  .mobile-slider .mobile-swiper-container {
    width: 100vw;
    height: 353px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide {
    background: linear-gradient(180deg, #0084ff 84%, #edf6ff 16%);
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 51vw;
    border: 1px solid #fff;
    -moz-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
    -webkit-box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
    box-shadow: 0 3px 5px 0 rgba(15, 15, 15, 0.25);
  }
  .mobile-slider .mobile-swiper-container .mobile-swiper-pagination {
    text-align: center;
  }

  .que-es {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
  }
  .que-es article {
    flex: 1;
  }
  .que-es article .content {
    padding: 3em 4.3vw 0 5.5vw;
  }
  .que-es article .content h2 {
    text-align: center;
    width: 57vw;
    margin-right: 0;
    margin: 1.3em auto 1.3em;
  }
  .que-es article .content .details .row p {
    padding-right: 0;
  }
  .que-es figure {
    width: 100%;
    min-height: 85vw;
    margin-top: 33px;
    margin-left: auto;
  }

  .beneficios .content .boxes .box {
    flex: 1 0 50%;
    margin-bottom: 3.5%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 500px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 500px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 366px;
    font-size: 1.3em;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 122px;
    font-size: 1.3em;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 199px;
    font-size: 1em;
    line-height: 1.6em;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 814.2857142857px;
  }

  .como-funciona .content h2 {
    margin-bottom: 0;
  }

  .faq-container .content .faq-border .respuesta {
    padding: 0 4.3em;
  }

  .mapa .content .box {
    width: 32vw;
    margin-left: 5.4vw;
  }

  footer .content p {
    width: 48vw;
    text-align: center;
  }
}
@media only screen and (max-width: 815px) {
  .black-madness-mobile .black {
    background: #000 url("../img/black-madness-mobile.jpg") no-repeat -13px 0;
  }

  nav {
    margin: 0 2vw 0 2vw;
  }
  nav a {
    margin-right: 1.3em;
  }

  .slider .leadform-wrapper {
    left: 9.5em;
  }
  .slider figcaption .stretch1 {
    width: 55vw;
  }
  .slider figcaption .stretch2 {
    width: 53vw;
  }
  .slider figcaption .stretch3 {
    width: 50vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 25em;
  }

  .beneficios .content h2 {
    width: 60vw;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 452px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 452px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 322px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 113px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 188px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 633.3333333333px;
  }

  .mapa .content .box {
    width: 20em;
    margin-left: 2.4vw;
  }

  footer .content p {
    width: 60vw;
  }
}
@media only screen and (max-width: 804px) {
  .slider .leadform-wrapper {
    left: 21.1vw;
  }
  .slider .leadform-wrapper .form-group {
    padding-bottom: 0;
  }
  .slider .leadform-wrapper .form-group .lead-form {
    min-width: 210px;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 60vw;
  }

  .que-es article .content {
    padding: 3em 5vw 0;
  }

  .beneficios .content .boxes .box .flip-container {
    height: 445px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 445px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 313px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 122px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 199px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 760px;
  }

  .como-funciona .content h2 {
    margin: 2em auto 0;
  }
  .como-funciona .content .columns .col:nth-child(2) {
    flex: 2;
  }

  .mapa .content .box {
    width: 36.5vw;
    margin-left: 3vw;
  }

  footer .content p {
    width: 54vw;
  }
}
@media only screen and (max-width: 770px) {
  .black-madness-mobile .black {
    background: #000 url("../img/black-madness-mobile.jpg") no-repeat -22px 0;
  }

  .slider .leadform-wrapper {
    left: 22.5vw;
  }
  .slider figcaption .stretch1 {
    width: 58vw;
  }
  .slider figcaption .stretch2 {
    width: 55vw;
  }
  .slider figcaption .stretch3 {
    width: 53vw;
  }

  .mobile-slider .mobile-swiper-container {
    height: 330px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 54.8vw;
  }

  .que-es article .content {
    padding: 3em 6vw 0;
  }
  .que-es article .content h2 {
    width: 69vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 3.6%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 427px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 427px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 299px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 113px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 188px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 735.4838709677px;
  }

  .como-funciona .content .columns .col:nth-child(2) {
    flex: 1.8;
  }

  .mapa .content .box {
    width: 42vw;
    margin-left: 2vw;
  }

  footer .content p {
    width: 56vw;
  }
}
@media only screen and (max-width: 755px) {
  .slider .leadform-wrapper {
    left: 19vw;
  }

  .beneficios .content .boxes .box .flip-container {
    height: 417px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 417px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 299px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 99px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 166px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 712.5px;
  }
}
@media only screen and (max-width: 743px) {
  .slider .leadform-wrapper {
    left: 18.8vw;
  }
  .slider figcaption .stretch1 {
    width: 60vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 62.5vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 3%;
  }

  footer .content p {
    width: 58vw;
  }

  .mapa .content .box {
    width: 41vw;
  }
}
@media only screen and (max-width: 738px) {
  .slider .leadform-wrapper {
    left: 18.6vw;
  }

  .beneficios .content .boxes .box {
    margin-bottom: 2.8%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 410px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 410px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 290px;
  }

  .que-es article .content h2 {
    width: 70vw;
  }
}
@media only screen and (max-width: 670px) {
  .black-madness-mobile .black {
    background: #000 url("../img/black-madness-mobile.jpg") no-repeat center left;
  }

  header .content {
    justify-content: space-between;
    margin: 0 5.2vw;
  }

  nav {
    display: none;
  }

  .slider figcaption .stretch1 {
    width: 67vw;
  }
  .slider figcaption .stretch2 {
    width: 63vw;
  }
  .slider figcaption .stretch3 {
    width: 61vw;
  }
  .slider .leadform-wrapper {
    left: 14vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 63.2vw;
  }

  .que-es article .content h2 {
    width: 75vw;
  }

  .beneficios .content h2 {
    width: 70vw;
  }
  .beneficios .content .boxes .box {
    margin-bottom: 3.5%;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 370px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 370px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 247px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 60px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 128px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 600px;
  }

  .como-funciona .content h2 {
    margin: 2em auto 1.3em;
  }
  .como-funciona .content .columns {
    flex-direction: column;
  }
  .como-funciona .content .columns .col:first-child {
    padding-bottom: 0;
  }
  .como-funciona .content .columns .col:nth-child(2) {
    order: 3;
  }
  .como-funciona .content .columns .col img {
    max-width: 335px;
    margin-left: -40%;
  }

  .mapa {
    background-position-x: -260px;
  }
  .mapa .content .box {
    width: 45vw;
    margin-left: 5vw;
  }

  footer .content p {
    width: 64vw;
  }
}
@media only screen and (max-width: 650px) {
  header .content {
    justify-content: space-between;
    margin: 0 2vw;
  }

  .slider figcaption .stretch2 {
    width: 66vw;
  }
  .slider .leadform-wrapper {
    left: 14vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 72vw;
  }
}
@media only screen and (max-width: 570px) {
  .slider figcaption .stretch1 {
    width: 78vw;
  }
  .slider figcaption .stretch2 {
    width: 75vw;
  }
  .slider figcaption .stretch3 {
    width: 70vw;
  }
  .slider .leadform-wrapper {
    left: 10vw;
    width: 80vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 79.5vw;
  }

  .que-es article .content {
    padding: 3em 1em 0;
  }
  .que-es article .content h2 {
    width: 85vw;
  }
  .que-es article .content .details .row {
    flex-direction: column;
    align-items: center;
  }
  .que-es article .content .details .row .icon {
    margin-right: 0;
  }
  .que-es article .content .details .row h3, .que-es article .content .details .row p {
    text-align: center;
  }
}
@media only screen and (max-width: 415px) {
  .telefono-mobile i {
    margin-right: 0em;
  }

  .black-madness-mobile .black {
    flex: 66;
    background: #000 url("../img/black-madness-mobile.jpg") no-repeat -33px 0;
  }

  .slider {
    min-height: 713px;
  }
  .slider figure {
    width: 100vw;
    height: 777px;
  }
  .slider figcaption h1 {
    font-size: 1.9em;
  }
  .slider figcaption .stretch1 {
    width: 90vw;
  }
  .slider figcaption .stretch2 {
    width: 85vw;
  }
  .slider figcaption .stretch3 {
    width: 90vw;
  }
  .slider .leadform-wrapper {
    width: 90vw;
    left: 5vw;
  }

  .mobile-slider .mobile-swiper-container {
    height: 280px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 90vw;
  }

  .que-es article .content .details .row h3 {
    line-height: 1.3em;
  }
  .que-es article .content .details .row p {
    margin-top: -0.5em;
  }

  .beneficios .content h2 {
    width: 70vw;
  }
  .beneficios .content .boxes {
    margin-left: 5vw;
  }
  .beneficios .content .boxes .box {
    flex: 1 0 100%;
    margin-bottom: 2em;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 433px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 433px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 299px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 88px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 166px;
  }

  .como-funciona .content, .faq-container .content {
    max-width: 380px;
  }

  .como-funciona .content .columns .col img {
    margin-left: -6%;
  }
  .como-funciona .content .columns .col .boxes .box .detalles h4, .como-funciona .content .columns .col .boxes .box .detalles p {
    text-align: center;
  }

  .faq-container .content .faq-border a {
    padding: 0 1em;
  }
  .faq-container .content .faq-border a h3 {
    width: 89%;
  }
  .faq-container .content .faq-border a h3:first-child {
    width: 76%;
  }
  .faq-container .content .faq-border .respuesta {
    padding: 0 2em;
  }

  .mapa {
    justify-content: center;
    background: #edf6ff;
    height: auto;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  .mapa .content .box {
    width: 80vw;
  }
  .mapa .content .box .row {
    padding-left: 9vw;
  }

  footer .content p {
    width: 90vw;
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 380px) {
  .black-madness-mobile .black {
    flex: 99;
  }
  .black-madness-mobile .black p {
    font-size: 0.9em;
  }
  .black-madness-mobile .black p .big {
    font-size: 1.2em;
  }

  .contact-button {
    padding: 13px 22px;
  }

  .slider .swiper-container {
    height: 733px;
  }
  .slider figcaption h1 {
    font-size: 1.7em;
  }
  .slider figcaption h2 {
    font-size: 1.1em;
  }
  .slider figcaption .stretch1 {
    width: 90vw;
  }
  .slider figcaption .stretch2 {
    width: 85vw;
  }
  .slider figcaption .stretch3 {
    width: 93vw;
  }
  .slider .leadform-wrapper {
    left: 5vw;
  }
  .slider .leadform-wrapper .form-group .h2 {
    margin: 15px auto 35px;
  }
  .slider .leadform-wrapper .form-group .nombre-completo {
    flex-direction: column;
  }
  .slider .leadform-wrapper .form-group .nombre-completo .nombre {
    margin-right: 0;
  }

  .mobile-slider .mobile-swiper-container {
    height: 225px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 82vw;
  }

  .que-es article .content, .como-funciona .content, .faq-container .content {
    max-width: 356.25px;
  }
  .que-es article .content .details, .como-funciona .content .details, .faq-container .content .details {
    max-width: 356.25px;
    margin: auto;
  }

  .que-es article .content h2 {
    width: 90vw;
    margin-left: -2vw;
  }

  .beneficios .content h2 {
    width: 85vw;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 395px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 395px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 266px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 66px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 133px;
  }

  .como-funciona .content .columns .col img {
    margin-left: -3.5%;
  }

  footer .content p {
    width: 70vw;
  }

  .mapa .content .box .row {
    padding-left: 5vw;
  }
}
@media only screen and (max-width: 362px) {
  .slider figure {
    height: 688px;
  }
  .slider figcaption h1 {
    font-size: 1.7em;
  }
  .slider figcaption .stretch1 {
    width: 94vw;
  }
  .slider figcaption .stretch2 {
    width: 90vw;
  }
  .slider figcaption .stretch3 {
    width: 90vw;
  }
  .slider .leadform-wrapper {
    left: 5vw;
  }

  .mobile-slider .mobile-swiper-container {
    height: 230px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 84vw;
  }

  .que-es article .content {
    padding: 3em 0.8em;
  }
  .que-es article .content h2 {
    margin-left: -2.5vw;
  }

  .beneficios .content h2 {
    width: 90vw;
  }
  .beneficios .content .boxes .box .flip-container {
    height: 378px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 378px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 255px;
  }

  .como-funciona .content .columns .col img {
    margin-left: 0;
  }

  .que-es article .content, .como-funciona .content, .faq-container .content {
    max-width: 335.2941176471px;
  }

  .mapa .content .box .row {
    padding-left: 4vw;
  }
}
@media only screen and (max-width: 342px) {
  .slider figcaption h1 {
    font-size: 1.6em;
  }
  .slider figcaption h2 {
    font-size: 1em;
  }
  .slider figcaption .stretch2 {
    width: 78vw;
  }
  .slider figcaption .stretch3 {
    width: 87w;
  }
  .slider .leadform-wrapper {
    left: 6vw;
  }

  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 88vw;
  }

  .contact-button {
    padding: 9px 20px;
  }

  .que-es article .content {
    padding: 3em 0;
  }
  .que-es article .content h2 {
    margin-left: 0;
  }

  .beneficios .content .boxes .box .flip-container {
    height: 335px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front, .beneficios .content .boxes .box .flip-container .flipper .back {
    height: 335px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .front h4 {
    top: 217px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back h5 {
    top: 40px;
  }
  .beneficios .content .boxes .box .flip-container .flipper .back p {
    top: 106px;
  }

  .que-es article .content, .como-funciona .content, .faq-container .content {
    max-width: 300px;
  }

  .mapa {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .mapa .content .box {
    width: 84vw;
  }
}
@media only screen and (max-width: 322px) {
  header .logo {
    max-width: 150px;
  }

  .telefono-mobile {
    margin-top: 0.25em;
  }

  .contact-button {
    padding: 9px 13px;
  }

  .slider figcaption h1 {
    font-size: 1.5em;
  }
  .slider figcaption .stretch2 {
    width: 83vw;
  }
  .slider .leadform-wrapper .form-group .h2 {
    font-size: 1em;
  }

  .mobile-slider .mobile-swiper-container {
    height: 210px;
  }
  .mobile-slider .mobile-swiper-container .swiper-slide img {
    width: 88vw;
  }

  .que-es article .content h2 {
    width: 98vw;
    margin-left: -2vw;
  }

  .mapa {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .mapa .content .box {
    width: 90vw;
  }
  .mapa .content .box .row {
    padding-left: 5vw;
  }

  footer {
    height: 90px;
  }
}

/*# sourceMappingURL=styles.css.map */
