

.navbar {
    background-color: #fff;


}

.boton-ingresar{
    transition: 0.3s ease-in-out;


}
.boton-registro{
background-color: rgb(32, 65, 172);
transition: 0.3s ease-in-out;

}

.boton-ingresar:hover{
    background-color: rgba(72, 78, 95, 0.459)
    

}

.boton-registro:hover{
    background-color: rgba(32, 65, 172, 0.664);
}
.nav-link{
    color: #666777;
    font-weight: 500;
    position: relative;
}
.nav-link:hover, .nav-link.active{
    color: #000;

}

.nav-link::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 2px;
    background-color: #000;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::before, .nav-link.active::before{
    width: 100%;
    visibility: visible;
}

@media(max-width: 991px){
    .sidebar{
        background-color: rgb(255, 255, 255,0.60);
        backdrop-filter: blur(10px);
    }
}

.hero-section{
    background: url('Imagenes/fondoInicio.jpg') rgb(255, 255, 255) no-repeat center;
    background-size: cover;
    width: 100%;

}

.hero-section::before{
    background-color: rgba(0, 0, 0, 0.548);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-section .container{
    height: 100vh;
    z-index: 1;
    position: relative;
    text-align: center;

}

.hero-section h1{
    font-size: 1.5em;
}



