@charset "UTF-8";
/* Mixin para utilizar al seleccionar el texto
   $color -> Seleccionado del archivo _colores.scss
   $tamanio -> Seleccionado del archivo _fuentes.scss -> Array tamanio_fuente
   $fuente -> Seleccionado del archivo _fuentes.scss -> Array fuente
*/
/* Mixin para utilizar al usar flex
   $direction -> Si se quiere row / column
   $align_items -> opcional
   $justify_content -> opcional
*/
/* Mixin a utilizar en caso de necesitar position
   $position -> absolute, relative, sticky, fixed, etc
   $top      -> Posición respecto al limite superior de la pantalla o elemento de referencia (relative)  - [Opcional]
   $right    -> Posición respecto al limite derecho de la pantalla o elemento de referencia (relative)   - [Opcional]
   $bottom   -> Posición respecto al limite inferior de la pantalla o elemento de referencia (relative)  - [Opcional]
   $left     -> Posición respecto al limite izquierdo de la pantalla o elemento de referencia (relative) - [Opcional]
*/
/* En este documento vamos a crear todos los componentes necesarios que se repiten en la web. Por ejemplo, los botones */
/* El componente imprime un boton, con las medidas estandar (para todas las resoluciones)
   El boton incluye el hover
   Este componente se puede usar de dos formas:
   1) poniendo -> @include boton; lo que utilizara los parametros por defecto del mixin
   2) si quieres modificar cualquier propiedad -> @include boton ($color: grey);
*/
html {
  overflow-x: hidden !important;
}

.svg_arrow {
  fill: #3175FE;
}

.solicitalo {
  cursor: pointer;
}

/**NAVBAR**/
.navbarKit {
  position: fixed;
  z-index: 2;
  padding: 1em 1.3em;
  color: #fff;
  background: #000;
  width: 100vw;
  font-family: "Campton-SemiBold";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbarKit__logo {
  width: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbarKit__texto {
  width: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .navbarKit {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .navbarKit__logo {
    width: auto;
  }
  .navbarKit__logo img {
    width: 10em;
  }
  .navbarKit__texto {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .navbarKit {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .navbarKit__logo {
    width: auto;
  }
  .navbarKit__logo img {
    width: 10em;
  }
  .navbarKit__texto {
    width: auto;
  }
}

/**FIN NAVBAR**/
/**BLOQUE UNO**/
.seccion1 .contenedorSeccion1 {
  position: relative;
}
.seccion1 .contenedorSeccion1__img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -30vh;
  width: 100%;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1 {
  position: absolute;
  top: 0;
  right: 5%;
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo {
  font-family: "Campton-light";
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo h1 {
  font-size: 3rem;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--flecha path {
  fill: #3175FE;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado {
  font-size: 0.5em;
  text-align: center;
  padding: 4em 0;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado--iconos img {
  margin: 1em 1.5em;
  width: 20%;
}
.seccion1 .contenedorSeccion1 .contenidoSeccion1__flechaAbajo {
  display: none;
}
@media (min-width: 1024px) {
  .seccion1 .contenedorSeccion1__img {
    width: 100%;
    height: 100vh;
    margin-top: 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo {
    width: 60%;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--titulo h1 {
    font-size: 7.2rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--descripcion p {
    font-size: 2.4rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado {
    padding: 7rem 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado--iconos img {
    width: auto;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__flechaAbajo {
    display: block;
    margin: 1rem auto 10rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .seccion1 .contenedorSeccion1__img {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo {
    width: 60%;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--titulo h1 {
    font-size: 4rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--descripcion p {
    font-size: 1rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado {
    padding: 7rem 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado--iconos img {
    margin: 1em 2.5em;
    width: auto;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--titulo h1 {
    font-size: 3rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--descripcion p {
    font-size: 1.8rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado {
    padding: 1rem 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__flechaAbajo {
    margin: 2rem auto;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--titulo h1 {
    font-size: 3rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__titulo--descripcion p {
    font-size: 1.8rem;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__financiado {
    padding: 6rem 0;
  }
  .seccion1 .contenedorSeccion1 .contenidoSeccion1__flechaAbajo {
    margin: 0rem auto 2rem;
  }
}

/**FIN BLOQUE UNO**/
/*****BLOQUE VIDEO*****/
.bloqueVideo .container-banner {
  cursor: pointer;
  width: 100%;
  height: 35vh;
  position: relative;
  background-color: #000;
}
.bloqueVideo .container-banner__contenido {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 4vw 10vw;
}
.bloqueVideo .container-banner__contenido-boton {
  z-index: 1;
  color: white;
  position: relative;
  cursor: pointer;
}
.bloqueVideo .container-banner__contenido-boton_textos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bloqueVideo .container-banner__contenido-boton_textos p {
  margin: 0;
  font-family: "Campton-light";
  padding-left: 6.5rem;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .bloqueVideo .container-banner__contenido-boton_textos p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .bloqueVideo .container-banner__contenido-boton_textos p {
    font-size: 1.75rem;
  }
}
.bloqueVideo .container-banner__contenido-boton_textos::before {
  content: "\e1c4";
  font-family: "Material Symbols Rounded";
  position: absolute;
  font-size: 4rem;
  color: #3175FE;
}
@media (min-width: 768px) {
  .bloqueVideo .container-banner__contenido-boton_textos::before {
    font-size: 5rem;
  }
}
@media (min-width: 1024px) {
  .bloqueVideo .container-banner__contenido-boton_textos::before {
    font-size: 6rem;
  }
}
.bloqueVideo .container-banner__contenido-titulo {
  z-index: 1;
  color: white;
}
.bloqueVideo .container-banner__contenido-titulo h2 {
  color: #3175FE;
  font-family: "Campton-SemiBold";
  font-size: 2rem;
}
@media (min-width: 768px) {
  .bloqueVideo .container-banner__contenido-titulo h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .bloqueVideo .container-banner__contenido-titulo h2 {
    font-size: 4rem;
  }
}
.bloqueVideo .container-banner__contenido-titulo p {
  font-family: "Campton-light";
  font-size: 1rem;
}
@media (min-width: 768px) {
  .bloqueVideo .container-banner__contenido-titulo p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .bloqueVideo .container-banner__contenido-titulo p {
    font-size: 2rem;
  }
}
.bloqueVideo .container-banner__contenido .container-banner__element {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.4);
          filter: brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.bloqueVideo .container-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 10%;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.5019607843);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.bloqueVideo .container-video__popup {
  max-width: 80%;
  height: auto;
}
.bloqueVideo .container-video #cerrar {
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 4vw;
  font-family: "Campton-SemiBold";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}
.bloqueVideo .visible {
  visibility: visible;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

/* Icons google */
@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v71/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOc7TOVpeRL2w5rwZu2rIelXxeJKJBiCa8.woff2) format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/*****FIN BLOQUE VIDEO*****/
.b2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b2-container .b2-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100vw;
  overflow: hidden;
}
.b2-container .b2-element:hover .b2-element__item {
  width: 44vw;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element:hover .b2-element__item {
    width: 0;
  }
}
.b2-container .b2-element:hover .b2-element__item svg {
  opacity: 0;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element:hover .b2-element__item div {
    opacity: 0;
  }
}
.b2-container .b2-element:hover .b2-element__item-icon {
  width: 9vw;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element:hover .b2-element__item-icon {
    width: 25vw;
  }
}
.b2-container .b2-element:hover .b2-element__item-icon svg,
.b2-container .b2-element:hover .b2-element__item-icon p {
  opacity: 1;
}
.b2-container .b2-element .colored {
  background-color: #3175FE;
}
.b2-container .b2-element .non-colored {
  background-color: #cacaca;
}
.b2-container .b2-element__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50vw;
  padding: 2vw 9vw 2vw 0;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item {
    padding: 2vw;
    width: 45vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b2-container .b2-element__item {
    padding: 2vw 5vw 2vw 0;
  }
}
.b2-container .b2-element__item svg {
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  opacity: 1;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item svg {
    height: 8vw;
    width: 8vw;
  }
}
.b2-container .b2-element__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item div {
    padding-left: 5vw;
  }
}
.b2-container .b2-element__item div h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 2vw;
  color: #000;
  font-weight: bolder;
  white-space: nowrap;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item div h2 {
    font-size: 4vw;
    margin: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b2-container .b2-element__item div h2 {
    font-size: 1.8vw;
  }
}
.b2-container .b2-element__item div h2 svg {
  margin: 0 0 0 1vw;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item div h2 svg {
    width: 3vw;
    height: 2vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b2-container .b2-element__item div h2 svg {
    height: 1vw;
    width: 1vw;
  }
}
.b2-container .b2-element__item div p {
  font-size: 1vw;
  color: #000;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item div p {
    font-size: 2.5vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b2-container .b2-element__item div p {
    font-size: 1.4rem;
  }
}
.b2-container .b2-element__item-text {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 49vw;
  padding: 2vw 0;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item-text {
    padding: 3vw;
    width: 53vw;
  }
}
.b2-container .b2-element__item-text p {
  margin: 0;
  font-size: 1.2vw;
  color: #000;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item-text p {
    font-size: 4vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b2-container .b2-element__item-text p {
    font-size: 1.6vw;
  }
}
.b2-container .b2-element__item-icon {
  cursor: pointer;
  width: 0.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #808080;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item-icon {
    width: 1vw;
  }
}
.b2-container .b2-element__item-icon p {
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  opacity: 0;
  color: #fff;
  font-size: 1vw;
  font-weight: bold;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item-icon p {
    font-size: 2.5vw;
  }
}
.b2-container .b2-element__item-icon svg {
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  opacity: 0;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b2-container .b2-element__item-icon svg {
    width: 5vw;
    height: 5vw;
  }
}

.b4-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-color: #000;
  padding: 6vw 0;
  border-left: 15vw solid #000;
  border-right: 15vw solid #000;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container {
    padding: 5vw 0 10vw 0;
    border-left: 5vw solid #000;
    border-right: 5vw solid #000;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b4-container {
    padding: 5vw 0 15vw 0;
  }
}
.b4-container__title {
  font-size: 3.8vw;
  font-family: "Campton-SemiBold";
  color: #fff;
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b4-container__title {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__title {
    font-size: 4rem;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__title {
    font-size: 2rem !important;
  }
  .b4-container__title svg {
    margin-left: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .b4-container__title {
    font-size: 4rem !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .b4-container__title svg {
    margin-right: 17rem;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .b4-container__title {
    font-size: 5rem !important;
  }
}
@media (min-width: 1366px) and (max-width: 1441px) {
  .b4-container__title {
    font-size: 5rem !important;
  }
}
@media (min-width: 1442px) {
  .b4-container__title {
    font-size: 5rem !important;
  }
}
.b4-container__pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: relative;
}
.b4-container__pills #select {
  position: absolute;
  top: 7vw;
  left: -79vw;
  width: 300%;
  fill: none;
  stroke: #3175FE;
  stroke-miterlimit: 10;
  stroke-width: 5px;
  -webkit-transition: 1s ease all;
  transition: 1s ease all;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__pills #select {
    top: 16vw;
    left: -104vw;
    stroke-width: 10px;
  }
}
.b4-container__pills-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  padding: 2vw 0;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__pills-item {
    gap: 3vw;
  }
}
.b4-container__pills-item-text {
  background-color: #3175FE;
  border: 2px solid #3175FE;
  border-radius: 100vw;
  padding: 0.5vw 2vw;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__pills-item-text {
    border-radius: 1vw;
    padding: 1.5vw 2vw;
  }
}
.b4-container__pills-item-text:hover {
  background-color: transparent;
  border: 2px solid #3175FE;
}
.b4-container__pills-item-text:hover p {
  color: #3175FE;
}
.b4-container__pills-item-text p {
  cursor: pointer;
  margin: 0;
  font-size: 1.3vw;
  font-weight: bold;
  color: #000;
  font-family: "Campton-light";
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container__pills-item-text p {
    text-align: center;
    font-size: 3vw;
  }
}
.b4-container__pills-item-text--seleccted {
  background-color: transparent;
  border: 2px solid #3175FE;
}
.b4-container__pills-item-text--seleccted p {
  color: #3175FE;
}
.b4-container .b4-container-info {
  position: relative;
  height: 20vw;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container .b4-container-info {
    height: 75vw;
  }
}
.b4-container .b4-container-info .b4-info {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 5vw 10vw;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container .b4-container-info .b4-info {
    font-size: 2.5vw;
  }
}
.b4-container .b4-container-info .b4-info--seleccted {
  opacity: 1;
}
.b4-container .b4-container-info .b4-info__title {
  color: #fff;
  font-size: 1.3vw;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container .b4-container-info .b4-info__title {
    font-size: 4.5vw;
    width: 70%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b4-container .b4-container-info .b4-info__title {
    font-size: 1.4rem;
  }
}
.b4-container .b4-container-info .b4-info__subtitle {
  color: #fff;
  font-size: 1.2vw;
  padding: 1vw 0;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container .b4-container-info .b4-info__subtitle {
    font-size: 4.2vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b4-container .b4-container-info .b4-info__subtitle {
    font-size: 1.4rem;
  }
}
.b4-container .b4-container-info .b4-info__solutions li {
  color: #fff;
  font-size: 1.2vw;
  font-family: "Campton-light";
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b4-container .b4-container-info .b4-info__solutions li {
    font-size: 3.5vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b4-container .b4-container-info .b4-info__solutions li {
    font-size: 1.4rem;
  }
}

/**BLOQUE TRES**/
.seccion3 {
  background-color: #000;
  color: #fff;
}
.seccion3__solicitalo {
  width: 90%;
  margin: auto;
  padding: 1em 0;
}
.seccion3__solicitalo--titulo {
  width: 100%;
  font-family: "Campton-SemiBold";
}
.seccion3__solicitalo--titulo h2 {
  font-size: 4rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.seccion3__solicitalo--titulo h2:hover {
  color: #3175FE;
}
.seccion3__solicitalo--titulo h2 svg {
  margin-left: 0.2em;
}
.seccion3__solicitalo--orden {
  font-size: 2.5rem;
  width: 100%;
  font-family: "Campton-SemiBold";
}
.seccion3__imagen {
  position: relative;
}
.seccion3__imagen img {
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.seccion3__imagen--texto {
  position: absolute;
  top: 0;
  padding: 1em 0 0 1em;
  width: 70%;
  font-size: 1.8rem;
  font-family: "Campton-light";
}
.seccion3__imagen--texto strong {
  font-family: "Campton-ExtraBold";
  color: #3175FE;
}
@media (min-width: 1024px) {
  .seccion3__solicitalo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6em 0;
  }
  .seccion3__solicitalo--titulo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 7rem !important;
  }
  .seccion3__solicitalo--titulo h2 img {
    width: 2rem;
  }
  .seccion3__solicitalo--orden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .seccion3__solicitalo--orden p {
    width: 70%;
    margin: -1rem 0;
    margin-left: auto;
    font-size: 8rem;
  }
  .seccion3__imagen img {
    height: 60vw;
    width: 100%;
  }
  .seccion3__imagen--texto {
    top: 0;
    width: 13%;
    margin: 6rem 12rem;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .seccion3__solicitalo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 3em 0;
  }
  .seccion3__solicitalo--titulo {
    width: 40%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 2rem !important;
  }
  .seccion3__solicitalo--titulo h2 svg {
    margin-left: 0.4em;
  }
  .seccion3__solicitalo--orden {
    width: auto;
    font-size: 2rem;
  }
  .seccion3__imagen img {
    height: 75vh;
  }
  .seccion3__imagen--texto {
    top: 0;
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 3rem 0 3rem 2rem;
  }
  .seccion3__imagen--texto p {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .seccion3__solicitalo--titulo {
    width: 50%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 4rem !important;
  }
  .seccion3__solicitalo--orden p {
    font-size: 2.5rem;
    margin: auto;
  }
  .seccion3__imagen--texto {
    width: 35%;
    margin: 3rem 4rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .seccion3__solicitalo--titulo {
    width: 55%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 2rem !important;
    width: 50%;
  }
  .seccion3__solicitalo--titulo h2 img {
    width: 1rem;
  }
  .seccion3__solicitalo--orden p {
    font-size: 2rem !important;
    margin: auto;
  }
  .seccion3__imagen--texto {
    width: 40%;
    margin: 2rem;
  }
  .seccion3__imagen--texto p {
    font-size: 1.7rem;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .seccion3__solicitalo--titulo {
    width: 80%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 5rem !important;
  }
  .seccion3__solicitalo--orden p {
    font-size: 5rem !important;
    margin: auto;
    margin-right: auto;
    margin-left: 0;
    width: auto;
  }
  .seccion3__imagen--texto {
    width: 40%;
    margin: 4rem 6rem;
  }
  .seccion3__imagen--texto p {
    font-size: 3rem;
  }
}
@media (min-width: 1366px) and (max-width: 1441px) {
  .seccion3__solicitalo--titulo {
    width: 80%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 5rem !important;
  }
  .seccion3__solicitalo--orden p {
    font-size: 5rem !important;
    margin: auto;
    margin-right: auto;
    margin-left: 0;
    width: auto;
  }
  .seccion3__imagen--texto {
    width: 40%;
    margin: 4rem 6rem;
  }
  .seccion3__imagen--texto p {
    font-size: 3rem;
  }
}
@media (min-width: 1442px) {
  .seccion3__solicitalo--titulo {
    width: 80%;
  }
  .seccion3__solicitalo--titulo h2 {
    font-size: 5rem !important;
  }
  .seccion3__solicitalo--orden p {
    font-size: 5rem !important;
    margin: auto;
    margin-right: auto;
    margin-left: 0;
    width: auto;
  }
  .seccion3__imagen--texto {
    width: 40%;
    margin: 4rem 6rem;
  }
  .seccion3__imagen--texto p {
    font-size: 3rem;
  }
}

/**FIN BLOQUE TRES**/
/** BLOQUE CINCO ***/
a:hover {
  color: #fff;
}

.b5-container {
  width: 100%;
  background-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2vw 5vw 5vw 5vw;
}
.b5-container__h2 {
  color: #fff;
  padding-left: 8.5vw;
  font-size: 7.2rem;
  font-family: "Campton-SemiBold";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 858px) {
  .b5-container__h2 {
    font-size: 4rem;
    padding: 8.5vw 13vw 4vw 1vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-container__h2 {
    font-size: 2rem !important;
    padding-left: 1.5vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b5-container__h2 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .b5-container__h2 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .b5-container__h2 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1366px) and (max-width: 1441px) {
  .b5-container__h2 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1442px) {
  .b5-container__h2 {
    font-size: 5rem !important;
  }
}
.b5-container__h2 svg {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .b5-container__h2 svg {
    margin-left: 0;
    margin-right: 7rem;
  }
}
.b5-container__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 858px) {
  .b5-container__grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-container__grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.b5-caja {
  width: 40%;
  background-color: #1A1A1A;
  margin: 0.5vw;
  padding: 1vw;
  border-radius: 1rem;
  color: #fff;
  border: 3px solid #3175FE;
  cursor: pointer;
}
@media (max-width: 858px) {
  .b5-caja {
    width: 100%;
    margin-bottom: 4vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja {
    width: 100%;
    padding: 4vw;
    margin: 1vw 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b5-caja {
    width: 100%;
    padding: 4vw;
    margin: 1vw 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .b5-caja {
    width: 100%;
    padding: 4vw;
    margin: 1vw 0;
  }
}
.b5-caja__h2 {
  font-size: 3.2rem;
  font-family: "Campton-Black";
  font-style: italic;
}
@media (max-width: 858px) {
  .b5-caja__h2 {
    font-size: 2.7rem;
    padding: 3vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja__h2 {
    font-size: 2rem;
  }
}
.b5-caja__p {
  padding-bottom: 4vw;
  font-size: 2.4rem;
  font-family: "Campton-light";
}
@media (max-width: 858px) {
  .b5-caja__p {
    font-size: 1.7rem;
    padding: 3vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja__p {
    font-size: 1.4rem;
  }
}
.b5-caja__precioBoton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 858px) {
  .b5-caja__precioBoton {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3vw;
  }
}
.b5-caja__precioBoton--p {
  padding-right: 1vw;
  font-size: 1.6rem;
  margin: 0;
  font-family: "Campton-Black";
  font-style: italic;
}
@media (max-width: 858px) {
  .b5-caja__precioBoton--p {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja__precioBoton--p {
    font-size: 1.4rem;
    padding-right: 4vw;
  }
}
.b5-caja__precioBoton--p b {
  font-size: 3.2rem;
  font-family: "Campton-Black";
  font-style: italic;
}
@media (max-width: 858px) {
  .b5-caja__precioBoton--p b {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja__precioBoton--p b {
    font-size: 2rem;
  }
}
.b5-caja__precioBoton--boton {
  color: #000;
  font-size: 2rem;
  border-radius: 0.6rem;
  background-color: #3175FE;
  border-color: #3175FE;
  font-family: "Campton-Bold";
}
@media (max-width: 858px) {
  .b5-caja__precioBoton--boton {
    font-size: 1.7rem;
    padding: 1.5vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-caja__precioBoton--boton {
    font-size: 1.4rem;
    padding: 1.4vw;
  }
}
.b5-caja__precioBoton--boton:hover {
  background-color: transparent;
  border: 3px solid #3175FE;
  color: #3175FE;
}

.b5-desplegable {
  width: 40%;
  height: 100vh;
  background-color: #1A1A1A;
  position: fixed;
  z-index: 101;
  top: 0;
  right: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}
@media (max-width: 858px) {
  .b5-desplegable {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable {
    width: 45%;
  }
}
.b5-desplegable__header {
  background-color: #3175FE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5vw 3vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 858px) {
  .b5-desplegable__header {
    margin-bottom: 1vw;
    padding: 3vw;
  }
}
.b5-desplegable__header--svg {
  cursor: pointer;
  margin: 0 2vw 0.3vw 0;
}
@media (max-width: 858px) {
  .b5-desplegable__header--svg {
    margin: 0 10vw 0.3vw 0;
  }
}
.b5-desplegable__header--p {
  font-family: "Campton-Bold";
  font-style: italic;
  font-size: 2.2rem;
  margin: 0;
}
@media (max-width: 858px) {
  .b5-desplegable__header--p {
    font-size: 1.7rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__header--p {
    font-size: 1.4rem;
  }
}
.b5-desplegable__header--p2 {
  font-family: "Campton-Bold";
  font-style: italic;
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 858px) {
  .b5-desplegable__header--p2 {
    font-size: 1.7rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__header--p2 {
    font-size: 1.4rem;
  }
}
.b5-desplegable__body {
  width: 100%;
  padding: 1.5vw 3vw;
  font-family: "Campton-light";
  font-size: 1.8rem;
  margin: 0;
}
@media (max-width: 858px) {
  .b5-desplegable__body {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .b5-desplegable__body {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__body {
    font-size: 1.2rem;
  }
}
.b5-desplegable__body--ul {
  margin-bottom: 1vw;
}
@media (max-width: 858px) {
  .b5-desplegable__body--ul {
    padding-bottom: 2vw;
  }
}
@media (max-width: 375px) {
  .b5-desplegable__body--ul {
    padding-bottom: 1vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__body--ul {
    font-size: 1.2rem;
  }
}
.b5-desplegable__body--desde {
  font-size: 2.5rem;
  text-align: center;
}
@media (max-width: 858px) {
  .b5-desplegable__body--desde {
    font-size: 2.4rem;
  }
}
@media (max-width: 858px) {
  .b5-desplegable__body--desde {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__body--desde {
    font-size: 1.6rem;
  }
}
.b5-desplegable__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 858px) {
  .b5-desplegable__footer {
    padding-top: 1vw;
  }
}
@media (max-width: 375px) {
  .b5-desplegable__footer {
    padding-top: 1vw;
  }
}
.b5-desplegable__footer--ayuda {
  font-family: "Campton-light";
  font-size: 1.5rem;
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__footer--ayuda {
    font-size: 1.4rem;
  }
}
.b5-desplegable__footer--precio {
  font-family: "Campton-Black";
  font-style: italic;
  font-size: 5rem;
}
@media (max-width: 858px) {
  .b5-desplegable__footer--precio {
    font-size: 4.9rem;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b5-desplegable__footer--precio {
    font-size: 3rem;
  }
}

.mostrar_menu {
  right: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.ocultar_menu {
  right: -100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.total {
  width: 100%;
  height: 100vh;
  background-color: black;
  opacity: 0.6;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
}

.ocultar {
  display: none;
}

/** FIN BLOQUE CINCO **/
/**BLOQUE SEIS**/
.b6 {
  background-color: #000;
  color: #fff;
}
.b6__titulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  margin: auto;
  padding: 2rem 0px;
}
.b6__titulo--titulo {
  width: 65vw;
}
.b6__titulo--titulo h2 {
  font-family: "Campton-SemiBold";
  font-size: 4rem !important;
  margin: 0;
}
.b6__titulo--icono svg path {
  fill: #3175FE;
}
.b6__container-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b6__container-form form span {
  color: #3175FE;
}
.b6__container-form form h3 {
  width: 100%;
  font-family: "Campton-Bold";
}
@media (max-width: 858px) {
  .b6__container-form form h3 {
    width: 90vw;
    margin: auto;
    font-size: 1.5rem;
  }
}
.b6__container-form form div {
  width: 90vw;
  font-family: "Campton-light";
  font-style: italic;
  margin-bottom: 1rem;
}
.b6__container-form form select,
.b6__container-form form input,
.b6__container-form form textarea {
  background-color: #000;
  border: none;
  border-bottom: 1px solid;
  color: #fff;
  font-family: "Campton-light";
  font-style: italic;
}
.b6__container-form form select option:disabled,
.b6__container-form form input option:disabled,
.b6__container-form form textarea option:disabled {
  background-color: #000;
  color: #fff;
}
.b6__container-form form .form__nombre {
  width: 90vw;
}
.b6__container-form form .form__comunicacion--email {
  width: 90vw;
  margin-bottom: 1rem;
  text-transform: lowercase;
}
.b6__container-form form .form__comunicacion--conjuntoTelefono {
  width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b6__container-form form .form__comunicacion--conjuntoTelefono div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.b6__container-form form .form__comunicacion--conjuntoTelefono .prefijo {
  width: 41.6666666667%;
}
.b6__container-form form .form__comunicacion--conjuntoTelefono .telefono {
  width: 48.3333333333%;
}
.b6__container-form form .form__comunicacion--datosEmpresa {
  width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b6__container-form form .form__comunicacion--datosEmpresa div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.b6__container-form form .form__comunicacion--datosEmpresa .clinica {
  width: 41.6666666667%;
}
.b6__container-form form .form__comunicacion--datosEmpresa .cif {
  width: 48.3333333333%;
}
.b6__container-form form .form__empresa {
  width: 90vw;
}
.b6__container-form form .form__comentarios {
  width: 90vw;
  resize: none;
  background-color: #1a1a1a;
}
.b6__container-form form .form__finFormulario {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b6__container-form form .form__finFormulario--enviar {
  width: 50vw;
  color: #000;
  background-color: #3175FE;
  border: none;
  padding: 0.8rem !important;
  border: 3px solid #3175FE;
}
.b6__container-form form .form__finFormulario--enviar:hover {
  color: #3175FE;
  background-color: #000;
}
@media (min-width: 1024px) {
  .b6__titulo {
    width: 60vw;
    padding: 2rem 0 5rem;
  }
  .b6__titulo--titulo {
    width: auto;
    margin-right: 1rem;
  }
  .b6__titulo--titulo h2 {
    font-size: 3rem;
  }
  .b6__container-form {
    width: 60vw;
    margin: auto;
  }
  .b6__container-form form {
    width: 60vw;
  }
  .b6__container-form form div {
    width: 60vw;
  }
  .b6__container-form form .form__nombre {
    width: 60vw;
  }
  .b6__container-form form .form__comunicacion {
    width: 60vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .b6__container-form form .form__comunicacion--email {
    width: 60vw;
    margin-bottom: 0;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono {
    width: 60vw;
    margin-left: auto;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono .prefijo {
    width: 44.1666666667%;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono .telefono {
    width: 50.8333333333%;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa {
    width: 60vw;
    margin-left: auto;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa .clinica {
    width: 44.1666666667%;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa .cif {
    width: 50.8333333333%;
  }
  .b6__container-form form .form__empresa {
    width: 60vw;
  }
  .b6__container-form form .form__comentarios {
    width: 60vw;
  }
  .b6__container-form form .form__finFormulario {
    width: 60vw;
    margin: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .b6__container-form form .form__finFormulario--enviar {
    width: 20vw;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .b6__titulo--titulo {
    width: 45vw;
  }
  .b6__titulo--titulo h2 {
    font-size: 2rem !important;
  }
  .b6__container-form form .form__finFormulario {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 90vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.5rem 0;
  }
  .b6__container-form form .form__finFormulario--enviar {
    margin-left: auto;
    width: 30vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .b6__titulo--titulo {
    width: 33vw;
  }
  .b6__titulo--titulo h2 {
    font-size: 2rem !important;
  }
  .b6__container-form form {
    font-size: 1.4rem;
  }
  .b6__container-form form div {
    width: 60vw;
  }
  .b6__container-form form .form__comunicacion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .b6__container-form form .form__comunicacion--email {
    width: 60vw;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono {
    width: 60vw;
    padding: 1rem 0 0;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono .prefijo {
    width: 27vw;
  }
  .b6__container-form form .form__comunicacion--conjuntoTelefono .telefono {
    width: 27vw;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa {
    width: 60vw;
    padding: 1rem 0 0;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa .clinica {
    width: 27vw;
  }
  .b6__container-form form .form__comunicacion--datosEmpresa .cif {
    width: 27vw;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .b6__titulo {
    width: 66vw;
  }
  .b6__titulo--titulo {
    width: auto;
  }
  .b6__titulo--titulo h2 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .b6__titulo--titulo h2 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1366px) and (max-width: 1441px) {
  .b6__titulo--titulo h2 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1442px) {
  .b6__titulo--titulo h2 {
    font-size: 5rem !important;
  }
}

.checkboxes-contaienr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 858px) {
  .checkboxes-contaienr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.checkboxes-contaienr .checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.checkboxes-contaienr .checkboxes .checkbox {
  width: 50%;
}
.checkboxes-contaienr .checkboxes .checkbox input {
  cursor: pointer;
}
.checkboxes-contaienr .checkboxes .checkbox label {
  font-family: "Campton-light";
}

/**FIN BLOQUE SEIS**/
.div_principal_preguntas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000;
  padding: 5vw 20vw;
}
@media (max-width: 767px) {
  .div_principal_preguntas {
    padding: 10vw;
  }
}

.principal_desple_preguntas {
  width: 100%;
}

.div_desplegable_preguntas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.6vw 0 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5vw;
  background: #303030;
  border-bottom: 1px solid black;
  cursor: pointer;
}
@media (max-width: 767px) {
  .div_desplegable_preguntas {
    padding: 2vw;
  }
}

.titulo_preguntas {
  font-size: 3.8vw;
  font-family: "Campton-SemiBold";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .titulo_preguntas {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .titulo_preguntas {
    font-size: 2rem !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .titulo_preguntas {
    font-size: 2rem !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait) {
  .titulo_preguntas {
    font-size: 4rem !important;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .titulo_preguntas {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 5rem !important;
  }
}
@media (min-width: 1366px) and (max-width: 1441px) {
  .titulo_preguntas {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 5rem !important;
  }
}
@media (min-width: 1442px) {
  .titulo_preguntas {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 5rem !important;
  }
}
.titulo_preguntas svg {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .titulo_preguntas svg {
    margin-left: 0;
    margin-right: 15rem;
  }
}

.titulo_desplegable_preguntas {
  margin: 0;
  width: calc(100% - 25px);
}

.preguntas_img_mas {
  width: 25px;
  height: 25px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.cerrar_pregunta {
  -webkit-transform: rotate(220deg);
          transform: rotate(220deg);
}

.texto_desple_preguntas {
  background: #303030;
  padding: 15px;
  display: none;
}

.texto_desple_preguntas a {
  color: var(--verde);
}

.flotante {
  position: fixed;
  bottom: 0;
  background-color: rgba(49, 117, 254, 0.6784313725);
  color: #fff;
  text-align: center;
  width: 100vw;
  padding: 1vw;
  font-family: Campton-Bold;
  font-size: 1.3vw;
  cursor: pointer;
  z-index: 100;
}
.flotante p {
  margin: 0;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .flotante {
    font-size: 3.5vw;
    padding: 4vw;
  }
}

/* FOOTER */
.fondoGrisFooter {
  background-color: hsl(0deg, 0%, 10%);
  padding-bottom: 5rem;
}

#site-footer {
  display: none;
}

.footerConsulting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 25px 15px 55px 30px;
  background-color: hsl(0deg, 0%, 10%);
  color: #fff;
  position: relative;
  height: 25%;
}

.informacionConsulting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
  padding-left: 10vw;
}

.logoAEConsulting {
  position: absolute;
  bottom: 55px;
  right: 10vw;
  width: 150px;
}

.finalConsulting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: "";
          flex-direction: "";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.finalConsulting .redesConsulting {
  position: absolute;
  bottom: 55px;
  left: 48%;
  right: 0;
  margin: auto;
}

.finalConsulting .redesConsulting img {
  width: 30px;
  height: 30px;
}

.redesConsulting a {
  margin-right: 20px;
}

.informacionConsulting .logoConsulting {
  width: 55%;
  padding: 10px 0;
  border-bottom: 3px solid white;
}

.informacionConsulting .logoConsulting img {
  width: 60px;
}

.informacionConsulting .contactoConsulting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15px;
}

.contactoConsulting span a {
  color: #fff;
}
.contactoConsulting span a:hover {
  color: #3175FE;
}

/* FIN FOOTER */
/*Footer*/
@media (max-width: 767px) {
  .footerConsulting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .logoAEConsulting {
    position: static;
    bottom: unset;
    right: unset;
  }

  .informacionConsulting {
    width: 100%;
    padding-left: 5vw;
  }

  .finalConsulting {
    padding-left: 5vw;
  }

  .finalConsulting .redesConsulting {
    position: static;
    bottom: unset;
    left: unset;
    right: unset;
    margin: auto 0 auto 0;
  }

  .redesConsulting {
    position: static;
    right: unset;
    left: unset;
    bottom: unset;
  }

  .redesConsulting a {
    margin-right: 10px;
  }

  /* Fin del footer */
}