/* **********************/
/* ****** Main menu******/
/* **********************/
header ul {

    margin: 0;
    padding: 0;
}

.color-header {
	background:#fff;
    top: -34px;
}

header nav {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    transition: 0.5s ease-in-out;
    background: transparent;
}


header .menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

header .main-menu,
header .menu-main-container,
header .menu-primary-en-container,
header .menu,
header .menu-item,
header .menu-item a {
    height: 100%;
}

header .menu li {
    position: relative;
}

header .menu li a {
    padding: 10px;
    display: flex;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
/*     text-transform: uppercase; */
    transition: 0.2s ease-in;
    position: relative;
    align-items: center;
}
.color-header .menu li a {
	color:#000;
}
.main-logo{
	filter:brightness(1000);
}
.color-header .main-logo {
    filter: brightness(1);
}

.sub-menu .sub-menu {
    padding-top: 0px !important;
    left: 100%;
    top: 0;
    bottom: 0;
    display: none;
}

.sub-menu li:hover .sub-menu {
    display: block;
}

header .menu .sub-menu li a:hover {
    color: #fff;
    background: #333333;
}

header .menu li a:hover {
    color: #187ba6;
}

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: #187ba6;
    height: -10px;
}

header .menu .current-menu-item>a {
    font-weight: 700;
    color: #fff;
}
.color-header .menu .current-menu-item>a {
	color:#000;
}

.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: 150px;
    max-width: 100%;
    transition: 0.5s;
    vertical-align: middle;
	margin: 0;
}

.mobile-menu-btn,
.mobile-menu-side {
    display: none;
}

.sub-menu a::after {
    display: none;
}

.header-list-info {
    display: flex;
    justify-content: space-between;
}

.top-contact-info ul {
    display: inline-flex;
    list-style: none;
    margin: 0 -10px;
}

.top-contact-info ul li {
    padding: 0 10px;
}

.top-contact-info ul li a {
    color: #fff;
    font-size: 14px;
    transition: 0.5s;
}

.top-contact-info ul li a:hover {
    color: #fff;
}
.top-contact-info ul li {
    padding: 0 10px;
}

.top-contact-info ul.socials li a {
    color: #fff;
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.5s;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.top-contact-info ul.socials li a.linkedin{
    background-image: url('./img/linkedin.png');
}
.top-contact-info ul.socials li a.youtube{
    background-image: url('./img/youtube.png');
}
.top-contact-info ul.socials li a.instagram{
    background-image: url('./img/instagram.png');
}
.top-contact-info ul.socials li a.tiktok{
    background-image: url('./img/tiktok.png');
}
.top-contact-info ul.socials li {
    padding: 0;
}
.top-contact-info ul.socials li + li {
    margin-left: 15px;
}

.top-contact-info {
    padding: 5px 0;
    background-color: #033d56;
}

header nav hr {
    margin: 0;
    border: none;
    border-top: 1px solid #033d56;
}

header .header-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}
header .header-btn-wrapper a{
    display: inline-block;
    padding: 10px 20px;
    font-size: 11px;
    color: #fff;
    background-color:#187ba6;
    border-radius: 5px;
    font-weight: 600;
    transition: .3s;
}
header .header-btn-wrapper a:hover{
    transform: scale(1.02);
}
header .main-menu-wrapper {
    padding: 15px 0;
}
@media screen and (min-width:993px){
    header .sub-menu{
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.2s linear;
        position: absolute;
        padding-top: 30px;
        color: #333;
        top: 80%;
        list-style: none;
        width: 250px;
        box-shadow: 0px 9px 17px -16px rgba(61,61,61,0.6);
    }
    header li:hover  .sub-menu{
        visibility: visible;
        opacity: 1;
    }
    header .sub-menu li{
        background: #fff;
    }
    header .sub-menu-icon-mobile{display: none;}
}

@media screen and (max-width:992px){
    header .header-btn-wrapper{
        display: none;
    }
    header .mobile-menu-side .header-btn-wrapper{
        display: block;
    }
    header .mobile-menu-side .header-btn-wrapper a{
        font-size: 14px;
        padding: 15px;
        margin-top: 15px;
    }
    header .header-btn,.main-menu{
        display: none;
    }
    .main-logo img{width: 150px;}
    .mobile-menu-btn{
        display: inline-block;
        position: relative;
        z-index: 3000000;
    }
    .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;
    }
    .color-header .menu-btn-icon, .color-header .menu-btn-icon::after, .color-header .menu-btn-icon::before{
        background-color: #333;
    }
    .opened-mobile-menu::after,.opened-mobile-menu::before{
        width: 15px;
		background-color: #333;
    }
	.opened-mobile-menu {
		background-color: #333;
	}
    .mobile-menu-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-side{
        position: fixed;
        min-height: 100vh;
        padding: 40px 0;
        width: 100%;
        background: #fffffff5;
        z-index: 100;
        top: 0;
        left: 100%;
        transition: 0.4s ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .show-mobile-menu{
        left: 0;
    }
    .mobile-menu-side .menu li a{
        justify-content: center;
        font-size: 26px;
		color:#333;
    }
    .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;}
    .sub-menu-icon-mobile{
        position: absolute;
        right: -10px;
        top: 18px;
        font-size: 25px;
        transition: 0.5s;
    }
    .reverce-icon{
        transform: rotateZ(180deg);
    }
    .mobile-menu-side .sub-menu{
        overflow: hidden;
        position: relative;
        box-shadow: none;
        transition: 0.6s linear;
        color: #333;
        list-style: none;
        display: block;
        max-height: 0;
        transition: max-height 0.35s ease-out;
    }
    .mobile-menu-side .opened-sub-menu-mobile{
        max-height: 1000px;
        transition: max-height 0.35s ;
    }
    header .menu li a::after{
       display: none;
    }
    header .sub-menu a{
        font-size: 20px!important;
    }
    .email-header{
        display: none;
    }
}
