/* PALETA DE COLORES
#171717 --> CASI NEGRO
#444444 --> GRIS MEDIO
#DA0037 --> ROJO BONITO
#EDEDED --> BLANCO GRISACEO
*/

* {
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  min-height: 100vh; 
  min-width: 100vw;
}
main {
  background-position: center;
}

@font-face {
  font-family: 'Opensans';
  font-style: regular;
  font-weight: 100;
  src: url('../fuentes/OpenSans/OpenSans-Regular.ttf');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/*HEADER - barra blanca*/
header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 3;
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 0;
  transition: 0.2s;

}
/*Cuando haces scroll el fondo del header cambia de color:*/

header.abajo {
    background-color: #fff;
    box-shadow: 1px 1px 7px 1px rgba(178, 178, 178, 0.427);
    transition: 0.8s;
    padding: 20px 0.1%;
    height: 50px;
}

/* BANNER */
#banner {
    width: 100%;
    padding: 0 50px;
    background-image: url(../imagenes/Home/img_home.jpg);
    height: 65vh;
    background-size: cover; 
    background-position: center;
}

.contenido-banner {
    text-align: right;
    position: relative;
    bottom: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
    font-weight: 600;
}

.texto-encima-banner1 {
    font-family: 'josefine';
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1em;
    background-color: #17171790;
    color: #fff; 
    width: fit-content;
    padding: 0.5em;
    margin-right: 5%;
    -webkit-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
    opacity: 0.9;
}

/*   TEXTO PRINCIPAL  */
#texto-principal {
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: 1%;
  align-items: center;
  box-sizing: border-box;
}

.contenedor1 {
  display: flex;
  flex-wrap: nowrap;
  width: 70%;
  justify-content: center;
  text-align: center;
  gap: 4em;
  padding: 2em 0 2em 0;
}

.contenedor1a {
  width: 50%;
  max-width: 500px;
  margin-right: 0;
  margin-bottom: 2em;
}

.flecha {
  color: #DA0037
}

.contenedor1b {
  width: 100%;
  max-width: 500px;
  height: fit-content;
  margin-top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contenedor1b::before {
  content: "";
  display: block;
  padding-top: 100%; /* Establece la relación de aspecto */
}

.contenedor1b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 3px dashed #000;
  padding: 1%;
  margin:0;
}

.contenedor-medio {
  width: 100vw;
  box-sizing: border-box;
  padding: 3em 20%;
  background-image: url(../imagenes/bg/AdobeStock_285565957.jpeg);
  height: auto;
  background-size: cover; 
  background-position: center;
  color: white;
  font-family: 'metropolis';
  font-size: 1.5em;
  font-weight: bold;
  line-height : 30px;
  margin-top: 3em;
  margin-bottom: 1em;
}

.wrap {
  color: #fff;
  text-align: center;
  padding: 2rem 3rem;
  border: 1px solid #fff;
  box-shadow: 0 0 25px #222;
  backdrop-filter: blur(3px);
}
.contenedor2 {
  display: flex;
  flex-wrap: nowrap;
  width: 70%;
  justify-content: center;
  text-align: center;
  gap: 4em;
  padding: 2em 0;
}

.contenedor2a, .contenedor2b {
  width: 50%;
  margin-bottom: 2em;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.contenedor2b {
  background-color: transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.contenedor2b:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: relative;
  width: auto;
  height: 100%;
  border-radius: 10px;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the back side */
  .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  width: 100%;
  height: 100%;
  color: white;
  transform: rotateY(180deg);
  font-size: 1vw;
}

.flip-card-back h1 {
  text-align: center;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5vw;
}

.flip-card-back a {
  text-align: center;
  margin: 0;
  padding: 0.5em;
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #DA0037;
  color: white;
  font-family: 'metropolis';
  border-radius: 5px;
  border:none;
  width: 6em;
  font-size: 2.5vw;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 700px){
  .flip-card-back {
    font-size: 2.5vw;
  }
}


.titulo {
  color: #171717;
  text-shadow: 1px 0px 1px #CCCCCC, 0px 1px 1px #EEEEEE, 2px 1px 1px #CCCCCC, 1px 2px 1px #EEEEEE, 3px 2px 1px #CCCCCC, 2px 3px 1px #EEEEEE, 4px 3px 1px #CCCCCC, 3px 4px 1px #EEEEEE, 5px 4px 1px #CCCCCC, 4px 5px 1px #EEEEEE, 6px 5px 1px #CCCCCC, 5px 6px 1px #EEEEEE, 7px 6px 1px #CCCCCC;
  font-family: 'metropolis';
  font-size: 3em;
  margin-bottom: 0.5em;
  text-align: left;
  border-left: 15px solid #DA0037;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.parrafo {
  font-family: 'metropolis';
  font-size: 1.3em;
  font-weight: bold;
  line-height : 30px;
  color: #3D3E3B;
  padding-bottom: 2%;
  text-align: left;

}

.boton {
  width: 50%;
  background-color: #171717;
  padding: 3%;
  border: none;
  border-radius: 5px;
  margin-top: 10%;
  font-size: 1.3em;
}
.boton a {
  color: white;
  font-family: 'metropolis';
  font-size: 1em;
}
.flecha {
  color: #DA0037
}

/* Media queries */
@media screen and (max-width: 899px) {
  #texto-principal {
    gap: 30px;
    
  }
  .contenedor1 {
    flex-direction: column;
    width: 90%;
  }
  .contenedor1a {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }

  .contenedor1b {
    width: 100%;
    border-radius: 50%;
  }
  .contenedor1b img {
    border-radius: 50%;
  }
  .contenedor-medio{
    padding: 3em 10%;
  }
  .wrap{
    padding: 2rem 0;
  }
  .contenedor2 {
    flex-direction: column;
    width: 90%;
  }
  .contenedor2a {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    
  }

  .contenedor2b {
    width: 100%;
    
  }
  .parrafo {
    text-align: justify;
  }
 
}

/* TEXTO SECCIONES */

a .texto-secciones {
  margin-left: 4%;
  padding-bottom: 5%;
  font-family: 'metropolis';
  font-size: 8em;
  margin-bottom: 0.5em;
  text-align: left;
  animation:tracking-in-contract .8s cubic-bezier(.215,.61,.355,1.000) both;
}

@keyframes tracking-in-contract {
  0%{
    letter-spacing:1em;opacity:0
  }
  40%{
    opacity:.6
  }
  100%{
    letter-spacing:normal;opacity:1
  }
}
.texto-locations {
  font-size: 4em;
}


 /* SLIDER */
 #carrusel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #171717;
  width: 100%;
  padding: 5% 0;
  justify-content: center;
}

.titulo-CSSgal {
  color: #fff;
  margin-left: 4%;
  padding-bottom: 2%;
  font-family: 'metropolis';
  font-size: 3em;
  margin-bottom: 0.5em;
  text-align: center;
  animation: tracking-in-contract 0.8s cubic-bezier(.215, .61, .355, 1.000) both;
}

@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

.CSSgal {
  position: relative;
  overflow: hidden;
  height: 70vh;
  margin-bottom: 4em;
  width: 50%;
}

.CSSgal .slider {
  height: 60vh;
  white-space: nowrap;
  font-size: 0;
  transition: 0.8s;
  position: relative;
}

.slider-text {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  font-family: 'metropolis';
  position: absolute;
  bottom: -2em;
  z-index: 1;
}

.CSSgal .slider > * {
  font-size: 1rem;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  height: 80%;
  width: 100%;
  background: none 50% no-repeat;
  background-size: cover;
}

.CSSgal .prevNext {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  height: 0;
}

.CSSgal .prevNext > div + div {
  visibility: hidden;
}

.CSSgal .prevNext a {
  border-radius: 50%;
  background: #fff;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  opacity: 0.7;
  transition: 0.3s;
  transform: translateY(-50%);
  left: 0;
}

.CSSgal .prevNext a:hover {
  opacity: 1;
}

.CSSgal .prevNext a + a {
  left: auto;
  right: 0;
}

.CSSgal .bullets {
  position: absolute;
  z-index: 5;
  bottom: -5px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.CSSgal .bullets > a {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  background: rgba(255, 255, 255, 1);
  transition: 0.3s;
}

.CSSgal .bullets > a + a {
  background: rgba(255, 255, 255, 0.5);
}

.CSSgal .bullets > a:hover {
  background: rgba(255, 255, 255, 0.7) !important;
}

#s1:target ~ .bullets > * {
  background: rgba(255, 255, 255, 0.5);
}

#s1:target ~ .bullets > :nth-child(1),
#s2:target ~ .bullets > :nth-child(2),
#s3:target ~ .bullets > :nth-child(3),
#s4:target ~ .bullets > :nth-child(4) {
  background: rgba(255, 255, 255, 1);
}

#s1:target ~ .prevNext > * {
  visibility: hidden;
}

#s1:target ~ .prevNext > :nth-child(1),
#s2:target ~ .prevNext > :nth-child(2),
#s3:target ~ .prevNext > :nth-child(3),
#s4:target ~ .prevNext > :nth-child(4) {
  visibility: visible;
}

#s1:target ~ .slider {
  transform: translateX(0%);
}

#s2:target ~ .slider {
  transform: translateX(-100%);
}

#s3:target ~ .slider {
  transform: translateX(-200%);
}

#s4:target ~ .slider {
  transform: translateX(-300%);
}

.CSSgal .slider h2,
.CSSgal .slider h4 {
  padding: 1% 0;
  font-weight: 200;
  letter-spacing: -0.06em;
  word-spacing: 0.2em;
  font-size: 1.5em;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-family: 'metropolis';
  text-align: center;
}

.CSSgal .slider h2 {
  color: #DA0037;
  text-shadow: 0.5px 0px #DA0037, 0px 0.5px #DA0037, -0.5px 0px #DA0037, 0px -0.5px #DA0037;
  font-weight: 500;
  font-size: 2.5em;
}

.bullets a {
  border-radius: 50%;
  margin: 0 3px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .CSSgal {
    width: 100%;
  }
  .CSSgal .slider h2, .CSSgal .slider h4 {
    font-size: 1.3em;
  }
}


/* GRID RESPONSIVE SIN MEDIA QUERIES */
#grid-responsive-container {
  width: 80%;
  margin: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 1%;
}
.titulo-grid {
  color: #000;
  margin-left: 4%;
  font-family: 'metropolis';
  font-size: 3em;
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: center;
  animation:tracking-in-contract .8s cubic-bezier(.215,.61,.355,1.000) both;
}

@keyframes tracking-in-contract {
  0%{
    letter-spacing:1em;opacity:0
  }
  40%{
    opacity:.6
  }
  100%{
    letter-spacing:normal;opacity:1
  }
}

.grid-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 33px;
  grid-row-gap: 30px;
  padding: 3% 0;
}
.grid-responsive-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.imagen-titulo {
  display: flex;
  align-items: center; 
  justify-content: center; 
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 1.5em;
}
  
.grid-responsive img {
  border-radius: 8px;
  width: 250px;
  height: 250px;
  object-fit: cover;
  -webkit-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
  box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
}

/* Media Queries para pantallas más pequeñas */
@media (max-width: 1300px) {
  .grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 15px;
  }

  .grid-responsive img {
    width: 100%;
    height: 200px;
  }
}

/* Media Queries para pantallas aún más pequeñas */
@media (max-width: 480px) {
  .grid-responsive {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.btn-more{
  margin: 40px 0 70px 0;
  background: #222;
  padding: 15px 40px ;
  border-radius: 5px;
}
.btn-more a{
 color: #fff;
 font-size: 1.2em;
 text-decoration: none;
 font-weight: bolder;
 letter-spacing: 3px;
}

/* FIN DE GRID RESPONSIVE SIN MEDIA QUERIES */

/* PARTNERS */


.carousel-container {
  overflow: hidden; 
  width: 90%; 
  height: 400px; 
  margin-bottom: 6%;
  margin-top: 1%;
  background-color: white;
  display: flex; 
  align-items: center;
  
}
.clients-text {
  color: #000;
  margin-left: 4%;
  font-family: 'metropolis';
  font-size: 3em;
  margin-top: 1%;
  margin-bottom: 1%;
  
  text-align: center;
}

.carousel {
  display: flex; 
  animation: carouselAnimation 20s linear infinite; 
}


@keyframes carouselAnimation {
  0% {
    transform: translateX(0); /* Posición inicial, sin desplazamiento */
  }
  100% {
    transform: translateX(-50%); /* Desplazamiento completo hacia la izquierda */
  }
}

.carousel img {
  height: 100px;
  background-color: white;
  margin-left: 10px;
  margin-right: 10px;
}

/* FIN DE PARTNERS */



/*  GALERIA*/
.locations-text {
  color: #000;
  margin-left: 4%;
  font-family: 'metropolis';
  font-size: 3em;
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: center;
}
.container{
    display: flex;
    flex-direction: column;
    width: 94%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .galeria {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 4%;
  }
 
  .dream img{
    height: 80%;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .dream a{
    height: 80%;
  }
  .dream-text  {
    position: absolute;
    bottom: 25%;
    color: white;
    width: 100%;
    margin:0;
    padding: 10px;
    font-size: 36px;
    font-weight: bolder;
    text-align: center;
    text-shadow: 2px 2px 2px #585757;
  }
  
  .dream{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    position: relative; 
  }

  /*HOVER EFFECT FLASHING*/
  .galeria img:hover{
    opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
  }

/* FIN DE GALERIA */


/* LOGO ABAJO */
.logo-big {
    margin: auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
 }

/* COOKIES */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2%;
  padding-top: 14px;
  background-color: #222222;
  text-align: center;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 35px 40px 35px;
  z-index: 8;
}
.banner-text {
  margin-right: 5%;
  margin-left: 5%;
  margin-bottom: 14px;
}

.btn-banner {
  height: 45px;
  margin-right: 1em;
  font-family: 'Opensans';
  color: #222222;
  font-size: 1em;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  border: solid #ffffff 2px;
  background-color: #ffffff;
  cursor: pointer;
}
.btn-banner:hover {
  background-color: #222222;
  border: solid #e0e0e0 2px;
  color: #ffffff;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  transition: 0.3s;
}

.close-button {
  color: #aaa;
  background-color: transparent;
  float: right;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  margin-left: 20px;
}

#cookie-settings {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;  
}

#cookie-settings .modal {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #888;
  font-size: 1em;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px; 
  max-height: 80%;
  overflow-y:auto;
  color: #222222;
}


#cookie-settings h3 {
  margin-top: 20px;
  
}

#cookie-settings .checkbox {
  margin-bottom: 10px;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

#cookie-settings .btn {
  margin-top: 10px;
}

.parrafo-settings {
  padding: 20px;
  padding-left: 0;
  width: 80%;
  line-height: 20px;;
}

.descripcion-cookie {
  padding-left: 35px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
}

  /* Estilo personalizado para el checkbox */
  input[type="checkbox"] {
      -webkit-appearance: none;  
      -moz-appearance: none;
      appearance: none;
      width: 20px;  
      height: 20px;
      border: 2px solid black; 
      border-radius: 4px;
      background-color: rgb(255, 255, 255); 
      outline: none;  
      cursor: pointer;
      vertical-align: middle;
      margin-right: 5px;  
  }
  input[type="checkbox"]:checked {
      background-color: #000000; 
  }

  /* Estilo para el marcado (tick) del checkbox */
  input[type="checkbox"]:checked::before {
      content: "\2713";  /* Símbolo de marca de verificación */
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
      line-height: 16px;  /* Ajustar la alineación vertical del marcado */
      color: #ffffff;  /* Color del marcado */
  }

  .btn-save {
      height: 45px;
      margin-right: 1em;
      font-family: 'Opensans';
      color: #ffffff;
      font-size: 1em;
      padding: 10px;
      text-decoration: none;
      border-radius: 5px;
      border: solid #000000 2px;
      background-color: #000000;
      cursor: pointer;
      height: 3rem;
      width: 7rem;
      padding: 0.5rem;
      margin-bottom: 16px; 
    }

    .btn-save:hover {
      background-color: #222222;
      border: solid #e0e0e0 2px;
      color: #ffffff;
      box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
      transition: 0.3s;
    }
  
/* FIN DE COOKIES /*



/* RESPONSIVE */

@media only screen and (max-width: 643px){
    a .texto-secciones {
        font-size: 1.2em;
         
     } 
    .dream-text {
        bottom: 2%;
    }
    .carousel-container {
      
      width: 100%; 
      
    }
}
  @media only screen and (max-width: 769px){ 
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    flex-basis: 100%;
  }
  .container .galeria{
     flex-direction: column;
    }
  .container .galeria .dream{
    width: 100%;
    flex-direction: column;
  }
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 3%;
  }
  .dream-text {
    bottom: 2%;
}
  }
  
@media(max-width: 899px){ 
    
    #texto-principal {
        padding: 5% 5%;
    }
    .mostrar-menu, .esconder-menu{
        display: block;
    }
    .mostrar-menu {
        position: absolute;
        right: 10%;
        color: #3D3E3B;
    }
    .menu{
        position: fixed;
        display:flex;
        width: 80%;
        height: 100vh;
        right: -100%;
        top: 0;
        background-color: #fff;
        text-align: left;
        padding: 100px 0;
        z-index: 100;  
    }
    nav ul {
        display: block;
        text-align: left;
        margin-left: 5%;
        padding: 25px 25px;
        margin: 0 ;  
    }
    .menu a{
        display:flex;
        padding: 20px 20px 20px 0;
        color: rgb(190, 188, 188);
    }
    nav ul li{
        border-bottom: 1px solid rgb(190, 188, 188);
        width: 70vw;  
    }
    .dropdown {
        position: relative;
        height: 6vh; 
    }
    .dropdown a i {
        transform: rotate(-90deg);
        position: absolute;
        top: 15px;
        right: 10px;   
	    font-size: 18px;
    }
    .dropdown a i:active {
        transform: rotate(0deg);
    }
    .dropdown-content {
        display: none;
        position: relative;
        top: 5px;
        width: 100%;
        box-shadow: none;
        margin-left: 5px;
        transition: 0.8s;
        padding-top: 2px; 
    }
    .dropdown-content a {
        font-size: 14px;
        font-family: 'josefine';
        text-transform: uppercase;
        text-align: left;
    }
    .dropdown-content::before {
        display: none;
    }
    .arrow {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
    }
    .submenu-open {
        max-height: 1000px;
      }
    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 10%;
        color: rgb(190, 188, 188);
        font-size: 2em;
    }
    #check:checked ~ .menu{
        right: 0%;
    }
    .top {
        display: none;
    }
    .language-menu-hamburguesa {
        display: block;
    }
    .dropbtn {
        margin: auto;
        padding: 0;  
    }
    .fa-brands {
        color: rgb(190, 188, 188);
    }
}


