.modal-dialog-slideout {
    max-width: 300px;
    margin: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    transform: translateX(0);
    margin-left: 0;
}

.modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
}
.nav-link{
    color: white;
}
.nav-link.active{
    color: white !important;
}
/* 
.nav-item .nav-link.active::after{
    content: '';
    display: block; 
    width: 50px;
    height: 2px;
    background-color: white;
    margin-top: 4px; 
} */
/* Effet après scroll */
.nav-scrolled {
    background-color: black !important;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-scrolled .navbar-brand img {
    height: 80px !important;
    transition: height 0.3s ease;
}
@media (max-width: 768px) {
    .navbar-brand img {
         max-height: 120px !important;
    }

    .nav-scrolled .navbar-brand img {
        height: 60px !important;
    }
}
