﻿.navbar-holder {
    width: 100%;
    height: 138px;
}

.navbar-holder-mobile {
    display: none;
    height: 138px;
}

#header4 {
    top: 0px;
    width: 100%;
    z-index: 1050;
    position: fixed;
}

    #header4 .navbar4 {
        color: #fff;
        height: 86px;
        display: flex;
        margin: 0 auto;
        /*        width: fit-content;*/
        align-items: center;
        /*        border-radius: 3rem;*/
        flex-direction: column;
        justify-content: center;
        background-color: transparent;
        transition: background-color linear .4s;
    }

    #header4 .navbar-top {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #header4 .navbar-content-small {
        display: none;
    }

    #header4 .navbar-right-items {
        display: flex;
        padding: 1rem;
        font-size: 17px;
        align-items: center;
        justify-content: center;
        color: var(--header_fcolor);
    }

    #header4 .navbar-center {
        width: auto;
        display: flex;
        font-size: 17px;
        align-items: center;
        padding-left: .5rem;
        padding-right: .5rem;
        justify-content: center;
        color: var(--header_fcolor);
    }

    #header4 .nav-title {
        margin: 0;
        padding: 0;
        text-align: right
    }

    #header4 .navbar-content {
        height: 100%;
        display: flex;
        padding: 0 2rem;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse;
    }

    #header4 .content-item {
        height: 100%;
        display: flex;
        font-size: 14px;
        padding: 0 .8rem;
        position: relative;
        align-items: center;
        text-decoration: none;
        color: var(--header_fcolor);
        min-width: fit-content;
    }

        #header4 .content-item:not(.dropDown-link-1) {
            direction: rtl;
        }

    #header4 .dropDown-link-1.content-item,
    #header4 .content-item {
        transition: color linear .3s;
    }

        #header4 .content-item:hover {
            color: var(--swiper-theme-color) !important;
            /*            font-weight: 800*/
        }



    #header4 .dropdown-content {
        right: 12.8px;
        top: 86px;
        display: none;
        direction: rtl;
        z-index: 10000;
        min-width: 160px;
        position: absolute;
        border-radius: 0 0 10px 10px;
        background: var(--header_bcolor1);
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        /*background: linear-gradient(270deg,var(--header_bcolor1) 27%, var(--header_hover) 65%);*/
    }

        #header4 .dropdown-content .dropdown-item {
            float: none;
            display: block;
            text-align: right;
            white-space: break-spaces;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--header_fcolor);
        }

            #header4 .dropdown-content .dropdown-item:hover, #header4 .dropdown-content-2:hover, #header4 .dropdown-content-2:hover > a {
                background-color: var(--swiper-theme-color) !important;
                color: var(--formButton_fcolor) !important;
                font-weight: 800;
            }


    #header4 .dropdown-content-2 {
        position: relative;
        width: 100%;
        text-align: right;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
        font-weight: 400
    }

        #header4 .dropdown-content-2:hover > .dropdown-content-list-2 {
            display: block;
            animation: header4fadeToLeft .3s linear;
        }

        #header4 .dropdown-content-2 .dropdown-content-list-2 {
            display: none;
            position: absolute;
            right: 160px;
            top: 0;
            background-color: #fff;
            border-radius: 0px 0 0 10px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            min-width: 160px;
        }

@keyframes header4fadeToLeft {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#header4 .navbar-left-items {
    padding: 1rem;
    min-width: fit-content
}

#header4 .panel-btn {
    padding: 0.7em;
    border: none;
    font-size: 16px;
    border-radius: 0.3rem;
    color: var(--formButton_fcolor);
    transition: background 0.2s ease-in-out;
    background-color: var(--formButton_bcolor1);
}

    #header4 .panel-btn:hover {
        cursor: pointer;
        background-color: var(--formButton_hover);
    }

#header4 .mobile-login-logo {
    display: none;
}

#header4 .nav-logo {
    /*height: 100%;*/
    padding: .5rem;
    width: 90px;
}

.openMenu {
    display: block !important;
    animation: openMenuHeader4 .2s ease-in-out;
}

@keyframes openMenuHeader4 {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media(max-width : 1200px ) {
    .navbar-holder {
        height: 125px;
    }

    .navbar-holder-mobile {
        height: 125px;
    }

    #header4 .navbar4 {
        height: 73px;
    }

    #header4 .panel-btn {
        font-size: 13px;
    }

    #header4 .navbar-content {
        padding: 0 1rem;
    }

    #header4 .content-item {
        font-size: 11px;
    }


    #header4 .navbar-center {
        font-size: 15px;
    }

    #header4 .dropdown-content {
        top: 73px;
    }

    #header4 .nav-title {
        font-size: medium;
    }
}

@media(max-width: 992px) {
    #header4 {
        top: 0;
        position: relative;
    }

    .navbar-holder {
        height: 65px;
        display: none;
    }

    .navbar-holder-mobile {
        /*        display: block;*/
        position: relative !important;
        display: flex;
        height: 65px;
        justify-content: center;
        align-items: center;
    }

    #header4 .navbar4 {
        opacity: 1;
        height: auto;
        min-width: 50%;
        /*        padding: 0 10px;*/
        align-items: stretch;
        /*        border-radius: 0 0 2em 2em;*/
    }

    #header4 .navbar-top {
        height: 56px;
        padding: 0 5px;
    }

    #header4 .navbar-content-small {
        width: 100%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    #header4 .content-item-small:not(.dropDown-link-1) {
        direction: rtl;
    }

    #header4 .dropdown-content-mobile-2 {
        padding: 0 15px;
    }

    #header4 .dropdown-content-mobile {
        width: 100%;
        display: none;
        direction: rtl;
        min-width: 160px;
        padding: 10px 0 0 0;
        /*        background: lightgray;*/
        margin-top: 10px;
    }

        #header4 .dropdown-content-mobile a, #header4 .dropDown-link-mobile-2, #header4 .dropDown-link-mobile-title {
            opacity: .9;
            float: none;
            display: block;
            padding: .7rem 10px;
            text-align: right;
            text-decoration: none;
            color: var(--header_fcolor);
            transition: all linear .3s
        }

    #header4 .dropDown-link-mobile-title {
        padding: unset;
    }

    /*    #header4 .dropdown-link-item:not(:last-child), #header4 .dropDown-link-mobile-2:not(:last-child) {
        border-bottom: 1px solid #dbdbdb
    }*/

    #header4 .sub-item:not(:last-child) {
        border-bottom: 1px solid #dbdbdb
    }


    #header4 .dropdown-content a:hover {
        color: var(--formButton_bcolor1);
    }

    #header4 .navbar-content-small > hr {
        margin: 0;
        width: 100%;
        opacity: .1;
        color: var(--header_fcolor);
    }

    #header4 .content-item-small {
        padding: 1rem 7px;
        font-size: 1rem;
        min-width: 100%;
        text-align: right;
        font-weight: 500;
        text-decoration: none;
        color: var(--header_fcolor);
    }

    #header4 .panel-btn-mobile {
        margin-bottom: 5px;
        /*        border-radius: 36px;*/
        background-color: var(--header_fcolor);
        color: var(--header_bcolor1) !important;
    }

    #header4 .navbar-content {
        display: none !important;
    }

    #header4 .navbar-center {
        font-size: 14px;
        padding: 0 !important;
    }

    #header4 .navbar-right-items {
        text-align: end;
        display: none;
        padding: 0 5px;
    }

    #header4 .navbar-left-items {
        padding: 0px 10px;
    }

    #header4 .panel-btn {
        font-size: 13px;
        min-width: max-content;
    }

    #header4 .nav-logo {
        width: 44px;
        padding: 15px 0px 15px 10px;
    }

    #header4 .panel-btn {
        display: none;
    }

    #header4 .mobile-login-logo {
        width: 30px;
        height: 30px;
        padding: 3px;
        display: flex;
        margin: 0px 5px;
        fill: var(--header_fcolor);
    }

    #header4 .mobile-logo-path {
        stroke: var(--header_fcolor);
    }

    #header4 .nav-title {
        width: 100%;
        display: flex;
        font-weight: 500;
        font-size: .9rem !important;
        text-align: center;
    }
}
