Current File : /home/mdkeenpw/public_html/wp-content/themes/logistik/assets/sass/template/headers/_header.scss
.themeholy-header {
    position: relative;
    z-index: 41;
}


.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.sticky-wrapper {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: $white-color;
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);

    &.sticky {
        top: 0;

        .header-logo {
            padding-bottom: 0;
            margin-left: 0px;

            @include md {
                margin-top: 0;
            }
        }
    }
}

.themeholy-header .sticky-wrapper {
    transition: 0.4s ease-in-out;

    &.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        z-index: 999;
        animation: headerSticky .95s ease forwards;
    }
}


.main-menu {
    a {
        display: block;
        position: relative;
        font-weight: 500;
        font-size: 16px;
        color: $title-color;
        font-family: $body-font;
        text-transform: uppercase;

        &:hover {
            color: $theme-color;

        }
    }

    >ul {
        >li {
            margin: 0 14px;

            @include lg {
                margin: 0 10px;
            }

            >a {
                padding: 36px 0;
                color: $title-color;

                &:hover {
                    color: $theme-color;
                }
            }
        }
    }

    ul {
        margin: 0;
        padding: 0;

        li {
            list-style-type: none;
            display: inline-block;
            position: relative;

            &.menu-item-has-children {
                >a {
                    &:hover {
                        &:after {
                            content: "\f068";
                        }
                    }

                    &:after {
                        content: "\2b";
                        position: relative;
                        font-family: $icon-font;
                        margin-left: 4px;
                        font-weight: 900;
                        top: 0;
                        font-size: 12px;
                        transform: scaleX(1);
                        transition: all 0.4s ease-in-out;
                    }
                }
            }

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

            &:first-child {
                margin-left: 0 !important;
            }

            &:hover {
                &.menu-item-has-children {
                    // >a {
                    //     &:before {
                    //         height: 0;
                    //         margin-top: 0;
                    //         transform: scaleX(0);
                    //     }

                    //     // &:after {
                    //     //     background: $theme-color;
                    //     // }
                    // }
                }

                >ul.sub-menu {
                    visibility: visible;
                    opacity: 1;
                    transform: scaleY(1);
                    z-index: 9;
                }
            }
        }
    }

    ul.sub-menu {
        position: absolute;
        text-align: left;
        top: 100%;
        left: 0;
        background-color: $white-color;
        visibility: hidden;
        min-width: 280px;  
        width: max-content;
        padding: 7px;
        left: -14px;
        opacity: 0;
        z-index: -1;
        border: 0;
        box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
        border-radius: 0;
        transform: scaleY(0);
        transform-origin: top center;
        border-bottom: 2px solid $theme-color;
        transition: all 0.4s ease 0s;

        a {
            font-size: 16px;
            line-height: 30px;
        }
    }

    ul.sub-menu {
        padding: 18px 20px 18px 18px;
        left: -27px;



        // &:before {
        //   content: "";
        //   position: absolute;
        //   left: 34.5px;
        //   top: 30px;
        //   width: 1px;
        //   background-color: #ededed;
        //   height: calc(100% - 60px);
        // }

        li {
            display: block;
            margin: 0 0;
            padding: 0px 9px;
            transition: all 0.4s ease-in-out;



            &.menu-item-has-children {
                >a:after {
                    content: "\f105";
                    float: right;
                    top: 1px;
                }
            }

            a {
                position: relative;
                padding-left: 0px;
                text-transform: capitalize;
                transition: all 0.4s ease-in-out;

                &:hover {
                    padding-left: 30px;

                    &:before {
                        visibility: visible;
                        opacity: 1;
                        left: 0;
                    }
                }

                &:before {
                    content: "\f48b";
                    position: absolute;
                    top: 8px;
                    left: 10px;
                    font-family: var(--icon-font);
                    width: 22px;
                    height: 22px;
                    text-align: center;
                    border-radius: 50%;
                    display: inline-block;
                    font-size: 1em;
                    line-height: 1;
                    color: var(--theme-color);
                    font-weight: 500;
                    opacity: 0;
                    visibility: visible;
                    transition: all 0.4s ease-in-out;
                }
            }

            ul.sub-menu {
                left: 100%;
                right: auto;
                top: 0;
                margin: 0 0;
                margin-left: 20px;

                li {
                    ul {
                        left: 100%;
                        right: auto;
                    }
                }
            }
        }
    }
}

.header-button {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 33px;

    @include xxl {}

    .icon-btn {
        position: relative;
        color: $title-color;
        border-color: transparent;
        display: inline-block;
        width: auto;
        height: auto;
        line-height: auto;
        padding: 0;
        font-size: var(--btn-font-size, 16px);

        &:hover {
            color: $theme-color;

            .badge {
                background-color: $white-color;
                color: $theme-color;
            }
        }
    }
}

.header-links {
    ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    li {
        display: inline-block;
        position: relative;
        font-size: 16px;
        font-weight: 400;
        border-right: 2px solid rgba(255, 255, 255, 0.15);
        padding-right: 25px;
        max-height: 20px;
        line-height: 20px;

        @include lg {
            font-size: 14px;
            padding-right: 20px;
        }

        &:last-child {
            border-right: 1px solid transparent;
            padding-right: 0;

        }

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

            @include lg {
                margin: 0 15px 0 0;
            }
        }

        >i {
            font-size: 18px;
            margin-right: 6px;
            color: $theme-color;
            display: inline-block;
            width: 22px;
            height: 22px;
            line-height: 20px;
            text-align: center;

            @include lg {
                font-size: 16px;
                width: 15px;
                height: 15px;
            }
        }
    }

    li,
    span,
    p,
    a {
        font-family: $body-font;
        color: $title-color;
    }

    a:hover {
        color: $theme-color;
    }

    i {
        color: $title-color;
    }

    b,
    strong {
        font-weight: 600;
    }
}

.header-social {
    .social-title {
        font-weight: 400;
        font-size: 16px;
        display: inline-block;
        margin: 0 10px 0 0;
        color: $title-color;
    }

    a {
        font-size: 16px;
        display: inline-block;
        color: $body-color;
        margin: 0 10px 0 0;

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

        &:hover {
            color: $theme-color;
        }
    }
}

.header-logo {
    padding-bottom: 48px;

    &.style3 {
        padding-bottom: 0;

        @media(min-width: 1922px) {
            margin-left: 0;
        }
    }

    @include md {
        padding-bottom: 0;
        margin-top: -50px;
    }

    @include sm {
        margin-top: 0;
    }

    @media(min-width: 1922px) {
        margin-left: -50px;
    }
}

/* Header 1 ---------------------------------- */
.header-layout1 {
    position: relative;


    .header-top {
        position: relative;
        padding: 12px 0;
        z-index: 4;

        @include sm {
            display: none;
        }
    }

    .header-links {
        margin-left: 148px;


        @media(max-width: 1599px) {
            margin-left: 230px;
        }

        @media(max-width: 1499px) {
            margin-left: 250px;
        }

        @media(max-width: 1299px) {
            margin-left: 200px;
        }

        @include lg {
            margin-left: 250px;
        }

        @include md {
            margin-left: 210px;
        }


        li,
        span,
        p,
        a {
            font-family: $body-font;
            color: $white-color;
            font-size: 16px;
            font-weight: 400;

            @include lg {
                font-size: 14px;
            }
        }

        a {
            &:hover {
                color: $theme-color;
            }
        }

        li {
            .link-title {
                font-weight: 500;
            }
        }

    }

    .header-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: -180px;

        @media(max-width: 1699px) {
            margin-right: 0;
        }

        @include md {
            display: none;
        }



        .langauge {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;

            &.lang-dropdown {
                position: relative;

                .dropdown-toggle {
                    font-family: var(--body-font);
                    background: none;
                    border: none;
                    width: 100%;
                    color: var(--white-color);
                    font-weight: 400;
                    font-size: 16px;
                    padding-left: 15px;
                    height: 24px;
                    line-height: 24px;
                    padding: 0;
                    border-radius: 0;
                    border-right: 1px solid rgba(255, 255, 255, 0.3);
                    padding-right: 50px;
                    margin-right: 30px;
                }

                .dropdown-menu {
                    position: absolute;
                    right: 0;
                    border-bottom: 2px solid var(--theme-color);
                    border-radius: 0;
                }

                .gtranslate_wrapper {
                    a {
                        display: block;
                        font-weight: 400;
                        font-size: 16px;
                        color: $title-color;
                        font-family: $title-font;
                        padding: 5px 10px;
                        transition: all 0.4s ease-in-out;

                        &:hover {
                            background-color: $theme-color;
                            color: $white-color;
                        }
                    }
                }
            }

            @include lg {
                display: none;
            }

            img {
                min-width: 24px;
                min-height: 24px;
            }

            .nice-select {
                font-family: $body-font;
                background: none;
                border: none;
                width: 100%;
                color: $white-color;
                font-weight: 400;
                font-size: 16px;
                padding-left: 15px;
                height: 24px;
                line-height: 24px;
                padding: 0;
                border-radius: 0;
                border-right: 1px solid rgba(255, 255, 255, 0.3);
                padding-right: 50px;
                margin-right: 30px;

                &:after {
                    content: "\f107";
                    right: 35px;
                    top: -14px;
                    border-bottom: none;
                    border-right: none;
                    font-size: 14px;
                    transform: rotate(0deg);
                }

                &.open {
                    @extend :active;

                    &:after {
                        transform: rotate(0deg);
                    }

                    .list {
                        margin-top: 0;
                        opacity: 1;
                        pointer-events: auto;
                        transform: scale(1) translateY(0);
                    }
                }

                .option {
                    color: $title-color;
                    min-height: 30px;

                    &.selected {
                        color: $theme-color !important;
                        background: $theme-color !important;

                        &.focus {
                            color: #fff !important;
                            background: $theme-color !important;
                        }
                    }

                    &:hover,
                    &.focus {
                        background: $theme-color !important;
                        color: #fff !important;
                    }
                }
            }
        }

        .header-social {
            a {
                font-size: 16px;
                display: inline-block;
                color: $white-color;
                margin: 0 15px 0 0;
                transition: all 0.4s ease-in-out;

                &:hover {
                    color: $theme-color;
                }
            }
        }
    }

    .header-button {
        .themeholy-btn {
            @media(max-width: 1420px) {
                display: none;
            }
        }

        .icon-btn {
            position: relative;
            color: $title-color;
            font-size: 22px;

            &:hover {
                color: $theme-color;
            }


            i {
                border-right: 1px solid $light-color;
                padding-right: 27px;
                max-height: 30px;
                line-height: 25px;
                color: $title-color;
                font-weight: 500;
            }

        }
    }

    .menu-area {
        position: relative;
        z-index: 3;

        @include md {
            padding: 15px 0;
        }
    }

    .main-menu {
        @media(min-width: 2299px) {
            margin-left: 50px;
        }

        @include xxl {
            margin-left: 30px;
        }

        @include lg {
            margin-right: 50px;
        }

        @media(max-width: 1040px) {
            margin-right: 10px;
        }
    }

    .sticky-wrapper {
        position: relative;

        &.sticky {
            .menu-area {
                @include md {
                    padding: 11px 0;
                }
            }

            .logo-bg {
                height: 149px;

                @include md {
                    height: 137px;
                }

                &:after {
                    height: calc(100% - 1px);

                    @media(min-width: 2299px) {
                        top: 0%;
                        right: 4%;
                    }

                    @media(max-width: 2299px) {
                        top: 0%;
                        right: 4%;
                    }

                    @media(max-width: 1399px) {
                        top: 0%;
                        right: -2%;
                    }
                }
            }
        }
    }

    .menu-shape {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: calc(100% - 0px);

        .top-shape {
            background-color: $title-color;
            height: calc(100% - 100px);
            background-size: auto;
            background-repeat: repeat;

            @include md {
                height: calc(100% - 85px);
            }

            @include sm {
                display: none;
            }
        }
    }

    .menu-bg {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 81%;
        clip-path: polygon(76px 0, 100% 0%, 100% 100%, 0% 100%);
    }

    .logo-bg {
        position: absolute;
        top: -51%;
        left: 0;
        width: 22%;
        height: 150px;

        @media(min-width: 2399px) {
            width: 32%;
        }

        @media(max-width: 2399px) {
            width: 29%;
        }

        @media(max-width: 2199px) {
            width: 24%;
        }

        @media(max-width: 1899px) {
            width: 23%;
        }

        @media(max-width: 1699px) {
            width: 20%;
        }

        @media(max-width: 1420px) {
            width: 24%;
        }

        @media(max-width: 1299px) {
            width: 22%;
        }


        &:before,
        &:after {
            content: '';
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        &:before {
            background-color: $theme-color;
            width: 100%;
            clip-path: polygon(0% 0%, 83% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }

        &:after {
            top: 0px;
            right: 4px;
            left: auto;
            width: 222.29px;
            background-color: rgba(255, 255, 255, 0.5);
            z-index: 1;
            clip-path: path('M0.707031 0L135.912 19.1896L223 150L142.211 10.4819L0.707031 0Z');

            @media(min-width: 2299px) {
                top: 2%;
                right: 7%;
            }

            @media(max-width: 2299px) {
                top: 2%;
                right: 35px;
            }

            @media(max-width: 2099px) {
                top: 2%;
                right: 25px;
            }

            @media(max-width: 1999px) {
                top: 0%;
                right: 4px;
            }

            @media(max-width: 1899px) {
                top: 2%;
                right: 25px;
            }

            @media(max-width: 1699px) {
                top: 2%;
                right: -10px;
            }

            @media(max-width: 1499px) {
                top: 0%;
                right: -3%;
            }

            @media(max-width: 1299px) {
                display: none;
            }
        }
    }

    .logo-shape {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
}


@media (min-width: 1420px) {
    .header-top {}

    .header-layout1 {
        .menu-area {
            --main-container: 1620px;
        }
    }
}

@media (max-width: 1299px) {
    .header-layout1 {
        .menu-area {
            .container {
                max-width: 100%;
            }
        }
    }
}


@include lg {
    .header-layout1 {
        .logo-bg {
            width: 27%;
        }

        .menu-bg {
            width: 78%;
        }
    }
}

@include md {
    .header-layout1 {
        .logo-bg {
            width: 32%;
            top: -74%;

        }

        .menu-bg {
            width: 53%;
        }

        .header-logo {
            img {
                max-height: 80px;
            }
        }
    }
}

@media(max-width: 850px) {
    .header-layout1 {
        .logo-bg {
            width: 34%;
            top: -74%;

        }
    }
}

@include sm {
    .header-layout1 {
        .logo-bg {
            width: 45%;
        }

        .menu-bg {
            width: 55%;
        }

        .header-logo {
            img {
                max-height: 50px;
                max-width: 160px;
            }
        }
    }
}

@include xs {
    .header-layout1 {
        .logo-bg {
            width: 57%;
        }

        .menu-bg {
            width: 57%;
        }
    }
}

@include vxs {
    .header-layout1 {
        .logo-bg {
            width: 60%;
        }

        .menu-bg {
            width: 60%;
        }
    }
}

/* Header 2 ---------------------------------- */
.header-layout2 {
    position: relative;


    .header-top {
        position: relative;
        padding: 12px 0;
        z-index: 9;

        @include md {
            display: none;
        }
    }

    .header-logo {
        @include lg {
            margin-left: -30px;
            margin-top: 0;
        }

        @include xs {
            margin-left: 0;
        }
    }

    .header-links {
        margin-left: 230px;

        @include xxl {
            margin-left: 230px;
        }

        @media(max-width: 1399px) {
            margin-left: 350px;
        }


        li,
        span,
        p,
        a {
            font-family: $body-font;
            color: #CDCDCD;
            font-size: 16px;
            font-weight: 400;
        }

        li {
            .link-title {
                font-weight: 700;
                color: $white-color;
            }
        }

    }

    .header-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: -130px;

        @media(min-width: 1999px) {
            margin-right: 0;
        }

        @media(max-width: 1599px) {
            margin-right: 0;
        }

        @include xl {
            display: none;
        }

        .langauge {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;

            &.lang-dropdown {
                position: relative;

                .dropdown-toggle {
                    font-family: var(--body-font);
                    background: none;
                    border: none;
                    width: 100%;
                    color: var(--white-color);
                    font-weight: 400;
                    font-size: 16px;
                    padding-left: 15px;
                    height: 24px;
                    line-height: 24px;
                    padding: 0;
                    border-radius: 0;
                    border-right: 1px solid rgba(255, 255, 255, 0.3);
                    padding-right: 50px;
                    margin-right: 30px;
                }

                .dropdown-menu {
                    position: absolute;
                    right: 0;
                    border-bottom: 2px solid var(--theme-color);
                    border-radius: 0;
                }

                .gtranslate_wrapper {
                    a {
                        display: block;
                        font-weight: 400;
                        font-size: 16px;
                        color: $title-color;
                        font-family: $title-font;
                        padding: 5px 10px;
                        transition: all 0.4s ease-in-out;

                        &:hover {
                            background-color: $theme-color;
                            color: $white-color;
                        }
                    }
                }
            }

            img {
                min-width: 24px;
                min-height: 24px;
            }

            .nice-select {
                font-family: $body-font;
                background: none;
                border: none;
                width: 100%;
                color: $white-color;
                font-weight: 400;
                font-size: 16px;
                padding-left: 15px;
                height: 24px;
                line-height: 24px;
                padding: 0;
                border-radius: 0;
                border-right: 1px solid rgba(255, 255, 255, 0.3);
                padding-right: 50px;
                margin-right: 30px;

                &:after {
                    content: "\f107";
                    right: 35px;
                    top: -14px;
                    font-size: 14px;
                    transform: rotate(0deg);
                    border-bottom: none;
                    border-right: none;
                }

                &.open {
                    @extend :active;

                    &:after {
                        transform: rotate(0deg);
                    }

                    .list {
                        margin-top: 0;
                        opacity: 1;
                        pointer-events: auto;
                        transform: scale(1) translateY(0);
                    }
                }

                .option {
                    color: $title-color;
                    min-height: 30px;

                    &.selected {
                        color: $theme-color !important;
                        background: $theme-color !important;

                        &.focus {
                            color: #fff !important;
                            background: $theme-color !important;
                        }
                    }

                    &:hover,
                    &.focus {
                        background: $theme-color !important;
                        color: #fff !important;
                    }
                }
            }
        }

        .header-social {
            a {
                font-size: 16px;
                display: inline-block;
                color: $white-color;
                margin: 0 15px 0 0;

                &:hover {
                    color: $theme-color;
                }
            }
        }
    }

    .header-button {
        .icon-btn {
            position: relative;
            color: $title-color;
            font-size: 22px;

            .themeholy-btn {
                @include xxl {
                    display: none;
                }
            }

            i {
                border-right: 1px solid $light-color;
                padding-right: 27px;
                max-height: 30px;
                line-height: 25px;
            }

        }
    }

    .menu-area {
        position: relative;
        z-index: 3;

        @include md {
            padding: 15px 0;
        }
    }

    .main-menu {
        @media(max-width: 1299px) {
            margin-right: -25px;
        }
    }

    .sticky-wrapper {
        position: relative;

        &.sticky {
            .header-logo {
                @include lg {
                    margin-left: -30px;
                }

                @include xs {
                    margin-left: 0;
                }
            }

            @include md {
                .menu-area {
                    padding: 7px 0;
                }
            }

            .logo-bg {
                height: 149px;

                @include md {
                    height: 105px;
                }

                &:before {
                    height: 94%;
                }

                &:after {
                    display: none;

                    @media(min-width: 2299px) {
                        display: none;
                    }
                }
            }
        }
    }

    .menu-shape {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: calc(100% - 0px);

        .top-shape {
            background-color: $theme-color-2;
            height: calc(100% - 100px);
            background-size: auto;
            background-repeat: repeat;
        }
    }

    .menu-bg {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 81%;
        clip-path: polygon(76px 0, 100% 0%, 100% 100%, 0% 100%);
    }

    .logo-bg {
        position: absolute;
        top: -41%;
        left: 0;
        width: 22%;
        height: 140px;

        @media(min-width: 2399px) {
            width: 32%;
        }

        @media(max-width: 2399px) {
            width: 28%;
        }

        @media(max-width: 1999px) {
            width: 26%;
        }

        @media(max-width: 1699px) {
            width: 22%;
        }

        @media(max-width: 1599px) {
            width: 20%;
        }

        @media(max-width: 1499px) {
            width: 18%;
        }

        @media(max-width: 1399px) {
            width: 25%;
        }

        @include md {
            height: 122px;
        }


        &:before,
        &:after {
            content: '';
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        &:before {
            background-color: $theme-color;
            width: 100%;
            clip-path: polygon(0% 0%, 100% 0, 88% 100%, 88% 100%, 0% 100%);
            z-index: 2;
        }

        &:after {
            top: 0px;
            right: -20px;
            left: auto;
            width: 100px;
            height: 40px;
            background-color: rgba(245, 124, 4, 1);
            z-index: 1;
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);

            @include md {
                display: none;
            }
        }
    }
}


@media (min-width: 1400px) {
    .header-top {}

    .header-layout2 {
        .menu-area {
            --main-container: 1522px;
        }
    }
}



@media (min-width: 1700px) {
    .header-layout2 {
        .main-menu {}
    }
}

@include xxl {
    .header-layout2 .main-menu {}
}

@include ml {
    .header-layout2 {
        .header-button {
            .themeholy-btn {
                display: none;
            }
        }
    }
}

@include xl {
    .header-layout2 {
        .header-button {
            .icon-btn {
                // &:not(:first-child) {
                //     display: none;
                // }
            }
        }

        .logo-bg {
            width: 26%;
        }
    }
}

@include lg {
    .header-layout2 {
        .logo-bg {
            width: 30%;
        }

        .menu-bg {
            width: 78%;
        }
    }
}

@include md {
    .header-layout2 {
        .logo-bg {
            width: 53%;
        }

        .menu-bg {
            width: 53%;
        }

        .header-logo {
            img {
                max-height: 80px;
            }
        }
    }
}

@include sm {
    .header-layout2 {
        .logo-bg {
            width: 55%;
        }

        .menu-bg {
            width: 55%;
        }
    }

    .header-logo {
        img {
            max-height: 50px;
            max-width: 160px;
        }
    }
}

@include xs {
    .header-layout2 {
        .logo-bg {
            width: 57%;
        }

        .menu-bg {
            width: 57%;
        }
    }
}

@include vxs {
    .header-layout2 {
        .logo-bg {
            width: 60%;
        }

        .menu-bg {
            width: 60%;
        }
    }
}

/* Header 3 ---------------------------------- */
.header-layout3 {
    .header-top {
        --main-container: 1520px;
        position: relative;
        padding: 12px 0;
        z-index: 4;


        @include md {
            display: none;
        }
    }

    .menu-area {
        --main-container: 1520px;
        padding: 0 28px;
        margin-left: 0;
        position: relative;
        z-index: 3;

        @include xxl {
            padding: 0;
        }

        @include md {
            padding: 15px 0;
        }


        .header-logo {
            padding-bottom: 0;

            @include xl {
                // margin-left: -30px; 
                max-height: 50px;
                max-width: 180px;
            }

            @include md {
                margin-top: 0;
            }

            @include sm {
                margin-left: 0;
            }
        }
    }

    .main-menu {
        margin-left: -30px;

        @include xl {
            margin-left: 0;
        }
    }

    .header-links {

        li,
        span,
        p,
        a {
            font-family: $body-font;
            color: #CDCDCD;
            font-size: 16px;
            font-weight: 400;

            @include lg {
                font-size: 14px;
            }
        }

        li {
            .link-title {
                color: $white-color;
                font-weight: 500;
            }
        }

    }

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

        .langauge {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;

            img {
                min-width: 24px;
                min-height: 24px;
            }

            .nice-select {
                font-family: $body-font;
                background: none;
                border: none;
                width: 100%;
                color: $white-color;
                font-weight: 400;
                font-size: 16px;
                padding-left: 15px;
                height: 24px;
                line-height: 24px;
                padding: 0;
                border-radius: 0;
                border-right: 1px solid rgba(255, 255, 255, 0.3);
                padding-right: 50px;
                margin-right: 30px;

                &:after {
                    content: "\f107";
                    right: 35px;
                    top: -14px;
                    border-bottom: none;
                    border-right: none;
                    font-size: 14px;
                    transform: rotate(0deg);
                }

                &.open {
                    @extend :active;

                    &:after {
                        transform: rotate(0deg);
                    }

                    .list {
                        margin-top: 0;
                        opacity: 1;
                        pointer-events: auto;
                        transform: scale(1) translateY(0);
                    }
                }

                .option {
                    color: $title-color;
                    min-height: 30px;

                    &.selected {
                        color: $theme-color !important;
                        background: $theme-color !important;

                        &.focus {
                            color: #fff !important;
                            background: $theme-color !important;
                        }
                    }

                    &:hover,
                    &.focus {
                        background: $theme-color !important;
                        color: #fff !important;
                    }
                }
            }
        }

        .header-social {
            a {
                font-size: 16px;
                display: inline-block;
                color: $white-color;
                margin: 0 0px 0 15px;
                transition: all 0.4s ease-in-out;

                &:hover {
                    color: $theme-color;
                }
            }
        }
    }

    .header-button {
        .themeholy-btn {
            @media(max-width: 1599px) {
                display: none;
            }
        }

        .icon-btn {
            position: relative;
            color: $title-color;
            font-size: 22px;

            &:hover {
                color: $theme-color;
            }


            i {
                border-right: 1px solid $light-color;
                padding-right: 27px;
                max-height: 30px;
                line-height: 25px;
            }

        }
    }

    .menu-shape {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: calc(100% - 0px);

        .top-menu-shape {
            background-color: $theme-color-2;
            height: calc(100% - 50px);
            background-size: auto;
            background-repeat: repeat;
            position: relative;
            z-index: -1;
        }

    }

    .sticky-wrapper {
        max-width: 1520px;
        margin: 0px auto 0 auto;
    }
}

.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-layout3 {
    .sticky-wrapper {
        position: relative;

        &.sticky {
            .menu-area {
                @include md {
                    padding: 11px 0;
                }
            }
        }
    }
}

@media (max-width: 1299px) {
    .header-layout1 {
        .menu-area {
            .container {
                max-width: 100%;
            }
        }
    }
}

@include md {
    .header-layout3 {
        .header-logo {
            img {
                max-height: 80px;
            }
        }
    }
}

@include sm {
    .header-layout3 {
        .logo-bg {
            width: 45%;
        }

        .menu-bg {
            width: 55%;
        }

        .header-logo {
            img {
                max-height: 50px;
                max-width: 160px;
            }
        }
    }
}



@media (min-width: 1420px) {
    .header-top {}

    .header-layout1 {
        .menu-area {
            --main-container: 1620px;
        }
    }
}

@media (max-width: 1299px) {
    .header-layout1 {
        .menu-area {
            .container {
                max-width: 100%;
            }
        }
    }
}


@media (min-width: 1700px) {
    .header-layout1 {
        .main-menu {}
    }
}

@include xxl {
    .header-layout1 .main-menu {}
}

@include lg {
    .header-layout1 {
        .logo-bg {
            width: 27%;
        }

        .menu-bg {
            width: 78%;
        }
    }
}

@include md {
    .header-layout1 {
        .logo-bg {
            width: 32%;
            top: -74%;

        }

        .menu-bg {
            width: 53%;
        }

        .header-logo {
            img {
                max-height: 80px;
            }
        }
    }
}

@media(max-width: 850px) {
    .header-layout1 {
        .logo-bg {
            width: 34%;
            top: -74%;

        }
    }
}

@include sm {
    .header-layout1 {
        .logo-bg {
            width: 45%;
        }

        .menu-bg {
            width: 55%;
        }

        .header-logo {
            img {
                max-height: 50px;
                max-width: 160px;
            }
        }
    }
}

@include xs {
    .header-layout1 {
        .logo-bg {
            width: 57%;
        }

        .menu-bg {
            width: 57%;
        }
    }
}

@include vxs {
    .header-layout1 {
        .logo-bg {
            width: 60%;
        }

        .menu-bg {
            width: 60%;
        }
    }
}


.langauge {
    &.lang-dropdown {
        position: relative;

        .dropdown-toggle {
            font-family: var(--body-font);
            background: none;
            border: none;
            width: 100%;
            color: var(--white-color);
            font-weight: 400;
            font-size: 16px;
            padding-left: 15px;
            height: 24px;
            line-height: 24px;
            padding: 0;
            border-radius: 0;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
            padding-right: 50px;
            margin-right: 30px;
        }

        .dropdown-menu {
            position: absolute;
            right: 0;
            border-bottom: 2px solid var(--theme-color);
            border-radius: 0;
        }

        .gtranslate_wrapper {
            a {
                display: block;
                font-weight: 400;
                font-size: 16px;
                color: $title-color;
                font-family: $title-font;
                padding: 5px 10px;
                transition: all 0.4s ease-in-out;

                &:hover {
                    background-color: $theme-color;
                    color: $white-color;
                }
            }
        }
    }
}

.hide-icon {
    .main-menu {
        ul {
            &.sub-menu {
                li {
                    a {
                        &:hover {
                            padding-left: 0;
                        }

                        &:before {
                            display: none !important;
                        }
                    }
                }
            }
        }
    }
}