* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --amarillo: #cfaa5d;
  --negro: #131312;
  --blanco: #ffff;
}

#body {
  overflow-x: hidden;
  width: 100%;
}

/*------------------HEADER--------------------*/

.logo-img {
  width: 100px;
  height: auto;
  transition: width 0.3s ease, height 0.3s ease; /* Transición en ambas dimensiones */
}

.icon__language {
  width: 18px;
  height: 18px;
}

i {
  width: 15px;
  height: 15px;
  color: var(--amarillo);
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100px;
  background-color: var(--negro);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: height 0.3s ease, padding 0.3s ease;
  padding-left: 50px;
  padding-right: 50px;
  overflow-y: hidden; /* Para evitar que el logo sobresalga */
}

#header.header-small {
  height: 65px;
  padding-left: 35px;
  padding-right: 35px;
  opacity: 0.9;
}

#header.header-small .logo-img {
  width: 75px;
  height: auto;
}

/*-----------------NAVBAR---------------------*/

.navbar-top {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ul-navbar-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  height: 50px;
}

.a-navbar-top {
  color: var(--amarillo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.bars__menu {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translate(-50%, -50%) scale(1);
  cursor: pointer;
}

.bars__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--amarillo);
  margin-top: 6px;
  transform-origin: 0px 100%;
  transition: all 600ms;
}

.activeline1__bars__menu {
  transform: rotate(45deg) translate(-2px, 1px);
}

.activeline2__bars__menu {
  opacity: 0;
  margin-left: -30px;
}

.activeline3__bars__menu {
  transform: rotate(-45deg) translate(-4px, 2px);
}

/*------------------MAIN----------------------------*/

#main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
}

/*---------------SECTION VIDEO-----------------------*/

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;

  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 20%;
  left: -1%;
  width: 100%;
  height: 100%;
  display: flex;
  color: white;
}

.overlay__en {
  position: absolute;
  top: 15%;
  left: 4%;
  width: 100%;
  height: 100%;
  display: flex;
  color: white;
}

.jm-blanco {
  position: relative;
  top: 13%;
}

.logo img {
  position: relative;
  top: 7%;
  left: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 100px;
  animation: zoomIn 1.5s ease-out forwards;
}

.text {
  font-size: 2em;
  display: flex;
  height: 70px;
  align-items: center;
  position: absolute;
  z-index: 5;
  margin-left: 80px;
}

.line {
  position: absolute;
  top: 175%;
  width: 1300px;
  height: 1px;
  background-color: white;
}

.line-bottom {
  position: absolute;
  top: 95%;
  left: 6%;
  width: 1300px;
  height: 1px;
  background-color: white;
}

.hache-uno {
  position: relative;
  top: 10%;
  color: white;
  width: 70%;
  text-align: center;
  letter-spacing: 2px;
  font-size: 2rem;
  font-family: "Gfs Didot", sans-serif;
  font-weight: 400;
}

.hache-uno-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  top: 15%;
  left: 6%;
  height: 300px;
  gap: 50px;
  animation: zoomIn 1.5s ease-out forwards;
  opacity: 0;
}

.hache__uno__container__en {
  left: 11%;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.button-hero {
  position: relative;
  top: 20%;
  right: 3%;
  border-radius: 5px;
  padding: 10px;
  width: 200px;
  text-align: center;
  background-color: beige;
  color: rgb(69, 44, 44);
}

.button-hero:hover {
  background: var(--amarillo);
  color: white;
  transform: scale(1.05);
}

.button__es {
  right: 0%;
}

.container-welcome {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 10%;
  gap: 75px;
}

.p-welcome {
  position: relative;
  left: 30%;
  top: 40%;
  font-size: 1.5rem;
  font-family: "Gothic A1", sans-serif;
}

.jm {
  position: relative;
  top: 30%;
  font-size: 5.5rem;
  font-family: "Cinzel", sans-serif;
  font-weight: 400;
}

/*------------- SECTION NOSOTROS-----------------*/

#nosotros {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hache-dos-pag {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  background-color: var(--negro);
  color: var(--amarillo);
  font-family: "Playfair Display SC", sans-serif;
  font-size: 1.4rem;
}

.img-hero {
  position: relative;
  width: 100vw;
  height: 97vh;
  background: url("../img/img_nosotros_grande_finall.webp") no-repeat center
    center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  position: relative;
  top: -5%;
  padding: 0 50px;
  width: 100vw;
}

.text-nosotros-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 70%;
}

.text-nosotros {
  font-size: 1.5rem;
  color: var(--negro);
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 1000;
  word-spacing: normal;
  width: 100%;
  text-align: left;
}

.especial-nosotros {
  display: flex;
  gap: 6px;
}

/*----------------SECTION SERVICIOS-----------------*/

#servicios {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--negro);
}

.servicio-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 3rem 0;
}

.container-servicios {
  display: flex;
  flex-direction: column;
}

.container-first-row {
  display: flex;
  width: 1300px;
  gap: 50px;
}

.container-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  width: 100%;
}

.column-left,
.column-right {
  width: 50%;
  display: flex;
}

.p-s,
.h-t-s,
.p-c-s,
.a-c-s {
  color: var(--amarillo);
  text-align: center;
}

.info-box {
  display: none;
  padding: 15px;
  background-color: var(--amarillo);
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
}

.info-button {
  width: 35%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  background-color: white;
  color: var(--amarillo);
  margin-left: 10px;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-button:hover {
  transform: scale(1.05);
  background-color: var(--amarillo);
  color: black;
  z-index: 3;
}

.hache-tres-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: var(--amarillo);
}

.img-servicios {
  width: 175px;
  max-height: 200px;
  object-fit: cover;
}

.h-t-text {
  text-align: center;
}

.modal-text {
  text-indent: -0.5rem;
  line-height: 1.5rem;
  text-align: left; /* Cambia justify por left o center */
  letter-spacing: normal; /* Asegúrate de no tener un valor anómalo */
  word-spacing: normal; /* Asegúrate de no tener un valor anómalo */
}

.modal__text__en {
  position: relative;
  right: 1.5%;
}

.modal-overlay {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgb(255, 255, 255);
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.punto {
  font-size: 2rem;
}

.barrita {
  font-size: 1.2rem;
  font-family: sans-serif;
}

/*----------------------MISION Y VISION---------------------------------*/

#myv {
  position: relative;
  width: 100%;
  height: 150vh;
  overflow: hidden;
}

.backgroundmyv-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 175px;
}

.backgroundmyv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 750px;
  background-image: url("../img/mvv-es.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.backgroundmyv__en {
  position: absolute; /* Fija el contenedor a la pantalla */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra el contenedor */
  width: 1000px;
  height: 750px; /* Puedes ajustar este tamaño según lo que necesites */
  background-image: url("../img/pool__en.webp"); /* Cambia por la URL de tu imagen */
  background-size: cover; /* Escala para llenar todo el contenedor */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que se repita */
}

.backgroundmyv-text {
  font-size: 1.5rem;
  color: var(--negro);
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 1000;
  text-align: justify;
}

/* Estilos para la misión y visión */
.container-nosotros {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.content-nosotros {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
  padding: 15px;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.content-nosotros h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.content-nosotros p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/*----------------------------CONTACTO----------------------------------*/

.container-info {
  display: flex;
  gap: 50px;
  padding-top: 35px;
  width: 100vw;
}

.container-info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.container-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  left: 15%;
  transform: translateY(30%);
  width: 40%;
  height: 30vh;
}

.container-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.a-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #131312;
  gap: 10px;
  padding: 0.5rem;
}

.icon-img {
  width: 20px;
  height: auto;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 60%;
  position: relative;
  right: 10%;
}

.fcontainer {
  padding-bottom: 35px;
}

.form-container {
  display: flex;
  gap: 15px;
}

.input-form {
  width: 150px;
}

.textArea {
  width: 315px;
  min-height: 200px;
}

.btn {
  display: inline-block;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--negro);
  color: var(--amarillo);
  border: 3px solid var(--amarillo);
  cursor: pointer;
  transition: transform 0.5s ease;
}

.btn:hover {
  background: var(--amarillo);
  color: white;
  transform: scale(1.05);
  border: 3px solid var(--negro);
}

/*-----------Icono de WSP--------------------------*/

#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 100%;
  height: 100%;
}

/*---------------------------------FOOTER---------------------------------------------*/

.footer {
  background-color: var(--negro);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  padding-left: 35px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 165px;
}

.logo-footer {
  width: 75px;
}

.footer-a {
  color: var(--amarillo);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.icon-footer {
  width: 20px;
  height: auto;
}

.p-footer {
  width: 100%;
  text-align: center;
  color: var(--amarillo);
}

/*------------------------------FUENTES DE LA PÁGINA-----------------------------------*/

.cormorant {
  font-family: "Cormorant Garamond", sans-serif;
}

.a-navbar-top {
  font-family: "Playfair Display SC", sans-serif;
}

.playfair {
  font-family: "Playfair Display SC", sans-serif;
  font-size: 1.3rem;
}

.playfair-in {
  font-family: "Playfair Display SC", sans-serif;
  font-size: 1.2rem;
}

.servicios-cormorant {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 1.3rem;
}

.servicios-cormorant-in {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 1.1rem;
}

.footer-a:hover .icon-footer,
.footer-a:hover {
  filter: brightness(0) saturate(100%) invert(92%) sepia(100%) saturate(1%)
    hue-rotate(311deg) brightness(109%) contrast(101%);
  transform: scale(1.1);
}

/*------------------------MEDIA-QUERIES------------------------------*/

@media (max-width: 1450px) {
  .line,
  .line-bottom {
    width: 1250px;
  }

  .logo img {
    top: 6%;
    left: 37%;
  }

  .overlay {
    left: -5%;
  }
}

@media (max-width: 1400px) {
  .line,
  .line-bottom {
    width: 1200px;
  }
}

@media (max-width: 1350px) {
  .line,
  .line-bottom {
    width: 1150px;
  }

  .overlay {
    left: -7%;
  }

  .container-icon {
    padding-right: 150px;
  }

  .p-s {
    width: 75%;
  }
}

@media (max-width: 1300px) {
  .line,
  .line-bottom {
    width: 1100px;
  }

  .overlay {
    left: -10%;
  }

  .logo img {
    left: 45%;
  }
}

@media (max-width: 1250px) {
  .line,
  .line-bottom {
    width: 1050px;
  }

  .jm {
    font-size: 4.9rem;
  }

  .p-welcome {
    font-size: 1.3rem;
  }

  .hache-uno {
    font-size: 2rem;
  }

  .overlay {
    top: 20%;
    left: -8%;
  }

  .logo img {
    left: 38%;
  }

  .text-nosotros-container {
    width: 85%;
  }
}

@media (max-width: 1200px) {
  .line,
  .line-bottom {
    width: 1000px;
  }

  .logo-container {
    gap: 95px;
  }

  .logo img {
    max-width: 380px;
  }

  .overlay {
    left: -10%;
  }
}

@media (max-width: 1150px) {
  .line,
  .line-bottom {
    width: 950px;
  }

  .logo img {
    display: none;
  }

  .line-bottom {
    left: 8%;
  }

  .overlay {
    left: 21%;
  }

  .img-hero {
    height: 95vh;
    background: url("../img/fnd_med.webp") no-repeat center/cover;
  }
}

@media (max-width: 1100px) {
  .line,
  .line-bottom {
    width: 900px;
  }
}

@media (max-width: 1280px) {
  .servicio-text-container {
    padding: 0.5rem 0 2rem 0;
  }

  .container-first-row {
    flex-wrap: wrap;
    margin: 1.5rem 0;
    max-width: 1024px;
  }

  .column-right {
    margin-left: 450px;
  }

  .container-content-text {
    gap: 30px;
  }

  .column-left,
  .column-right {
    width: 60%;
  }

  .backgroundmyv,
  .backgroundmyv__en {
    width: 900px;
    height: 650px;
  }

  .backgroundmyv-text {
    width: 85%;
  }

  #myv {
    height: 130vh;
  }
}

@media (max-width: 1050px) {
  .line,
  .line-bottom {
    width: 850px;
  }

  .container-first-row {
    justify-content: center;
    align-items: center;
    padding-right: 175px;
  }

  .column-right {
    margin-left: 0px;
  }

  .overlay {
    left: 18%;
  }

  .logo-container {
    gap: 50px;
  }

  .container-first-row,
  .container-servicios {
    width: 950px;
  }
}

@media (max-width: 1024px) {
  .column-left,
  .column-right {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .line,
  .line-bottom {
    width: 800px;
  }

  .bars__menu {
    display: block;
    cursor: pointer;
    z-index: 11; /* Para asegurarse de que el botón esté siempre encima */
  }

  #header {
    padding-left: 0px;
  }

  /* Ocultar el menú por defecto */
  .navbar-top {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--negro);
    flex-direction: column;
    align-items: center;
    z-index: 10;
    overflow-y: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Mostrar el menú cuando se active */
  .navbar-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .ul-navbar-top {
    display: flex;
    flex-direction: column;
  }

  .li-navbar-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .a-navbar-top {
    display: flex;
    gap: 15px;
    padding: 1rem 2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }

  .no-scroll {
    position: absolute;
    overflow: hidden;
  }
}

@media (max-width: 960px) {
  .line,
  .line-bottom {
    width: 770px;
  }

  .backgroundmyv,
  .backgroundmyv__en {
    width: 768px;
  }
}

@media (max-width: 950px) {
  .container-first-row,
  .container-servicios {
    width: 850px;
  }
}

@media (max-width: 900px) {
  .line,
  .line-bottom {
    width: 730px;
  }

  .img-hero {
    height: 105vh;
    background: url("../img/fnd__nosotros__med.webp") no-repeat center/cover;
  }

  .column-left,
  .column-right {
    width: 95%;
  }
}

@media (max-width: 860px) {
  .line,
  .line-bottom {
    width: 700px;
  }
  .overlay {
    left: 13%;
  }

  .logo-container {
    flex-direction: column;
  }

  .footer {
    gap: 35px;
    padding-left: 0px;
  }

  .img-hero {
    height: 115vh;
    background: url("../img/fnd__med__masChica.webp") no-repeat center/cover;
  }
}

@media (max-width: 800px) {
  .line,
  .line-bottom {
    width: 650px;
  }

  .img-hero {
    height: 115vh;
  }

  .img-servicios {
    display: none;
  }

  .container-first-row,
  .container-servicios {
    padding-right: 0px;
    width: 600px;
  }
}

@media (max-width: 768px) {
  .line,
  .line-bottom {
    width: 600px;
  }
  .overlay {
    left: 9%;
  }

  .container-info {
    position: relative;
    flex-direction: column;
    padding-top: 0px;
  }

  .form {
    left: 21%;
    transform: translateY(5%);
  }

  .container-info-container {
    left: 43%;
    transform: translateY(35%);
    height: 15vh;
  }

  .backgroundmyv,
  .backgroundmyv__en {
    width: 680px;
  }

  .img-hero {
    height: 123vh;
  }
}

@media (max-width: 700px) {
  .line,
  .line-bottom {
    width: 550px;
  }

  .overlay {
    left: 4%;
  }

  .line-bottom {
    left: 10%;
  }

  .img-hero {
    height: 100vh;
    background: url("../img/img_nosotros_chica_fondo.webp") no-repeat
      center/cover;
  }

  .container-icon {
    padding-right: 0px;
  }

  .container-info-container {
    left: 33%;
  }

  .text-nosotros-container {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .line,
  .line-bottom {
    width: 530px;
  }
  .backgroundmyv,
  .backgroundmyv__en {
    width: 550px;
  }

  .overlay {
    left: 3%;
  }
}

@media (max-width: 650px) {
  .img-hero {
    height: 105vh;
  }
}

@media (max-width: 640px) {
  .line,
  .line-bottom {
    display: none;
  }
}

@media (max-width: 600px) {
  .line,
  .line-bottom {
    width: 450px;
  }

  .overlay {
    left: -4%;
  }

  .img-hero {
    height: 85vh;
  }

  .info-box {
    background-color: white;
  }

  .modal-overlay {
    display: none;
  }

  .container-first-row,
  .container-servicios {
    width: 500px;
  }

  .text-nosotros {
    font-size: 1.2rem;
  }

  #myv {
    height: 140vh;
  }
}

@media (max-width: 550px) {
  .backgroundmyv,
  .backgroundmyv__en {
    width: 450px;
  }

  .img-hero {
    height: 87vh;
  }

  .p-welcome {
    font-size: 1.1rem;
  }

  .jm {
    font-size: 3.5rem;
  }

  .hache-uno {
    font-size: 1.4rem;
  }

  .hache-uno-container {
    left: 25%;
  }
}

@media (max-width: 500px) {
  .img-hero {
    height: 93vh;
  }

  .backgroundmyv-container {
    height: 250px;
  }

  .container-first-row,
  .container-servicios {
    width: 400px;
  }

  .hache__uno__container__en {
    left: 22%;
  }

  .es {
    left: 12%;
  }

  .espacio__nosotros {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .img-hero {
    height: 100vh;
  }

  .p-welcome {
    left: 32%;
  }

  .hache__uno__container__en {
    left: 20%;
  }

  .es {
    left: 10.5%;
  }
}

@media (max-width: 450px) {
  .backgroundmyv,
  .backgroundmyv__en {
    height: 60vh;
  }

  #myv {
    height: 125vh;
  }

  .es {
    left: 7%;
  }
}

@media (max-width: 434px) {
  .img-hero {
    height: 115vh;
  }
  .hache__uno__container__en {
    left: 18%;
  }
}

@media (max-width: 430px) {
  .h-t-s {
    width: 400px;
  }

  .es {
    left: 5%;
  }
}

@media (max-width: 400px) {
  .line,
  .line-bottom {
    width: 250px;
  }

  .img-hero {
    height: 120vh;
  }

  .container-first-row,
  .container-servicios {
    width: 360px;
  }

  .hache__uno__container__en {
    left: 15%;
  }
  .es {
    left: 4%;
  }
}

@media (max-width: 360px) {
  #header.header-small {
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0.9;
  }

  #header.header-small .logo-img {
    width: 45px;
  }

  .backgroundmyv,
  .backgroundmyv__en {
    height: 65vh;
  }

  .img-hero {
    height: 130vh;
  }

  .hache__uno__container__en {
    left: 10%;
  }
}
