.rs__mobile__navbar {
    position: fixed;
    z-index: 9999999999;
    top: 0;
    width: 380px;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 8px black;
    padding: 10px;
    left: -400px;
    transition: .2s ease-in-out;
    opacity: 0;
}

.rs__mobile__navbar .rs__mobile__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 14px;
    border-bottom: 1px solid lightgray;
}

.rs__mobile__navbar .rs__mobile__middle {
    height: 100%;
    overflow-y: auto;
    margin: 14px 0px;
    position: relative;
}

.rs__mobile__navbar .rs__mobile__bottom {
    display: flex;
    flex-direction: column;
    border-top: 1px solid lightgray;
    padding: 10px 0px 0px 0px;
    gap: 0px;
}

.rs__mobile__navbar .rs__mobile__top a {
    display: inline-block;
}

.rs__mobile__navbar .rs__mobile__top a img {
    height: auto;
    width: 220px;
}

.rs__mobile__navbar .rs__mobile__top button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid lightgray;
    background-color: white;
}

.rs__mobile__navbar .rs__mobile__top button svg {
    height: auto;
    width: 38px;
}

.rs__mobile__navbar .rs__mobile__bottom a {
    color: black;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    padding: 5px 0px;
}

.rs__mobile__navbar .rs__mobile__bottom a svg {
    height: auto;
    width: 20px;
}

.rs__mobile__navbar .rs__mobile__middle ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs__mobile__navbar .rs__mobile__middle ul a {
    font-size: 17px;
    color: black;
    border-bottom: 1px solid black;
    padding: 8px 24px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px -5px;
}

.rs__mobile__navbar .rs__mobile__middle ul a .rs__arrow {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    line-height: .5;
    margin: -8px 0px 0px;
    color: dimgray;
}

.rs__mobile__navbar .rs__mobile__middle ul.rs__main__mobile__menu ul.rs__main__mobile__menu__sub {
    display: none;
}

.rs__mobile__navbar .rs__mobile__middle ul.rs__main__mobile__menu ul.rs__main__mobile__menu__sub.active {
    position: absolute;
    top: 0px;
    background-color: white;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.rs__mobile__navbar .rs__mobile__middle ul a.rs__step__back {
    justify-content: left;
    gap: 8px;
}

.rs__mobile__navbar.active {
    left: 0px;
    opacity: 1;
}

@media (max-width: 568px) {
    .rs__mobile__navbar {
        width: 320px;
    }

    .rs__mobile__navbar .rs__mobile__top a img {
        width: 200px;
    }

    .rs__mobile__navbar .rs__mobile__middle ul a {
        font-size: 15px;
    }

    .rs__mobile__navbar .rs__mobile__middle ul a .rs__arrow {
        font-size: 32px;
    }

    .rs__mobile__navbar .rs__mobile__bottom a {
        font-size: 16px;
    }
}


.mega-menu {
    display: none;
    position: absolute;
    left: -300px;
    top: 45px;
    width: 1200px;
    background: #fff;
    border-bottom: 2px solid #002940;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0px;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
}

.site-header .main-navigation > ul > li a:focus ~ .mega-menu, .mega-menu:hover {
    display: flex;
}

.mega-menu.active {
    display: flex;
}

.mega-menu-scroll {
    max-height: max-content;
    overflow-y: auto;
    display: flex;
    width: 100%;
}

.vertical-tabs {
    width: 200px;
    border-right: 1px solid #ccc;
    background-color: #0064ab21;
    height: 300px;
    overflow-y: auto;
}

.vertical-tabs ul {
    list-style: none;
}

.vertical-tabs ul li {
    padding: 8px 10px;
    background: #dce8f1;
    border-bottom: 1px solid #c0cfd9 !important;
    cursor: pointer;
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.vertical-tabs ul li.active {
    background: #002940;
    color: #fff;
}

.mega-menu #tabContents {
    height: 300px;
    overflow-y: auto;
}

.mega-menu-content {
    flex: 1;
    padding-left: 0px;
    display: none;
    flex-wrap: wrap;
    margin: 14px 0px 0px;
    gap: 2px;
}

.mega-menu-content.active {
    display: flex;
}

.mega-menu-content .column {
    width: 32.33%;
}

.mega-menu-content .column ul {
    list-style: none;
}

.mega-menu-content .column ul li {
    margin: 0px;
    font-size: 14px;
}

.mega-menu-content .column ul li a {
    text-decoration: none;
    color: #000;
    width: 100%;
    padding: 8px 0px;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid #dce8f1;
    padding: 12px 10px;
    margin: 1px;
}

.mega-menu-content .column ul li a:hover {
    text-decoration: none;
}

@media (max-width: 1440px) {
    .mega-menu {
        left: -340px;
        top: 45px;
        width: 972px;
    }
}

@media (max-width: 992px) {
    div#navbarSupportedContent {
        display: none !important;
    }
}


.site-header .main-navigation ul > li:hover > ul {
    width: 700px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}

@media screen and (max-width: 436px) {
    .site-header .main-navigation ul > li:hover > ul {
        width: 300px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        font-size: 14px;
    }

}