//Color Variable
$clr_white: #ffffff;
$clr_offwhite: rgba(255,255,255,0.8);
$clr_black: #000;
$clr_emperor: #666666;
$clr_selago: #F4F7FE;
$clr_yellow: #FFC422;
$clr_gray: #888888;
$clr_albastor: #f9f9f9;
$clr_athens: #F5F6FA;
$clr_red:#FF3838;
$clr_chathamas:#14467B;
$clr_blue:#2490EB;


//Mixins & Animation CSS
@mixin transition($time) {
    -webkit-transition: $time;
    transition: $time;
}
@mixin transform($tr_amt) {
    -webkit-transform: $tr_amt;
    -moz-transform: $tr_amt;
    transform: $tr_amt;
}
%flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
%flex_column_center {
    @extend %flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
%align_center {
    @extend %flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

%flex_justify_end {
    @extend %flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/*---------------------------------
        Header CSS 
-----------------------------------*/
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@-webkit-keyframes toBottomFromTop10 {
    49% {
        -webkit-transform:translateY(-10%);
        transform:translateY(-10%)
    }
    50% {
        opacity:0;
        -webkit-transform:translateY(10%);
        transform:translateY(10%)
    }
    51% {
        opacity:1
    }
}
@keyframes toBottomFromTop10 {
    49% {
        -webkit-transform:translateY(-10%);
        transform:translateY(-10%)
    }
    50% {
        opacity:0;
        -webkit-transform:translateY(10%);
        transform:translateY(10%)
    }
    51% {
        opacity:1
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
.header-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    @include transition(0.4s);
    &.sticky {
        position: fixed;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        @include transition(0.4s);
        background: $clr_white;
        -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
        width: 100%;
        top: -104px;
        -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
        -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1); 
        &.style3{
            background-color: $clr_white;
            &:after{
                height: 0;
            }
            .header-bottom{
                box-shadow: none;
                padding: 0;
            }
        }

    }
    .header-top {
        padding: 12px 0 12px;
        .header-top-left {
            @extend %flex;
            @extend %align_center;
            .contact-info{
                @extend %align_center;
                li{
                    margin-right: 25px;
                    position: relative;
                    @extend %align_center;
                    &:last-child{
                        margin-right: 0;
                    }
                    span{
                        position: relative;
                        top: -1px;
                        left: 0;
                        width: 30px;
                        height: 30px;
                        text-align: center;
                        border-radius: 50%;
                        @extend %flex_column_center;
                        @include transition(0.4s);
                        i{
                            font-size: 15px;
                            line-height: 0.8;
                            margin: 0 auto;
                            @include transition(0.4s);
                        }
                    }
                    a,p{
                        display: inline-block;
                        margin-left: 8px;
                        margin-bottom: 0;
                        font-size: 15px;
                        @include transition(0.4s);
                    }
                }
            }
        }
        .header-top-right {
            @extend %align_center;
            @extend %flex_justify_end;
            .social-profile{
                text-align: right;
                margin-left: 15px;
                position: relative;
                padding-left: 15px;
                &:before{
                    position: absolute;
                    top: 50%;
                    left: -2px;
                    content: "";
                    width: 1px;
                    height: 25px;
                    background-color: rgba(255,255,255,0.35);
                    @include transform(translateY(-50%));
                }
                li{
                    a{
                        width: 30px;
                        height: 30px;
                        i{
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
    .header-bottom {
        @include transition(0.4s);
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
        .container{
            position: relative;
        }
    }
    &.style1{
        .header-top {
            background-color: $clr_chathamas;
            .header-top-left {
                .contact-info{
                    li{
                        span{
                            background-color: $clr_white;
                            i{
                                color: $clr_chathamas;
                            }
                        }
                        &:hover{
                            span{
                                background-color: $clr_blue;
                                i{
                                    color: $clr_white;
                                }
                            }
                        }
                        a,p{
                            color: $clr_white;
                        }
                    }
                }
            }
            .header-top-right {
                .select-lang {
                    i {
                        color: $clr_white;
                    }
                    .navbar-language {
                        .dropdown-toggle {
                            span{
                                color: $clr_white;
                            }
                            &:before {
                                color: $clr_white;
                            }
                        }
                    }
                }
                .social-profile{
                    li{
                        a{
                            i{
                                color: $clr_chathamas
                            }
                            &:hover{
                                background-color: $clr_blue;
                                i{
                                    color: $clr_white;
                                }
                            }
                        }
                    }
                }
            }
        }
        .header-bottom {
            background-color: $clr_white;
        }
    }
    &.style2{
        .header-top {
            background-color: $clr_athens;
            .header-top-left {
                .contact-info{
                    li{
                        span{
                            background-color: $clr_white;
                            box-shadow: 0 3px 15px rgba(0,0,0,0.07);
                            i{
                                color: $clr_blue;
                            }
                        }
                        a,p{
                            color: $clr_emperor;
                        }
                        a{
                            &:hover{
                                color: $clr_blue;
                            }
                        }
                    }
                }
            }
            .header-top-right {
                .social-profile{
                    li{
                        a{
                            i{
                                color: $clr_chathamas
                            }
                            &:hover{
                                background-color: $clr_blue;
                                i{
                                    color: $clr_white;
                                }
                            }
                        }
                    }
                }
            }
        }
        .header-bottom {
            background-color: $clr_white;
            .btn{
                border-radius: 0;
            }
        }
    }
    &.style3{
        &:after{
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 100%;
            z-index: -1;
            height: 70%;
            background-color: $clr_athens;
        }
        .header-top {
            .header-top-left {
                .contact-info{
                    li{
                        span{
                            background-color: $clr_white;
                            box-shadow: 0 3px 15px rgba(0,0,0,0.07);
                            i{
                                color: $clr_blue;
                            }
                        }
                        a,p{
                            color: $clr_emperor;
                        }
                        a{
                            &:hover{
                                color: $clr_blue;
                            }
                        }
                    }
                }
            }
            .header-top-right {
                .social-profile{
                    li{
                        a{
                            i{
                                color: $clr_chathamas
                            }
                            &:hover{
                                background-color: $clr_blue;
                                i{
                                    color: $clr_white;
                                }
                            }
                        }
                    }
                }
            }
        }
        .header-bottom {
            background-color: $clr_blue;
            padding: 0 15px;
            border-radius: 0px;
            position: relative;
            .search-area{
                right: 0;
            }
        }
    }
}
.user-login{
    position: relative;
    span{
        display: block;
        cursor: pointer;
        i{
            color: $clr_black;
        }
    }
    ul{
        position: absolute;
        top: 45px;
        right: -5px;
        min-width: 150px;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
        background-color: $clr_white;
        visibility: hidden;
        opacity: 0;
        @include transition(0.4s);
        &.open{
            top: 32px;
            visibility: visible;
            opacity: 1;
        }
        li{
            a{
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.09);
                text-align:left; 
                @include transition(0.4s);
                &:hover{
                    background-color: $clr_blue;
                    color: $clr_white;
                }
            }
            &:last-child{
                a{
                    border-bottom: none;
                }
            }
        }
    }
}
.searchbtn{
    background-color: transparent;
    border: none;
    padding: 0;
    position: relative;
    top: 2px;
   
    i{
        font-size: 20px;
        line-height: 1;
    }
}
.search-area{
    position: absolute;
    top: 85px;
    right: 12px;
    background-color: $clr_white;
    padding: 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    visibility: hidden;
    opacity: 0;
    border-radius: 0 0 5px 5px;
    @include transition(0.4s);
    &.open{
        visibility: visible;
        opacity: 1;
        top: 78px;
    }
    input{
        width: 100%;
        height: 58px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 15px 15px;
        background-color: transparent;
        color: $clr_black;
    }
    button{
        position: absolute;
        top: 35px;
        right: 22px;
        border: none;
        background-color: transparent;
        i{
            font-size: 20px;
            opacity: 0.5;
            line-height: 0.8;
        }
    }
}
.select-lang {
    padding-left: 18px;
    position: relative;
    i {
        position: absolute;
        top: 4px;
        left: 0;
        font-size: 15px;
        line-height: 1;
        color: $clr_blue;
    }
    .navbar-language {
        .dropdown-toggle {
            background-color: transparent;
            border: none;
            font-size: 15px;
            padding-right: 16px;
            @extend %flex;
            @extend %align_center;
            @include transition(0.3s);
            &:after {
                display: none;
            }
            &:before {
                position: absolute;
                top: 0px;
                right: -2px;
                content: "\EA4E";
                font-family: "remixicon";
                font-weight: 400;
                border: 0;
                margin-left: 8px;
                font-size: 16px;
            }
        }
        .dropdown-menu {
            margin: 0;
            padding: 5px 0;
            -webkit-box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
            box-shadow: 0 9px 54px 0 rgba(32, 32, 32, 0.1);
            inset:0px 0 auto auto!important;
            border: 0;
            border-radius: 0;
            -webkit-transform: translateY(75px) !important;
            transform: translateY(75px) !important;
            display: block;
            opacity: 0;
            pointer-events: none;
            -webkit-transition: all 0.3s linear;
            transition: all 0.3s linear;
            a {
                padding: 5px 10px;
                -webkit-transition: all 0.3s linear;
                transition: all 0.3s linear;
                font-size: 15px;
                

                img {
                    width: 20px;
                    margin-right: 10px;
                }
            }
            &.show {
                -webkit-transform: translateY(40px) !important;
                transform: translateY(40px) !important;
                opacity: 1;
                pointer-events: all;
            }
        }
    }
}
@media only screen and (max-width: 767px) {
    .navbar-brand img {
        max-width: 120px;
    }
    .header-wrap .header-top .header-top-left .contact-item p,
    .header-wrap .header-top .header-top-left .contact-item a,
    .header-wrap .header-top .header-top-right .select-lang .navbar-language .dropdown-toggle{
        font-size: 14px!important;
    }
    .header-wrap{
        &.sticky{
            top: -179px;
        }
        .header-top{
            padding: 15px 0;
            .header-top-left{
                margin-bottom: 10px;
                .contact-info{
                    width: 100%;
                    li{
                        text-align: center;
                        margin-bottom: 10px;
                        justify-content: center;
                        width: 100%;
                        &:nth-child(1){
                            order: 2;
                        }
                        &:nth-child(2){
                            order: 1;
                        }
                        &:nth-child(3){
                            order: 3;
                        }
                        span{
                            top: 0px;
                            width: 25px;
                            height: 25px;
                            i{
                                font-size: 14px;
                            }
                        }
                        a,p{
                            font-size: 14px;
                        }
                    }
                }
            }
            .header-top-right{
                justify-content: center;
                .select-lang{
                    i{
                        top: 4px;
                    }
                }
                .social-profile{
                    li{
                        a{
                            width: 34px;
                            height: 34px;
                        }
                    }
                }
            }
        }
    }
    .header-wrap.style3::after {
        height: 80%;
    }
    .search-area{
        width: 100%;
        right: 0;
        &.open{
            top: 76px;
        }
        input{
            height: 52px;
            font-size: 14px;
            padding: 10px 15px;
        }
        button{
            top: 32px;
            i{
                font-size: 18px;
            }
        }
    }
}
@media only screen and (min-width:992px) and (max-width: 1199px) {
    .header-wrap .navbar .navbar-nav .nav-item {
        margin: 0 7px!important;
    }
    .header-wrap .navbar .navbar-nav .nav-item a {
        font-size: 14px!important;
    }
    .header-wrap{
        &.sticky {
            top: -50px;
        }
        .header-top {
            .header-top-left {
                .contact-info{
                    li{
                        margin-right: 15px;
                        span{
                            top: 0px;
                            width: 25px;
                            height: 25px;
                            i{
                                font-size: 14px;
                            }
                        }
                        a,p{
                            font-size: 13px;
                        }
                    }
                }
            }
            .header-top-right {
                .select-lang{
                    .dropdown-toggle{
                        span{
                            font-size: 14px;
                        }
                    }
                }
                .social-profile{
                    li{
                        a{
                            width: 25px;
                            height: 24px;
                        }
                    }
                }
            }
        }
    }
}
@media only screen and (min-width: 768px)  and (max-width: 991px) {
    .header-wrap{
        &.sticky {
            top: -90px;
        }
        .header-top{
            padding: 12px 0;
            .header-top-left{
                margin-bottom: 15px;
                .contact-info{
                    li{
                        margin-right: 15px;
                        padding-left: 28px;
                        span{
                            top: 0px;
                            width: 25px;
                            height: 25px;
                            i{
                                font-size: 14px;
                            }
                        }
                        a,p{
                            font-size: 13px;
                        }
                    }
                }
            }
            .header-top-right {
                .select-lang{
                    .dropdown-toggle{
                        span{
                            font-size: 14px;
                        }
                    }
                }
                .social-profile{
                    li{
                        a{
                            width: 25px;
                            height: 24px;
                        }
                    }
                }
            }
            .header-top-left,
            .header-top-right{
                justify-content: center;
            }
        }
        &.style3{
            &:after {
                height: 78%;
            }
        }
    }
}
@media only screen and (max-width: 991px) {
    .header-wrap .header-top .header-top-left .contact-item {
        width: 100%;
        margin: 0 0 15px;
    }
    .header-wrap .header-top .header-top-left .contact-item p,
    .header-wrap .header-top .header-top-left .contact-item a {
        color: $clr_black;
        font-size: 14px;
        font-weight: 400;
    }
    .header-wrap {
        .header-bottom{
            .container{
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                .search-area{
                    &.open {
                        top: 76px;
                    }
                }
            }
            .navbar{
                .navbar-collapse{
                    -webkit-box-align: start;
                    -ms-flex-align: start;
                    -ms-grid-row-align: flex-start;
                    align-items: flex-start;
					justify-content: flex-start !important;
                }
                .navbar-nav{
                    width: 100%;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
					justify-content: flex-start !important;
                    .nav-item{
                        position: relative;
                        .menu-expand {
                            position: absolute;
                            right: 0;
                            top: 14px;
                            cursor: pointer;
                            i {
                                color: $clr_black;
                                font-size: 16px;
                                line-height: 1;
                                position: relative;
                                top: 7px;
                            }
                        }
                        a{
                            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
                            padding-top:15px;
                            padding-bottom:15px;
                            i{
                                display: none;
                            }
                            &.active{
                                color: $clr_blue;
                            }
                            &.btn{
                                display: inline-block;
                                padding: 10px 30px 10px;
                                color: $clr_white;
                                margin-top: 15px;
                                font-weight: 500;
                                font-size: 14px;
                                i{
                                    display: inline-block;
                                    top: 6px;
                                }
                            }
                        }
                        .dropdown-menu{
                            width: 100%;
                           
                            border: none;
                            padding:0 ;
                           
                          
                            li{
                                  color:#0d6efd;
                                a{
                                    font-size: 14px;
                                    padding-left: 10px;
                                    margin-left: 10px;
                                    color: #0d6efd;
                                    
                                    &.active{
                                        color: $clr_blue;
                                    }
                                }
                            }
                            .nav-item{
                                .dropdown-menu{
                                    margin-left: 20px;
                                }
                            }
                        }
                    }
                }
            }
            .user-login{
                span {
                    position: relative;
                    top: -3px;
                        i {
                        font-size: 20px;
                        }
                }
            }
        }
        &.style3{
            .header-bottom{
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }
        }
        .searchbtn {
            top: -1px;
        }
    }
    .mobile-bar-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: right;
        position: relative;
        top: 4px;
    }
    .menu-close {
        position: absolute;
        top: 13px;
        right: 16px;

        i {
            color: $clr_black;
            font-size: 25px;
        }
    }
    .mobile-menu {
        text-align: right;
        margin-left: 20px;
        a {
            width: 38px;
            height: 38px;
            border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
            text-align: center;
            background-color: $clr_blue;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            i {
                font-size: 22px;
                color: $clr_white;
                margin: 0 auto;
            }
        }
    }
    .mobile-menu {
        display: inline-block;
        position: relative;
        top: -5px;
    }
    .mobile-top-bar {
        display: inline-block;
        margin-right: 6px;
        cursor: pointer;
        position: relative;
        top: 0px;
        span {
            display: block;
            width: 20px;
            height: 2px;
            background-color: $clr_black;
            border-radius: 20px;
            margin: 5.9px 0;
            &:nth-child(1) {
                margin-top: 0;
            }
            &:nth-child(2) {
                width: 12px;
                margin-left: 8px;
            }
        }
    }
    .main-menu-wrap {
        width: 100%;
        position: fixed;
        background: $clr_white;
        z-index: 999;
        top: 0;
        height: 100vh;
        transition: 0.5s;
        left: -100%;
        padding: 55px 20px 30px;
        overflow-y: auto;
        @include transition(0.4s);

        &.open {
            left: 0;
        }
    }
    .main-menu {
        & > li {
            &.has-children {
                &.menu-open {
                    & > span.menu-expand {
                        transform: rotate(180deg);

                        i {
                            color: $clr_black;
                        }
                    }
                }
            }
            & > ul {
                & > li {
                    &.has-children {
                        &.menu-open {
                            & > span.menu-expand {
                                transform: rotate(180deg);
                            }
                        }
                    }
                }
            }
        }
        li {
            position: relative;
            &:last-child {
                margin: 0;
            }
            & > span {
                &.menu-expand {
                    position: absolute;
                    right: 0;
                    top: 13px;
                    cursor: pointer;
                    i {
                        color: $clr_black;
                        font-size: 18px;
                    }
                    &:hover {
                        color: $clr_black;
                    }
                }
            }

            a {
                &.active {
                    color: $clr_blue;
                }
            }

            & > a {
                font-size: 14px;
                font-weight: 400;
                color: $clr_black;
                text-transform: capitalize;
                display: block;
                padding: 12px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.3);

                &:hover {
                    color: $clr_black;
                }
            }

            & > ul.sub-menu {
                padding-left: 20px;
            }
        }
    }
    .header-wrap .header-bottom .main-menu-wrap #menu > ul > li > a::after {
        display: none;
    }
    .main-menu li a.active {
        font-weight: 600;
        color: $clr_black;
        border-color: rgba(0, 0, 0, 0.3);
    }
}

@media only screen and (min-width: 992px) {
    .menu-expand i {
        display: none;
    }
    .header-wrap{
        .navbar{
            padding: 0;
            .navbar-brand{
                padding: 0 20px 0 0;
            }
            ul {
                padding-left: 0;
                list-style-type: none;
                margin-bottom: 0;
            }
            .navbar-nav{
                margin-left: 0px;
				/*margin-left: auto;*/
                .nav-item{
                    position: relative;
                    margin: 0 10px;
                    &.first-child{
                        margin-left: 0;
                    }
                    a{
                        color:#fff;
                        font-weight: 500;
                        padding: 30px 0;
                        @include transition(0.4s);
                        position: relative;
                        &:hover,
                        &:focus,
                        &.active{
                            color: #052c65;
                        }
                        i {
                            font-size: 16px;
                            line-height: 1;
                            position: relative;
                            top: 1px;
                            display: inline-block;
                            margin-left: -3px;
                            @include transition(0.4s);
                        }
                        &:hover{
                            i{
                                @include transform(rotate(180deg));
                            }
                        }
                    }
                    .dropdown-menu {
                        display: block!important;
                        border: none;
                        top: 85px;
                        left: -23px;
                        z-index: 99;
                        opacity: 0;
                        width: 250px;
                        display: block;
                        border-radius: 0;
                        padding: 12px 0;
                        position: absolute;
                        visibility: hidden;
                        -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
                        box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
                        @include transition(0.3s);
                        @include transform(rotateX(-75deg));
                        @include transition(0.5s);
                        -webkit-transform-style: preserve-3d;
                        transform-style: preserve-3d;
                        -webkit-transform-origin: 0% 0%;
                        transform-origin: 0% 0%;
                        li {
                            margin: 0;
                            a{
                                padding: 10px 20px;
                                position: relative;
                                display: block;
                                font-weight: 500;
                                @include transition(0.3s);
                                &:before{
                                    position: absolute;
                                    top: 50%;
                                    left: 20px;
                                    content: "";
                                    width: 2px;
                                    height: 0%;
                                    background-color: $clr_blue;
                                    visibility: hidden;
                                    opacity: 0;
                                    @include transform(translateY(-50%));
                                    @include transition(0.4s);
                                }
                                &.active,
                                &:hover{
                                    color: $clr_blue;
                                    &:before{
                                        height: 16px;
                                        visibility: visible;
                                        opacity: 1;
                                    }
                                }
                                &.active,
                                &:hover{
                                    padding-left: 30px;
                                }
                                &:hover,
                                &:focus,
                                &.active{
                                    width: 100%;
                                    right: auto;
                                    left: 0;
                                }
                                 i {
                                    margin: 0;
                                    position: absolute;
                                    top: 55%;
                                    font-size: 16px;
                                    line-height: 1;
                                    @include  transform(translateY(-50%)); 
                                    right: 15px;
                                }
                            }
                            .dropdown-menu{
                                top: 0;
                                opacity: 0;
                                left: -250px;
                                right: auto;
                                visibility: hidden;
                            }
                            &:hover{
                                .dropdown-menu {
                                    opacity: 1;
                                    visibility: visible;
                                }
                            }
                        }
                    }
                    &:hover{
                        .dropdown-menu {
                            opacity: 1;
                            visibility: visible;
                            @include transform(rotatex(0deg));
                        }
                    }
                }
            }
            .other-options{
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align:center;
                -ms-flex-align:center;
                align-items:center;
                position: relative;
                margin-left: 15px;
                &:before{
                    position: absolute;
                    top: 50%;
                    left: 0;
                    content: "";
                    width: 0px;
                    height: 25px;
                    background-color: rgba(0,0,0,0.18);
                    @include transform(translateY(-50%));
                }
                .option-item{
                    margin: 0 0 0 20px;
                }
            }
        }
    }
}
@media only screen and (min-width: 1400px) {
    .header-wrap{
        .navbar {
            .navbar-nav {
                .nav-item {
                    margin: 0 15px;
                    a{
                        font-size: 14px;
						font-weight:500px;
                    }
                }
            }
        }
    }
}
@media only screen and (min-width: 1600px) {
    .header-wrap {
        .container {
            max-width: 1520px;
        }
    }
}
	  
         /* Top Header */
         .top-header {
         /* background-color: #e3f2fd;  Light blue */
         padding: 10px 0;
         }
         .top-header .logo {
         height: 50px;
         }
         .top-header .header-top-right {
         display: flex;
         align-items: center;
         justify-content: space-between;
         }
         .top-header .menu {
         display: flex;
         gap: 15px;
         }
         .top-header .menu-section {
         display: flex;
         list-style: none;
         padding: 0;
         margin: 0;
         gap: 15px;
         }
         .top-header .menu-section li {
         list-style: none;
         }
         .top-header .menu-section a {
         text-decoration: none;
         font-weight: 600;
         color: #333;
         }
		 .top-header .menu-section a:hover {
   color: #2490EB;
   
   transition: color 0.3s ease;
}
         .top-header .other-options {
         display: flex;
         align-items: center;
         gap: 15px;
         }
         .top-header .other-options img {
         height: 30px;
         }
         .top-header .btn {
         font-size: 14px;
         padding: 15px 15px;
         }
         .head-search-box {
         display: flex;
         align-items: center;
         /* background: #fff;
         border-radius: 8px;
         padding: 5px;
         border: 1px solid #ccc; */
         width: 100%;
         max-width: 500px;
         }
         .head-search-box select {
         border: none;
         background: transparent;
         padding: 5px;
         outline: none;
         }
         .head-search-box input {
         border: none;
         outline: none;
         flex: 1;
         padding: 5px;
         }
         .head-search-box button {
         background: transparent;
         border: none;
         cursor: pointer;
         }
         /* Mobile Menu */
         @media (max-width: 991px) {
         .top-header {
         flex-direction: column;
         /* text-align: center; */
         }
         .top-header .menu {
         flex-direction: column;
         align-items: center;
         }
         .top-header .other-options {
         justify-content: center;
         margin-top: 10px;
         }
         }
         /* Bottom Navbar */
         .bottom-navbar {
         background-color: #f8f9fa;
         border-top: 1px solid #ddd;
         }
         .navbar-nav .nav-link {
         font-weight: 600;
         color: #333;
         padding: 10px 15px;
         }
         .navbar-nav .nav-link:hover {
         color: #007bff;
         }
         .head-search-box {
         width: 100%;
         }
		 .mobile-logo img
		 {
			
			 height:50px;
		 }
		 .mobile-logo {
   display: block;
}
@media (max-width: 991px) {
   .header-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
   }
   .mobile-logo {
      margin-right: auto;
   }
}

