.navbar-collapse{
    margin: 30px;
}

nav {
    /* Agrega una línea gris en la parte inferior de la barra de navegación */
    border-bottom: 3px solid gray;
    /* Hace que la barra de navegación sea pegajosa */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-light{
    background-color: #FFFFFF;

}

.nav-item{
    margin-left: 12px;
    margin-right: 10px;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.5s;
}

 .nav-item, .nav-item a:hover{
    /* color: #ff0000; cambiar color de la letra */
    /* Aumenta el tamaño del elemento al pasar el mouse sobre él */
    transform: scale(1.1);
} 

.nav-activado{
    color: #366bd4;
}

/* clase para hacer logo responsive */
.logo{
    height: 70px;
    margin-left: 27px;
}

.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3), rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
    line-height: 2.5rem;
    padding: 20px;
    z-index: 3;
}

.content h1{
    font-size: 6rem;
    color: #fff;
}

.content p{
    font-size: 2rem;
    color: #fff;
}

.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}

@media(max-width:768px){
	.hero{
        height: 70vh;
    }
    .content h1{
        font-size: 3rem;
    }
    .content p{
        font-size: 1.5rem;
    }
}

@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}

.montserrat-bold{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 750;
    font-style: normal;
    font-size: normal;
}

.montserrat-medio{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.montserrat-semilight{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: normal;
}

.montserrat-light{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: large;
}

.fondo-blanco{
    background-color: #FFFFFF;
}

.letra-negro{
    color: black;
}


.margen{
    margin: 10px;
}

.padding{
    padding: 20px;
}

.contenido-NuestraE{
    line-height: 2.5rem;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 10rem;
    padding-right: 10rem;
}

@media(max-width:768px){
	.contenido-NuestraE{
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.linea-naranja{
    border-color: #E6540F; 
    border-width: 3px;
    width: 80%;
}

.linea-azul{
    border-color: #366bd4; 
    border-width: 3px;
    width: 80%;
}

.linea-footer{
    border-color: #6e6e6e; 
    border-width: 3px;
    width: 90%;
}

.contenedor-imagen{
    background-size: cover;
    min-height: 60vh;
    position: relative;
    color:white;
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    z-index: 2;
}

.contenedor-imagen .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Aumenta la opacidad para oscurecer */
}

.contenedor-imagen .text-white {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.75); /* Aumenta la oscuridad de la sombra si es necesario */
    z-index: 2;
}

a{
    text-decoration: none;
}


i{
    font-size: 20px;
}

.letra-blanca{
    color: white;
}

footer.bg-dark a {
    color: white;
    text-decoration: none;
}

footer.bg-dark a:hover, footer.bg-dark a:focus {
    color: #ccc; /* Cambia al color que prefieras para el hover */
}

footer.bg-dark .text-primary {
    color: white; /* Cambia 'white' por cualquier color que desees */
}

@media (max-width: 768px){
    .logo{
        height: 50px;
        margin-left: 0px;
    }
    
}