.menu-scroll {
    position: relative;
}

.menu-outer {
    position: relative;
    overflow: visible;
}

.menu-inner {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.menu-inner::-webkit-scrollbar {
    display: none;
}

.menu-inner>ul {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.menu-inner>ul>li {
    position: relative;
}

/* ===== SCROLL BUTTONS ===== */
.menu-scroll-btn.hidden {
    opacity: 0.4;
}

.menu-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 26px;
    height: 100%;
    border: none;
    background: #0b8bb2;
    color: #ffffff;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s;
}

.menu-scroll-btn>i {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: var(--white);
}

.menu-scroll-prev {
    left: 0;
}

.menu-scroll-next {
    right: 0;
}

/***********/
.mainheader .container {
    max-width: 1830px;
}

.header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    .hdul-right {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
    }

    li {
        margin: 0;
    }

    .h-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;

        &:hover .hcall-no {
            color: var(--theme);
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }
    }

    .h-icon {
        width: 50px;
        height: 50px;
        background-color: #EEF2F9;
        border-radius: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .hcall-li .h-icon {
        background-color: #0046B7;
    }

    .hcall-li .h-desc label {
        color: var(--blue);
        font-size: 14px;
        font-style: italic;
        margin-bottom: 2px;
    }

    .h-desc {
        width: calc(100% - 50px);
        padding-left: 10px;
        line-height: 1.1;

        & label {
            font-size: 16px;
            color: var(--primary);
            line-height: 1;
            font-weight: var(--font-weight-semibold);
            font-style: italic;
            display: block;
        }

        .hcall-no {
            color: var(--primary);
            font-size: 24px;
            font-weight: var(--font-weight-bold);
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }
    }

    .hd-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 50px;

        .logo {
            /* width:180px; */
        }
    }

    .we-open-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border: 2px solid #16D616;
        border-radius: 14px;
        padding: 12px 18px;

        .we-opn {
            width: 16px;
            height: 16px;
            background-color: #16D616;
            border-radius: 100%;
            box-shadow: 0px 0px 0px 5px rgba(22 214 22 / 30%);
            animation: glowBlink 2s infinite;
        }

        .we-bx-dtl {
            width: calc(100% - 16px);
            padding-left: 15px;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            flex-direction: column;

            .we-bx-title {
                font-size: 16px;
                font-weight: var(--font-weight-semibold);
                font-style: italic;
                line-height: 1.12;
                margin-bottom: 2px;
            }

            .we-bx-info {
                font-size: 12px;
                line-height: 1.12;
                color: var(--primary);
                font-style: italic;
                font-weight: var(--font-weight-medium);
            }
        }
    }
}

.header-top-wrap {
    padding: 10px 0;
}

.middleheader {
    background-color: var(--theme);
    position: relative;
}

@keyframes glowBlink {

    0%,
    100% {
        box-shadow: 0px 0px 0px 5px rgba(22, 214, 22, 0.3);
    }

    50% {
        box-shadow: 0px 0px 0px 0px rgba(22, 214, 22, 0);
    }
}

/**/
.menu-link nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.menu-link nav>ul.main-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;

    margin: 0 auto;
    white-space: nowrap
}

.menu-link nav>ul>li {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0;
}

.menu-link nav>ul>li {
    padding: 0px 14px;
    position: static;
}

.menu-link nav>ul>li .menudrop {
    font-size: 14px;
    line-height: 1;
    margin-left: 5px;
}

.menu-link nav>ul>li>a {
    font-size: 14px;
    padding: 0px;
    position: relative;
    line-height: 4.572;
    letter-spacing: 0px;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    text-decoration: none;
    text-transform: capitalize;
    font-family: var(--font-body-family);
    color: var(--white);
    text-transform: uppercase;
}

.menu-link nav>ul>li:hover>a,
.menu-link nav>ul>li.active>a {
    color: var(--blue);
    background-position: 0 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.menudrop {
    z-index: 1;
    height: 16px;
    width: 16px;
    text-align: center;
    vertical-align: middle;
    margin-left: 6px;
    margin-top: 0px;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    line-height: 14px;
}

.menudrop.openedmenu:before {
    content: "\f106";
}

.menu-link .sub-menu {
    left: auto;
    margin-left: -40px;
    position: absolute;
    top: 100%;
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    border-radius: 0px 0 30px 30px;
    z-index: 999;
    background: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    top: 100%;
    padding: 0px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0;
    border-top: 1px solid rgba(0 0 0 / 10%);
}

.menu-link li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    display: block;
}

.menuoverlay {
    position: relative;
}


.menuoverlay:after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 173px);
    top: 0;
    margin-top: 173px;
    background: linear-gradient(139deg, rgba(0 23 59 / 90%) 0%, rgba(0 70 183 / 90%) 100%);
    left: 0;
    z-index: 99;
}


.menu-link nav>ul>li.areamenu .sub-menu {
    width: 800px;
    left: auto;
}

.menu-link nav>ul>li.areamenu .sub-menu ul.sub-dropdown {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-link nav>ul>li.areamenu .sub-menu ul.sub-dropdown>li {
    width: calc(33.33% - 15px);
    margin-bottom: 0;
}


.menu-link .sub-menu:has(.submenu-wrap) {
    width: auto;
}

.submenu-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 870px;
    background-color: var(--white);
    border-radius: 0 0 30px 30px;
    white-space: initial;

    .submenu-left {
        width: calc(100% - 420px);
        padding: 60px;

        p {
            font-size: 16px;
            line-height: 1.5;
        }

        .heading-24 {
            font-size: 24px;
            margin-bottom: 16px;
        }
    }

    .submenu-right {
        width: 420px;
        background-color: #EEF2F9;
        padding: 60px;
        border-radius: 0 0 30px 0;

        .dropdown-ul {
            list-style-type: none;
            margin: 0;
            padding: 0;

            li {
                margin: 0;
                line-height: 1;
                border-bottom: 1px solid #D4DBE8;
            }

            li a {
                font-size: 18px;
                font-weight: var(--font-weight-semibold);
                color: var(--primary);
                line-height: 1.1;
                padding: 25px 0 25px 30px;
                position: relative;
            }

            li a:before {
                position: absolute;
                content: "\f105";
                font-family: 'FontAwesome';
                font-size: 20px;
                font-weight: var(--font-weight-semibold);
                color: var(--primary);
                line-height: 1;
                left: 0;
            }

            li:last-child {
                border-bottom: 0;
            }

            li:last-child a {
                padding-bottom: 0;
            }

            li:first-child a {
                padding-top: 0;
            }

            li a:hover,
            li.active a {
                color: var(--theme);
            }
        }
    }
}

.menu-link nav>ul>li .menu-tagline {
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin-bottom: 18px;
}

ul.sublink-ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;

    li {
        line-height: 1;
        margin-bottom: 12px;
        width: calc(50% - 10px);
    }

    li a {
        font-size: 16px;
        position: relative;
        color: var(--primary);
        padding: 0 0 0 10px;
    }

    li a:before {
        position: absolute;
        content: "\f105";
        font-family: 'FontAwesome';
        font-size: 16px;
        color: var(--primary);
        left: 0;
        line-height: 14px;
    }
}

.menu-link nav>ul>li ul.sub-dropdown {
    list-style-type: none;
    margin: 0;
}

.menu-link nav>ul>li ul.sub-dropdown>li {
    margin-bottom: 0;
    line-height: 1;
}

.menu-link nav>ul>li ul.sub-dropdown>li:not(:last-child) {
    margin-bottom: 20px;
}

.menu-link nav>ul>li ul.sub-dropdown>li>a {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.16px;
    color: #161616;
    position: relative;
    padding-left: 16px;
}

.menu-link nav>ul>li ul.sub-dropdown>li:hover>a,
.menu-link nav>ul>li ul.sub-dropdown>li.active>a {
    color: var(--theme);
}

.menu-link nav>ul>li ul.sub-dropdown>li>a:before {
    position: absolute;
    content: "\f105";
    left: 0;
    top: 0;
    font-family: 'FontAwesome';
    font-weight: bold;
}



.menu-link ul>li>.sub-menu ul.sublink {
    list-style-type: none;
    margin-left: 0;
    background-color: #ffffff;
    padding: 60px 0;
    min-height: 440px;
    width: 330px;
    border-radius: 0 0 0 30px;
}

.menu-link ul>li.areamenu>.sub-menu ul.sublink {
    padding: 35px 0px 60px 0;
    min-height: 470px;
}

.menu-link .areamenu .sub-menu .menu-level2 .font-16 {
    border-bottom: 1px solid var(--primary);
    line-height: 1.1;
    margin-top: 10px;
}

.menu-link .areamenu .sub-menu .menu-level2 .font-16:hover {
    color: var(--theme);
    border-color: var(--theme);
}

.menu-link ul {
    margin: 0;
}

.menu-link ul>li>.sub-menu ul.sublink [class*="heading-"] {
    padding: 0px 30px;
    font-size: 24px;
}

.menu-link ul>li>.sub-menu ul.sublink>li {
    margin-bottom: 0;
    width: 100%;
}

.menu-link ul>li>.sub-menu ul.sublink>li>a {
    color: var(--primary);
    position: relative;
    display: block;
    line-height: 1.1;
    font-weight: 600;
    position: relative;
    padding: 22px 30px;
    font-size: 18px;
}

.menu-link ul>li>.sub-menu ul.sublink>li>a:hover,
.menu-link ul>li>.sub-menu ul.sublink>li.active>a {
    color: var(--theme);
}

ul.sublink-ul {

    li a:hover,
    li.active a {
        color: var(--theme);
    }
}

.menu-link .sub-menu ul.sublink>li:not(:last-child)>a {
    border-bottom: 1px solid #e6e9ee;
}

.menu-link .sub-menu.menu-level2 {
    opacity: 0;
    visibility: hidden;
    top: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    box-shadow: none;
    padding: 0;
    height: 100%;
}

.menu-link .areamenu .sub-menu .menu-level2 {
    left: 0;
    margin-left: 330px;
    width: calc(100% - 330px);
    height: 100%;
    background: #EEF2F9;
    padding: 60px;
    border: 0;
    top: 0;
    border-radius: 0 0 30px 0;
    display: block;
    pointer-events: auto;
}

.menu-link .areamenu .sublink li.menu-item-hover .sub-menu.menu-level2 {
    opacity: 1;
    visibility: visible;
}

/*STICKY HEADER*/
.fixed-header .mainheader {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    animation: 0.7s ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-animation: 0.7s ease-in-out 0s normal none 1 running fadeInDown;
    background-color: var(--white);
    background-color: var(--white);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -10%, 0);
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -10%, 0);
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}



@media (hover: hover) and (pointer: fine) {
    .menu-link ul>li>.sub-menu {
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        top: 80%;
        -webkit-transition: all 0.45s ease 0s;
        -moz-transition: all 0.45s ease 0s;
        -ms-transition: all 0.45s ease 0s;
        -o-transition: all 0.45s ease 0s;
        transition: all 0.45s ease 0s;
        box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
    }

    .menu-link ul>li:hover>.sub-menu {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
        top: 100%;
        display: block;
    }

}



/* RESPONSIVE  MEDIA QUERY */


@media (max-width: 1599.98px) {
    .menu-scroll {
        padding: 0 35px;
    }

    .submenu-wrap {
        width: 700px;

        .submenu-left {
            width: calc(100% - 360px);
            padding: 40px;
        }

        .submenu-right {
            width: 360px;
            padding: 40px;

            .dropdown-ul {
                li a {
                    padding: 20px 0 20px 25px;
                    font-size: 16px;
                    line-height: 1.1;
                }

                li a:before {
                    font-size: 18px;
                }
            }
        }
    }

    .menu-link nav>ul>li.areamenu .sub-menu {
        width: 660px;
    }

    .menu-link ul>li>.sub-menu ul.sublink {
        padding: 40px 0;
        width: 280px;
    }

    .menu-link .areamenu .sub-menu .menu-level2 {
        margin-left: 280px;
        width: calc(100% - 280px);
        padding: 40px;
    }

    .menu-link ul>li>.sub-menu ul.sublink>li>a {
        padding: 20px 30px;
        font-size: 16px;
    }
}

@media (max-width: 1439.98px) {

    .header-wrap {
        .hd-left {
            column-gap: 30px;
        }

        .hdul-right {
            gap: 20px;
        }

        .h-icon {
            width: 44px;
            height: 44px;
        }

        .h-desc {
            width: calc(100% - 44px);

            .hcall-no {
                font-size: 20px;
            }

            & label {
                font-size: 14px;
            }
        }

        .hcall-li .h-desc label {
            font-size: 12px;
        }

        .we-open-box {
            .we-bx-dtl {
                .we-bx-title {
                    font-size: 14px;
                }
            }

            .we-opn {
                width: 12px;
                height: 12px;
                box-shadow: 0px 0px 0px 4px rgba(22 214 22 / 30%);
            }

            .we-bx-dtl {
                width: calc(100% - 12px);
                padding-left: 14px;
            }
        }
    }

    @keyframes glowBlink {

        0%,
        100% {
            box-shadow: 0px 0px 0px 4px rgba(22, 214, 22, 0.3);
        }

        50% {
            box-shadow: 0px 0px 0px 0px rgba(22, 214, 22, 0);
        }
    }
}

@media (max-width: 1199.98px) {
    .togglebtn span {
        position: relative;
        display: inline-block;
        margin-top: 12px;
        vertical-align: top;
        border-radius: 0px;
    }

    .togglebtn span::before,
    .togglebtn span::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .togglebtn span,
    .togglebtn span::before,
    .togglebtn span::after {
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        width: 26px;
        height: 3px;
        background-color: var(--theme);
    }

    .togglebtn span::before {
        top: -8px;
        width: 26px;
    }

    .togglebtn span::after {
        top: 8px;
        width: 26px;
    }

    .togglebtn {
        position: absolute;
        right: 15px;
        top: 26px;
        display: block;
        text-align: center;
        width: 26px;
        height: 24px;
        border: 0;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
        background: transparent;
        cursor: pointer !important;
    }

    .togglebtn.active span::before {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        top: 0;
    }

    .togglebtn.active span::after {
        -webkit-transition-delay: 0.09s;
        top: 0;
        transition-delay: 0.09s;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        width: 24px;
    }

    .togglebtn.active span {
        background-color: transparent;
    }

    .overlay {
        position: fixed;
        top: 76px;
        right: 0;
        z-index: 999;
        width: 100%;
        height: calc(100% - 76px);
        display: none;
        background-color: rgb(0 0 0 / 30%);
        cursor: pointer;
    }

    .menu-link nav {
        padding: 0;
    }

    .menu-link.active {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
    }

    .menu-link {
        float: none;
        padding: 0;
        position: fixed;
        top: 76px;
        height: calc(100% - 76px);
        width: 450px;
        margin: 0;
        transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        overflow-y: auto;
        left: 0;
        z-index: 99999;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        padding: 20px;
        background: var(--primary);
    }

    .menu-link nav {
        flex-direction: column;
    }

    .menu-link nav>ul {
        padding-right: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .menu-link .sub-menu {
        -webkit-transform: none;
        transform: none;
        display: none;
        visibility: unset;
        opacity: unset;
        width: 100%;
        position: relative;
        padding: 0;
        left: auto;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        margin: 0;
        background: transparent;
        min-width: inherit;
        top: auto;
        padding: 0 15px 15px;
        border-top: 0;
        border-radius: 0;
    }

    .menu-link li .sub-menu {
        opacity: unset;
        visibility: unset;
    }

    .menu-link ul>li>.sub-menu {
        opacity: unset;
        top: 0;
        visibility: unset;
        display: none;
        padding: 20px;
        box-shadow: none;
        display: none;
        background: var(--white);
        margin-left: 0;
    }

    .menu-link li:hover .sub-menu {
        display: none;
        -webkit-transform: none;
        transform: none;
        opacity: inherit;
    }

    .menudrop {
        margin: auto 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
        width: 30px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
    }

    .menu-link nav>ul>li>a {
        display: block;
        width: 100%;
        line-height: 1.2;
        padding: 12px 0px;
        color: var(--white);
        font-size: 14px;
        position: relative;
    }

    html.menuhidden {
        overflow-y: hidden;
    }

    .menu-link nav>ul>li {
        padding: 0;
        width: 100%;
        text-align: left;
        position: relative;
    }

    .menu-link nav>ul>li .menudrop {
        color: var(--white);
    }

    .menu-link nav>ul>li.has-sub>a:after {
        display: none;
    }

    .middleheader {
        .menu-scroll-btn {
            display: none;
        }
    }


    .header-wrap {
        .hd-left {
            column-gap: 20px;

            .logo {
                width: 140px;
            }
        }

        .we-open-box {
            padding: 10px 12px;

            .we-opn {
                width: 8px;
                height: 8px;

            }

            .we-bx-dtl {
                width: calc(100% - 8px);
                padding-left: 10px;

                .we-bx-info {
                    font-size: 10px;
                }

                .we-bx-title {
                    font-size: 12px;
                }
            }
        }

        .h-icon {
            width: 36px;
            height: 36px;

            & img {
                width: 20px;
                height: 20px;
            }
        }

        .h-desc {
            width: calc(100% - 36px);
        }

        li {
            .button {
                padding: 16px 20px;
            }
        }
    }

    .hd-right {
        padding-right: 40px;
    }

    .submenu-wrap {
        width: 100%;
        border-radius: 0;

        .submenu-left {
            width: 100%;
            padding: 0;
            display: none;
        }

        .submenu-right {
            width: 100%;
            border-radius: 0;
            padding: 20px;

            .dropdown-ul {
                li a {
                    font-size: 14px;
                    padding: 16px 0 16px 14px;
                }

                li a:before {
                    font-size: 14px;
                }
            }
        }
    }

    .menu-link nav>ul>li.areamenu .sub-menu {
        width: 100%;
    }

    .menu-link ul>li>.sub-menu ul.sublink [class*="heading-"] {
        display: none;
    }

    .menu-link ul>li>.sub-menu ul.sublink {
        padding: 0;
        min-height: auto;
        width: 100%;
        border-radius: 0;
    }

    .menu-link ul>li>.sub-menu ul.sublink>li>a {
        padding: 14px 0px;
        font-size: 15px;
    }

    .menu-link ul>li>.sub-menu ul.sublink>li>a .menudrop {
        color: var(--primary);
    }

    .menu-link .areamenu .sub-menu .menu-level2 {
        background: #EEF2F9;
        padding: 20px;
        margin-left: 0;
        width: 100%;
    }

    ul.sublink-ul {
        li {
            margin-bottom: 10px;
            width: calc(50% - 10px);
        }

        li a {
            font-size: 14px;
        }

        li a:before {
            font-size: 14px;
            line-height: 13px;
        }
    }

    .menu-link nav>ul>li .menu-tagline {
        display: none;
    }

    .menu-link .areamenu .sub-menu .menu-level2 {
        border-radius: 0;
    }

    .menu-link nav>ul.main-menu {
        margin: 0;
        white-space: unset;
    }

    .menu-link nav>ul>li:hover>a,
    .menu-link nav>ul>li.active>a {
        color: var(--theme);
    }

    .menuoverlay:after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .header-wrap {
        .h-raing {
            display: none;
        }

        .h-desc {
            .hcall-no {
                font-size: 18px;
            }
        }

        .hdul-right {
            gap: 15px;
        }

        & li {
            .button {
                padding: 14px 16px;
                font-size: 14px;
            }
        }
    }
}

@media (max-width: 767.98px) {
    .hd-right {
        padding-right: 0;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        background-color: #e4e8f0;
        padding: 0;
        width: 100%;
    }

    .mainheader {
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
        -moz-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
        -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
    }

    .header-wrap {
        & li {
            width: 50%;

            .button {
                width: 100%;
                border-radius: 0;
                display: flex;
                flex-wrap: wrap;
            }
        }

        .hdul-right {
            gap: 0px;
        }

        .h-wrap {
            justify-content: center;
            padding: 10px;
        }

        .h-desc {
            width: auto;
            padding-left: 0;

            .hcall-no {
                font-size: 16px;
            }
        }

        .h-icon {
            display: none;

            & img {
                width: 14px;
                height: 14px;
            }
        }

        .hcall-li .h-desc label {
            font-size: 10px;
        }

        .hd-left {
            width: 100%;
            padding-right: 36px;

            .we-open-wrap {
                margin-left: auto;
            }
        }
    }

    .header-wrap {
        & li {
            .button {
                height: 50px;
            }
        }

        .h-wrap {
            height: 50px;
        }
    }

}

@media (max-width: 575.98px) {

    .header-wrap {
        .hd-left {
            column-gap: 10px;
            padding-right: 32px;
            width: 100%;

            .logo {
                width: 110px;
            }
        }

        .we-open-box {
            padding: 7px;
            border: 1px solid #16D616;
            border-radius: 10x;

            .we-opn {
                width: 6px;
                height: 6px;
                box-shadow: 0px 0px 0px 3px rgba(22 214 22 / 30%);
            }

            .we-bx-dtl {
                width: calc(100% - 6px);
                padding-left: 6px;

                .we-bx-title {
                    font-size: 12px;
                }

                .we-bx-info {
                    font-size: 8px;
                }
            }
        }
    }

    .togglebtn {
        top: 18px;
    }

    .menu-link,
    .overlay {
        top: 64px;
        height: calc(100% - 64px);
    }

    .menu-link {
        width: 100%;
    }
}

@media (max-width: 375.98px) {
    ul.sublink-ul {
        li {
            margin-bottom: 10px;
            width: 100%;
        }
    }
}