/* ============ header Start ============ */
.light-logo { display: none; }
.navigation-bar { display: flex; align-items: center; justify-content: center;position: relative;}
/* .main-menu { margin-left: auto;} */
.main-header{position:absolute;top:0;left:0;right:0; width: 100%; z-index: 999; left: 0; right: 0; top: 0; padding-top:50px; padding-bottom:15px; }
.mobile-menu{ display:none; transition:all 0.45s ease-in-out; }
.logo-block{ width:367px; }
.logo-block a{ display: block; }
.logo-block a img{ width: 100%; height: 100%; }
.main-menu ul li { margin-right:0;width: 100%; margin-bottom: 15px; }
.main-menu ul li:first-of-type{ margin-left: 0; }
.main-menu ul li:last-of-type{ margin-right: 0; }
.main-menu ul li a{ font-size:20px; line-height: 1.2; color:var(--white); display: inline-block; transition: var(--common-transition); position: relative; font-family:var(--poppins); font-weight:400; }
.main-menu ul li.current-menu-item a{color: var(--blue-btn);}
.main-menu ul li a:hover{color: var(--btn-color);}
/* .main-menu > ul > li:hover > a:before { opacity: 1; }
.main-menu > ul > li > a:before { content:''; height: 1px; width: 100%; left: 0; right: 0; bottom: 0; background-color: currentColor; position: absolute; opacity: 0; } */

.header-right-side{display: flex; align-items: center;}
.header-right-side .cmn-btn-dv{margin-left:55px;}

/* dropdown */
li.menu-item-has-children{position: relative;display: inline-block;}
.main-menu ul li.menu-item-has-children a{margin-right: 15px;}
li.menu-item-has-children > a::after { position: absolute; top: 50%; transform: translate(0%, -50%); content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 16px; margin-left: 4px; color: var(--white); transition: var(--common-transition); }
li.menu-item-has-children > a::after:hover{color: var(--sky);} 
li.menu-item-has-children > ul.sub-menu {display: none;position: absolute; min-width: 200px;z-index: 1;padding: 0px 0px;list-style: none; padding-top: 10px; background: var(--sky); padding-left: 10px;}
li.menu-item-has-children ul.sub-menu a{display: block; ;margin-right: 0;padding: 8px 0;font-size: 16px; font-weight: 400; transition: var(--common-transition); color: var(--white);}
li.menu-item-has-children > ul.sub-menu > li:hover > a{ font-weight: bold;}
li.menu-item-has-children:hover ul.sub-menu {display: block;}
li.menu-item-has-children:hover a::after { transform: translate(0%, -50%) rotate(180deg); color: var(--sky); }
li.menu-item-has-children > ul.sub-menu li { margin: 0; }
li.menu-item-has-children ul.sub-menu li{margin-right: 0;width: 100%;padding: 0;}
li.menu-item-has-children ul.sub-menu li:last-child{border: 0;}

.minus, .plus{display: none;} 


.for-mobile{display: none;}

.header-sticky .main-header{filter: drop-shadow(-1px -2px 15px rgba(0,0,0,0.5)); left: 0;  top: 0; width:100%; transition: all 0.5s; -ms-transition: all 0.5s; -webkit-transition: all 0.5s; animation: slide-down 0.7s; -ms-animation: slide-down 0.7s; -webkit-animation: slide-down 0.7s; background-color: rgba(82, 16, 2, 0.8); backdrop-filter: blur(15px); padding-top:25px; padding-bottom:25px; position: fixed; }
.header-sticky .logo-block { max-width:285px; } 
.header-sticky:not(.home) { padding-top: 143px; } 

/* .nav_btn { display: none; } */
.nav_btn_outr{position: absolute;left: 0; height:80px; width: 80px;border:1px solid var(--white);border-radius:100%;
     display: flex;
    justify-content: center;
    align-items: center;
}
.nav_btn { cursor: pointer; display: flex; flex-direction: column; justify-content: center;align-items: flex-start; } 
.nav_btn span { background-color:var(--white); height:4px; width: 40px; border-radius: 4px;margin:3px; } 
.nav_btn span:last-child{width:20px;}
.main-menu { position: fixed; ; left: 0; top: 0; bottom: 0; z-index: 999; max-width: 600px; box-shadow: 4px 0 27px rgba(0, 0, 0, 0.11); background-color: rgba(82, 16, 2, 1); padding: 70px 30px 0 20px; margin:0; display:block; width: 100%; transition: 250ms ease-in; transform: translateX(-600px);}
/* .nav_close { display: none; color: var(--btn-color);cursor: pointer; } */
.nav_close { display: block; position: absolute; top: 8px; right: 10px; z-index: 999; font-size: 30px; }
    .minus, .plus { display: block; font-weight: 400; color: #fff; font-size: 27px !important; cursor: pointer; position: absolute; right: 5px;  top: 4px; font-size: 25px; text-align: center; width: 30px; z-index: 999;}
/* .header-right-btn{display: none !important;} */
 
.home .light-logo { display: block; }
.home .dark-logo { display: none; }

body:not(.home) .main-header { background-color: var(--primary); position: static; }
body:not(.home) .main-menu ul li a { color: #000; }


@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}


.fw-normal * { font-weight: normal;}

/* html, body { overflow-x: hidden !important; } */
html.menu-open, body.menu-open{ overflow-y: hidden  /*height: 100vh;*/}

/* .header-info{position: relative; z-index: 2;}
.header-info::after{position: absolute; content: ''; right: 0; top: -6%; background-image: url(../images/blus-2.png) ; background-repeat: no-repeat; background-size: 100%; width: 49vw; height: 88vw; z-index: -1;} */

.header-sticky .main-header .header-info::after{display: none;}

@media only screen and (max-width:1599px) { 
.main-header {padding-top: 40px;padding-bottom: 10px;}
.logo-block {width: 335px;}
.nav_btn span { height: 3px; width: 33px;}
.nav_btn_outr { height: 72px; width: 72px;}
}
@media only screen and (max-width:1399px) { 
.main-header {padding-top: 30px;}
.logo-block {width: 310px;}
.nav_btn_outr {height: 65px;width: 65px;}
}
@media only screen and (max-width:1280px) {
.main-header {padding-top: 20px;}
.logo-block {width: 280px;}
 }

@media only screen and (max-width:1199px) { 
    /* .main-header {  padding-top: 15px; padding-bottom: 15px; } 
    .header-sticky .main-header{ animation: none; backdrop-filter: none;  }
    .nav_btn { cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; height: 24px; width: 40px; margin-left: 15px; } 
    .nav_btn span { background-color:var(--blue-btn); height: 3px; width: 100%; border-radius: 4px; }  
    .main-menu { position: fixed; ; right: 0; top: 0; bottom: 0; z-index: 999; max-width: 600px; box-shadow: 4px 0 27px rgba(0, 0, 0, 0.11); background-color: #008ce7; padding: 70px 30px 0 20px; margin:0; display:block; width: 100%; transition: 250ms ease-in;         transform: translateX(600px);}
    .header-right-btn{display:flex !important; order: 3;}
    .main-menu ul li { width: 100%; margin: 0; transition: var(--common-transition); }
    .main-menu ul li:not(:last-child) { margin-right: 0; }
    .main-menu ul li a { display: block; padding: 15px 0 18px 0; }
    .nav_close { display: block; position: absolute; top: 8px; right: 10px; z-index: 999; font-size: 30px; }
    .minus, .plus { display: block; font-weight: 400; color: #fff; font-size: 27px !important; cursor: pointer; position: absolute; right: 5px;  top: 4px; font-size: 25px; text-align: center; width: 30px; z-index: 999;}
    li.menu-item-has-children > ul.sub-menu {position: relative; margin-top: 0;min-width: 100%;} 
    li.menu-item-has-children ul.sub-menu a { color: #FFF; padding: 10px 20px; }
    li.menu-item-has-children:hover ul.sub-menu { display: none; }
    li.menu-item-has-children > a::after{content: none;}
    li.menu-item-has-children.open-sub ul.sub-menu { display: block !important; }
    .minus { display: none; }
    .open-sub .plus { display: none; }
    .open-sub .minus { display: block }
    .main-menu ul li.menu-item-has-children a { margin-right: 0; }
    .main-menu > ul > li > a:before { opacity: 1; }
    body:not(.home) .main-menu ul li a { color: #FFF; }
    .header-right-side .cmn-btn-dv{margin-left:0; order: 2;}
    .header-info::after{display: none;}


    .logo-block { width: 125px;} */
.nav_btn span { height: 3px; width: 30px;}
.nav_btn_outr { height: 60px; width: 60px;}
}

@media only screen and (max-width:991px) {
.logo-block {width: 260px;}
}
@media only screen and (max-width:840px) {
 
  
}
@media only screen and (max-width:767px) {
.logo-block {width: 220px;}
  
}

@media only screen and (max-width:575px) {
 .nav_btn_outr {height: 55px;width: 55px;}
}

@media only screen and (max-width:390px) {

}

@media only screen and (min-width: 360px) {
 .logo-block {width: 180px;}
}