.navbar-top{
    padding: 12px 0;
    &.style-one,
    &.style-two{
        .contact-info{
            li{
                margin-right: 28px;
                &:last-child{
                    margin-right: 0;
                }
            }
        }
    }
    &.style-two{
        background-color: #043138;
    }
}
.navbar-area {
    z-index: 999;
    transition: 1s;
    &.sticky {
        top: 0;
        left: 0;
        position: sticky!important;
        width: 100%;
        z-index: 999!important;
        box-shadow: 0 0 25px rgba(0, 0, 0, .06);
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        background-color: #F9F4F0;
        transition: var(--transition);
    }
    .other-options{
        .option-item{
            margin-left: 10px;
            &:first-child{
                margin-left: 0;
            }
            .mobile-options{
                width: 20px;
                margin-right: 15px;
                button{
                    &:after{
                        display: none;
                    }
                    i{
                        font-size: 20px;
                        line-height: 0.8;
                        position: relative;
                        top: 2px;
                        color: var(--titleColor);
                    }
                }
                .dropdown-menu{
                    background-color: transparent;
                    padding: 0;
                    min-width: 200px;
                    .dropdown-item{
                        width: 197px;
                        padding: 0;
                        &:hover{
                            background-color: transparent;    
                        }
                    }
                }
                .dropdown-menu-centered {
                    top: calc(100% + 15px)!important;
                    left: -25px!important;
                    transform: translateX(-50%)!important;
                }
            }
            .search-btn{
                width: 54px;
                height: 54px;
                position: relative;
                padding-bottom: 4px;
                transition: var(--transition);
                &:after{
                    display: none;
                }
                img{
                    position: relative;
                    top: 3px;
                    transition: var(--transition);
                }
                i{
                    font-size: 18px;
                    line-height: 0.8;
                    position: relative;
                    top: 2px;
                    color: var(--titleColor);
                    transition: var(--transition);
                    &:nth-child(2){
                        display: none;
                        font-size: 22px;
                        top: 2px;
                    }
                }
                &.show{
                    i{
                        &:nth-child(1){
                            display: none;
                        }
                        &:nth-child(2){
                            display: block;
                        }
                    }
                }
                &.bg_primary{
                    i{
                        color: var(--whiteColor);
                    }
                    &:hover{
                        background-color: var(--secondaryColor)!important;
                        i{
                            color: var(--primaryColor);
                        }
                    }
                }
                &.bg_gradient{
                    background: radial-gradient(97.57% 210.75% at 0.9% 2.98%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
                    backdrop-filter: blur(21px);
                    border-radius: 27px;
                    i{
                        color: var(--whiteColor);
                    }
                    &:hover{
                        background-color: var(--secondaryColor)!important;
                        i{
                            color: var(--primaryColor);
                        }
                    }
                }
                &:hover{
                    background-color: var(--primaryColor)!important;
                    img{
                        filter: brightness(0) invert(1);
                    }
                }
            }
            .search-box{
                width: 270px;
                padding: 20px;
                input{
                    border: 1px solid rgba(85,85,85,0.2);
                    height: 48px;
                    border-radius: 50px;
                    padding: 10px 45px 10px 22px;
                    &::placeholder{
                        color: var(--paraColor);
                        opacity: 1;
                    }
                }
                button{
                    top: 0;
                    right: 15px;
                }
            }
        }    
    }
    &.style-one{
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    &.style-one,
    &.style-two{
        background-color: transparent;
    }
    &.style-four{
        background-color: rgba(0,37,44,0.5);
        &.sticky{
            background-color: rgba(0,37,44,1);
        }
        .other-options{
            .option-item{
                .search-btn{
                    background-color: #043138;
                    i{
                        color: var(--whiteColor);
                    }
                    &:hover{
                        background-color: var(--secondaryColor)!important;
                        i{
                            color: var(--titleColor);
                        }
                    }
                }
            }
        }
    }
}
.offcanvas-backdrop {
	background-color: rgba(25,39,43,0.9)!important;
}
.menu{
    &>ul{
        &>li{
            display: inline-block;
            line-height: 1;
            margin-right: 20px;
            &:last-child{
                margin-right: 0;
            }
            &.menu-item-has-children{
                a{
                    i{
                        font-size: 16px;
                        font-weight: 300;
                        line-height: 0.8;
                        margin-left: 2px;
                    }
                }
            }
            .menu-column-1 {
                min-width: 15.6rem;
                max-width: 15.6rem;
            }
            .menu-subs{
                position: absolute;
                width: 100%;
                height: auto;
                padding: 0;
                border: none;
                outline: none;
                z-index: 500;
                opacity: 0;
                list-style: none;
                visibility: hidden;
                background: #E5FFE1;
                box-shadow: 0 15px 40px rgba(0,0,0,0.08);
                -webkit-transition: all .3s ease-in-out;
                -o-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
                li{
                    a{
                        padding: 13px 20px;
                        display: block;
                        line-height: 1.6;
                        border-left: 3px solid transparent;
                        border-bottom: 1px solid rgba(38, 38, 54, 0.08);
                        &:hover,
                        &.active{
                            padding-left: 25px;
                            color: var(--primaryColor);
                            font-weight: 500;
                            border-left-color: var(--primaryColor);
                        }
                    }
                    .menu-subs{
                        &:before{
                            display: none;
                        }
                    }
                }
                &>li{
                    &:last-child{
                        &>a{
                            border-bottom: none;
                        }
                    }
                }
                &>ul{
                    &>li{
                        line-height: 1;
                        a{
                            display: inline-block;
                            border: none;
                            outline: none;
                            padding: 15px 0;
                            text-transform: capitalize;
                            text-rendering: optimizeLegibility;
                            -webkit-transition: all .3s ease-in-out;
                            -o-transition: all .3s ease-in-out;
                            transition: all .3s ease-in-out;
                        }
                    }
                }
            }
            &>a{
                position: relative;
                display: inline-block;
                padding: 41px 0;
                border: none;
                outline: none;
                z-index: 1;
                &:hover,
                &.active{
                    color: var(--primaryColor);
                }
            }
            &:last-child{
                &>a{
                    &:before{
                        display: none;
                    }
                }
            }
        }
    }
    ul{
        li{
            a{
                transition: var(--transition);
                &.menu-item-has-children{
                    a{
                        &.active,
                        &:hover{
                            color: var(--primaryColor);
                        }
                    }
                }
            }
        }
    }
}
.menu-mobile-header,
.menu-mobile-trigger {
    display: none
}
.search-dropdown{
    min-width: 320px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 35px rgba(0, 0, 0, .06);
    transform: translate(0,0)!important;
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    display: block!important;
    &.dropdown-menu-right{
        left: auto !important;
        right: 0!important;
        &.show{
            visibility: visible;
            opacity: 1;
        }
    }
    .search-popup{
        input{
            border: 1px solid rgba(0, 0, 0, .1);
            border-radius: 10px;
            height: 50px;
            &::placeholder{
                opacity: 1;
                color: var(--paraColor);
            }
            &:focus{
                border-color: var(--primaryColor);
            }
        }
        button{
            padding: 5px 12px;
        }
    }
}
// Max width 767px //
@media only screen and (max-width:767px) {
   .navbar-top{
        &.style-one,
        &.style-two{
            .contact-info{
                li{
                    margin-right: 18px;
                    &:last-child{
                        margin-right: 0;
                    }
                }
            }
        }
    }
    .navbar-area{
        .navbar-brand{
            img{
                max-width: 110px;
            }
        }
        .other-options{
            margin-left: 10px;
            .option-item{
                margin-left:16px;
                &:first-child{
                    margin-left: 0;
                }
                a{
                    i{
                        font-size: 18px;
                        line-height: 0.8;
                    }
                }
                .search-btn{
                    width: 40px;
                    height: 40px;
                    padding-bottom: 4px;
                    img{
                        max-width: 16px;
                    }
                }
            }
        }
        &.style-two{
            .other-options{
                margin-left: 0;
            }
        }
    }
}
// Max width 991px //
@media only screen and (max-width:991px) {
    .navbar-area{
        z-index: 99;
        &.style-one,
        &.style-two,
        &.style-three,
        &.style-four{
            padding: 12px 0;
            .navbar-brand{
                img{
                    max-width: 110px;
                }
            }
        }
        &.style-one,
        &.style-two,
        &.style-four{
            .menu-mobile-trigger {
                span {
                    background: var(--whiteColor);
                }
            }
            .other-options{
                .option-item{
                    .mobile-options {
                        button{
                            i {
                                color: var(--whiteColor);
                            }
                        }
                    }
                }
            }
        }
        &.style-two{
            .other-options{
                .option-item{
                    .search-btn{
                        &.bg_primary{
                            background-color: var(--secondaryColor);
                            i{
                                color: var(--titleColor);
                            }
                        }
                    }
                }
            }
        }
        &.sticky{
            top: 0!important;
             background-color: var(--primaryColor);
        }
        .navbar{
            .navbar-brand{
                img{
                    max-width: 105px;
                }
            }
        }
        .menu{
            border-radius: 0;
            ul{
                li{
                    a{
                        color: var(--whiteColor);
                        &.active,
                        &:hover{
                            color: var(--secondaryColor);
                        }
                        i{
                            float: right;
                            font-size: 18px;
                        }
                    }
                }
            }
        }
        .other-options{
            .option-item{
                .search-dropdown{
                    min-width: 290px;
                    &.dropdown-menu-right{
                        top: 60px!important;
                        &.show{
                            top: 51px!important;
                        }
                    }
                    &.dropdown-menu-right {
                        left: auto !important;
                        right: -45px !important;
                    }
                }
            }
        }
        .menu-mobile-trigger {
            span {
                background: var(--titleColor);
            }
        }
    }
    .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        background: 0 0;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        span {
            display: block;
            position: absolute;
            width: 100%;
            height: 2px;
            left: 0;
            border: none;
            outline: none;
            opacity: 1;
            border-radius: .25rem;
            background: var(--primaryColor);
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
            &:nth-child(1),
            &:nth-child(2){
                top: 0
            }
            &:nth-child(2),
            &:nth-child(3) {
                top: .5rem;
                width: 80%;
                margin-left: 20%;
            }
            &:nth-child(4) {
                top: 1rem
            }
        }
    }
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: var(--primaryColor);
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        &.active{
            -webkit-transform: translate(0%);
            -ms-transform: translate(0%);
            transform: translate(0%)
        }
        ul{
            li{
                a{
                    color: var(--whiteColor);
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    border-left: none!important;
                    &:after{
                        display: none;
                    }
                    &:hover,
                    &.active{
                        color: var(--secondaryColor);
                        background-color: transparent!important;
                    }
                }
                .menu-subs{
                    li{
                        a{
                            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                            &:hover,
                            &.active{
                                color: var(--secondaryColor);
                            }
                        }
                    }    
                }
            }
        }
        &>ul{
            &>li{
                display: block;
                line-height: 1;
                margin: 0;
                .menu-subs {
                    position: absolute;
                    top: 0;
                    left: 0;
                    max-width: none;
                    min-width: auto;
                    width: 100%;
                    height: 100%;
                    margin: 0;
                    padding: 1rem 0;
                    padding-top: 50px;
                    opacity: 1;
                    overflow-y: auto;
                    visibility: visible;
                    -webkit-transform: translateX(100%);
                    -ms-transform: translateX(100%);
                    transform: translateX(100%);
                    -webkit-box-shadow: none;
                    box-shadow: none;
                    transition: var(--transition);
                    background: var(--primaryColor);
                    &>ul{
                        &>li{
                            a{
                                color: var(--whiteColor);
                                display: block;
                                
                            }
                        }
                    }
                    &.active {
                         -webkit-transform: translateX(0%);
                        -ms-transform: translateX(0%);
                        transform: translateX(0%);
                    }
                }
                &>a{
                    display: block;
                    padding: 20px 25px;
                    i{
                        position: absolute;
                        font-size: 22px;
                        top: 50%;
                        right: 22px;
                        text-align: center;
                        -webkit-transform: translateY(-50%) rotate(-90deg);
                        -ms-transform: translateY(-50%) rotate(-90deg);
                        transform: translateY(-50%) rotate(-90deg)
                    }
                }
            }
        }
        .menu-mobile-header {
            position: relative;
            position: -webkit-sticky;
            position: sticky;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            top: 0;
            height: 3.125rem;
            z-index: 501;
            border-bottom: 1px solid rgba(255, 255, 255, 0.19);
            background: var(--primaryColor);
            .menu-mobile-arrow {
                display: none;
                font-size: 1.25rem;
                line-height: 3.125rem;
                width: 3.125rem;
                height: 3.125rem;
                cursor: pointer;
                border-right: 1px solid rgba(0, 0, 0, 0.19);
                color: var(--whiteColor);
                text-align: center
            }
            &.active{
                .menu-mobile-arrow {
                    display: block
                }
            }
            .menu-mobile-title {
                font-size: 1rem;
                font-weight: 500;
                line-height: inherit;
                color: var(--whiteColor);
                text-transform: capitalize;
                text-rendering: optimizeLegibility
            }
            .menu-mobile-close {
                font-size: 24px;
                cursor: pointer;
                width: 4.125rem;
                height: 3.125rem;
                border-left: 1px solid rgba(0, 0, 0, 0.1);
                color: var(--whiteColor);
                text-align: center
            }
        }
        .menu-section {
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
        }
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, .55);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        &.active {
            opacity: 1;
            visibility: visible
        }
    }
}
// Min width 992px //
@media only screen and (min-width:992px) {
    .navbar-area{
        &.style-one,
        &.style-two,
        &.style-three,
        &.style-four{
            ul{
                li{
                    a{
                        color: var(--titleColor);
                        &.active,
                        &:hover{
                            color: var(--primaryColor);
                        }
                    }
                }
            }
        }
        &.style-one{
            background-color: transparent;
            &.sticky{
                background-color: var(--primaryColor);
            }
            .menu{
                &>ul{
                    &>li{
                        &>a{
                            color: var(--whiteColor);
                            padding: {
                                top: 40px;
                                bottom: 40px;
                            }
                            &.active,
                            &:hover{
                                color: var(--secondaryColor);
                            }
                        }
                    }
                }
                
            }
        }
        &.style-two{
            background-color: transparent;
            padding: 30px 0 0;
            &.sticky{
                padding: 15px 0;
                background-color: var(--primaryColor);
            }
            .menu{
                background-color: #043138;
                border-radius: 5px;
                padding: 0 20px;
                margin-left: 30px;
                &>ul{
                    &>li{
                        &>a{
                            color: var(--whiteColor);
                            padding: {
                                top: 18.5px;
                                bottom: 18.5px;
                            }
                            &.active,
                            &:hover{
                                color: var(--secondaryColor);
                            }
                        }
                    }
                }
                
            }
        }
        &.style-three{
            .menu{
                &>ul{
                    &>li{
                        &>a{
                            &:after{
                                position: absolute;
                                bottom: 38px;
                                left: 0;
                                content: "";
                                width: 25px;
                                height: 2px;
                                background-color: var(--primaryColor);
                                transform: scaleX(0);
                                transform-origin: right;
                                transition: transform 0.5s;
                            }
                            &.active,
                            &:hover{
                                color: var(--primaryColor);
                                &:after{
                                    transform: scaleX(1);
                                    transform-origin: left;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.style-four{
            .menu{
                 &>ul{
                    &>li{
                        &>a{
                            color: var(--whiteColor);
                            padding: {
                                top: 41px;
                                bottom: 41px;
                            }
                            &.active,
                            &:hover{
                                color: var(--secondaryColor);
                            }
                        }
                    }
                }
                
            }
        }
        .other-options{
            .option-item{
                .search-dropdown{
                    &.dropdown-menu-right{
                        top: 90px!important;
                        &.show{
                            top: 75px!important;
                        }
                    }
                }
            }
        }
    }
    .menu{
        ul{
            &>li{
                &>.menu-subs{
                    &>li{
                        &>.menu-subs{
                            left: -100%;
                            margin-top: -50px!important;
                        }
                    }
                }
            }
            li{
                &:hover{
                    &>.menu-subs{
                        margin-top: -2px;
                        opacity: 1;
                        visibility: visible
                    }
                }
                &.menu-item-has-children{
                    .menu-subs{
                        li{
                            &.menu-item-has-children{
                                a{
                                    i{
                                        float: right;
                                        top: 5px;
                                        position: relative;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
// Min width 992px to Max width 1199px //
@media only screen and (min-width:992px) and (max-width:1199px) {
    .navbar-area{
        .navbar-brand{
            img{
                max-width: 115px;
            }
        }
        .other-options{
            .option-item{
                margin-left: 8px;
                &:first-child{
                    margin-left: 0;
                }
                .btn {
                    .btn-icon-one,
                    .btn-icon-two{
                        width: 46px;
                        height: 46px;
                    }
                    .btn-icon-one{
                        margin-right: -10px;
                    }
                    .btn-icon-two{
                        margin-left: -46px;
                    }
                    .btn-text{
                        font-size: 14px;
                        height: 46px;
                        padding: 5px 15px;
                    }
                    &:hover{
                        .btn-icon-one{
                            margin: 0;
                        }
                        .btn-icon-two{
                            margin-left: -9px;
                        }
                        .btn-text{
                            margin-left: -46px;
                        }
                    }
                }
                .search-btn{
                    width: 46px;
                    height: 46px;
                }
            }
        }
        &.style-two{
            .menu{
                margin-left: 22px;
                &>ul{
                    &>li{
                        margin-right: 9px;
                        &:last-child{
                            margin-right: 0;
                        }
                        &.menu-item-has-children {
                            a {
                                font-size: 14px;
                            }
                        }
                        a{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    .menu{
        &>ul{
            &>li{
                margin-right: 12px;
                &:last-child{
                    margin-right: 0;
                }
                &.menu-item-has-children {
                    a {
                        font-size: 15px;
                        i {
                            margin-left: 1px;
                        }
                    }
                }
                .menu-column-1 {
                    min-width: 13.9rem;
                    max-width: 13.9rem;
                }
                a{
                    font-size: 15px;
                }
            }
        }
    }
}
// Min width 1200px to Max width 1399px //
@media only screen and (min-width:1200px) and (max-width:1399px) {
    .navbar-area{
        .navbar-brand{
            img{
                max-width: 140px;    
            }
        }
    }
}
// Min width 1400px //
@media only screen and (min-width:1400px) {
    .navbar-area{
        .other-options{
            .option-item{
                margin-left: 11px;
                &:first-child{
                    margin-left: 0;
                }
            }
        }
        &.style-two{
            .menu{
                margin-left: 60px;
            }
        }
    }
    .menu{
        &>ul{
            &>li{
                margin-right: 25px;
                &:last-child{
                    margin-right: 0;
                }
                &>a{
                    font-size: 18px;
                }
            }
        }
    }
}
// Min width 1600px //
@media only screen and (min-width:1600px) {
    .menu{
        &>ul{
            &>li{
                margin-right: 28px;
                &:last-child{
                    margin-right: 0;
                }
                &.menu-item-has-children{
                    a{
                        i{
                            margin-left: 5px;
                        }
                    }
                }
            }
        }
    }
}
// Min width 1920px //
@media only screen and (min-width:1920px) {
    .navbar-area{
        &.style-two{
            .menu{
                margin-left: 130px;
            }
        }
    }
}