.headerWrap {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 8px 0px;
    transition: all 0.5s;

    .headerInner {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .headerLeft {
            .headerLogo {
                width: 160px;
                height: 90px;
                transition: all 0.5s;

                a {
                    display: block;
                    width: 100%;
                    height: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }
        }

        .headerRight {
            width: calc(100% - 180px);
            padding-left: 35px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 30px;

            .headerMenu {
                display: flex;
                justify-content: space-between;
                align-items: center;

                li {
                    position: relative;

                    a {
                        display: block;
                        padding: 6px 15px;
                        font-size: 16px;
                        color: #fff;
                        transition: all 0.5s;
                        position: relative;

                        &::after {
                            content: '';
                            position: absolute;
                            width: 0;
                            height: 1px;
                            background-color: #D9D9D9;
                            bottom: 0;
                            left: 50%;
                            transform: translateX(-50%);
                            transition: all 0.5s;
                        }
                    }

                    &:hover,
                    &.active {
                        >a {
                            &::after {
                                width: 50px;
                            }
                        }
                    }

                    .sub-menu {
                        width: 230px;
                        position: absolute;
                        top: 100%;
                        left: 0;
                        /* background-color: #fff; */
                        background: #faf6f2;
                        box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.18);
                        border-radius: 12px;
                        opacity: 0;
                        visibility: hidden;
                        transform: translateY(10px);
                        overflow: hidden;
                        transition: all 0.5s;
                        z-index: 9;

                        &::after {
                            content: normal;
                            position: absolute;
                            top: 0;
                            left: 0;
                            background-image: url(../images/common/chilli-bg.png);
                            background-repeat: no-repeat;
                            background-size: contain;
                            background-position: center center;
                            width: 100%;
                            height: 100%;
                            opacity: 0.18;
                            z-index: -1;
                        }

                        li {
                            position: relative;
                            overflow: hidden;

                            &::after {
                                content: '';
                                position: absolute;
                                width: 0;
                                height: 100%;
                                background: #f5d8a7;
                                left: 0;
                                top: 0;
                                z-index: 1;
                                transition: all 0.5s;
                            }

                            &:not(:last-child) {
                                border-bottom: 1px solid #88401B;
                            }

                            a {
                                display: block;
                                width: 100%;
                                height: 100%;
                                padding: 12px 10px 12px 26px;
                                color: #000;
                                position: relative;
                                overflow: hidden;
                                z-index: 2;
                                font-weight: 500;
                                transition: all 0.5s;

                                &::after {
                                    content: '';
                                    position: absolute;
                                    width: 8px;
                                    height: 8px;
                                    background-color: #88401B;
                                    left: 10px;
                                    top: 18px;
                                    transform: rotate(45deg);
                                }
                            }

                            &:hover {
                                &::after {
                                    width: 100%;
                                }
                            }
                        }
                    }

                    &.hasMenu {
                        >a {
                            &::before {
                                content: '\f107';
                                position: absolute;
                                font-family: fontawesome;
                                right: 0;
                                top: 8px;
                                color: #fff;
                                font-size: 14px;
                                transition: all 0.5s;
                            }
                        }
                    }

                    &.hasMegaMenu {
                        position: relative;

                        .megaMenu {
                            position: absolute;
                            top: calc(100% + 1px);
                            left: 0;
                            width: 650px;
                            min-height: 240px;
                            background: #faf6f2;
                            border-radius: 12px;
                            box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.18);
                            display: flex;
                            opacity: 0;
                            visibility: hidden;
                            transform: translateY(10px);
                            border-top: 5px solid #88401B;
                            transition: all 0.5s;
                            z-index: 99;
                            overflow: hidden;

                            .megaMenuLeft {
                                width: calc(100% - 220px);
                                padding: 20px 15px;
                                position: relative;
                                z-index: 2;
                                border-right: 2px solid #b99a70;

                                &::after {
                                    content: normal;
                                    position: absolute;
                                    top: 50%;
                                    left: 50%;
                                    transform: translate(-50%, -50%);
                                    background-repeat: no-repeat;
                                    background-size: contain;
                                    background-position: center center;
                                    width: 220px;
                                    height: 220px;
                                    opacity: 0.2;
                                    z-index: -2;
                                }

                                .megaPanel {

                                    ul {
                                        list-style: none;
                                        display: grid;
                                        grid-template-columns: 1fr 1fr;
                                        column-gap: 12px;
                                        row-gap: 5px;

                                        li {
                                            border-radius: 8px;
                                            transition: all 0.5s;
                                            position: relative;
                                            overflow: hidden;

                                            &::before {
                                                content: '';
                                                position: absolute;
                                                width: 0;
                                                height: 100%;
                                                background: #f5d8a7;
                                                left: 0;
                                                top: 0;
                                                z-index: -1;
                                                transition: all 0.5s;
                                            }

                                            a {
                                                display: flex;
                                                align-items: center;
                                                gap: 8px;
                                                padding: 9px 10px 9px 28px;
                                                font-size: 15px;
                                                color: #000;
                                                position: relative;

                                                &::after {
                                                    content: normal;
                                                }

                                                &::before {
                                                    content: '';
                                                    position: absolute;
                                                    width: 8px;
                                                    height: 8px;
                                                    top: 45%;
                                                    left: 8px;
                                                    flex-shrink: 0;
                                                    background: #88401B;
                                                    border-radius: 1px;
                                                    transform: rotate(45deg) translateY(-50%);
                                                    transition: all 0.5s;
                                                }

                                            }

                                            &:hover,
                                            &.current {
                                                &::before {
                                                    width: 100%;
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            .megaMenuRight {
                                .megaMenuImg {
                                    display: none;
                                    width: 220px;
                                    height: 200px;
                                    padding: 10px;
                                    opacity: 0;
                                    visibility: hidden;
                                    transition: all 0.5s;

                                    img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                        border-radius: 20px;
                                    }
                                }
                            }
                        }

                        &.frozen-foodMenu {
                            .megaMenu {
                                .megaMenuLeft {
                                    &::after {
                                        background-image: url(../images/common/paneer-bg.png);
                                    }
                                }
                            }
                        }

                        &.spicesMenu {
                            .megaMenu {
                                .megaMenuLeft {
                                    &::after {
                                        background-image: url(../images/common/chilli-bg.png);
                                    }
                                }
                            }
                        }

                        &:hover {
                            >.megaMenu {
                                opacity: 1;
                                visibility: visible;
                                transform: translateY(0);

                                .megaMenuRight {
                                    .megaMenuImg {
                                        &.current {
                                            display: block;
                                            opacity: 1;
                                            visibility: visible;
                                        }
                                    }
                                }
                            }
                        }
                    }

                    &:hover {
                        .sub-menu {
                            opacity: 1;
                            visibility: visible;
                            transform: translateY(0);
                        }

                        >a {
                            &::before {
                                transform: rotate(180deg);
                            }
                        }
                    }
                }
            }

            .headerSer {
                width: 350px;

                form {
                    width: 100%;
                }

                .inpBox {
                    position: relative;
                    background-color: transparent;
                    outline: 0;
                    width: 100%;
                    height: 46px;
                    border-radius: 85px;
                    border: 1px solid rgba(255, 255, 255, 0.65);
                    /* padding: 6px 20px; */
                    overflow: hidden;

                    input {
                        border: none;
                        outline: 0;
                        background-color: transparent;
                        color: #fff;
                        width: 100%;
                        height: 100%;
                        font-size: 16px;
                        font-weight: 500;

                        &::placeholder {
                            color: #fff;
                        }
                    }

                    &::after {
                        content: '\f002';
                        position: absolute;
                        font-family: fontawesome;
                        right: 16px;
                        top: 50%;
                        transform: translateY(-50%);
                        color: #fff;
                        font-size: 24px;
                        transition: all 0.5s;
                    }

                    input[type="search"] {
                        padding-right: 25px;
                    }

                    input[type="submit"] {
                        position: absolute;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        font-size: 0 !important;
                        background-color: transparent !important;
                        border: none !important;
                        outline: 0;
                        padding: 0;
                        width: 60px !important;
                        height: 100%;
                        z-index: 2;
                    }
                }
            }

            .headerRtOptions {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .headerIconDiv {
                .headerIconDivInn {
                    display: flex;
                    align-items: center;
                    gap: 12px;

                    .headerIconLi {
                        width: 42px;
                        min-width: 42px;
                        height: 42px;
                        border-radius: 50%;
                        border: 1px solid rgba(255, 255, 255, 0.65);
                        transition: all 0.5s;

                        a {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;
                            padding: 8px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }

                        &:hover {
                            background-color: #C19A63;
                        }
                    }
                }
            }

            .headerResDiv {
                display: none;
                gap: 10px;

                .headerResDivInn {
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    padding: 5px;
                    border: 1px solid #fff;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    i {
                        color: #fff;
                    }
                }
            }

        }
    }

    .search-popup {
        position: fixed;
        inset: 0;
        display: none;
        justify-content: center;
        align-items: center;
        background-color: #0000008c;
        backdrop-filter: blur(12px);
        z-index: 999;

        &.active {
            display: block;
        }

        .search-popup-box {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 30px 20px;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            min-height: 150px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);

            .headerSerDivRes {
                background: #C19A63;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                border-radius: 12px;
                width: calc(100% - 30px);

                form {
                    width: 100%;

                    .inpBox {
                        position: relative;
                        background-color: transparent;
                        outline: 0;
                        width: 100%;
                        height: 50px;
                        padding: 6px 20px;

                        input {
                            border: none;
                            outline: 0;
                            background-color: transparent;
                            color: #fff;
                            width: 100%;
                            height: 100%;
                            font-size: 16px;
                            font-weight: 500;

                            &::placeholder {
                                color: #fff;
                            }
                        }

                        &::after {
                            content: '\f002';
                            position: absolute;
                            font-family: fontawesome;
                            right: 16px;
                            top: 50%;
                            transform: translateY(-50%);
                            color: #fff;
                            font-size: 18px;
                            transition: all 0.5s;
                        }

                        input[type="search"] {
                            padding-right: 25px;
                        }

                        input[type="submit"] {
                            position: absolute;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            font-size: 0 !important;
                            background-color: transparent !important;
                            border: none !important;
                            outline: 0;
                            padding: 0;
                            width: 60px !important;
                            height: 100%;
                            z-index: 2;
                        }
                    }
                }
            }

            .close-search {
                position: absolute;
                top: 10px;
                right: 10px;
                background: none;
                border: none;
                cursor: pointer;
                color: #000;

                i {
                    font-size: 20px;
                }
            }
        }

    }


    &.is-sticky {
        background: linear-gradient(90deg, #F1C444 0%, #88401B 79.73%);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);

        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 100px;
                    height: 50px;
                }
            }

            .headerRight {
                padding-top: 0;

                .headerSer {
                    .inpBox {
                        input {
                            font-size: 14px;
                        }

                        &::after {
                            font-size: 18px;
                        }
                    }
                }

                .headerMenu {
                    li {
                        a {
                            font-size: 14px;
                            padding: 6px 14px;
                        }

                        &.hasMenu {
                            >a {
                                &::before {
                                    font-size: 12px;
                                }
                            }
                        }

                        .sub-menu {
                            li {
                                a {
                                    &::after {
                                        top: 16px;
                                    }
                                }
                            }
                        }
                    }
                }

                .headerIconDiv {
                    .headerIconLi {
                        width: 36px;
                        min-width: 36px;
                        height: 36px;
                    }
                }
            }
        }
    }
}

div.asl_w,
div.asl_w .probox .promagnifier,
#ajaxsearchlite1 .probox,
div.asl_w .probox {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
}

div.asl_w .probox .promagnifier .innericon svg {
    display: none !important;
}

.asl_w_container {
    height: 100% !important;
}

div[id*='ajaxsearchlite'].asl_m {
    height: 100% !important;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    height: 100% !important;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    height: 100% !important;
}

div.asl_w .probox .promagnifier {
    width: 46px !important;
    height: 100% !important;
}

div.asl_r.vertical {
    background: #fff !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
}

div.asl_w .probox .proloading,
div.asl_w .probox .proclose {
    position: relative;
    top: 6px !important;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    font-size: 14px !important;
}

.stickyH #ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    font-size: 13px !important;
}

div.asl_w .probox .proinput input.autocomplete {
    display: none !important;
}


.innerPage {
    .headerWrap {
        position: static;
        background: linear-gradient(90deg, #F1C444 0%, #88401B 79.73%);

        &.is-sticky {
            position: fixed;
        }

        .container-max {
            padding: 0px 40px;
        }
    }
}

/* bottom menu */
.mobBottomMenu {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%);
    z-index: 200;
    background: #f1c444;
    padding: 10px 15px;
    display: none;
    backdrop-filter: blur(5px);
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #0a0a0a52;
    border-bottom: 0;

    ul {
        display: flex;
        justify-content: space-between;
        align-items: center;

        li {
            width: 20%;
            flex: 0 0 20%;
            text-align: center;

            a {
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: center;

                span {
                    color: #000;

                    &.mobIcon {
                        font-size: 16px;
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}

.overflowPage {

    &.active {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: block;
        background-color: #0000008c;
        z-index: 250;
        backdrop-filter: blur(12px);

    }
}

/* sidebar menu */
.sideMenuWrap {
    width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    transform: translateX(110%);
    transition: 0.5s;

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 400px;
        width: 400px;
        background-image: url(../images/home/product-right-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.2;
        z-index: -1;
    }

    .sideMenuTop {
        padding: 15px;
        display: flex;
        align-items: center;
        position: relative;
        justify-content: space-between;

        &::after {
            width: 0;
            height: 1px;
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            background: #0000007c;
            transition: 1s;
        }

        .sideLogo {
            width: 86px;
            height: auto;

            a {
                display: block;
                width: 100%;
                height: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }

        .closeIcon {
            cursor: pointer;
            color: #88401B;
            font-size: 18px;
        }
    }

    .sideMenu {
        padding: 25px;

        ul {
            li {
                width: 100%;
                display: block;
                position: relative;

                &:not(:last-child) {
                    &::after {
                        width: 0;
                        height: 1px;
                        position: absolute;
                        content: "";
                        left: 0;
                        bottom: 0;
                        background: #0000007c;
                        transition: 2s;
                    }
                }

                &:last-child {
                    a {
                        padding-bottom: 0;
                    }

                }

                a {
                    color: #000;
                    font-weight: 500;
                    display: block;
                    width: calc(100% - 30px);
                    padding: 15px 0;
                    font-size: 16px;
                }

                &.mobDrop {
                    position: relative;

                    .toggleBtn2 {
                        position: absolute;
                        right: 0;
                        top: 15px;
                        cursor: pointer;
                        color: #88401B;
                        font-size: 14px;
                        transition: 0.5s;
                    }

                    ul {
                        display: none;
                        background: #88401B;
                        padding: 10px 15px;

                        li {
                            a {
                                color: #fff;
                                padding: 10px 0px !important;
                            }

                            &:not(:last-child) {
                                &::after {
                                    background: #ffffff7c;
                                }
                            }

                            &.mobDrop {

                                ul {
                                    background: #fdf8f3;

                                    li {
                                        &:not(:last-child) {
                                            &::after {
                                                background: #883f1bb9;
                                            }
                                        }

                                        a {
                                            color: #88401B;
                                        }
                                    }
                                }

                                .toggleBtn2 {
                                    top: 10px;
                                    color: #fff;
                                }
                            }
                        }

                        li:first-child {
                            a {
                                padding-top: 0px;
                            }
                        }
                    }

                    &.open {
                        &::after {
                            background-color: transparent;
                        }

                        >.toggleBtn2 {
                            transform: rotate(180deg);
                        }
                    }
                }
            }
        }
    }

    .sideMenuMiddle {
        display: flex;
        height: 100vh;

        .sideSocial {
            width: 50px;
            height: 100%;

            .socialWrap {
                writing-mode: vertical-rl;
                width: 100%;
                height: 100%;
                align-items: center;
                justify-content: center;
                display: flex;
                gap: 30px;
                background-color: #88401B;

                h5 {
                    color: #88401B;
                    text-transform: uppercase;
                    font-family: "Work Sans";
                    font-size: 16px;
                }

                .socialIcon {
                    display: flex;
                    flex-direction: row;
                    gap: 20px;
                    height: 100%;
                    padding-top: 80px;

                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        transition: 0.5s;

                        img {
                            width: 25px;
                            height: auto;
                            object-fit: contain;
                        }
                    }
                }
            }
        }

        .sideMenu {
            width: calc(100% - 50px);
            height: calc(100% - 100px);
            overflow-y: auto;
            position: relative;

            &::before {
                width: 1px;
                height: 0;
                position: absolute;
                left: 0;
                top: 0;
                content: "";
                background-color: #ffffff4a;
                transition: 2s;
            }
        }
    }
}

.sideNav {
    height: 100vh;
    overflow: hidden;

    .sideMenuWrap {
        transform: translateX(0);

        .sideMenuTop {
            &::after {
                width: 100%;
            }
        }

        .sideMenuMiddle {
            .sideMenu {
                &::before {
                    height: 100%;
                }
            }
        }

        .sideMenu {
            ul {
                li {
                    &:not(:last-child) {
                        &::after {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}

.overflowPage {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;

    &.sideOverlay {
        position: fixed;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        z-index: 210;
        background-color: #ffffff63;
    }
}

/* Responsive */
@media (max-width: 1738px) {
    .headerWrap {
        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 130px;
                    height: 90px;
                }
            }

            .headerRight {
                width: calc(100% - 140px);

                .headerSer {
                    width: 300px;
                }
            }
        }
    }
}

@media (max-width: 1680px) {
    .headerWrap {
        .headerInner {
            .headerRight {
                .headerSer {
                    width: 270px;
                }
            }
        }
    }
}


@media (max-width: 1600px) {
    .headerWrap {
        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 100px;
                    height: 70px;
                }
            }

            .headerRight {
                width: calc(100% - 110px);
                padding-left: 20px;
                gap: 18px;

                .headerSer {
                    width: 270px;

                    .inpBox {
                        input {
                            font-size: 15px;
                        }

                        &::after {
                            font-size: 18px;
                        }
                    }
                }

                .headerMenu {
                    li {
                        a {
                            padding: 6px 14px;
                            font-size: 15px;
                        }

                        &.hasMenu {
                            &>a {
                                &::before {
                                    top: 6px;
                                    font-size: 13px;
                                }
                            }
                        }

                        .sub-menu {
                            li {
                                a {
                                    padding: 10px 10px 10px 26px;
                                }
                            }
                        }
                    }
                }

                .headerIconDiv {
                    .headerIconDivInn {
                        gap: 10px;

                        .headerIconLi {
                            width: 36px;
                            min-width: 36px;
                            height: 36px;

                            a {
                                padding: 8px;
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerRight {
                    .headerMenu {
                        li {
                            .sub-menu {
                                li {
                                    a {
                                        &::after {
                                            top: 18px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .container-max {
        padding: 0 30px !important;
    }

    .headerWrap {
        .headerInner {
            .headerRight {
                .headerMenu {
                    li {
                        &.hasMegaMenu {
                            .megaMenu {
                                .megaMenuLeft {
                                    .megaTab {
                                        a {
                                            font-size: 14px;
                                        }
                                    }
                                }

                                .megaMenuRight {
                                    .megaPanel {
                                        .megaPanel-title {
                                            font-size: 13px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .headerSer {
                    width: 250px;

                    &::after {
                        font-size: 20px;
                    }

                    div.asl_w .probox .proloading,
                    div.asl_w .probox .proclose,
                    div.asl_w .probox .promagnifier,
                    div.asl_w .probox .prosettings {
                        width: 25px;
                        height: 25px;
                        margin-top: 2px;
                    }
                }
            }
        }

        &.is-sticky {
            padding: 6px 0px;

            .headerInner {
                .headerLeft {
                    .headerLogo {
                        width: 70px;
                        height: 40px;
                    }
                }

                .headerRight {
                    .headerSer {
                        .inpBox {
                            height: 40px;

                            input {
                                padding: 0;
                            }
                        }

                        div.asl_w .probox .proloading,
                        div.asl_w .probox .proclose,
                        div.asl_w .probox .promagnifier,
                        div.asl_w .probox .prosettings {
                            margin-top: 0;
                        }
                    }

                    .headerIconDiv {
                        .headerIconDivInn {
                            .headerIconLi {
                                width: 26px;
                                min-width: 26px;
                                height: 26px;

                                a {
                                    padding: 5px;
                                }
                            }
                        }
                    }
                }
            }
        }

    }

    .results .asl_nores .asl_keyword {
        font-size: 14px;
    }

    #ajaxsearchlite1 .probox .proinput input,
    div.asl_w .probox .proinput input {
        font-size: 14px !important;
    }
}

@media (max-width: 1366px) {
    .headerWrap {
        .headerInner {
            .headerRight {
                .headerMenu {
                    li {
                        .sub-menu {
                            li {
                                a {
                                    font-size: 14px;
                                    padding: 8px 10px 8px 24px;

                                    &::after {
                                        width: 6px;
                                        height: 6px;
                                        top: 16px !important;
                                    }
                                }
                            }
                        }

                        &.hasMegaMenu {
                            .megaMenu {
                                width: 600px;
                                min-height: 200px;

                                .megaMenuLeft {
                                    padding: 16px 15px;
                                    width: calc(100% - 190px);

                                    &::after {
                                        width: 170px;
                                        height: 190px;
                                    }

                                    .megaPanel {
                                        ul {
                                            li {
                                                a {
                                                    padding: 7px 10px 7px 20px;
                                                    font-size: 14px;

                                                    &::before {
                                                        width: 6px;
                                                        height: 6px;
                                                        left: 6px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }

                                .megaMenuRight {
                                    .megaMenuImg {
                                        width: 190px;
                                        height: 170px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1365px) {
    .headerWrap {
        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 95px;
                    height: 70px;
                }
            }

            .headerRight {
                width: calc(100% - 90px);

                .headerSer {
                    .inpBox {
                        input {
                            font-size: 14px;
                        }

                        &::after {
                            font-size: 16px;
                        }
                    }
                }

                .headerMenu {
                    li {
                        a {
                            font-size: 14px;
                        }

                        &.hasMegaMenu {
                            .megaMenu {
                                .megaMenuLeft {
                                    .megaPanel {
                                        ul {
                                            li {
                                                a {
                                                    font-size: 14px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1300px) {
    .headerWrap {
        .headerInner {
            .headerRight {
                .headerSer {
                    width: 230px;
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .headerWrap {
        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 85px;
                    height: 65px;
                }
            }

            .headerRight {
                gap: 12px;
                padding-left: 12px;

                .headerSer {
                    width: 200px;

                    .inpBox {
                        height: 40px;
                    }

                    div.asl_w .probox .proloading,
                    div.asl_w .probox .proclose,
                    div.asl_w .probox .promagnifier,
                    div.asl_w .probox .prosettings {
                        margin-top: 0;
                    }
                }

                .headerMenu {
                    li {
                        a {
                            padding: 6px 12px;
                        }

                        &.hasMenu {
                            &>a {
                                &::before {
                                    font-size: 12px;
                                    top: 6px;
                                }
                            }
                        }
                    }
                }

                .headerIconDiv {
                    .headerIconDivInn {
                        gap: 8px;
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerRight {
                    .headerMenu {
                        li {
                            a {
                                padding: 6px 12px;
                            }
                        }
                    }

                    .headerSer {
                        .inpBox {
                            height: 35px;
                        }

                        div.asl_w .probox .proloading,
                        div.asl_w .probox .proclose,
                        div.asl_w .probox .promagnifier,
                        div.asl_w .probox .prosettings {
                            margin-top: -2px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .headerWrap {
        .container-max {
            padding: 0px 25px !important;
        }

        .headerInner {
            .headerRight {
                .headerMenu {
                    li {
                        a {
                            padding: 6px 10px;
                        }

                        &.hasMenu {
                            a {
                                padding-right: 12px;
                            }
                        }
                    }
                }

                .headerSer {
                    width: 190px;
                }

                .headerIconDiv {
                    .headerIconDivInn {
                        .headerIconLi {
                            width: 32px;
                            min-width: 32px;
                            height: 32px;

                            a {
                                padding: 6px;
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerRight {
                    .headerMenu {
                        li {
                            a {
                                padding: 6px 10px;
                            }

                            &.hasMenu {
                                a {
                                    padding-right: 12px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1140px) {

    .headerWrap {
        .headerInner {
            align-items: center;

            .headerRight {
                justify-content: flex-end;

                .headerSer {
                    display: none;
                }

                .headerMenu {
                    display: none;
                }

                .headerIconDiv {
                    display: none;
                }

                .headerResDiv {
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;

                    .headerResSer {
                        position: relative;

                        &::after {
                            content: '\f00d';
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            font-family: fontawesome;
                            color: #fff;
                            font-size: 16px;
                            opacity: 0;
                            transition: all 0.5s;
                        }

                        i {
                            transition: all 0.5s;
                        }

                        &.active {
                            &::after {
                                opacity: 1;
                            }

                            i {
                                opacity: 0;
                            }

                        }
                    }
                }
            }
        }

        .search-popup {
            .search-popup-box {
                .headerSerDivRes {
                    form {
                        height: 50px !important;
                        padding: 0px 15px !important;
                    }
                }
            }
        }
    }

    div[id*='ajaxsearchlite'].asl_r .results {
        height: 270px !important;
    }

    div.asl_w .probox .promagnifier {
        height: 50px !important;
        width: 35px !important;
    }

    div.asl_w .probox .promagnifier .innericon svg {
        display: block !important;
        width: 25px !important;
    }

    div.asl_m .probox .proinput {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    div.asl_m .probox .proloading {
        width: 28px !important;
        height: 28px !important;
        padding-top: 4px !important;
    }
}

@media (max-width: 1024px) {
    .headerWrap {
        .container-max {
            padding: 0px 15px !important;
        }
    }
}

@media (max-width: 575px) {
    .headerWrap {
        .headerInner {
            .headerLeft {
                width: 100%;

                .headerLogo {
                    width: 100px;
                    height: auto;
                    margin: 0px auto;
                    margin-bottom: 0;
                }
            }

            .headerRight {
                display: none;
            }
        }

        &.is-sticky {
            .headerInner {
                .headerLeft {
                    .headerLogo {
                        width: 90px;
                        height: 50px;
                    }
                }
            }
        }

    }

    .mobBottomMenu {
        display: block;

        ul {
            li {
                a {
                    &.getInTouchBtn {
                        position: static;
                        background: transparent;
                        border: none;
                        transform: none;
                        box-shadow: none;
                        padding: 0;
                        font-size: inherit;
                        font-weight: 400;
                        border-radius: 0;
                    }
                }
            }
        }
    }
}

@media (max-width: 480px) {
    .sideMenuWrap {
        width: 100%;

        .sideMenuTop {
            .sideLogo {
                width: 100px;
            }
        }

        .sideMenu {
            padding: 16px;

            ul {
                li {
                    a {
                        padding: 14px 0;
                        font-size: 15px;
                    }
                }
            }
        }
    }
}

/*==== min width ====*/
@media(min-width: 1921px) {

    .headerWrap {
        .headerInner {
            .headerLeft {
                .headerLogo {
                    width: 200px;
                    height: 90px;
                }
            }

            .headerRight {
                .headerMenu {
                    li {
                        a {
                            font-size: clamp(16px, 0.9vw, 20px);
                        }
                    }
                }

                .headerIconDiv {
                    .headerIconDivInn {
                        .headerIconLi {
                            width: 52px;
                            min-width: 52px;
                            height: 52px;
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerLeft {
                    .headerLogo {
                        width: 120px;
                        height: 90px;
                    }
                }

                .headerRight {
                    .headerMenu {
                        li {
                            a {
                                font-size: clamp(14px, 0.9vw, 18px);
                            }
                        }
                    }

                    .headerIconDiv {
                        .headerIconDivInn {
                            .headerIconLi {
                                width: 48px;
                                min-width: 48px;
                                height: 48px;
                            }
                        }
                    }
                }
            }
        }
    }

    #ajaxsearchlite1 .probox .proinput input,
    div.asl_w .probox .proinput input {
        font-size: 16px !important;
    }
}