/* mobile nav */
/* Mobile Navbar Container */
.mobile-navbar {
    background: #fff;
    padding: 1rem 1.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100% !important;
    /* width: 100% !important; */
    /* max-width: 100% !important; */
    /* max-width: min-content; */
    z-index: 999;
    overflow: hidden !important;
}

.mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* width: 100%; */
    width: 100% !important;
    max-width: 100% !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-navbar .logo img {
    height: 40px;
}

.menu-toggle i {
    color: #382A4B;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    color: #181818;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem;
    z-index: 9999;
}

.menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.menu-header i {
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.mobile-nav-links li {
    margin: 1.2rem 0;
}

.mobile-nav-links li a {
    font-size: 1.4rem;
    color: #111;
    text-decoration: none;
    position: relative;
}

.mobile-nav-links li a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #3B0070;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.mobile-nav-links li a:hover::after {
    width: 100%;
}

.mobile-contact-cards {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: #ededed;
    padding: 0.8rem 1rem;
    border-radius: 10px;

    /* i{
    color: #ff0000;
    font-size: 1rem;
  } */
    a {
        text-decoration: none;
        color: #181818;
        cursor: pointer;
    }
}

/* Responsive Trigger */
@media screen and (max-width: 1024px) {
    .mobile-navbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* mobile nav */
/* mobile navigation */