@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

.container {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 1.2rem);
  padding-right: var(--bs-gutter-x, 1.2rem);
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 114rem;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 132rem;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 150rem;
  }
}

/* Media queries */
@font-face {
  font-display: swap;
  font-family: "Mic32";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/mic32-regular.woff2") format("woff2"), url("../../fonts/mic32-regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Mic32";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../../fonts/mic32-bold.woff2") format("woff2"), url("../../fonts/mic32-bold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/montserrat-v15-latin-regular.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../../fonts/montserrat-v15-latin-500.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-500.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../../fonts/montserrat-v15-latin-600.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-600.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../../fonts/montserrat-v15-latin-700.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-700.woff") format("woff");
}
@font-face {
  font-family: "Mic32_Bold";
  src: url("../fonts/Mic32_Bold.ttf?") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Mic32";
  src: url("../fonts/Mic32.eot") format("eot"), url("../fonts/Mic32.eot") format("eot"), url("../fonts/Mic32.woff") format("woff"), url("../fonts/Mic32.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary: #427fed;
  --primary-light: #ff9346;
  --primary-dark: #2355b3;
  --primary-bomberos: #df044b;
  --primary-bomberos-dark: #720024;
  --secondary: #3a3a3a;
  --secondary-med: #707070;
  --section-secondary: #f6f6f6;
  --cuaternary: #427fed;
  --gradient-blue: rgba(66, 127, 237, 0.46);
  --gradient-orange: var(--general);
  --gray: #707070;
  --general: #427fed;
  --gradient-cabecera: #427fed;
  --gray: #7f7f7f;
  --gray-dark: #4d4d4d;
  --black: #292929;
  --orange: #f56600;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--secondary);
  outline: none !important;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 2rem;
  border: 0.2rem solid transparent;
}

html,
body {
  line-height: 1;
}
html .overlay,
html .overlay-modal,
body .overlay,
body .overlay-modal {
  backdrop-filter: blur(0.5rem);
  background-color: rgba(9, 24, 36, 0.99);
  border-radius: 50%;
  display: none;
  height: 200vh;
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 200%;
}
html .overlay,
body .overlay {
  z-index: 15;
}
html .overlay-modal,
body .overlay-modal {
  z-index: 9999;
}
html.blocked,
body.blocked {
  overflow-y: hidden;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 62.5%;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-weight: 700;
}
body h1.section-title, body h1.pseudotitle,
body h2.section-title,
body h2.pseudotitle,
body h3.section-title,
body h3.pseudotitle,
body h4.section-title,
body h4.pseudotitle,
body h5.section-title,
body h5.pseudotitle,
body h6.section-title,
body h6.pseudotitle {
  color: var(--primary);
}
body h1.section-title ~ p, body h1.pseudotitle ~ p,
body h2.section-title ~ p,
body h2.pseudotitle ~ p,
body h3.section-title ~ p,
body h3.pseudotitle ~ p,
body h4.section-title ~ p,
body h4.pseudotitle ~ p,
body h5.section-title ~ p,
body h5.pseudotitle ~ p,
body h6.section-title ~ p,
body h6.pseudotitle ~ p {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  body h1.section-title ~ p, body h1.pseudotitle ~ p,
  body h2.section-title ~ p,
  body h2.pseudotitle ~ p,
  body h3.section-title ~ p,
  body h3.pseudotitle ~ p,
  body h4.section-title ~ p,
  body h4.pseudotitle ~ p,
  body h5.section-title ~ p,
  body h5.pseudotitle ~ p,
  body h6.section-title ~ p,
  body h6.pseudotitle ~ p {
    margin-top: 2.5rem;
  }
}
body h2,
body h3.pseudotitle,
body h1.pseudotitle,
body span.pseudotitle {
  color: var(--primary);
  font-size: 2.1rem;
}
@media (min-width: 992px) {
  body h2,
  body h3.pseudotitle,
  body h1.pseudotitle,
  body span.pseudotitle {
    font-size: 2.9rem;
    line-height: 3.2rem;
  }
}
@media (min-width: 1600px) {
  body h2,
  body h3.pseudotitle,
  body h1.pseudotitle,
  body span.pseudotitle {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
}
body h2.cuadrico,
body h3.cuadrico,
body h1.cuadrico {
  background-color: var(--primary);
  color: white;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2.5rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 992px) {
  body h2.cuadrico,
  body h3.cuadrico,
  body h1.cuadrico {
    padding: 1rem 2rem;
    font-size: 2.9rem;
    line-height: 3.5rem;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
body p,
body .paragraphize {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  body p,
  body .paragraphize {
    font-size: 1.8rem;
  }
}
body p + p,
body .paragraphize + p {
  margin-top: 2.3rem;
}
@media (min-width: 992px) {
  body p + p,
  body .paragraphize + p {
    margin-top: 3rem;
  }
}
body p.text-center,
body .paragraphize.text-center {
  text-align: center;
}
body a {
  color: var(--cuaternary);
  text-decoration: none;
}
body a.strong-link {
  color: var(--primary);
  font-weight: 700;
}

section.main-area, section.first-section, section + section, section:last-child + .breadcrumbs {
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  section.main-area, section.first-section, section + section, section:last-child + .breadcrumbs {
    margin-top: 5.5rem;
  }
}

.btn {
  background-color: var(--cuaternary);
  border-radius: 0.6rem;
  display: block;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 4.5rem auto 0;
  padding: 1.5rem 2.5rem;
  text-transform: uppercase;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 1200px) {
  .btn {
    font-size: 1.8rem;
  }
}
.btn:hover {
  background-color: rgb(21.9130434783, 96.1739130435, 230.0869565217);
}

.d-none {
  display: none;
}

.main-area {
  margin-top: 3.5rem;
}
@media (min-width: 992px) {
  .main-area {
    margin-top: 6.5rem;
  }
}

#modal-cupon-general .container-modal-cupon-general {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--primary-dark)));
  background: linear-gradient(var(--primary), var(--primary-dark));
  border-radius: 1rem;
}
#modal-cupon-general .container-modal-cupon-general .txt-modal h4 {
  background-color: initial;
  color: white;
  font-family: "Montserrat";
  line-height: 1.5rem;
}
#modal-cupon-general .container-modal-cupon-general .txt-modal h4 span {
  color: white;
  font-weight: 500;
}
#modal-cupon-general .container-modal-cupon-general .txt-modal h4 span.titulo-cupon-1 {
  font-size: 2.6rem;
  font-weight: 600;
}
#modal-cupon-general .container-modal-cupon-general .txt-modal h4 span.titulo-cupon-2 {
  font-size: 1.9rem;
  font-weight: 700;
}
#modal-cupon-general .container-modal-cupon-general button[type=submit] {
  background-color: var(--cuaternary);
  cursor: pointer;
}

/* Boton Masterd */
p.container-btn-masterd {
  text-align: center;
}

a.btn-masterd {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-dark)), to(var(--primary)));
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  border-radius: 5rem;
  color: #fff !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  line-height: 115%;
  text-align: center;
  text-shadow: 0.1rem 0.2rem 0.1rem rgba(51, 51, 51, 0.2);
  text-decoration: none !important;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
a.btn-masterd:after {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  border-radius: 100%;
  -webkit-box-shadow: 0.1rem 0.2rem 0.1rem rgba(51, 51, 51, 0.5);
          box-shadow: 0.1rem 0.2rem 0.1rem rgba(51, 51, 51, 0.5);
  color: #333 !important;
  content: "➜";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2rem;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1rem;
  position: relative;
  text-decoration: none !important;
  text-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  width: 3rem;
}
@media (min-width: 768px) {
  a.btn-masterd:after {
    font-size: 3.8rem;
    height: 6rem;
    width: 6rem;
  }
}
a.btn-masterd:hover, a.btn-masterd:visited, a.btn-masterd:focus {
  color: white;
  text-decoration: none !important;
}
a.btn-masterd:hover {
  -webkit-box-shadow: 0.1rem 0.2rem 0.1rem rgba(51, 51, 51, 0.15);
          box-shadow: 0.1rem 0.2rem 0.1rem rgba(51, 51, 51, 0.15);
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
}
a.btn-masterd.btn-masterd-contacta:after {
  content: "🕽";
  font-size: 5rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.cc-message span {
  color: white;
}

pre {
  display: none;
}

blockquote {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  blockquote {
    font-size: 1.8rem;
  }
}
blockquote + p {
  margin-top: 2.3rem;
}
@media (min-width: 992px) {
  blockquote + p {
    margin-top: 3rem;
  }
}

/* CHAT Oct8ne*/
chat-oct8ne#livechat-wrapper {
  background-color: #f56600 !important;
}

/* CHAT Oct8ne*/
#ot-sdk-cookie-policy {
  display: none;
}

#ot-sdk-cookie-policy {
  display: none;
}

.politica-cookies {
  text-align: center;
  position: inherit;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 10px;
}
.politica-cookies #ot-sdk-btn, .politica-cookies a {
  font-size: 1.5rem !important;
  padding-bottom: 2rem !important;
  color: #252525 !important;
}

#modal-buscador {
  background-color: white;
  height: 100%;
  left: 50%;
  max-height: 85vh;
  max-width: 60rem;
  overflow-y: scroll;
  padding: 2rem;
  position: fixed;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  top: 7.5rem;
  width: 100%;
  z-index: 9999999;
}
@media (min-width: 768px) {
  #modal-buscador {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
@media (min-width: 992px) {
  #modal-buscador {
    top: 7.5rem;
  }
}
#modal-buscador.active {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
#modal-buscador .modal-titulo {
  color: var(--secondary);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
#modal-buscador .modal-titulo span {
  color: var(--primary);
  font-weight: 700;
}
#modal-buscador .lista-resultados {
  margin-top: 1.875rem;
}
#modal-buscador .lista-resultados li + li {
  margin-top: 0.1rem;
}
#modal-buscador .lista-resultados li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--section-secondary);
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.5rem;
  position: relative;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#modal-buscador .lista-resultados li a img {
  -webkit-filter: invert(1);
          filter: invert(1);
  margin-left: 2.5rem;
  opacity: 0.2;
  height: 1.8rem;
  width: 0.9rem;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
#modal-buscador .lista-resultados li a:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
#modal-buscador .lista-resultados li a:hover img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#modal-buscador button#search-modal-close {
  background-color: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 2.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0 auto;
  padding: 0.75rem 1.5rem;
}

.btn-black,
.btn-orange,
.btn-azul,
.btn-white {
  background-color: var(--black);
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.btn-black {
  background-color: var(--black);
}
.btn-black:hover {
  background-color: var(--primary-dark);
}

.btn-orange {
  background-color: var(--primary);
  margin-left: 0;
}
.btn-orange:hover {
  background-color: var(--primary-dark);
}

.btn-azul {
  background-color: var(--cuaternary);
  margin-left: 0;
}
.btn-azul:hover {
  background-color: var(--primary-dark);
}

.btn-white {
  background-color: var(--primary);
  color: white !important;
}
.btn-white:hover {
  background-color: var(--primary-dark);
}

#hero-ficha-e {
  height: 100vh;
  max-height: 65rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #hero-ficha-e {
    height: 75vh;
    max-height: initial;
  }
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e {
    height: 100vh;
  }
}
#hero-ficha-e:after {
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  display: block;
  background-color: var(--gradient-cabecera);
  opacity: 0.6;
  z-index: -1;
}
#hero-ficha-e .imagen-hero {
  height: 100%;
  left: 0;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-position: 52% 31%;
     object-position: 52% 31%;
  z-index: -1;
}
@media only screen and (min-width: 993px) {
  #hero-ficha-e .imagen-hero {
    -o-object-position: 55% 40%;
       object-position: 55% 40%;
  }
}
#hero-ficha-e .imagen-hero-bomberos {
  height: 100%;
  left: 0;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-position: 18% 31%;
     object-position: 18% 31%;
  z-index: -1;
}
@media only screen and (min-width: 993px) {
  #hero-ficha-e .imagen-hero-bomberos {
    -o-object-position: 55% 10%;
       object-position: 55% 10%;
  }
}
#hero-ficha-e .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#hero-ficha-e .container .box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#hero-ficha-e .container .box-title .logotipo {
  position: absolute;
  top: 1.6rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: auto;
  width: 16rem;
}
@media only screen and (min-width: 768px) {
  #hero-ficha-e .container .box-title .logotipo {
    left: 0;
  }
}
@media only screen and (min-width: 993px) {
  #hero-ficha-e .container .box-title .logotipo {
    top: 30px;
    height: auto;
    width: 22rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
    position: absolute;
  }
}
#hero-ficha-e .container .box-title h1,
#hero-ficha-e .container .box-title .subtitle-hero {
  color: #fff;
  text-align: center;
}
#hero-ficha-e .container .box-title h1 {
  font-size: 3rem;
  line-height: 1.4;
  text-transform: uppercase;
}
@media only screen and (min-width: 993px) {
  #hero-ficha-e .container .box-title h1 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .container .box-title h1 {
    font-size: 5rem;
    min-width: 750px;
  }
}
@media screen and (min-width: 1400px) {
  #hero-ficha-e .container .box-title h1 {
    min-width: 850px;
  }
}
@media only screen and (min-width: 1501px) {
  #hero-ficha-e .container .box-title h1 {
    font-size: 6rem;
    min-width: 1050px;
  }
}
@media only screen and (min-width: 1950px) {
  #hero-ficha-e .container .box-title h1 {
    font-size: 7rem;
  }
}
#hero-ficha-e .container .box-title .subtitle-hero {
  font-size: 1.7rem;
  margin: 2.5rem 0 3.5rem;
}
@media only screen and (min-width: 993px) {
  #hero-ficha-e .container .box-title .subtitle-hero {
    font-size: 2.2rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .container .box-title .subtitle-hero {
    font-size: 2.6rem;
  }
}
#hero-ficha-e .container .box-title .button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  #hero-ficha-e .container .box-title .button-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}
#hero-ficha-e .container .box-title .button-box .button-cupon {
  margin: 0;
}
#hero-ficha-e .container .box-title .button-box .button-phone {
  margin: 0;
}
#hero-ficha-e .caja-cupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-width: 44rem;
  padding-top: 1.5rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (min-width: 576px) {
  #hero-ficha-e .caja-cupon {
    min-width: 41rem;
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  #hero-ficha-e .caja-cupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
  }
}
#hero-ficha-e .caja-cupon #icono-cerrar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.1rem solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  height: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  width: 2.5rem;
}
#hero-ficha-e .caja-cupon #icono-cerrar img {
  height: 1.5rem;
  width: 1.5rem;
}
#hero-ficha-e .caja-cupon .box-formulario {
  padding: 0 2rem;
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .caja-cupon .box-formulario {
    padding: 2rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario h4,
#hero-ficha-e .caja-cupon .box-formulario h5 {
  color: var(--black);
}
#hero-ficha-e .caja-cupon .box-formulario h4 {
  font-size: 1.6rem;
  letter-spacing: 0.13rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .caja-cupon .box-formulario h4 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1501px) {
  #hero-ficha-e .caja-cupon .box-formulario h4 {
    font-size: 2.4rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario h5 {
  color: var(--general);
  font-size: 1.2rem;
  line-height: 1.3;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .caja-cupon .box-formulario h5 {
    font-size: 1.8rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form {
  font-size: 1rem;
  margin-top: 1.5rem;
}
#hero-ficha-e .caja-cupon .box-formulario form input,
#hero-ficha-e .caja-cupon .box-formulario form select {
  background-color: #fff;
  border: 0.1rem solid #c7c7c7;
  color: var(--black);
  height: 3.2rem;
  line-height: 1;
  min-height: 3.2rem;
  padding: 0 1.15rem;
  width: 100%;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form input,
  #hero-ficha-e .caja-cupon .box-formulario form select {
    height: 4.2rem;
    min-height: 4.2rem;
  }
}
@media (min-width: 576px) {
  #hero-ficha-e .caja-cupon .box-formulario form input,
  #hero-ficha-e .caja-cupon .box-formulario form select {
    height: 4.5rem;
    min-height: 4.5rem;
    padding: 0 2.3rem;
  }
}
@media (min-width: 1024px) {
  #hero-ficha-e .caja-cupon .box-formulario form input,
  #hero-ficha-e .caja-cupon .box-formulario form select {
    height: 4rem;
    min-height: 4rem;
    padding: 0 2rem;
  }
}
@media (min-width: 1200px) {
  #hero-ficha-e .caja-cupon .box-formulario form input,
  #hero-ficha-e .caja-cupon .box-formulario form select {
    height: 4.5rem;
    min-height: 4.5rem;
    padding: 0 2.3rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form input + *,
#hero-ficha-e .caja-cupon .box-formulario form select + * {
  margin-top: 0.6rem;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form input + *,
  #hero-ficha-e .caja-cupon .box-formulario form select + * {
    margin-top: 1rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form textarea,
#hero-ficha-e .caja-cupon .box-formulario form input:matches([type=email], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=url]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#hero-ficha-e .caja-cupon .box-formulario form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  background-image: url(/web/images/arrow-down.png);
  background-size: 19px 10px;
  border-color: 1px solid grey;
}
#hero-ficha-e .caja-cupon .box-formulario form select:invalid {
  color: #808080;
}
#hero-ficha-e .caja-cupon .box-formulario form select:invalid {
  color: #808080;
}
#hero-ficha-e .caja-cupon .box-formulario form #provinciaid {
  margin-top: 0;
}
#hero-ficha-e .caja-cupon .box-formulario form .estudios-minimos {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem auto;
  width: 100%;
  text-align: center;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form .estudios-minimos {
    font-size: 1.4rem;
    margin: 1rem auto;
  }
}
@media (min-width: 1024px) {
  #hero-ficha-e .caja-cupon .box-formulario form .estudios-minimos {
    font-size: 1.6rem;
    text-align: left;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx {
  color: var(--black);
  cursor: pointer;
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding-left: 2rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx {
    font-size: 1.4rem;
    margin-top: 1rem;
    padding-left: 3.2rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx input {
  cursor: pointer;
  height: 0.1rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.1rem;
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx input:checked ~ .checkmark:after {
  display: block;
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx .checkmark {
  background-color: #fff;
  border: 0.1rem solid var(--black);
  height: 1.5rem;
  left: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx .checkmark {
    height: 2rem;
    width: 2rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx .checkmark:after {
  border: solid var(--general);
  border-width: 0 0.2rem 0.2rem 0;
  content: "";
  display: none;
  height: 1rem;
  left: 0.65rem;
  position: absolute;
  top: -0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.5rem;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx .checkmark:after {
    border-width: 0 0.3rem 0.3rem 0;
    height: 2rem;
    left: 0.75rem;
    top: -0.8rem;
    width: 1rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form .checkbox .chx a {
  color: var(--black);
  text-decoration: underline;
}
#hero-ficha-e .caja-cupon .box-formulario form input[type=submit] {
  background: var(--cuaternary) !important;
  background-color: var(--cuaternary) !important;
  border-radius: 0;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
@media (min-width: 360px) {
  #hero-ficha-e .caja-cupon .box-formulario form input[type=submit] {
    font-size: 1.8rem;
  }
}
#hero-ficha-e .caja-cupon .box-formulario form input[type=submit]:hover {
  background: var(--primary-dark) !important;
  background-color: var(--primary-dark) !important;
}
#hero-ficha-e .caja-cupon.centered {
  display: block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999999;
}
@media only screen and (min-width: 1200px) {
  #hero-ficha-e .caja-cupon.centered {
    z-index: 9999999;
  }
}
#hero-ficha-e .caja-cupon.centered #icono-cerrar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 992px) {
  .breadcrumbs + #hero-ficha-e {
    height: calc(100vh - 11.25rem);
  }
}

.seccion-caracteristicas {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas.caracteristicas-izquierda {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 992px) {
  .seccion-caracteristicas.caracteristicas-izquierda .box-caracteristicas {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .seccion-caracteristicas.caracteristicas-izquierda .box-imagen {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas.caracteristicas-derecha {
    grid-template-columns: 2.5fr 3fr;
  }
}
.seccion-caracteristicas.caracteristicas-derecha .box-caracteristicas {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.seccion-caracteristicas.caracteristicas-derecha .box-imagen {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.seccion-caracteristicas.seccion-base {
  margin-bottom: 5rem;
}
.seccion-caracteristicas .box-caracteristicas {
  margin: 2rem auto 0;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media (min-width: 360px) {
  .seccion-caracteristicas .box-caracteristicas {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .seccion-caracteristicas .box-caracteristicas {
    max-width: 72rem;
    width: 100%;
  }
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas {
    margin: 0;
    padding: 0 7.5%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas {
    padding: 0 12%;
  }
}
.seccion-caracteristicas .box-caracteristicas .subtitulo {
  font-size: 2rem;
  line-height: 1.3;
  text-transform: uppercase;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .subtitulo {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas .subtitulo {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1501px) {
  .seccion-caracteristicas .box-caracteristicas .subtitulo {
    font-size: 3.6rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .subtitulo span {
  color: var(--general);
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas {
  display: grid;
  grid-gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas {
    grid-gap: 3rem;
    margin-top: 3rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas .bloque-caracteristica h3 {
  text-transform: uppercase;
  font-size: 1.8rem;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas .bloque-caracteristica h3 {
    font-size: 2rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas .bloque-caracteristica h3 + p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul {
  margin-top: 3.5rem;
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 2.5rem;
  line-height: 1.5;
  position: relative;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li {
    font-weight: 700;
  }
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1501px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li {
    font-size: 2.1rem;
    margin-bottom: 4rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li + li {
  margin-top: 2.1rem;
}
@media only screen and (min-width: 1501px) {
  .seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li + li {
    margin-bottom: 4rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .bloque-caracteristicas-pruebas ul li::before {
  background-color: var(--primary);
  border-radius: 50%;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1rem;
  width: 1rem;
}
.seccion-caracteristicas .box-caracteristicas .plazas-container {
  display: grid;
  margin-top: 2rem;
  row-gap: 2rem;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container {
    margin-top: 5rem;
    row-gap: 3rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .plazas-container .box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container .box {
    grid-template-columns: repeat(2, minmax(12rem, -webkit-max-content));
    grid-template-columns: repeat(2, minmax(12rem, max-content));
    grid-gap: 2.5rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .plazas-container .box h3 {
  font-size: 2.2rem;
  color: var(--general);
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container .box h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container .box h3 {
    font-size: 3.2rem;
  }
}
.seccion-caracteristicas .box-caracteristicas .plazas-container .box p {
  color: #3a3a3a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (min-width: 1200px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container .box p {
    font-size: 1.8rem;
    font-weight: 700;
  }
}
@media only screen and (min-width: 1501px) {
  .seccion-caracteristicas .box-caracteristicas .plazas-container .box p {
    font-size: 2.1rem;
  }
}
.seccion-caracteristicas .box-imagen {
  margin: 0 auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media (min-width: 360px) {
  .seccion-caracteristicas .box-imagen {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .seccion-caracteristicas .box-imagen {
    max-width: 72rem;
  }
}
@media only screen and (min-width: 993px) {
  .seccion-caracteristicas .box-imagen {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
.seccion-caracteristicas .box-imagen img {
  display: block;
  max-width: 100%;
  width: 100%;
}

#seccion-pruebas {
  margin-bottom: 30px;
}
@media only screen and (min-width: 993px) {
  #seccion-pruebas {
    margin-bottom: 0;
  }
}

.overlay-form {
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--black);
  backdrop-filter: blur(1.5rem);
  display: none;
  opacity: 0.9;
  position: fixed;
  z-index: 999999;
}
/*# sourceMappingURL=ficha-e.css.map */
