@font-face {
  font-family: Helveticaneue;
  src: url('../fonts/HelveticaNeue.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hn 11";
  src: url('../fonts/HN-Medium-11.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --azul: #081b4c;
  --gris: #9f9f9f;
  --transparent: #fff0;
}

body {
  color: #333;
  font-family: Helveticaneue, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.body-home {
  background-color: #cc9b9b;
  background-image: url('../images/home.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  height: 20000px;
}

.section-header {
  z-index: 4;
  padding-top: 3.3rem;
  padding-left: 4.4rem;
  padding-right: 4.4rem;
  position: fixed;
  inset: 0% 0% auto;
}

.container-header {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.link-logo-header {
  position: relative;
}

.logo-icon {
  opacity: 1;
  width: 6rem;
  transition: all .2s;
}

.logo-icon.scrolled {
  opacity: 0;
}

.menu-right-cont {
  justify-content: space-between;
  align-items: flex-start;
  width: 49.9%;
  display: flex;
  position: relative;
}

.lista-de-links {
  z-index: 5;
  width: 20%;
  margin-top: -.8rem;
  transition: all .2s;
  position: relative;
  right: -30vw;
}

.lista-de-links.open {
  right: 0;
}

.link-header {
  border-bottom: .15rem solid var(--white);
  color: var(--white);
  text-align: right;
  padding-top: .95rem;
  padding-bottom: .95rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.link-header:hover {
  padding-right: 1rem;
}

.link-header.scrolled {
  border-bottom-color: var(--azul);
  color: var(--azul);
}

.btn-menu {
  border: .15rem solid var(--white);
  color: var(--white);
  text-align: center;
  border-radius: 4rem;
  width: 24.1rem;
  padding: 1.4rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.btn-menu:hover {
  background-color: var(--white);
  color: var(--azul);
}

.btn-menu.scrolled {
  border-color: var(--azul);
  color: var(--azul);
}

.btn-menu.scrolled:hover {
  background-color: var(--azul);
  color: var(--white);
}

.btns-menu {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
}

.btns-menu.resp {
  display: none;
}

.section-hero-home {
  justify-content: center;
  align-items: center;
  height: 92.8rem;
  padding-left: 4.4rem;
  padding-right: 4.4rem;
  display: flex;
  position: relative;
}

.container-hero {
  z-index: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  position: relative;
}

.logo-header {
  width: 21.1rem;
}

.content-hero {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.titulo-header {
  color: var(--white);
  width: 20.2rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1em;
}

.p-hero {
  color: var(--white);
  width: 38.9rem;
  margin-bottom: 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2em;
}

.small-copy-hero {
  z-index: 1;
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1em;
  position: absolute;
  bottom: 3.9rem;
  left: 4.4rem;
}

.arrow-bottom {
  z-index: 1;
  text-align: center;
  height: 0;
  position: absolute;
  inset: auto 0% 5.4rem;
}

.icono-flecha {
  width: 8.3rem;
}

.redes-hero {
  z-index: 1;
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  display: flex;
  position: absolute;
  bottom: 3.2rem;
  right: 4.4rem;
}

.icono-red {
  width: 3.8rem;
}

.fondo-interactivo {
  z-index: 0;
  background-color: var(--gris);
  position: absolute;
  inset: 0% 0% -1px;
}

.fondo-interactivo.sin-fondo {
  background-color: var(--transparent);
}

.logo-icon-azul {
  opacity: 0;
  width: 6rem;
  transition: all .2s;
  position: absolute;
  inset: 0% auto auto 0%;
}

.logo-icon-azul.scrolled {
  opacity: 1;
}

.m-logo-azul {
  opacity: 0;
  pointer-events: none;
  color: var(--azul);
  justify-content: flex-end;
  align-items: center;
  width: 33rem;
  margin-bottom: 0;
  padding-bottom: .6rem;
  font-size: 1.8rem;
  line-height: 1em;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.m-logo-azul.scrolled {
  opacity: 1;
}

.section-nosotros {
  padding: 23.2rem 4.4rem 3.7rem;
}

.fila-titulo-nosotros {
  margin-bottom: 4rem;
}

.titulo-nosotros {
  color: var(--azul);
  width: 32rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 37rem;
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 1.05em;
}

.sub-titulo-nosotros {
  color: var(--azul);
  margin-top: 0;
  margin-bottom: 2.7rem;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1em;
}

.linea-titulo-degradado {
  background-image: linear-gradient(90deg, var(--azul), white);
  height: .15rem;
}

.linea-titulo-degradado.reverse {
  background-image: linear-gradient(270deg, var(--azul), white);
}

.linea-titulo-degradado.form {
  background-image: linear-gradient(270deg, var(--azul), white);
  margin-top: 2.5rem;
}

.linea-titulo-degradado.reverse-form {
  background-image: linear-gradient(90deg, var(--azul), white);
  margin-top: 2.5rem;
}

.linea-titulo-degradado.footer {
  background-image: linear-gradient(270deg, var(--azul), white);
  width: 100%;
  margin-top: 1.2rem;
}

.fila-foto-nosotros {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4.3rem;
  display: flex;
  position: relative;
}

.imagen-nosotros {
  aspect-ratio: 16 / 9.22;
  object-fit: cover;
  border-radius: 3.3rem;
  width: 75rem;
  height: auto;
}

.col-info-nosotros {
  width: 78rem;
  padding-top: .7rem;
}

.p-nosotros-principal {
  color: var(--gris);
  width: 36.4rem;
  margin-bottom: 0;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.34em;
}

.p-secundario-nosotros {
  color: var(--azul);
  width: 37.9rem;
  margin-bottom: 0;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.4em;
  position: absolute;
  inset: auto 0% 0% auto;
}

.section-reclutamiento {
  padding: 16.5rem 4.4rem 1.5rem;
}

.fila-a-reclutamiento {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  display: flex;
}

.fila-a-reclutamiento.invert {
  flex-flow: row-reverse;
}

.col-content-reclutamiento {
  width: 79rem;
  padding-top: .9rem;
}

.col-content-reclutamiento.invert {
  width: 72.2rem;
}

.titulo-reclutamiento {
  color: var(--azul);
  width: 32rem;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

.p-reclutamiento {
  color: var(--gris);
  column-count: 2;
  margin-top: 2.8rem;
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1.35em;
}

.azul {
  color: var(--azul);
}

.imagen-reclutamiento {
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  border-radius: 3.3rem;
  width: 72.3rem;
  height: auto;
}

.imagen-reclutamiento.invert {
  aspect-ratio: 16 / 7;
  width: 80.8rem;
}

.row-reclutamiento.invert {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.titulo-dos-reclutamiento {
  color: var(--azul);
  width: 48.5%;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.05em;
}

.section-por-que {
  padding: 29.9rem 4.4rem 3.3rem;
}

.fila-ofrecemos {
  margin-bottom: 2rem;
}

.titulo-ofrecemos {
  color: var(--azul);
  width: 32rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 27.6rem;
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 1.05em;
}

.logo-nlace-degradado {
  width: 22.9rem;
  margin-bottom: 2.9rem;
}

.fila-por-que-nosotrs {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.img-side-por-que {
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  border-radius: 3.3rem;
  width: 78.4rem;
  height: auto;
}

.col-por-que-nosotrs {
  width: 72.4rem;
  margin-bottom: 3.1rem;
}

.titulo-por-que-nosotros {
  color: var(--azul);
  width: 36.6rem;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

.section-metodolog-a {
  padding: 26.7rem 4.4rem 3.6rem;
}

.titulo-metodologia {
  color: var(--azul);
  width: 36.6rem;
  margin-top: 0;
  margin-bottom: 2.1rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

.fila-metodolog-a {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 3rem;
  display: flex;
}

.col-a-atracci-n {
  flex-flow: column;
  width: 53.8rem;
  display: flex;
  position: relative;
}

.ai-logo {
  width: 24.3rem;
  position: absolute;
  top: 0;
  left: 0;
}

.grafico {
  width: 100%;
  margin-top: 1rem;
}

.col-metodolog-a {
  justify-content: space-between;
  align-items: stretch;
  width: 99.7rem;
  display: flex;
  position: relative;
}

.p-metodologia {
  color: var(--gris);
  width: 63.9rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1.35em;
  position: absolute;
  top: 0;
  left: 0;
}

.col-metodologia {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 32%;
  display: flex;
}

.col-metodologia.dos {
  justify-content: center;
  align-items: flex-start;
}

.col-metodologia.tres {
  justify-content: flex-start;
  align-items: flex-start;
}

.icono-metodologia {
  width: 3.1rem;
  margin-bottom: 1rem;
}

.p-col-metodologia {
  color: var(--azul);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9rem;
  line-height: 1.35em;
}

.section-comentarios {
  padding: 21.4rem 4.4rem 4.9rem;
}

.container-contacto {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.col-a-contacto {
  width: 46%;
}

.titulo-contacto {
  color: var(--azul);
  width: 45.7rem;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

.form-contact {
  margin-top: 3.1rem;
  margin-bottom: 0;
}

.label {
  color: var(--azul);
  margin-bottom: .9rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
}

.input {
  background-color: var(--transparent);
  border: 1px #000;
  height: 3rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
}

.col-form {
  width: 33.33%;
}

.fila-form {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  display: flex;
}

.fila-como-deseas {
  justify-content: space-between;
  align-items: center;
  margin-top: 2.9rem;
  display: flex;
}

.label-como-deseas {
  color: var(--azul);
  margin-bottom: .9rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
}

.label-como-deseas.side {
  margin-bottom: 0;
}

.opciones-como-deseas {
  justify-content: space-between;
  align-items: center;
  width: 66.66%;
  display: flex;
}

.opcion {
  color: var(--gris);
  cursor: pointer;
  width: 100%;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
}

.opcion.on {
  color: var(--azul);
}

.textarea {
  background-color: var(--transparent);
  border: 1px #000;
  min-height: 12.8rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.9rem;
  line-height: 1.35em;
}

.fila-enviar {
  justify-content: space-between;
  align-items: center;
  margin-top: 8.7rem;
  display: flex;
}

.fila-enviar.right {
  justify-content: flex-end;
}

.ai-forma {
  width: 17.3rem;
}

.btn-enviar {
  border: .15rem solid var(--azul);
  color: var(--azul);
  text-align: center;
  border-radius: 4rem;
  width: 24.1rem;
  padding: 1rem 2.5rem;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.btn-enviar:hover {
  background-color: var(--azul);
  color: var(--white);
}

.btn-enviar.scrolled {
  border-color: var(--azul);
  color: var(--azul);
}

.btn-enviar.scrolled:hover {
  background-color: var(--azul);
  color: var(--white);
}

.col-b-contacto {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 49.6%;
  display: flex;
}

.section-footer {
  padding: 43.2rem 4.4rem 4.5rem;
}

.link-footer {
  color: var(--azul);
  flex: none;
  margin-right: 3.6rem;
  text-decoration: none;
}

.logo-footer {
  width: 26rem;
}

.fila-top-footer {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.bottom-footer {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 4.3rem;
  display: flex;
}

.img-footer {
  aspect-ratio: 16 / 8.23;
  object-fit: cover;
  border-radius: 3.3rem;
  width: 45%;
  height: auto;
}

.col-b-footer {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 49.6%;
  display: flex;
}

.titulo-footer {
  color: var(--azul);
  width: 30.2rem;
  margin-top: -.5rem;
  margin-bottom: 2.4rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

.fila-content-top-footer {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.col-info-footer {
  width: 32%;
  padding-top: 1rem;
}

.fila-creditos {
  margin-bottom: .9rem;
  display: flex;
}

.p-creditos-footer {
  color: var(--gris);
  width: 28%;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1em;
}

.p-creditos-footer.grande {
  width: 72%;
}

.link-footer-creditos {
  color: var(--gris);
  text-decoration: none;
}

.footer-datos-bottom {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-dato {
  color: var(--azul);
  width: 26.5%;
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.15em;
}

.footer-dato.dos {
  width: 20.5%;
}

.footer-dato.tres {
  width: 32.5%;
}

.btn-click {
  z-index: 5;
  border-top: .15rem solid var(--white);
  border-bottom: .15rem solid var(--white);
  justify-content: center;
  align-items: center;
  width: 15.8rem;
  height: 4.8rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.btn-click.open {
  opacity: 0;
  pointer-events: none;
}

.btn-click.scrolled {
  border-top-color: var(--azul);
  border-bottom-color: var(--azul);
}

.linea-medio {
  border-bottom: .15rem solid var(--white);
  width: 100%;
  height: 0;
  transition: all .2s;
}

.linea-medio.scrolled {
  border-bottom-color: var(--azul);
}

.cerrar-btn {
  z-index: 4;
  display: none;
  position: fixed;
  inset: 0%;
}

.mensaje {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1em;
}

.titulo-revision {
  color: var(--azul);
  width: 50%;
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.05em;
}

@media screen and (max-width: 991px) {
  .section-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .logo-icon {
    width: 3.3rem;
  }

  .menu-right-cont {
    width: 74%;
  }

  .lista-de-links {
    width: 11rem;
    margin-top: -1rem;
  }

  .link-header {
    font-size: 1rem;
  }

  .btn-menu {
    border-width: 2px;
    width: 12rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .btns-menu {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .section-hero-home {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .logo-header {
    width: 15rem;
  }

  .content-hero {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-between;
    align-items: flex-start;
    width: 60%;
  }

  .titulo-header {
    width: 43%;
    font-size: 1.7rem;
  }

  .p-hero {
    width: 38%;
    font-size: 1rem;
  }

  .small-copy-hero {
    font-size: 1rem;
    left: 3rem;
  }

  .arrow-bottom {
    bottom: 5.3rem;
  }

  .icono-flecha {
    width: 6rem;
  }

  .redes-hero {
    right: 3rem;
  }

  .icono-red {
    width: 2rem;
  }

  .logo-icon-azul {
    width: auto;
  }

  .section-nosotros {
    padding: 10rem 3rem 5rem;
  }

  .titulo-nosotros {
    width: 21rem;
    margin-left: 0;
    font-size: 1.7rem;
  }

  .sub-titulo-nosotros {
    font-size: 3rem;
  }

  .linea-titulo-degradado {
    height: 2px;
  }

  .imagen-nosotros {
    width: 48%;
  }

  .col-info-nosotros {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    padding-top: 0;
    display: flex;
  }

  .p-nosotros-principal {
    width: auto;
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .p-secundario-nosotros {
    width: auto;
    font-size: 1rem;
    position: static;
  }

  .section-reclutamiento {
    padding: 5rem 3rem;
  }

  .fila-a-reclutamiento, .fila-a-reclutamiento.invert {
    flex-flow: column;
  }

  .col-content-reclutamiento {
    width: auto;
    margin-bottom: 2.8rem;
    padding-top: 0;
  }

  .col-content-reclutamiento.invert {
    width: auto;
  }

  .titulo-reclutamiento {
    width: 100%;
    font-size: 3rem;
  }

  .p-reclutamiento {
    font-size: 1rem;
  }

  .imagen-reclutamiento {
    width: 100%;
  }

  .titulo-dos-reclutamiento {
    width: 49%;
    font-size: 1.7rem;
  }

  .section-por-que {
    padding: 5rem 3rem;
  }

  .titulo-ofrecemos {
    width: auto;
    margin-left: 0;
    font-size: 1.7rem;
  }

  .fila-por-que-nosotrs {
    flex-flow: column;
  }

  .img-side-por-que {
    width: 100%;
  }

  .col-por-que-nosotrs {
    width: auto;
    margin-top: 2.4rem;
    margin-bottom: 0;
  }

  .titulo-por-que-nosotros {
    width: auto;
    font-size: 3rem;
  }

  .section-metodolog-a {
    padding: 5rem 3rem;
  }

  .titulo-metodologia {
    width: auto;
    font-size: 3rem;
  }

  .fila-metodolog-a {
    flex-flow: column;
  }

  .col-a-atracci-n {
    width: 100%;
  }

  .grafico {
    margin-top: 0;
  }

  .col-metodolog-a {
    flex-flow: column;
    width: auto;
    display: block;
  }

  .p-metodologia {
    width: auto;
    font-size: 1rem;
    position: static;
  }

  .col-metodologia {
    float: left;
    clear: both;
    width: 58%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: block;
  }

  .col-metodologia.dos {
    float: none;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .col-metodologia.tres {
    float: right;
  }

  .p-col-metodologia {
    font-size: 1.7rem;
  }

  .section-comentarios {
    padding: 5rem 3rem;
  }

  .container-contacto {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
  }

  .col-a-contacto {
    width: 100%;
  }

  .titulo-contacto {
    width: auto;
    font-size: 3rem;
  }

  .label, .input, .label-como-deseas, .label-como-deseas.side, .opcion {
    font-size: 1.7rem;
  }

  .textarea {
    font-size: 1.5rem;
  }

  .fila-enviar, .fila-enviar.right {
    margin-top: 4rem;
  }

  .btn-enviar {
    font-size: 2rem;
  }

  .col-b-contacto {
    width: 100%;
  }

  .section-footer {
    padding: 5rem 3rem;
  }

  .logo-footer {
    width: 17.3rem;
  }

  .bottom-footer {
    flex-flow: column;
  }

  .img-footer {
    width: 100%;
  }

  .col-b-footer {
    width: 100%;
    margin-top: 4rem;
  }

  .titulo-footer {
    width: 49%;
    margin-top: 0;
    font-size: 3rem;
  }

  .col-info-footer {
    padding-top: .8rem;
  }

  .fila-creditos {
    margin-bottom: .3rem;
  }

  .p-creditos-footer, .footer-dato {
    font-size: 1rem;
  }

  .btn-click {
    border-top-width: 2px;
    border-bottom-width: 2px;
    width: 11rem;
    height: 3.3rem;
  }

  .linea-medio {
    border-bottom-width: 2px;
  }

  .titulo-revision {
    width: 50%;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .lista-de-links {
    width: 11rem;
    position: absolute;
  }

  .btn-menu {
    width: auto;
  }

  .btns-menu {
    display: none;
  }

  .btns-menu.resp {
    grid-column-gap: .95rem;
    grid-row-gap: .95rem;
    flex-flow: column;
    margin-top: .95rem;
    display: flex;
  }

  .content-hero {
    flex-flow: column;
    width: 43%;
  }

  .titulo-header {
    width: 100%;
    margin-bottom: 2rem;
  }

  .p-hero {
    width: 100%;
  }

  .section-nosotros {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .sub-titulo-nosotros {
    font-size: 2.5rem;
  }

  .section-reclutamiento {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .titulo-reclutamiento {
    font-size: 2.5rem;
  }

  .section-por-que {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .titulo-por-que-nosotros {
    font-size: 2.5rem;
  }

  .section-metodolog-a {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .titulo-metodologia {
    font-size: 2.5rem;
  }

  .p-col-metodologia {
    font-size: 1.5rem;
  }

  .section-comentarios {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .titulo-contacto {
    font-size: 2.5rem;
  }

  .label, .input, .label-como-deseas {
    font-size: 1.5rem;
  }

  .label-como-deseas.side {
    width: 31%;
    font-size: 1.5rem;
  }

  .opcion {
    font-size: 1.5rem;
  }

  .textarea {
    font-size: 1.4rem;
  }

  .btn-enviar {
    width: 50%;
    padding: .5rem 1rem;
  }

  .section-footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .titulo-footer {
    width: 55%;
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  .fila-content-top-footer {
    margin-bottom: 3rem;
  }

  .titulo-revision {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  .container-header {
    justify-content: space-between;
    align-items: center;
  }

  .menu-right-cont {
    justify-content: flex-end;
    width: auto;
  }

  .lista-de-links {
    width: 14rem;
    right: -62vw;
  }

  .btns-menu.resp {
    margin-top: 2rem;
  }

  .container-hero {
    flex-flow: column;
  }

  .content-hero {
    width: 100%;
    margin-top: 7rem;
  }

  .small-copy-hero {
    bottom: 3.8rem;
  }

  .arrow-bottom {
    text-align: left;
    bottom: 9rem;
    left: 3rem;
    right: 3rem;
  }

  .fila-foto-nosotros {
    flex-flow: column;
  }

  .imagen-nosotros {
    width: 100%;
  }

  .col-info-nosotros {
    width: 100%;
    margin-top: 4rem;
  }

  .p-reclutamiento {
    column-count: 1;
  }

  .row-reclutamiento.invert {
    flex-flow: column;
  }

  .titulo-dos-reclutamiento {
    width: 100%;
  }

  .grafico {
    margin-top: 7rem;
  }

  .col-metodologia {
    width: 82%;
  }

  .p-col-metodologia {
    font-size: 1.2rem;
  }

  .label {
    margin-bottom: 0;
  }

  .col-form {
    width: 100%;
    margin-bottom: 2rem;
  }

  .col-form.last {
    margin-bottom: 0;
  }

  .fila-form {
    flex-flow: column;
    margin-bottom: 0;
  }

  .fila-como-deseas {
    flex-flow: column;
  }

  .label-como-deseas.side {
    width: 100%;
    margin-bottom: 1rem;
  }

  .opciones-como-deseas {
    width: 100%;
  }

  .fila-enviar {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .ai-forma {
    margin-bottom: 3rem;
  }

  .btn-enviar {
    width: 100%;
  }

  .link-footer {
    margin-right: 0;
  }

  .fila-top-footer {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .titulo-footer {
    width: 100%;
  }

  .fila-content-top-footer {
    flex-flow: column;
  }

  .col-info-footer {
    width: 70%;
  }

  .footer-datos-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .footer-dato, .footer-dato.tres {
    width: 100%;
  }

  .btn-click {
    width: 7rem;
    height: 2rem;
    position: static;
  }

  .titulo-revision {
    width: 100%;
  }
}


@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeue.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hn 11';
  src: url('../fonts/HN-Medium-11.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}