/* **********************/
/* ****** Main menu******/
/* **********************/

header{
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:100%;
	z-index:9999;
}

header ul{
	margin: 0;
	padding: 0;
}
header nav{
    padding: 0;
    z-index: 1000;
    width: 100%;
    top: 0;
    transition: 0.5s ease-in-out;
    background-color: transparent;
}
header .menu{
    display: flex;
    justify-content: space-between;
    list-style: none;
}
header .main-menu,
header .menu-main-container,
header .menu,
header .menu-item,
header .menu-item a{
    height: 100%;
}
/* header .menu {
	margin-right: -15px;
} */
header .menu li {position: relative; text-align:center;}
header .main-menu,
	header .menu-main-container,
	header .menu,
	header .menu-item,
	header .menu-item a{
		height: auto;
	}
header .menu li a{
	padding-top:24px;
	padding-bottom:24px;
    display: flex;
    color: #fff;
    font-weight: normal;
    font-size: 15px;
	line-height:20px;
    text-transform: uppercase;
    transition: 0.2s ease-in;
    position: relative;
    align-items: center;
    font-family: 'Lato', sans-serif;
}
@media (min-width:992px) and (max-width:1300px){
	header .menu li a{
		font-size:16px;
	}
}
@media screen and (max-width:992px){
	header .menu li a{
		padding-bottom:20px;
		padding-top:20px;
	}
}
header .menu li a:hover{
   color: var(--orange-color);
}
header .menu li a::after{
    position: absolute;
    content: "";
    width: 0%;
    left: 50%;
    right: 50%;
    height: 0px;
    bottom: 0px;
    transition: 0.5s;    
}
header .menu li:hover a::after{
    left: 0;
    width: 100%;
    right: 0;    
    background-color: var(--orange-color);
    height: 2px;    
}
.header-btn{
	height: 100%;
	display: flex;
	align-items: center;
	}
.main-menu-btn{
    border-radius: 50px;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 5px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}
.main-logo img{
	width: 100%;
	transition: 0.5s;
	margin-top: 13px;
	margin-bottom:18px;
	display: block;
}
.mobile-menu-btn,.mobile-menu-side{display: none;}
.header-list-info{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:992px){
    header .header-btn,.main-menu{
        display: none;
    }
	header .main-menu {
		padding: 0 60px;
		height: auto;
	}
    .main-logo img{
		width: 180px!important;
	}
    .mobile-menu-btn{
        display: flex;
		position: relative;
		z-index: 3000000;
		height: 19px;
		align-items: center;
		margin: 15px 0;
		cursor: pointer;
    }
    .menu-btn-icon{
        display: inline-block;
        position: relative;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.5s;
    }
    .menu-btn-icon::after{
        content: "";
        background-color: #fff;
        position: absolute;
        width: 25px;
        height: 3px;
        top: -7px;
        transition: 0.5s;
    }
    .menu-btn-icon::before{
        content: "";
        background-color: #fff;
        position: absolute;
        width: 25px;
        height: 3px;
        top: 7px;
        transition: 0.5s;
    }
    .opened-mobile-menu::after,.opened-mobile-menu::before{
        width: 15px;
		background-color: var(--blue-color);
    }
	.opened-mobile-menu {
		background-color: var(--blue-color);
	}
    .mobile-menu-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-side{
        position: fixed;
        height: 100vh;
        padding: 40px 0;
        width: 100%;
        background: #fff;
        z-index: 100;
        top: 0;
        left: 100%;
        transition: 0.4s ease-out;
        display: block;
		overflow-y: scroll;
		overflow-x: hidden;
    }
	.mobile-menu-side-container {
		min-height: 100%;
		display: flex;
		align-items:center;
		justify-content:center;
	}
    .show-mobile-menu{
        left: 0;
    }
    .mobile-menu-side .menu li a{
        justify-content: center;
        font-size: 26px;
    }
    .mobile-menu-side *{color: #000;}
    .mobile-menu-side .main-menu{
        display: block;
    }
    .mobile-menu-side .main-menu ul{
        display: block;
    }
    .mobile-menu-side .mobile-menu-btn{
        top: 7%;
        position: absolute;
        right: 5%;
    }
    .block-scroll-y{overflow-y: hidden;height: 100vh;}
    .mobile-menu-side .opened-sub-menu-mobile{
        max-height: 1000px;
        transition: max-height 0.35s ;
    }
    header .menu li a::after{
       display: none;
    }
}

@media screen and (min-width:1200px){
	.wider--container{
		max-width:1268px;
	}
}
.main-menu{
	width:100%;
}
.align-ctr{
	display:flex;
	align-items:center;
}
.social-header-img{
	transition: all 0.4s ease-out;
}
@media screen and (min-width:992px){
	.social-header-img:hover{
		filter:brightness(100);
	}
}