/* header */
div.asl_w .probox .proinput input.autocomplete{
    display: none !important;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transition: all 0.5s;

    .headerInner {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 50px 0px;
        gap: 60px;
        transition: all 0.5s;

        .headerLeft {
            width: calc((100% - 180px)/2);

        }

        .headerMenu {
            display: flex;
            border-radius: 55px;
            border: 1px solid rgba(255, 255, 255, 0.43);
            background: rgba(217, 217, 217, 0.25);
            backdrop-filter: blur(12.5px);
            padding: 0px 30px;
            gap: 30px;
            width: max-content;

            &>li {
                position: relative;

                &:not(:last-child) {
                    margin-right: 30px;
                }

                a {
                    display: block;
                    color: #FFF;
                    text-align: center;
                    font-size: 16px;
                    font-weight: 400;
                    padding: 15px 0px;
                    transition: all 0.5s;
                    position: relative;

                    &::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: 10px;
                        width: 0;
                        height: 1px;
                        background-color: #fff;
                        transition: all 0.5s;
                    }
                }

                &>ul {
                    left: 0;
                    top: 55px;
                    opacity: 0;
                    width: 350px;
                    transition: 0.6s;
                    visibility: hidden;
                    position: absolute;
                    border-radius: 10px;
                    transform: translateY(20px);
                    background-color: #ffffff;

                    li {
                        transition: 0.6s;
                        padding: 8px 20px;
                        border-radius: 5px;
                        margin-right: 0 !important;

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

                        a {
                            padding: 5px 0;
                            display: block;
                            text-align: left;
                            transition: 0.6s;
                            color: #000000;
                        }
                    }
                }

                &.active {
                    >a {
                        &::after {
                            width: 60%;
                        }
                    }
                }

                &:hover {
                    &>a {
                        &::after {
                            width: 60%;
                        }
                    }

                    &>ul {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0px);
                        box-shadow: 0px 0px 7px 2px #00000045;

                        &>li {
                            &:hover {
                                background-color: #008FFF;

                                a {
                                    color: #FFFFFF;
                                }
                            }
                        }
                    }
                }

                &:last-child {
                    &>ul {
                        right: -11px;
                        left: auto;
                    }
                }
            }
        }

        .headerMid {
            padding: 0 15px 5px;
            background: #fff;
            position: relative;
            /* transition: all 0.5s; */
            border-radius: 0px 0px 25px 25px;

            &:before,
            &:after {
                top: -3px;
                content: '';
                /* width: 54px; */
                /* height: 68px; */
                width: 60px;
                height: 78px;
                position: absolute;
                background-size: contain;
                background-position: 0 0;
                background-repeat: no-repeat;
            }

            &:before {
                left: -38px;
                background-image: url(../images/common/logo-before.png);
            }

            &:after {
                right: -38px;
                background-image: url(../images/common/logo-after.png);
            }


            .logoImg {
                width: 180px;
                height: 70px;    
                /* transition: all 0.5s; */

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

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

        }

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

            .headerRtInn {
                display: flex;
                align-items: center;

                .headerOptions {
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    border: 1px solid #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin: 0px 12px;
                    position: relative;
                    transition: all 0.5s;

                    &:last-child {
                        margin-right: 0;
                    }

                    &:not(:last-child) {
                        &::after {
                            content: '';
                            position: absolute;
                            right: -12px;
                            width: 1px;
                            height: 20px;
                            top: 50%;
                            transform: translateY(-50%);
                            background-color: #fff;
                        }
                    }

                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        padding: 4px;

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

                    &:hover {
                        border-color: transparent;
                        background-color: #008FFF;
                    }
                }
            }
        }
    }

    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        animation: slideDown 0.35s ease-out;
        z-index: 20;
        /* background-color: rgb(72 72 72 / 90%); */
        background-color: #008fff;
        backdrop-filter: blur(10px);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);

        .headerInner {
            padding: 0px 20px 0px;

            .headerMid {
                padding: 5px 10px 5px;

                .logoImg {
                    width: 130px;
                    height: 40px;
                }

                &:before,
                &:after {
                    top: -1px;
                    width: 50px;
                    height: 49px;
                }

                &:before {
                    left: -21px;
                }

                &:after {
                    right: -31px;
                }
            }

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

            .headerRight {
                .headerRtInn {
                    .headerOptions {
                        width: 30px;
                        height: 30px;
                    }
                }
            }
        }
    }

    @keyframes slideDown {
        0% {
            transform: translateY(-100%);
        }

        100% {
            transform: translateY(0);
        }
    }
}

.is-sticky-main{
    margin-top: 55px;
}

.navlist {
    & > li {
        display: flex;
        align-items: center;

        .toggleBtn {
            z-index: 1;
            width: 20px;
            height: 20px;
            display: flex;
            font-size: 12px;
            transition: 0.6s;
            color: #ffffff;
            position: relative;
            align-items: center;
            justify-content: center;
        }

        &.has_sub_menu {
            &:hover {
                .toggleBtn {
                    transform: rotate(180deg);
                }
            }
        }
    }
}

.nav {

    /* 1st DD Menu */
    ul {
        li {
            display: flex;
            position: relative;
            align-items: center;
            justify-content: space-between;

            /* &:before {
                left: 0;
                right: 0;
                height: 0;
                top: -45px;
                width: 100%;
                content: "";
                transition: 0.3s;
                position: absolute;
                background-color: #008fff;
                border-radius: 0 0 10px 10px;
            } */

            &:not(:last-child) {
                margin-right: 20px;
                margin-bottom: 0;
            }

            &:hover {
                ul {
                    opacity: 1;
                    transform: translateY(0%);

                    li {
                        a {
                            color: #008fff;
                        }

                        &:hover {
                            a {
                                color: #000;
                            }

                            &:before {
                                top: 0;
                            }
                        }

                        &.active {
                            a {
                                color: #000;
                            }

                            &:before {
                                top: 0;
                            }
                        }
                    }
                }
            }

            /* &.active {
                &:before {
                    height: 92px;
                }

                a {
                    color: #fff;
                }
            } */

            &.has_sub_menu {

                /* 2nd DD Menu */
                ul {
                    left: 0;
                    opacity: 0;
                    visibility: hidden;
                    width: 250px;
                    display: block;
                    overflow: hidden;
                    transition: 0.6s;
                    /* padding-top: 15px; */
                    position: absolute;
                    border-radius: 5px;
                    top: calc(100% + 1px);
                    transform: translateY(30%);

                    li {
                        /* height: 50px;
                        width: 100%;
                        display: flex;
                        padding-left: 0;
                        padding-right: 0;
                        text-align: left;
                        overflow: hidden;
                        border-radius: 8px;
                        align-items: center;
                        background-color: #ffffff;
                        border: 1px solid #008fff; */

                        &:before {
                            top: -67px;
                            height: 70px;
                            transition: 0.8s;
                            content: normal;
                        }

                        a {
                            width: 100%;
                            display: block;
                            font-size: 14px;
                            /* color: #008fff; */
                        }

                        &:not(:last-child) {
                            margin-right: 0;
                            margin-bottom: 2px;
                        }
                    }
                }

                &:hover {
                    a {
                        /* color: #000; */
                        color: #fff;
                    }

                    ul {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0%);

                        li {
                            a {
                                /* color: #008fff; */
                            }

                            &:hover {
                                a {
                                    /* color: #000 !important; */
                                    color: #ffffff !important;
                                }

                                &:before {
                                    top: 0;
                                }
                            }

                            &.active {
                                a {
                                    color: #000 !important;
                                }

                                &:before {
                                    top: 0;
                                }
                            }
                        }
                    }
                }

                &.active {
                    a {
                        color: #fff;
                    }
                }
            }

            .megaMenuWrap {
                opacity: 0;
                height: 0;
                transition: 0s;
                position: fixed;
                z-index: 5;
                top: 50px;
                left: 100px;
                display: none;
                visibility: hidden;
                overflow: hidden;
                width: 1300px;
                padding: 10px;

                .megaMenuInner {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    border-radius: 25px;
                    align-items: flex-start;
                    /* box-shadow: 0px 0px 10px 5px #7d7d7d50; */
                    box-shadow: 0px 0px 10px 2px #00000069;

                    .megaPorductWrap {
                        width: 315px;
                        height: 100%;
                        background-color: #84848450;
                        border-right: 1px solid #84848450;

                        .megaBoxInner {
                            height: 100%;
                            position: absolute;
                            top: 0;
                            right: 0;
                            left: 0;
                            bottom: 0;

                            ul {
                                height: 100%;
                                display: block;

                                li {
                                    padding-left: 30px;
                                    padding-right: 0;
                                    margin-bottom: 0;
                                    margin-right: 0;
                                    transition: 0s;
                                    height: 33.33%;
                                    position: relative;

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

                                    &:before {
                                        content: normal;
                                    }

                                    a {
                                        width: 100%;
                                        display: block;
                                        /* color: #ffffff; */
                                        color: #000000;
                                        text-align: left;
                                        font-size: 22px;
                                        transition: 0.1s;

                                        span {
                                            &.prodName {
                                                display: block;
                                                font-size: 22px;
                                                /* color: #ffffff; */
                                                color: #000000;
                                                transition: 0s;
                                                line-height: 15px;
                                                margin-bottom: 0;
                                            }

                                            &.prodRange {
                                                display: block;
                                                font-size: 22px;
                                                color: #919191;
                                                line-height: 15px;
                                            }
                                        }
                                    }

                                    &:hover,
                                    &.current {
                                        background-color: #008fff;

                                        a {
                                            /* color: #ffffff; */
                                            color: #fff;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.has_mega_sub_menu {
                .megaMenuWrap {
                    .megaMenuInner {
                        .megaPorductWrap {
                            top: 75px;

                            .megaBoxInner {
                                &>ul {
                                    &>li.prodWrap {
                                        ul.megaCategoryWrap {
                                            top: 75px !important;
                                            transition: ease-out 0s !important;
                                            opacity: 0;
                                            visibility: hidden;

                                            li.categoryProd {
                                                ul.megaTypeWrap {
                                                    background-color: #ffffff;
                                                    top: 75px !important;
                                                    transition: ease-out 0s !important;
                                                    opacity: 0;
                                                    visibility: hidden;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                &:hover {
                    .toggleBtn {
                        transform: rotate(180deg);
                    }

                    .megaMenuWrap {
                        .megaMenuInner {
                            .megaPorductWrap {
                                top: 0;

                                .megaBoxInner {
                                    &>ul {
                                        &>li.prodWrap {
                                            &:hover {
                                                ul.megaCategoryWrap {
                                                    top: 0 !important;
                                                    transition: 0s !important;
                                                    opacity: 1;
                                                    visibility: visible;

                                                    li.categoryProd {
                                                        ul.megaTypeWrap {
                                                            top: 0px !important;
                                                            transition: 0s !important;
                                                            opacity: 1;
                                                            visibility: visible;
                                                            background-color: #ffffff;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.has_mega_sub_menu {
                .megaMenuWrap {
                    .megaMenuInner {
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                        position: relative;

                        .toggleBtn {
                            display: none;
                        }

                        .megaPorductWrap {
                            width: 100%;
                            display: flex;
                            flex-wrap: wrap;
                            position: relative;
                            overflow: hidden;

                            &:before {
                                width: 315px;
                                height: 100%;
                                left: 0;
                                top: 0;
                                bottom: 0;
                                content: "";
                                position: absolute;
                                background-color: #ffffff;
                                border-right: 1px solid #84848450;
                            }

                            .megaBoxInner {
                                overflow: hidden;

                                &>ul {
                                    &>li.prodWrap {
                                        width: 100%;
                                        height: 33.33%;
                                        padding-left: 0;
                                        overflow: visible;
                                        position: relative;

                                        &>a {
                                            width: 315px;
                                            padding-left: 25px;
                                        }

                                        ul.megaCategoryWrap {
                                            background-color: #ffffff;
                                            left: 315px;
                                            height: 480px;
                                            padding-top: 0;
                                            transform: none;
                                            border-radius: 0;
                                            position: fixed;
                                            width: calc(100% - 315px);

                                            &:before {
                                                width: 375px;
                                                height: 100%;
                                                left: 0;
                                                top: 0;
                                                bottom: 0;
                                                content: "";
                                                position: absolute;
                                                background-color: #ffffff;
                                                border-right: 1px solid #84848450;
                                            }

                                            li.categoryProd {
                                                border: 0;
                                                height: calc(100% / 2);
                                                display: flex;
                                                flex-wrap: wrap;
                                                padding-left: 0;
                                                border-radius: 0;
                                                overflow: visible;
                                                position: relative;
                                                background-color: transparent !important;

                                                &:not(:last-child) {
                                                    border-bottom: 1px solid #84848450 !important;
                                                }

                                                a.catBox {
                                                    width: 375px;
                                                    height: 100%;
                                                    padding: 0 15px;
                                                    transition: 0.3s;
                                                    position: relative;
                                                    /* color: #ffffff; */
                                                    color: #000000;
                                                    display: flex;
                                                    align-items: center;
                                                    border-right: 1px solid #84848450;



                                                    &:after {
                                                        top: 50%;
                                                        width: 0;
                                                        opacity: 0;
                                                        left: 20px;
                                                        height: 3px;
                                                        content: '';
                                                        transition: 0.6s;
                                                        position: absolute;
                                                        background-color: #008FFF;
                                                        transform: translateY(-50%);
                                                    }
                                                }

                                                &:hover {
                                                    a.catBox {
                                                        padding: 0 20px 0 80px;

                                                        &:after {
                                                            width: 50px;
                                                            opacity: 1;
                                                        }

                                                        .prodName {
                                                            color: #FFB600;

                                                        }
                                                    }
                                                }

                                                ul.megaTypeWrap {
                                                    background-color: #ffffff;
                                                    left: calc(315px + 375px);
                                                    /* gap: 10px; */
                                                    height: 480px;
                                                    padding-top: 0;
                                                    transform: none;
                                                    border-radius: 0;
                                                    position: fixed;
                                                    display: flex;
                                                    flex-wrap: wrap;
                                                    align-items: flex-start;
                                                    justify-content: flex-start;
                                                    width: calc(100% - (315px + 375px));

                                                    li {
                                                        border: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        margin-right: 0;
                                                        padding-left: 0;
                                                        display: flex;
                                                        justify-content: center;
                                                        background-color: transparent !important;

                                                        .contBox {
                                                            .figure {
                                                                position: relative;

                                                                .prodBrand {
                                                                    width: auto;
                                                                    height: auto;
                                                                    top: 10px;
                                                                    right: 10px;
                                                                    border-radius: 8px;
                                                                    position: absolute;
                                                                    object-fit: contain;
                                                                    border: 1px solid #1d135849;
                                                                    padding: 5px;

                                                                    img {
                                                                        width: 110px !important;
                                                                        height: auto !important;
                                                                        object-fit: contain;
                                                                    }
                                                                }
                                                            }
                                                        }

                                                        &:before {
                                                            content: normal;
                                                        }

                                                        &:not(:last-child) {
                                                            border-radius: 0;
                                                            border-right: 1px solid #e0e0e0;
                                                        }

                                                        &:nth-child(3) {
                                                            border-right: none;
                                                        }

                                                        a {
                                                            width: auto;
                                                            display: block;

                                                            .figure {
                                                                width: 190px;
                                                                max-height: 90%;
                                                                text-align: center;
                                                                display: inline-block;
                                                                background-color: transparent;
                                                                box-shadow: 0 0 10px #00000030;

                                                                img {
                                                                    width: auto;
                                                                    height: 130px;
                                                                    padding: 10px;
                                                                    display: inline-block;
                                                                }

                                                                figcaption {
                                                                    display: block;
                                                                    text-align: center;

                                                                    .prodName {
                                                                        display: block;
                                                                        font-size: 14px;
                                                                        /* color: #ffffff; */
                                                                        color: #000000;
                                                                        line-height: 15px;
                                                                        margin-bottom: 10px;
                                                                    }

                                                                    .prodRange {
                                                                        display: block;
                                                                        font-size: 16px;
                                                                        /* color: #ffffff; */
                                                                        color: #000000;
                                                                        line-height: 15px;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }

                                                &:hover {
                                                    padding-left: 0;

                                                    ul {
                                                        z-index: 9;
                                                        opacity: 1;
                                                        visibility: visible;
                                                    }
                                                }
                                            }
                                        }

                                        &:hover {
                                            ul {
                                                z-index: 9;
                                                opacity: 1;
                                                visibility: visible;
                                            }
                                        }

                                        &.prod_2 {
                                            ul.megaCategoryWrap {
                                                li.categoryProd {
                                                    width: 100%;
                                                    height: calc(100% / 6);

                                                    a.catBox {
                                                        width: 375px;
                                                        padding: 0 15px;
                                                        /* color: #ffffff; */
                                                        color: #000000;
                                                    }

                                                    &:hover {
                                                        a.catBox {
                                                            padding: 0 20px 0 80px;
                                                        }
                                                    }

                                                    ul.megaTypeWrap {
                                                        left: calc(315px + 375px);
                                                        background-color: transparent;
                                                        width: calc(100% - (315px + 375px));
                                                    }

                                                    /* &.cat_4 {
                                                        ul.megaTypeWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    li {
                                                                        .contBox {
                                                                            .figure{
                                                                                .prodBrand {
                                                                                    img {
                                                                                        width: 140px !important;
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    } */
                                                }
                                            }
                                        }

                                        &.prod_3 {
                                            ul.megaCategoryWrap {
                                                li.categoryProd {
                                                    width: 100%;
                                                    height: calc(100% / 9);

                                                    a.catBox {
                                                        width: 375px;
                                                        padding: 0 15px;
                                                        /* color: #ffffff; */
                                                        color: #000000;
                                                    }

                                                    &:hover {
                                                        a.catBox {
                                                            padding: 0 20px 0 80px;
                                                        }
                                                    }

                                                    ul.megaTypeWrap {
                                                        left: calc(315px + 375px);
                                                        background-color: transparent;
                                                        width: calc(100% - (315px + 375px));
                                                    }
                                                }
                                            }
                                        }

                                        &.prod_4 {
                                            ul.megaCategoryWrap {
                                                li.categoryProd {
                                                    width: 100%;
                                                    height: calc(100% / 8);

                                                    a.catBox {
                                                        width: 375px;
                                                        padding: 0 15px;
                                                        /* color: #ffffff; */
                                                        color: #000000;
                                                    }

                                                    &:hover {
                                                        a.catBox {
                                                            padding: 0 20px 0 80px;
                                                        }
                                                    }

                                                    ul.megaTypeWrap {
                                                        left: calc(315px + 375px);
                                                        background-color: transparent;
                                                        width: calc(100% - (315px + 375px));
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.has_mega_sub_menu {
                &:hover {
                    .megaMenuWrap {
                        opacity: 1;
                        height: 500px;
                        display: block;
                        overflow: hidden;
                        visibility: visible;

                        .megaMenuInner {
                            visibility: visible;
                            opacity: 1;

                            .megaPorductWrap {
                                .megaBoxInner {
                                    ul {
                                        li {
                                            &.prodWrap {
                                                &.prod_1 {
                                                    ul.megaCategoryWrap {
                                                        top: 0 !important;
                                                        z-index: 3;
                                                        opacity: 1;
                                                        visibility: visible;

                                                        li.categoryProd {
                                                            cursor: pointer;

                                                            a {
                                                                position: relative;

                                                                &>span.prodName {
                                                                    display: none;
                                                                }

                                                                &:after {
                                                                    content: "";
                                                                    position: absolute;
                                                                    top: 0;
                                                                    width: 100%;
                                                                    left: 0;
                                                                    height: 100%;
                                                                    transition: 0.6s;
                                                                    background-color: #ffffff;
                                                                    transform: translateY(0) scale(0);
                                                                    z-index: 1;
                                                                }

                                                                &.catBox {
                                                                    justify-content: center;
                                                                    /* pointer-events: none; */

                                                                    img {
                                                                        width: 240px;
                                                                        height: auto;
                                                                        padding: 15px;
                                                                        transition: 0.3s;
                                                                        border-radius: 10px;
                                                                        background-color: transparent;
                                                                    }

                                                                }

                                                                &:hover {
                                                                    &:after {
                                                                        transform: translateY(0) scale(1);
                                                                        opacity: 1;
                                                                    }
                                                                }
                                                            }

                                                            .megaTypeWrap {
                                                                &:after {
                                                                    right: 0;
                                                                    bottom: -90px;
                                                                    z-index: 1;
                                                                    content: '';
                                                                    width: 300px;
                                                                    height: 495px;
                                                                    opacity: 0.3;
                                                                    position: absolute;
                                                                    background-size: contain;
                                                                    background-position: 0 0;
                                                                    background-repeat: no-repeat;
                                                                    background-image: url('../images/rockB_parts.png');
                                                                }

                                                                li {
                                                                    z-index: 2;

                                                                    .contBox {
                                                                        padding: 50px;
                                                                        background-color: #ffffff;



                                                                        figure {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            padding: 30px;
                                                                            display: block;
                                                                            margin: 0 auto;
                                                                            overflow: hidden;
                                                                            max-width: 380px;
                                                                            max-height: 320px;
                                                                            margin-bottom: 20px;
                                                                            border-radius: 20px;
                                                                            background-color: #fff;
                                                                            display: none;

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

                                                                        .figcaption {
                                                                            font-size: 18px;
                                                                            color: #FFFFFF;
                                                                            font-weight: 400;
                                                                            text-align: center;
                                                                        }
                                                                    }

                                                                    &.prodTypeS {
                                                                        .contBox {
                                                                            width: 100%;

                                                                            a {
                                                                                position: relative;

                                                                                &::after {
                                                                                    top: 50%;
                                                                                    width: 0;
                                                                                    opacity: 0;
                                                                                    left: 0;
                                                                                    height: 3px;
                                                                                    content: '';
                                                                                    transition: 0.6s;
                                                                                    position: absolute;
                                                                                    background-color: #008FFF;
                                                                                    transform: translateY(-50%);
                                                                                }

                                                                                span.prodName {
                                                                                    text-align: left;
                                                                                }
                                                                            }
                                                                        }

                                                                        &:hover {
                                                                            .contBox {
                                                                                a {
                                                                                    padding: 10px 10px 10px 60px;

                                                                                    span.prodName {
                                                                                        color: #FFB600;
                                                                                    }

                                                                                    &::after {
                                                                                        width: 50px;
                                                                                        opacity: 1;
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }

                                                                }
                                                            }

                                                            &.cat_1 {
                                                                ul.megaTypeWrap {
                                                                    top: 0 !important;
                                                                    opacity: 1;
                                                                    visibility: visible;

                                                                    li {
                                                                        height: 100%;
                                                                    }
                                                                }
                                                            }

                                                            &.cat_2 {
                                                                ul.megaTypeWrap {
                                                                    li {
                                                                        height: calc(100% / 4);
                                                                        border-bottom: 1px solid #84848450;

                                                                        .contBox {
                                                                            padding: 30px 50px;
                                                                        }
                                                                    }
                                                                }
                                                            }

                                                            &:hover {
                                                                a.catBox {
                                                                    padding: 0 15px;

                                                                    img {
                                                                        position: relative;
                                                                        z-index: 2;
                                                                        transform: scale(1.25);
                                                                    }

                                                                    /* &:after {
                                                                        transform: translateY(-50%) scale(1);
                                                                    } */
                                                                }
                                                            }
                                                        }
                                                    }
                                                }

                                                &.prod_2 {
                                                    ul.megaCategoryWrap {
                                                        top: 0 !important;
                                                        z-index: 3;
                                                        opacity: 1;
                                                        visibility: visible;

                                                        li.categoryProd {
                                                            .megaTypeWrap {
                                                                &:after {
                                                                    right: 0;
                                                                    bottom: -90px;
                                                                    z-index: 1;
                                                                    content: '';
                                                                    width: 300px;
                                                                    height: 495px;
                                                                    opacity: 0.3;
                                                                    position: absolute;
                                                                    background-size: contain;
                                                                    background-position: 0 0;
                                                                    background-repeat: no-repeat;
                                                                    background-image: url('../images/rockB_parts.png');
                                                                }

                                                                li {
                                                                    z-index: 2;

                                                                    .contBox {
                                                                        padding: 50px;
                                                                        background-color: #ffffff;
                                                                        width: 100%;
                                                                        height: 100%;

                                                                        figure {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            padding: 30px;
                                                                            display: block;
                                                                            margin: 0 auto;
                                                                            overflow: hidden;
                                                                            max-width: 380px;
                                                                            max-height: 320px;
                                                                            margin-bottom: 20px;
                                                                            border-radius: 20px;
                                                                            background-color: #c1e4ff;

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

                                                                        .figcaption {
                                                                            font-size: 18px;
                                                                            color: #FFFFFF;
                                                                            font-weight: 400;
                                                                            text-align: center;
                                                                        }
                                                                    }
                                                                }
                                                            }

                                                            &.cat_1 {
                                                                ul.megaTypeWrap {
                                                                    top: 0 !important;
                                                                    opacity: 1;
                                                                    visibility: visible;
                                                                }
                                                            }
                                                        }
                                                    }
                                                }

                                                &.prod_3 {
                                                    ul.megaCategoryWrap {
                                                        top: 0 !important;
                                                        z-index: 3;
                                                        opacity: 1;
                                                        visibility: visible;

                                                        li.categoryProd {
                                                            .megaTypeWrap {
                                                                &:after {
                                                                    right: 0;
                                                                    bottom: -90px;
                                                                    z-index: 1;
                                                                    content: '';
                                                                    width: 300px;
                                                                    height: 495px;
                                                                    opacity: 0.3;
                                                                    position: absolute;
                                                                    background-size: contain;
                                                                    background-position: 0 0;
                                                                    background-repeat: no-repeat;
                                                                    background-image: url('../images/rockB_parts.png');
                                                                }

                                                                li {
                                                                    z-index: 2;

                                                                    .contBox {
                                                                        padding: 50px;
                                                                        background-color: #ffffff;

                                                                        figure {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            padding: 30px;
                                                                            display: block;
                                                                            margin: 0 auto;
                                                                            overflow: hidden;
                                                                            max-width: 380px;
                                                                            max-height: 320px;
                                                                            margin-bottom: 20px;
                                                                            border-radius: 20px;
                                                                            background-color: #c1e4ff;

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

                                                                        .figcaption {
                                                                            font-size: 18px;
                                                                            color: #FFFFFF;
                                                                            font-weight: 400;
                                                                            text-align: center;
                                                                        }
                                                                    }
                                                                }
                                                            }

                                                            &.cat_1 {
                                                                ul.megaTypeWrap {
                                                                    top: 0 !important;
                                                                    opacity: 1;
                                                                    visibility: visible;
                                                                }
                                                            }
                                                        }
                                                    }
                                                }

                                                &.prod_4 {
                                                    ul.megaCategoryWrap {
                                                        top: 0 !important;
                                                        z-index: 3;
                                                        opacity: 1;
                                                        visibility: visible;

                                                        li.categoryProd {
                                                            .megaTypeWrap {
                                                                &:after {
                                                                    right: 0;
                                                                    bottom: -90px;
                                                                    z-index: 1;
                                                                    content: '';
                                                                    width: 300px;
                                                                    height: 495px;
                                                                    opacity: 0.3;
                                                                    position: absolute;
                                                                    background-size: contain;
                                                                    background-position: 0 0;
                                                                    background-repeat: no-repeat;
                                                                    background-image: url('../images/rockB_parts.png');
                                                                }

                                                                li {
                                                                    z-index: 2;

                                                                    .contBox {
                                                                        padding: 50px;
                                                                        background-color: #ffffff;

                                                                        figure {
                                                                            width: 100%;
                                                                            height: 100%;
                                                                            padding: 30px;
                                                                            display: block;
                                                                            margin: 0 auto;
                                                                            overflow: hidden;
                                                                            max-width: 380px;
                                                                            max-height: 320px;
                                                                            margin-bottom: 20px;
                                                                            border-radius: 20px;
                                                                            background-color: #fff;

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

                                                                        .figcaption {
                                                                            font-size: 18px;
                                                                            color: #FFFFFF;
                                                                            font-weight: 400;
                                                                            text-align: center;
                                                                        }
                                                                    }
                                                                }
                                                            }

                                                            &.cat_1 {
                                                                ul.megaTypeWrap {
                                                                    top: 0 !important;
                                                                    opacity: 1;
                                                                    visibility: visible;
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* .open ul.megaCategoryWrap,
.open ul.megaCategoryWrap li,
.open ul.megaCategoryWrap li a{
    background-color: #376991 !important;
} */

.is-sticky {
    .nav {
        ul {
            li {
                .megaMenuWrap {
                    top: 32px;
                }
            }
        }
    }

    .headerInner {
        .headerMenu {
            li {
                &>ul {
                    top: 42px;
                }
            }
        }
    }
}


.innerBannerWrap {
    position: relative;
    padding: 15px 15px 0;

    .bannerVector {
        top: 15px;
        bottom: 0;
        z-index: 1;
        width: 358px;
        right: 100px;
        position: absolute;
    }

    .innerBanner {
        height: 280px;
        border-radius: 25px;
        background-image: linear-gradient(90deg, #0081EB 0%, #1D1358 100%);

        .innerBannerCont {
            padding: 120px 60px 0;
            position: relative;
            z-index: 2;

            .innerBannerTitle {
                font-size: 56px;
                font-weight: 500;
                color: #FFFFFF;
            }

            .cd-breadcrumb {
                display: flex;
                flex-wrap: wrap;
                align-items: center;

                li {
                    position: relative;

                    a {
                        font-size: 16px;
                        color: #FFFFFF;
                        display: inline-block;
                    }

                    &.current {
                        a {
                            pointer-events: none;
                        }
                    }

                    &:not(:last-child) {
                        margin-right: 30px;

                        &:after {
                            top: 5px;
                            width: 9px;
                            right: -18px;
                            height: 12px;
                            content: '';
                            position: absolute;
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-image: url(../images/common/breadBg.png);
                        }
                    }
                }
            }
        }
    }
}

.innerPage {
    .pageHeading {
        .pageH {
            font-size: 200px;
            font-weight: 900;
            line-height: 0.75;
            font-family: "Roboto", sans-serif;
        }
    }
}

.col_E3E9ED {
    color: #E3E9ED;
}

.col_1D1358 {
    color: #1D1358;
}

.mobTrigger {
    a {
        display: flex;
        color: #fff;
        font-size: 22px;
        gap: 10px;
        align-items: center;
    }
}

.mob_1200 {
    display: none;
}

/* language dropdown */
#translatePopup {
    right: 110px !important;
    padding: 0 !important;

    .nice-select {
        height: 40px;
        font-size: 15px;
        padding: 5px 10px;

        &::after {
            top: 20px;
        }

        span {
            font-size: 15px;
            line-height: 30px;
        }

        .option {
            min-height: 30px;
            padding-left: 12px;
            padding-right: 25px;
        }

        &.open {
            &::after {
                -webkit-transform: rotate(-180deg) translateY(5px);
                transform: rotate(180deg) translateY(5px);
            }
        }
    }
}

.stickyH {
    #translatePopup {
        top: 50px !important;
    }
}

.side_menu {
    position: fixed;
    width: 400px;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: #1D1358;
    transition: 0.5s;
    transform: translateX(115%);
    height: 100%;
    border-radius: 30px 0 0 30px;

    .closeBtn {
        position: absolute;
        left: -40px;
        width: 40px;
        height: 90px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 15px 0 0 15px;
        background-color: #fff;
        color: #1D1358;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px 0 #00000069;
    }

    .sidebar_lst {
        position: relative;
        z-index: 1;
    }
}

.sideMenuWrap {
    .side_menu {
        transform: translate(0);
    }
}

.overlayMenuBg {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000ad;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    height: 100%;

    &.sideOverlay {
        opacity: 1;
        visibility: visible;
        z-index: 99;
    }
}

.sideMenuBgImg {
    position: absolute;
    bottom: 0;
    right: 0;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        filter: brightness(0) invert(1);
        opacity: 0.05;
    }
}

.sidebar_menu {
    .sideBarLogo {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    ul {
        li {
            padding-left: 20px;
            position: relative;
            margin-bottom: 15px;
            padding-right: 20px;
            padding-bottom: 15px;
            border-radius: 0 0 15px 15px;
            border-bottom: 1px solid #f7f7f740;

            .toggleArrow {
                color: #fff;
                right: 11px;
                top: -3px;
                position: absolute;
                transition: 0.5s;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            &.open>.toggleArrow {
                transform: rotate(180deg);
            }

            a {
                font-size: 18px;
                color: #fff;
                position: relative;
                transition: 0.7s;
                left: 60px;
                opacity: 0.2;
            }

            &:first-child {
                a {
                    transition: 1s;
                }
            }

            &:nth-child(2) {
                a {
                    transition: 1.3s;
                }
            }

            &:nth-child(3) {
                a {
                    transition: 1.6s;
                }
            }

            &:nth-child(4) {
                a {
                    transition: 1.9s;
                }
            }

            &:nth-child(5) {
                a {
                    transition: 2.1s;
                }
            }

            &:nth-child(6) {
                a {
                    transition: 2.4s;
                }
            }

            &:nth-child(7) {
                a {
                    transition: 2.7s;
                }
            }

            &:nth-child(8) {
                a {
                    transition: 3s;
                }
            }

            &:nth-child(9) {
                a {
                    transition: 3.1s;
                }
            }

            &:nth-child(10) {
                a {
                    transition: 3.4s;
                }
            }

            &:nth-child(11) {
                a {
                    transition: 3.7s;
                }
            }

            &:nth-child(12) {
                a {
                    transition: 4s;
                }
            }

            &:nth-child(13) {
                a {
                    transition: 4.3s;
                }
            }
        }
    }

    .subMenu,
    .sub_menu_child,
    .child_sub_menu {
        display: none;
        padding-top: 20px;
    }
}

.sideMenuWrap {
    .sidebar_menu {
        padding: 20px 0;
        position: relative;
        height: calc(100vh - 125px);
        overflow: auto;
        z-index: 2;

        ul {
            li {
                a {
                    left: 0px;
                    opacity: 1;
                    outline: none !important;
                }

                &.has_menu {
                    ul {
                        padding-left: 0px;

                        li:last-child {
                            padding-bottom: 0px;
                            margin-bottom: 0px;
                            border-bottom: none;
                        }
                    }
                }
            }
        }
    }
}

.sideBarLogo {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-bottom: 3px solid #ffffffa3;

    img {
        filter: brightness(0) invert(1);
    }
}

.menuBottomBar {
    position: fixed;
    bottom: 0;
    width: 95%;
    margin: 0 auto;
    padding: 15px;
    background-color: #1d1358c7;
    z-index: 99;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px 15px 0 0;
    backdrop-filter: blur(10px);

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

        li {
            width: 25%;
            text-align: center;

            a {
                font-size: 20px;
                color: #fff;
            }
        }
    }
}

.mob_768,
.mob_575 {
    display: none;
}


/* header search */

.search-popup-box {

    #ajaxsearchlite1 .probox,
    div.asl_w .probox {
        background-color: #0081EB;
        background-image: none;
    }

    div.asl_w .probox .promagnifier {
        background-color: #1D1358;
        background-image: none;
    }

    .close-search {
        top: 5px;
        right: 7px;
        font-size: 18px;
    }
}

div.asl_r.vertical {
    background-color: #0081EB !important;
}


/* Google Translate dropdown styling */
/* #google_translate_element {
  
}

#google_translate_element.show {
  display: block;
}

#google_translate_element select {
  font-size: 14px;
  padding: 4px;
}
#google_translate_element{
    width: 200px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 100px;
    right: 133px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 99999;
    &.show {
        opacity: 1;
        visibility: visible;
    }

    .goog-te-gadget-simple{
        width: 100% !important;

        img{
            display: none;
        }

        span{
            a{
                width: 100%;
                display: flex;
                align-items: center;
                padding-right: 5px;
                justify-content: space-between;

                span + img,
                span + img + span,
                span + img + span + img{
                    display: none;
                }
                span + img + span + img + span{
                    display: inline-block;
                }
            }
        }
    }
}
iframe.skiptranslate{
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
} */

/* Responsive */

@media (max-width: 1768px) {
    .header {
        .headerInner {
            gap: 20px;

            .headerMenu {
                gap: 20px;
                padding: 0px 20px;
            }

            .headerLeft {
                width: calc((100% - 160px) / 2);
            }

            .headerMid {
                .logoImg {
                    width: 160px;

                    a {
                        padding: 6px;
                    }
                }
            }

            .headerRight {
                width: calc((100% - 160px) / 2);
                gap: 12px;
            }
        }
    }

    .nav {
        ul {
            li {
                .megaMenuWrap {
                    .megaMenuInner {
                        .megaPorductWrap {
                            .megaBoxInner {
                                ul {
                                    li {
                                        a {
                                            font-size: 18px;

                                            span {
                                                &.prodName {
                                                    font-size: 16px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {
    .header {
        .headerInner {
            .headerMenu {
                gap: 12px;

                li {
                    &:not(:last-child) {
                        margin-right: 20px;
                    }
                }
            }

            .headerLeft {
                width: calc((100% - 110px) / 2);
            }

            .headerMid {
                .logoImg {
                    width: 110px;
                }
            }

            .headerRight {
                width: calc((100% - 110px) / 2);
                gap: 12px;
            }
        }
    }

    .nav {
        ul {
            li {
                &.has_mega_sub_menu {
                    &:hover {
                        .megaMenuWrap {
                            .megaMenuInner {
                                .megaPorductWrap {
                                    .megaBoxInner {
                                        ul {
                                            li {
                                                &.prodWrap {
                                                    &.prod_2 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    li {
                                                                        .contBox {
                                                                            .figcaption {
                                                                                font-size: 16px;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .nav ul li.has_mega_sub_menu .megaMenuWrap {
        top: 50px;
        padding-top: 10px;
    }

    .is-sticky .nav ul li.has_mega_sub_menu .megaMenuWrap {
        top: 34px;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .nav ul li.has_mega_sub_menu .megaMenuWrap {
            top: 50px;
            padding-top: 10px;
        }

        .is-sticky .nav ul li.has_mega_sub_menu .megaMenuWrap {
            top: 34px;
        }
    }
}

@media (max-width: 1480px) {
    .header {
        .headerInner {
            padding: 15px 35px 0px;
        }
    }

    .nav {
        ul {
            li {
                .megaMenuWrap {
                    width: 1100px;
                    left: 25px;
                }

                &.has_mega_sub_menu {
                    &:hover {
                        .megaMenuWrap {
                            .megaMenuInner {
                                .megaPorductWrap {
                                    .megaBoxInner {
                                        ul {
                                            li {
                                                &.prodWrap {
                                                    &.prod_1 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    & li {
                                                                        .contBox {
                                                                            padding: 20px;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }

                                                    &.prod_2 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    & li {
                                                                        .contBox {
                                                                            padding: 20px;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }

                                                    &.prod_3 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    & li {
                                                                        .contBox {
                                                                            padding: 20px;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .header {
        .headerInner {
            padding: 15px 20px 0px;

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

                    &>ul {
                        top: 40px;
                        width: 330px;
                    }
                }
            }

            .headerRight {
                .headerRtInn {
                    .headerOptions {
                        width: 30px;
                        height: 30px;
                    }
                }
            }
        }
    }

    #translatePopup {
        right: 75px !important;
    }

    .nav {
        ul {
            li {
                .megaMenuWrap {
                    top: 40px;
                }
            }
        }
    }

    .innerBannerWrap {
        .innerBanner {
            .innerBannerCont {
                padding: 120px 25px 0;

                .innerBannerTitle {
                    font-size: 40px;
                }
            }
        }
    }

    /* .nav {
        ul {
            li {
                &.has_mega_sub_menu {
                    .megaMenuWrap {
                        .megaMenuInner {
                            .megaPorductWrap {
                                &:before {
                                    width: 280px;
                                }

                                .megaBoxInner {
                                    &>ul {
                                        &>li.prodWrap {
                                            ul.megaCategoryWrap {
                                                left: 280px;

                                                &:before {
                                                    width: 350px;
                                                }

                                                li.categoryProd {
                                                    ul.megaTypeWrap {
                                                        left: calc(280px + 350px);
                                                        width: calc(100% - (280px + 350px));
                                                    }
                                                }
                                            }

                                            &.prod_2 {
                                                & ul.megaCategoryWrap {
                                                    & li.categoryProd {
                                                        ul.megaTypeWrap {
                                                            left: calc(280px + 350px);
                                                            width: calc(100% - (280px + 350px));
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    } */
}

@media (max-width: 1366px) {
    .header {
        .headerInner {
            .headerMenu {
                &>li {
                    &>ul {
                        li {
                            padding: 6px 15px;
                        }
                    }
                }
            }
        }
    }

    .nav {
        ul {
            li {
                &.has_sub_menu {
                    ul.subMenu {
                        li {
                            a {
                                padding: 5px 0px !important;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1300px) {
    .header {
        .headerInner {
            .headerMenu {
                li {
                    &:not(:last-child) {
                        margin-right: 18px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .header {
        .headerInner {
            .headerMenu {
                padding: 0px 15px;

                li {
                    &:not(:last-child) {
                        margin-right: 12px;
                    }
                }
            }

            .headerLeft {
                width: calc((100% - 110px) / 2);
            }

            /* .headerMid {
                .logoImg {
                    width: 90px;
                }
            } */

            .headerRight {
                width: calc((100% - 110px) / 2);
            }
        }
    }

    .nav {
        ul {
            li {
                &.has_sub_menu {
                    ul.subMenu {
                        li {
                            padding: 4px 12px;
                        }
                    }
                }
                .megaMenuWrap {
                    .megaMenuInner {
                        .megaPorductWrap {
                            .megaBoxInner {
                                ul {
                                    li {
                                        a {
                                            span {
                                                &.prodName {
                                                    font-size: 14px;
                                                }
                                            }
                                        }
                                    }
                                }
                                & > ul {
                                    & > li.prodWrap {
                                        ul.megaCategoryWrap {
                                            height: 360px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                &.has_mega_sub_menu {
                    .megaMenuWrap {
                        .megaMenuInner {
                            .megaPorductWrap {
                                .megaBoxInner {
                                    & > ul {
                                        & > li.prodWrap {
                                            ul.megaCategoryWrap {
                                                height: 360px;
                                                li.categoryProd {
                                                    ul.megaTypeWrap {
                                                        height: 360px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                    &:hover {
                        .megaMenuWrap {
                            height: 380px;
                            .megaMenuInner {
                                .megaPorductWrap {
                                    .megaBoxInner {
                                        ul {
                                            li {
                                                &.prodWrap {
                                                    &.prod_1 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                a {
                                                                    &.catBox {
                                                                        img {
                                                                            width: 185px;
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                    &.prod_3 {
                                                        ul.megaCategoryWrap {
                                                            li.categoryProd {
                                                                .megaTypeWrap {
                                                                    li {
                                                                        .contBox {
                                                                            figure {
                                                                                max-width: 320px;
                                                                                max-height: 280px;
                                                                                .prodBrand {
                                                                                    img {
                                                                                        width: 80px !important;
                                                                                    }
                                                                                }
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

/* @media (width: 1280px) and (min-height: 585px) and (max-height: 631px){
    .nav {
        ul {
            li {
                &.has_mega_sub_menu {
                    &:hover {
                        .megaMenuWrap {
                            opacity: 1;
                            height: 375px;
                        }
                    }
                    .megaMenuWrap {
                        .megaMenuInner {
                            .megaPorductWrap {
                                .megaBoxInner {
                                    & > ul {
                                        & > li.prodWrap {
                                            ul.megaCategoryWrap {
                                                height: 355px;
                                                li.categoryProd {
                                                    ul.megaTypeWrap {
                                                        top: 0;
                                                        height: 355px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
} */

@media (max-width: 1200px) {
    .desk_1200 {
        display: none !important;
    }

    .header {
        .headerInner {
            .headerMid {
                .logoImg {
                    width: 130px;
                }
            }
        }
    }

    .innerBannerWrap {
        .bannerVector {
            right: 40px;
        }
    }

    .mob_1200 {
        display: block;
    }

}

@media (max-width: 768px) {
    .innerBannerWrap {
        .innerBanner {
            .innerBannerCont {
                padding: 100px 25px 0;

                .innerBannerTitle {
                    font-size: 32px;
                    line-height: 42px;
                    text-align: center;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    margin-bottom: 10px;
                }

                .cd-breadcrumb {
                    justify-content: center;

                    li {
                        a {
                            font-size: 15px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 640px) {
    #translatePopup {
        right: 50px !important;
    }
}

@media (max-width: 575px) {
    .innerBannerWrap {
        .innerBanner {
            .innerBannerCont {
                padding: 100px 15px 0;

                .innerBannerTitle {
                    font-size: 26px;
                    line-height: 1.2;
                }
            }
        }
    }

    .mobTrigger {
        a {
            font-size: 18px;
        }
    }

    .mob_575 {
        display: block;
    }

    .sideMenuWrap {
        .side_menu {
            bottom: 0;
        }
    }

    .side_menu {
        transform: none;
        bottom: -115%;
        height: calc(100vh - 80px);
        top: auto;
        width: 100%;
        border-radius: 30px 30px 0 0px;
        z-index: 999;

        .closeBtn {
            left: 50%;
            width: 80px;
            height: 40px;
            top: -40px;
            transform: translateX(-50%);
            border-radius: 15px 15px 0 0;
            background-color: #fff;
        }
    }

    .header {
        transition: none;

        .headerInner {
            position: relative;
            transition: none;

            .headerLeft {
                display: none;
            }

            .headerMid {
                transition: none;
            }

            .headerRight {
                display: none;
            }

            .headLangRes {
                position: absolute;
                right: 40px;
                top: 30px;

                &::after {
                    content: '\f107';
                    position: absolute;
                    right: -15px;
                    font-family: fontawesome;
                    color: #fff;
                    font-size: 16px;
                    top: 0;
                }
            }
        }

        &.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            /* animation: slideDown 0.35s ease-out; */
            animation: none;
            z-index: 20;
            background-color: transparent;
            backdrop-filter: unset;
            box-shadow: none;
            border-top: 2px solid #fff;

            .headerMid {
                padding: 5px 10px 5px;
                box-shadow: 0 2px 10px 0px #accdff;

                .logoImg {
                    width: 110px;
                }
            }
        }
    }

    .sideMenuWrap {
        .sidebar_menu {
            height: calc(100vh - 200px);
        }
    }

    .stickyH {
        #translatePopup {
            visibility: hidden;
            opacity: 0;
        }

        .header {
            .headerInner {
                .headLangRes {
                    visibility: hidden;
                    opacity: 0;
                }
            }
        }
    }
}

@media (max-width: 480px) {
    .header {
        .headerInner {
            .headLangRes {
                right: 30px;
            }
        }
    }

    #translatePopup {
        right: 24px !important;
    }
}

@media (max-width: 420px) {
    .innerBannerWrap {
        .bannerVector {
            width: 280px;
            bottom: 0;
            top: auto;
        }
    }
}