/* =========================
MOBILE DROPDOWN
========================= */

.mobile-dropdown {
    border-bottom: 1px solid rgba(27, 4, 49, 0.06);
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-link a {
    width: 100%;
    padding: 18px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.mobile-arrow {
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

/* rotation flèche */
.mobile-dropdown.active .mobile-arrow i {
    transform: rotate(180deg);
}

/* sous menu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(3, 2, 50, 0.03);
    transition: 0.4s ease;
}

/* menu ouvert */
.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    border-top: 1px solid rgba(11, 5, 74, 0.05);
}

.mobile-submenu a {
    display: block;
    padding: 14px 45px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.mobile-submenu a:hover {
    
    background: rgba(49, 2, 83, 0.075);
}




