/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: all 0.5s;
    padding: 15px 60px;
    padding-bottom: 0px;

    .headerInner {
        position: relative;
        padding: 0px 30px;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        transition: all 0.5s;

        &::after {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            backdrop-filter: blur(5px);
            border-radius: 10px;
        }

        .headerLogo {
            width: 190px;
            position: relative;
            z-index: 1;
            transition: all 0.5s;

            img {
                /* height: 80px; */
                width: 100%;
                height: auto;
                padding: 8px 0;
            }
        }

        .headerMiddle {
            width: calc(100% - 340px);
            position: relative;
            z-index: 1;

            .manuWrap {
                text-align: center;

                ul {
                    display: flex;
                    justify-content: center;

                    >li {
                        padding: 0 20px;
                        margin-right: 5px;
                        line-height: 70px;

                        >a {
                            color: #fff;

                            &::after {
                                content: '';
                                position: absolute;
                                width: 0;
                                height: 2px;
                                background-color: #E30011;
                                right: 0;
                                bottom: -2px;
                                transition: all 0.5s;
                            }
                        }
                    }

                    li {
                        &.hasMegaMenu {
                            .megaMenu {
                                position: absolute;
                                left: 50%;
                                transform: translateX(-50%);
                                top: 100%;
                                width: 100%;
                                max-width: 85%;
                                margin: 0 auto;
                                padding: 0 0px;
                                -webkit-animation: .5s ease-in-out forwards growDown;
                                animation: .5s ease-in-out forwards growDown;
                                -webkit-transform-origin: top center;
                                -ms-transform-origin: top center;
                                display: none;


                                .megaMenuInn {
                                    display: flex;
                                    flex-wrap: wrap;
                                    /* background-color: #fff0f066; */
                                    background-color: #00000080;
                                    border-radius: 15px;
                                    overflow: hidden;
                                    box-shadow: 0px 0px 10px 0px #484848;
                                    padding: 20px 0px;
                                    backdrop-filter: blur(10px);
                                    -webkit-backdrop-filter: blur(10px);
                                    position: relative;

                                    .menuCatList {
                                        width: 45%;

                                        .megaTabs {
                                            display: block;
                                            text-align: left;
                                            padding: 0 20px;
                                            border-right: 1px solid #fff;

                                            li {
                                                width: 100%;
                                                padding: 0px;
                                                margin-bottom: 20px;

                                                a {
                                                    display: block;
                                                    padding: 20px;
                                                    background-color: #fff;
                                                    border-radius: 15px;
                                                    padding-right: 55px;
                                                    position: relative;
                                                    transition: 0.5s;

                                                    &::after {
                                                        width: 35px;
                                                        height: 35px;
                                                        border-radius: 50%;
                                                        content: "\f105";
                                                        position: absolute;
                                                        right: 15px;
                                                        top: 50%;
                                                        transform: translateY(-50%);
                                                        background-color: #fff;
                                                        border: 1px solid #ccc;
                                                        color: #010101;
                                                        font-size: 16px;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        font-family: "FontAwesome";
                                                    }

                                                    .megaT {
                                                        font-size: 20px;
                                                        font-weight: bold;
                                                        color: #000;
                                                        font-family: "Raleway", sans-serif;
                                                        line-height: 1.3;
                                                        display: block;
                                                    }

                                                    p {
                                                        font-size: 14px;
                                                        line-height: 24px;
                                                    }

                                                    &:hover {
                                                        background-color: #E30011;

                                                        .megaT {
                                                            color: #fff;
                                                        }

                                                        p {
                                                            color: #fff;
                                                        }
                                                    }
                                                }

                                                &:last-child {
                                                    margin-bottom: 0px;
                                                }

                                                &.active {
                                                    a {
                                                        background-color: #E30011;

                                                        .megaT {
                                                            color: #fff;
                                                        }

                                                        p {
                                                            color: #fff;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }

                                    .menuCatWrap {
                                        width: calc(100% - 45%);
                                        padding: 10px 20px;

                                        .menuCatContent {
                                            display: none;

                                            .megaMenuList {
                                                display: block;
                                                text-align: left;

                                                li {
                                                    border-bottom: 1px solid #fff;
                                                    padding: 10px 0;
                                                    line-height: normal;

                                                    &:last-child {
                                                        border-bottom: none;
                                                    }

                                                    a {
                                                        display: block;
                                                        padding: 20px 0;
                                                        transition: 0.5s;

                                                        &:hover {
                                                            background-color: #ffffff;
                                                            border-radius: 7px;
                                                            padding: 20px 15px;
                                                            color: #000;
                                                        }
                                                    }
                                                }
                                            }

                                            &.active {
                                                display: block !important;
                                            }
                                        }
                                    }
                                }
                            }

                            &.active {
                                >a {
                                    &::after {
                                        content: normal !important;
                                    }
                                }
                            }

                            &:hover {
                                >.megaMenu {
                                    display: block;
                                }
                            }

                        }

                        .toggleArrow {
                            color: #fff;
                            font-size: 12px;
                        }

                        &.active {
                            >a {
                                position: relative;

                                &::after {
                                    width: calc(100% - 20px);
                                }
                            }
                        }

                        ul.subMenu {
                            border-radius: 0 0 10px 10px;
                            border-bottom: 3px solid #E30011;
                            display: block;
                            position: absolute;
                            top: 100%;
                            width: 280px;
                            z-index: 2;
                            opacity: 0;
                            visibility: hidden;
                            padding: 15px 0;
                            background: #000;
                            -webkit-transition: all 0.3s ease-out;
                            -o-transition: all 0.3s ease-out;
                            transition: all 0.3s ease-out;
                            -webkit-transform: rotateX(-90deg);
                            -ms-transform: rotateX(-90deg);
                            transform: rotateX(-90deg);
                            -webkit-transform-origin: 0 0;
                            -moz-transform-origin: 0 0;
                            -ms-transform-origin: 0 0;
                            -o-transform-origin: 0 0;
                            transform-origin: 0 0;
                            backdrop-filter: blur(8px);
                            box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
                            border-radius: 0 0 15px 15px;
                            text-align: left;

                            li {
                                line-height: normal;
                                width: 100%;
                                border-bottom: 1px solid #cccccc47;
                                padding: 0;

                                &:last-child {
                                    border-bottom: none;
                                }

                                a {
                                    padding: 0px 15px;
                                    display: block;
                                    width: 100%;
                                    color: #fff;
                                    line-height: 50px;
                                    transition: 0.5s;

                                    &:hover {
                                        color: #E30011;
                                    }
                                }
                            }
                        }

                        &:hover {
                            ul.subMenu {
                                opacity: 1;
                                visibility: visible;
                                transform: rotateX(0deg);
                            }
                        }

                        &.has-submenu {
                            /* padding-right: 20px; */
                            /* margin-right: 10px; */
                            position: relative;

                            &::after {
                                /* content: "\f107"; */
                                position: absolute;
                                right: 0;
                                font-family: "FontAwesome";
                                font-size: 14px;
                                color: #fff;

                            }
                        }
                    }

                }
            }
        }

        .headerRight {
            width: 150px;
            position: relative;
            text-align: right;
            z-index: 1;

            ul {
                display: flex;
                justify-content: flex-end;

                li {
                    margin-right: 15px;
                    padding-right: 15px;
                    position: relative;

                    &.mobMenuBtn {
                        display: none;
                    }

                    &::after {
                        width: 1px;
                        height: 30px;
                        background-color: #808080;
                        position: absolute;
                        right: 0;
                        content: "";
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    &:last-child {
                        margin-right: 0px;
                        border-right: none;
                        padding-right: 0px;
                        display: none;

                        &::after {
                            display: none;
                        }
                    }

                    &:nth-child(2) {
                        margin-right: 0px;
                        padding-right: 0px;

                        &:after {
                            display: none;
                        }
                    }

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        color: #fff;
                        font-size: 20px;
                        border: 1px solid #fff;
                        border-radius: 50%;
                    }
                }
            }
        }
    }

    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        /* animation: slideDown 0.35s ease-out; */
        z-index: 20;
        padding: 10px 30px 0;

        .headerInner {
            justify-content: space-between;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
            background-color: #000;

            .headerLogo {
                width: 145px;
            }

            .headerMiddle {
                .manuWrap {
                    ul {
                        >li {
                            padding: 0 18px;
                            line-height: 50px;
                            font-size: 14px;

                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        .megaT {
                                                            font-size: 18px;
                                                            color: #000;
                                                        }
                                                    }

                                                    &.active,
                                                    &:hover {
                                                        a {
                                                            .megaT {
                                                                color: #ffffff;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .headerRight {
                ul {
                    li {
                        a {
                            width: 35px;
                            height: 35px;
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }
}


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

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

@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0) translateX(-50%);
        transform: scaleY(0) translateX(-50%);
    }

    100%,
    80% {
        -webkit-transform: scaleY(1.1) translateX(-50%);
        transform: scaleY(1.1) translateX(-50%);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0) translateX(-50%);
        transform: scaleY(0) translateX(-50%);
    }

    100%,
    80% {
        -webkit-transform: scaleY(1) translateX(-50%);
        transform: scaleY(1) translateX(-50%);
    }
}

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

    100% {
        transform: translateY(0) translateX(-50%);
    }
}


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

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

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

        .sideLogo {
            width: 165px;

            img {
                width: 100%;
            }
        }

        .closeIcon {
            cursor: pointer;
            color: #b4b4b4;
            font-size: 30px;
            transition: 0.5s;

            &:hover {
                transform: rotate(90deg);
            }
        }
    }

    .sideMenu {
        padding: 25px;
        padding-top: 15px;

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

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

                a {
                    color: #383838;
                    display: inline-flex;
                    /* padding: 15px 0; */
                    font-size: 16px;
                    font-weight: 600;
                    margin: 2px 0;
                    padding: 10px;
                    border-radius: 8px;
                    transition: 0.6s;
                }

                &.mobDrop {
                    position: relative;

                    .toggleBtn2 {
                        position: absolute;
                        right: 0;
                        top: 8px;
                        width: 30px;
                        height: 30px;
                        display: flex;
                        z-index: 2;
                        align-items: center;
                        justify-content: center;
                        cursor: pointer;
                        color: #474747;
                        font-size: 14px;
                        transition: 0.5s;
                    }

                    ul {
                        display: none;
                        padding-left: 20px;

                        li:first-child {
                            .toggleBtn2 {
                                top: 7px;
                            }

                            ul {
                                li {
                                    a {
                                        padding: 10px 0;
                                    }

                                    /* &:first-child {
                                        a {
                                            padding-top: 0px;
                                        }
                                    } */
                                }
                            }
                        }
                    }

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

                        &>a {
                            display: block;
                            color: #ffffff;
                            background-color: #E30011;

                            &+.toggleBtn2 {
                                right: 7px;
                                top: 6px;
                                color: #ffffff;
                            }
                        }
                    }

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

                        &>a {
                            display: block;
                            color: #ffffff;
                            background-color: #E30011;

                            &+.toggleBtn2 {
                                right: 7px;
                                top: 6px;
                                color: #ffffff;
                            }
                        }

                        ul {
                            li {
                                &.mobDrop {
                                    .toggleBtn2 {
                                        transform: rotate(0deg);
                                    }

                                    &.open {
                                        &>a {
                                            display: block;
                                            color: #ffffff;
                                            background-color: #E30011;

                                            &+.toggleBtn2 {
                                                right: 7px;
                                                top: 7px;
                                                color: #ffffff;
                                            }
                                        }

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

    .sideMenuMiddle {
        display: flex;
        height: calc(100vh - 80px);
        overflow: auto;

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

            .socialWrap {
                transform: rotate(180deg);
                writing-mode: vertical-rl;
                width: 100%;
                height: 100%;
                align-items: center;
                justify-content: center;
                display: flex;
                gap: 30px;
                background-color: #2020209c;

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

                .socialIcon {
                    display: flex;
                    gap: 25px;
                    writing-mode: sideways-rl;

                    a {
                        font-size: 16px;
                        color: #b6b6b6;
                        transition: 0.5s;

                        &:hover {
                            color: #dfb43f;
                        }
                    }
                }
            }
        }

        .sideMenu {
            width: 100%;
            position: relative;

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

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

    .sideMenuWrap {
        transform: translateX(0);

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

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

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

                    &.active {
                        >a {
                            color: #E30011;
                        }
                    }

                    &.has_submenu {
                        &.active {
                            &>a {
                                display: block;
                                color: #ffffff;
                                background-color: #e30011;

                                &+.toggleBtn2 {
                                    color: #fff;
                                }
                            }

                            &>ul {
                                display: block;
                            }

                            ul {
                                .active {
                                    &>a {
                                        display: block;
                                        color: #ffffff;
                                        background-color: #E30011;
                                    }

                                    ul {
                                        .active {
                                            &>a {
                                                color: #e30011;
                                                background-color: transparent;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

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

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

/* language popup */
#translatePopup {
    top: 85px !important;
    right: 60px !important;

    select {
        min-height: 45px;
    }
}

.stickyH {
    #translatePopup {
        top: 60px !important;
        right: 30px !important;
    }
}

/* searchbar */
.search-popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    backdrop-filter: blur(10px);

    /* width: 337px; */
    #ajaxsearchlite1 {
        background-color: #ffffff !important;
        background-image: none !important;
        border-radius: 6px;

        input {
            background-color: #d71921 !important;
            height: 50px !important;
        }
    }
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    background-color: #d71921 !important;
    height: 50px !important;
    background-image: none !important;
}

div.asl_w .probox .promagnifier {
    width: 50px !important;
    height: 50px !important;
    background-image: none !important;
    background-color: #000 !important;
}

.close-search {
    top: 0px !important;
    right: 20px !important;
}

.search-popup-box {
    background: #ffffff8f;
}

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

div.asl_w .probox .proclose {
    height: 48px !important;
}

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


@media(max-width: 1768px) {
    .header {
        & .headerInner {
            .headerLogo {
                width: 170px;
            }

            .headerMiddle {
                width: calc(100% - 320px);

                .manuWrap {
                    ul {
                        >li {
                            padding: 0 14px;
                        }
                    }
                }
            }

            .headerRight {
                /* width: 190px; */
            }
        }
    }
}

@media (max-width: 1600px) {
    .header {
        padding: 10px 60px 0px;

        .headerInner {
            .headerLogo {
                width: 170px;
            }

            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            font-size: 15px;

                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                padding: 0 15px;

                                                li {
                                                    margin-bottom: 15px;

                                                    a {
                                                        padding: 15px;
                                                        padding-right: 55px;

                                                        .megaT {
                                                            font-size: 18px;
                                                            margin-bottom: 5px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    #translatePopup {
        top: 80px !important;
    }
}

@media(max-width: 1580px) {
    .header {
        & .headerInner {
            .headerLogo {
                width: 170px;
            }

            .headerMiddle {
                width: calc(100% - 340px);

                .manuWrap {
                    ul {
                        >li {
                            padding: 0 12px;
                            font-size: 16px;
                        }
                    }
                }
            }

            .headerRight {
                width: 170px;
            }
        }
    }
}


@media screen and (max-width: 1560px) {
    .header {
        padding: 15px 10px;

        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        >li {
                            font-size: 14px;

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

    #translatePopup {
        right: 12px !important;
        padding: 8px 10px;
    }
}


@media(max-width: 1380px) {
    .header {
        .headerInner {
            .headerLogo {
                width: 160px;
            }

            .headerMiddle {
                width: calc(100% - 260px);

            }

            .headerRight {
                width: 100px;

                ul {
                    li {
                        margin-right: 8px;
                        padding-right: 8px;
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            >li {
                                padding: 0 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1366px) {
    .header {
        .headerInner {
            padding: 0px 20px;

            .headerMiddle {

                .manuWrap {
                    ul {
                        li {
                            padding: 0 10px;

                            &.hasMegaMenu {
                                .megaMenu {
                                    max-width: 100%;
                                    position: fixed;
                                    top: 85px;
                                    padding: 0 10px;

                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        padding-right: 55px;

                                                        p {
                                                            font-size: 14px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerMiddle {

                    .manuWrap {
                        ul {
                            li {
                                padding: 0 10px;

                                &.has-submenu {
                                    padding-right: 15px;
                                }

                                &.hasMegaMenu {
                                    .megaMenu {
                                        top: 60px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            &.hasMegaMenu {
                                .megaMenu {
                                    max-width: 75%;

                                    .megaMenuInn {
                                        .menuCatWrap {
                                            .menuCatContent {
                                                .megaMenuList {
                                                    li {
                                                        a {
                                                            padding: 10px 0;
                                                        }

                                                        &:first-child {
                                                            padding-top: 0;
                                                        }
                                                    }
                                                }
                                            }
                                        }

                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        p {
                                                            display: none;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

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

@media (max-width: 1460px) {
    .header {
        &.is-sticky {
            .headerInner {

                .headerMiddle {
                    width: calc(100% - 245px);
                }

                .headerRight {
                    width: 100px;
                }
            }
        }
    }
}

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

            .headerLogo {
                width: 110px;
            }

            .headerMiddle {
                width: calc(100% - 110px);

                .manuWrap {
                    ul {
                        li {
                            line-height: 60px;

                            &.hasMegaMenu {
                                .megaMenu {
                                    top: 65px;

                                    .megaMenuInn {
                                        padding: 15px 0px;

                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        padding: 12px;
                                                        padding-right: 55px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .headerRight {
                ul {
                    li {
                        a {
                            width: 35px;
                            height: 35px;
                            font-size: 17px;
                        }
                    }
                }
            }
        }
    }

    #translatePopup {
        top: 75px !important;
    }

    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            &.hasMegaMenu {
                                .megaMenu {
                                    max-width: 97%;
                                    top: 75px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1279px) {
    .header {
        &.is-sticky {
            padding: 5px 5px;

            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        top: 55px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        >li {
                            a {
                                font-size: 14px;
                            }
                        }
                    }
                }
            }
        }
    }

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

@media screen and (max-width: 1200px) {
    .header {
        .headerInner {
            padding: 0px 15px;

            /* .headerLogo {
                width: 140px;
            } */

            .headerRight {
                width: 90px;

                ul {
                    li {
                        a {
                            width: 35px;
                            height: 35px;
                            font-size: 18px;
                        }
                    }
                }
            }

            .headerMiddle {
                width: calc(100% - 230px);

                .manuWrap {
                    ul {
                        >li {
                            padding: 0 6px;
                            line-height: 60px;

                            a {
                                font-size: 13px;
                            }
                        }

                        li {
                            .toggleArrow {
                                font-size: 10px;
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            >li {
                                padding: 0 6px;
                            }
                        }
                    }
                }
            }
        }
    }

    #translatePopup {
        select {
            min-height: 42px;
            font-size: 13px;
        }
    }
}

@media(max-width: 1100px) {
    .header {
        .headerInner {
            /* .headerLogo {
                width: 130px;
            } */

            .headerMiddle {
                width: calc(100% - 210px);
            }

            .headerRight {
                width: 80px;

                ul {
                    li {
                        a {
                            width: 30px;
                            height: 30px;
                            font-size: 16px;
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerLogo {
                    width: 130px;
                }

                .headerMiddle {
                    width: calc(100% - 210px);

                    .manuWrap {
                        & ul {
                            li {
                                padding: 0 6px;
                            }
                        }
                    }
                }

                .headerRight {
                    width: 80px;

                    ul {
                        li {
                            a {
                                width: 30px;
                                height: 30px;
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

    #translatePopup {
        top: 65px !important;
    }

    .stickyH {
        #translatePopup {
            right: 8px !important;
        }
    }
}

@media (max-width: 1100px) {
    .header {
        .headerInner {
            padding: 10px 15px;
            justify-content: space-between;

            .headerMiddle {
                display: none;
            }

            .headerRight {
                width: auto;

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

                        &.mobMenuBtn {
                            display: block;
                        }

                        &:nth-child(2) {
                            &::after {
                                display: block;
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerLogo {
                    width: 110px;
                }
            }
        }
    }
}

@media screen and (max-width: 991px) {
    .header {
        .headerInner {
            justify-content: space-between;
            padding: 10px 10px;

            .headerMiddle {
                display: none;
            }

            .headerRight {
                width: 150px;

                ul {
                    align-items: center;

                    li {
                        a {
                            width: auto;
                            height: auto;
                            padding: 0px;
                            font-size: 20px;
                            border: none;
                        }

                        &:after {
                            height: 20px;
                        }

                        &::after {
                            width: 1px;
                            height: 30px;
                            background-color: #808080;
                            position: absolute;
                            right: 0;
                            content: "";
                            top: 50%;
                            transform: translateY(-50%);
                        }

                        &:last-child {
                            display: block;
                        }

                        &:nth-child(2) {
                            margin-right: 15px;
                            padding-right: 15px;

                            &:after {
                                display: block;
                            }
                        }
                    }
                }
            }
        }
    }

    #translatePopup {
        top: 60px !important;
    }

    .bannerWrap {
        .bannerSLider {
            .banImg {
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .sideMenuWrap {
        .sideMenuTop {
            padding: 18px 12px;

            .sideLogo {
                width: 140px;
            }

            .closeIcon {
                width: 18px;
                height: auto;

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

        .sideMenu {
            padding: 12px;
            padding-top: 15px;
        }
    }
}

@media (max-width: 420px) {
    .sideMenuWrap {
        .sideMenuTop {
            .closeIcon {
                width: 15px;
            }
        }
    }
}

/* end responsive */

/* start min-width */
@media(min-width: 1921px) {
    .header {
        .headerInner {
            .headerLogo {
                width: 250px;
            }

            .headerMiddle {
                width: calc(100% - 400px);

                .manuWrap {
                    ul {
                        li {
                            .toggleArrow {
                                font-size: 14px;
                                padding-left: 2px;
                            }

                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        .megaT {
                                                            font-size: 22px;
                                                        }

                                                        p {
                                                            font-size: 16px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .headerRight {
                ul {
                    li {
                        a {
                            width: 52px;
                            height: 52px;
                            font-size: 28px;
                        }
                    }
                }
            }
        }

        &.is-sticky {

            .headerInner {
                .headerInner {
                    .headerLogo {
                        width: 190px;
                    }
                }

                .headerMiddle {
                    .manuWrap {
                        ul {
                            &>li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        .megaMenuInn {
                                            .menuCatList {
                                                .megaTabs {
                                                    li {
                                                        a {
                                                            .megaT {
                                                                font-size: 20px;
                                                            }

                                                            p {
                                                                font-size: 16px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            >li {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(min-width: 2400px) {
    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        .megaT {
                                                            font-size: 24px;
                                                        }

                                                        p {
                                                            font-size: 18px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {

            .headerInner {
                .headerLogo {
                    width: 200px;
                }

                .headerMiddle {
                    .manuWrap {
                        ul {
                            &>li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        .megaMenuInn {
                                            .menuCatList {
                                                .megaTabs {
                                                    li {
                                                        a {
                                                            .megaT {
                                                                font-size: 22px;
                                                            }

                                                            p {
                                                                font-size: 18px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            >li {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(min-width: 2560px) {
    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        .megaT {
                                                            font-size: 26px;
                                                        }

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

        &.is-sticky {
            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            &>li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        .megaMenuInn {
                                            .menuCatList {
                                                .megaTabs {
                                                    li {
                                                        a {
                                                            .megaT {
                                                                font-size: 24px;
                                                            }

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

                            >li {
                                font-size: 20px;
                            }
                        }
                    }
                }
            }
        }
    }

    .search-popup-box {
        max-width: 1030px !important;
        padding: 60px 40px !important;
    }

    .search-popup {
        #ajaxsearchlite1 {
            input {
                font-size: 18px !important;
                height: 50px !important;
            }
        }
    }
}

@media(min-width: 2880px) {
    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        .megaT {
                                                            font-size: 28px;
                                                        }

                                                        p {
                                                            font-size: 22px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            .toggleArrow {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            &>li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        .megaMenuInn {
                                            .menuCatList {
                                                .megaTabs {
                                                    li {
                                                        a {
                                                            .megaT {
                                                                font-size: 26px;
                                                            }

                                                            p {
                                                                font-size: 22px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            >li {
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(min-width: 3840px) {
    .header {
        .headerInner {
            .headerMiddle {
                .manuWrap {
                    ul {
                        li {
                            ul.subMenu {
                                width: 370px;
                                padding: 30px 0;
                            }

                            .toggleArrow {
                                font-size: 18px;
                            }

                            &.hasMegaMenu {
                                .megaMenu {
                                    .megaMenuInn {
                                        .menuCatList {
                                            .megaTabs {
                                                li {
                                                    a {
                                                        padding-right: 72px;

                                                        .megaT {
                                                            font-size: 30px;
                                                        }

                                                        p {
                                                            font-size: 24px;
                                                            line-height: 1.4;
                                                        }

                                                        &::after {
                                                            width: 50px;
                                                            height: 50px;
                                                            font-size: 20px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .headerInner {
                .headerMiddle {
                    .manuWrap {
                        ul {
                            &>li {
                                &.hasMegaMenu {
                                    .megaMenu {
                                        .megaMenuInn {
                                            .menuCatList {
                                                .megaTabs {
                                                    li {
                                                        a {
                                                            .megaT {
                                                                font-size: 30px;
                                                            }

                                                            p {
                                                                font-size: 26px;
                                                            }

                                                            &::after {
                                                                width: 50px;
                                                                height: 50px;
                                                                font-size: 20px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            >li {
                                font-size: 26px;
                            }
                        }
                    }
                }

                .headerRight {
                    ul {
                        li {
                            a {
                                width: 50px;
                                height: 50px;
                                font-size: 26px;
                            }
                        }
                    }
                }
            }
        }
    }

    .search-popup-box {
        max-width: 1090px !important;
    }

    #translatePopup {
        select {
            min-height: 60px;
            font-size: 24px;
        }
    }
}

/* end min-width */