*{
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
html{
  scroll-behavior: smooth;
}

body{
  background: linear-gradient(to bottom, #991b30, #000000);
}

/*Header*/
.header-banner-container {
  background-image: url("img/PaN.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-align: center;
  background-position: center top;
  justify-content: center;
  align-items: center;
  
} 

.content-banner {
  max-width: 600px;
  margin: 0 auto;
}

header{
  height: 130px;
  padding: 0 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Alinea los elementos a la derecha */
}


#banner {
  display: flex;
  justify-content: center; /* Alinear horizontalmente */
  align-items: center; /* Alinear verticalmente */
  height: 300px;
  padding-top: 50px;
}

.banner-container {
  display: flex;
  align-items: center; /* Alinear verticalmente los elementos dentro del banner */
  flex-wrap: wrap; /* Permitir que los elementos se ajusten en varias líneas en dispositivos móviles */
}

.content-banner {
  margin: 10px; /* Agregar un margen entre los elementos */
  text-align: center; /* Centrar el contenido dentro del contenedor */
}

.content-banner img {
  width: 300px; /* Ajustar el ancho de las imágenes */
  max-width: 100%; /* Asegurar que la imagen no supere el ancho del contenedor */
  height: auto; /* Ajustar la altura de la imagen de manera proporcional */
  flex-shrink: 0;
}

.content-banner h1 {
  margin: 50px 0 5px; /* Ajustar el margen superior e inferior del texto */
  color: white; /* Cambiar el color del texto a blanco */
  font-weight: 300; /* Hacer el texto más delgado */
  font-size: 24px; /* Ajustar el tamaño de fuente del texto */
}

/* Estilo específico para la imagen pequeña */
.small-image img {
  max-width: 50px; /* Ajustar el ancho de la imagen pequeña */
}


.country{
  padding-bottom: 150px;
  color: #ffffff;
}
.country h1{
  font-weight: 300;
}

.menu {
  display: flex;
}

.menu li{
list-style: none;
}

.menu a{
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 10px;
  transition:  0.4s;
  margin: 0 10px;
}

.show-menu,
.hide-menu{
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: 0.4s;
}

.show-menu{
  order: 1;
}

.menu li a:hover,
.show-menu:hover,
.hide-menu:hover{
  border-radius: 10px;
  background-color: red;
}

#check{
  display: none;
}
/*loader*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/FondoC.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-icon {
  font-size: 50px;
  color: white;
}




/*Seccion del About US*/
.about-us {
  position: relative;
  margin-bottom: 30px;
  padding: 40px;

}

.about-us img {
  display: block;
  width: 100%;
  height: auto;
}

.about-us-content {
  max-width: 800px;
  text-align: justify;
  margin: 0 auto;
  padding: 20px;
  color: white;
}

.about-us-content h2 {
  font-size: 28px;
}

.about-us-content p {
  font-size: 18px;
  line-height: 1.5;
}

.icons {
  display: flex;
  flex-wrap: wrap; /* Permite que los contenedores de imagen se coloquen en varias líneas si es necesario */
  justify-content: center; /* Centra el contenido horizontalmente */
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 200px; /* Espacio entre los contenedores de imagen */
  padding-bottom: 50px;
}
.icon-item p{
  color: #ffffff;
}
.icon-item {
  text-align: center; /* Centra el texto horizontalmente */
  width: 200px; /* Ancho del contenedor del icono y el texto */
}

.icon-item img {
  width: 100px; /* Tamaño del icono (ajusta el valor según lo necesites) */
}
video {
  margin-top: 20px;
  width: 100%;
  height: 100vh; /* Ajusta la altura deseada, por ejemplo, 30% del viewport height (vh) */
  object-fit: cover; 
}


/*z-index para que el index este por encima de todo*/
@media(max-width:1344px){
  .icon-item {
    text-align: center; /* Centra el texto horizontalmente */
    width: 50px; /* Ancho del contenedor del icono y el texto */
  }
 
  .icon-item img {
    width: 70px; /* Tamaño del icono (ajusta el valor según lo necesites) */
  }
  
}

@media(max-width:768px){
  .show-menu,
  .hide-menu{
      display: block;
  }
  #banner img {
    width: 300px;
   
  }

  .menu{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #000000;
      right: -100%;
      top: 0;
      text-align: center;
      padding: 100px 0;
      z-index: 100;
      transition: 0.8s;
  }
  .menu a{
      display: block;
      padding: 20px;
  }
  .hide-menu{
      position: absolute;
      top: 40px;
      right: 40px;
  }
  #check:checked ~ .menu{
      right: 0;
  }
  .image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 65px; /* Espacio entre los contenedores de imagen */
    padding-bottom: 20px;
  }
  .icon-item {
    text-align: center; /* Centra el texto horizontalmente */
    width: 70px; /* Ancho del contenedor del icono y el texto */
  }
 
  video {
    width: 100%; /* Ajustar el ancho al 100% del viewport */
    height: auto; /* Ajustar la altura automáticamente para mantener la proporción */
  }
  footer{
      flex-direction: column;
  }

}