* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif !important;
}

.container {
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0px 20px;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer {
    background-color: rgba(0, 0, 0, .5);
    min-height: 50vh;
}

.radial-gradient {
    background: radial-gradient(141.42% 141.42% at 0% 0%, #7a6f99 0%, rgba(0, 0, 0, 0.95) 80%);

}

.radial-gradient::-webkit-scrollbar {
    width: 4px;
    height: 50%;
}

.radial-gradient::-webkit-scrollbar-track {
    background-color: transparent;
}

.radial-gradient::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 5px;
}

.radial-gradient::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}

.colored-image {
    border-radius: 8px 0px 0px 8px !important;
}

/* Mobile responsive */
.menu {
    overflow-y: auto;
}

.mega-menu {
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mega-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.toggle-menu .fa-chevron-down {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.toggle-menu.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mega-menu {
    display: none;
}

.mega-menu.active {
    display: block;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.hoverable a.active {
    text-decoration: underline;
    text-decoration-color: violet-600;
    text-underline-offset: 8px;
}


@media (max-width: 992px) {
    .main-header {
        background-position: bottom;
    }

    .mobile-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #000;
        color: #fff;
        transition: all 0.5s ease-in-out;
        text-transform: uppercase;
        font-size: 24px;
        height: 100% !important;
        min-height: 100vh !important;
        overflow-y: auto !important;
    }

    .heading-text li,
    .heading-city {
        text-transform: none;
    }

    .hoverable {
        width: 100%;
        border-bottom: 1px solid #ababab;
    }

    .hoverable a {
        display: flex;
        justify-content: space-between;
        /* margin: 20px 10px; */
    }

    .mega-menu ul li span {
        display: flex;
        justify-content: space-between;
    }
}