

@font-face {
    font-family: "gobCl";
    src: url('../font/gobCL_Bold.otf'), url('../font/gobCL_Heavy.otf'), url('../font/gobCL_Light.otf'),
    url('../font/gobCL_Regular.otf');
}

@font-face {
    font-family: "gobCL_Light";
    src:  url('../font/gobCL_Light.otf');
    
}



h1, h2, h3 { 
    font-family: "gobCl";
}

p, a, select, option, li, ul, span, div, input, button, label{ 
    font-family: "gobCL_Light";
}

.map-style {
    width: 100%;
    height: 600px;
    position: relative; /* Added this */
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;  /* Asegurarse de que la barra de navegación esté por encima de otros elementos */
}

#selector {
    z-index: 1000; /* Un valor arbitrariamente alto */
}

.stacked {
    flex-direction: column !important;  
}

.text-border {
    text-shadow: -1px -1px 0 #000,  
                  1px -1px 0 #000,
                 -1px  1px 0 #000,
                  1px  1px 0 #000;
}

.text-border-white {
    text-shadow: -1px -1px 0 #ffffff,  
                    1px -1px 0 #ffffff,
                    -1px  1px 0 #ffffff,
                    1px  1px 0 #ffffff;
}



@media (max-width: 1024px) {
    #mainMenu, #titulo-fotomonitoreo {
        display: none;
    }
    #mobileMenu {
        display: flex;
        transition: max-height 0.3s ease-in-out;
        max-height: 0; /* Inicialmente, establecer a 0 para que esté oculto */
        overflow: hidden; /* Esconde el contenido que excede el max-height */
    }
    #hamburger,  #plataforma-boton {
        display: flex; /* Asegurándonos de que se muestre */
    }
    #video {
        position: "top-[0px]";
    }
    #texto-principal {
        size: text-2xl;
    }

}

/* Estilos para la animación de transformación a 'X' */
#hamburger.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
#hamburger.open span:nth-child(2) {
    opacity: 0;
}
#hamburger.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.map-control {
    font-family: "Quicksand",sans-serif;
    margin: 10px;
    /* Hide the control initially, to prevent it from appearing
             before the map loads. */
    display: none;
  }
  
  /* Display the control once it is inside the map. */
#map-2 .map-control {
    display: block;
 
  }
  
#map-3 .map-control {
    display: block;
    
   
  }

.legend-control {
    font-family: "Quicksand",sans-serif;
    display: none;
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    font-size: 12px;
}

#map-3 .legend-control{
    display: block;
}

.selector-control {
    font-size: 14px;
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
  }


  #carrusel1 {
    user-select: none;
    position: fixed;
    z-index: 9999;
  }


  .swiper-container {
    width: 80%;
    height: 80%;
    margin: 0 auto;
    border: 10px solid black;
  }

  .swiper-button-next:hover {
    background-color: #fff;
    opacity: 0.5;
    border-radius: 10px;
  }

  .swiper-button-prev:hover {
    background-color: #fff;
    opacity: 0.5;
    border-radius: 10px;
  }

  @keyframes parpadeo {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
      color: whitesmoke;
    }
    100% {
      opacity: 1;
    }
  }
  
  .parpadea {
    animation: parpadeo 0.4s infinite;
    background-color: #6e34db; /* Color de fondo en el estado normal */
  color: #fff; /* Color del texto en el estado normal */
  padding: 10px 20px;
  }

  .timeline-container {
    width: 80%;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
}

.timeline {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
}

.events {
    height: 100px;
    position: relative;
}

.event {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    transform: translateX(-50%);
}

.slider {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.accordion-item.collapsed .accordion-title {
    color: black
}

hr {
    border: none;
    height: 5px solid white;
    background-color: yellowgreen; /* Color de la línea */
    margin: 20px 0; /* Margen superior e inferior */
}

.video-responsive {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
	}
.video-responsive iframe, .video-responsive object, .video-responsive embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	}