.headerNew {
    position: relative;
    left: 0;
    top: 0;
    z-index: 7;
    width: 100%;
    height: 90px;
    margin: 0;
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    background-color: transparent;
	background: #fff;
    transition: background-color .2s ease-in-out,height .3s ease-in-out;
}
.headerTop{width: 100%; height: 40px; background: #F8F8FA;}

a.loginBtn{font-family: 'Montserrat Regular',sans-serif; color: #011E65; font-size: 14px; line-height: 40px;}
a.lgnBtn{font-family: 'Montserrat Bold',sans-serif; color: #0031a8; font-size: 16px; display: block; width: 45px; text-align: center; height: 30px; line-height: 30px; background: none; border-radius: 15px;}
.newMenuLogo{flex-grow: 0;
    flex-shrink: 0;}

.header__group, .header__language {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header__group {
    flex-grow: 0;
    flex-shrink: 0;
}

.header__nav, .header__nav .nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	width: 100%;
}
.header__nav .nav__link {
    position: relative;
    height: 90px;
    margin: 0 15px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 17px;

    line-height: 1.4rem;
	font-family: 'Montserrat Bold',sans-serif;

    color: #011E65;
    transition: color .3s ease-in-out,height .3s ease-in-out,opacity .2s ease-in-out;
}
.header__nav .nav__link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #011E65;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.header__nav .nav__item:hover .nav__link {
    color: #fff;
}
.header__nav .nav__item:hover {
    background-color: #011E65;
}









.header__nav .nav__item:hover .nav-content {
    width: 100%;
    height: auto;
    padding: 80px 0 0 0;
    opacity: 1;
    visibility: visible;
}

.header__nav .nav-content {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 2;
    width: 0;
    height: 0;
    padding: 0;
	background: rgba(0, 41, 139, 0.5);
	backdrop-filter: blur(11px);
	-webkit-backdrop-filter: blur(11px);
 
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out,top .3s ease-in-out,height .3s ease-in-out,top .3s ease-in-out;
}
.header__nav .nav-content__container {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: flex-start;
    overflow: hidden;
	position: relative;
	flex-wrap: wrap;
}

.nav-content__column{
	width: 33.33%;
	display:flex;
	flex-direction: column;
	height: auto; margin-bottom: 60px;
	
	
}


.nav-content__column-item{transition: all 0.3s ease-in-out;}


.header__nav .nav-content__column-item:hover .nav-content__column-sub-container {
    width: 100%;
    height: auto;
    
 	opacity: 1;
	visibility: visible;	

}

.header__nav .nav-content__column-sub-container {
    position: absolute;
    top: auto;
    left: 0;
    z-index: 2;
    width: 100%;
    height: auto;
   
 	opacity: 0;padding: 20px 20px;
	visibility: hidden;
	
	
	background:none;
	color: #fff;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.header__nav .nav-content__wrap {
    width: 100%;
    max-width: 1250px;
	border-top:1px solid rgba(255,255,255,0.19);
    margin: auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: flex-start;
    overflow: hidden;
	position: relative;
	flex-wrap: wrap;
}

a.header__navSub{width: 100%; height: auto; display: block; opacity: 1;}

.header__nav-iconBox{width: 69px; height: 69px; background: rgba(255,255,255,.10); border-radius: 14px; text-align: center; padding:11px; float: left;}
.header__nav-textContainer{margin-left: 85px; padding-right: 35px;}
.header__nav-textTitle{font-family: 'Montserrat Semibold',sans-serif; font-size: 16px; color: #fff;}
.header__nav-textC{font-family: 'Montserrat Light',sans-serif; font-size: 12px; line-height: 15px; color: #fff;}
.header__nav-textTitle > i{font-size:11px; line-height: 12px;}
.nav-content__sub-column{
	width: 20%;
	display:flex;
	flex-direction: column;
	height: auto; padding-right: 25px; margin-bottom: 10px;
	
	
}

.opacityMenu{opacity: 0.5;}
.opacityActive{opacity: 1;}

a.navSubListM{display: block; position: relative; width: 100%; height: auto;  opacity: 1;}
a.navSubListM:before{
	content: "";
	width: 8px; height: 8px; border-radius: 8px; background: #20ECF4; position: absolute; left: -13px; top: 7px;
}
.navSubTitle{font-size:16px; font-family: 'Montserrat Light',sans-serif; color: #fff; }
.navSubTitle span{font-family: 'Montserrat Semibold',sans-serif;}
.navSubTxt{font-size:12px; font-family: 'Montserrat Light',sans-serif; color: #fff; opacity: .4; }


.nav-content__container:hover a.header__navSub{opacity: 0.5;}

.nav-content__container a.header__navSub:hover{
 opacity: 1;
}

a.navSubListM:hover{ opacity: 0.5;}

.mainHeader{width: 100%; height: 130px; position: fixed; z-index: 1000; left: 0; top: 0;}

.headeMail{width:auto; height:40px; float:left; display:inline-block;font-size:14px; color:#707070 ; font-weight:300; transition: all 0.3s ease-in-out; margin-left: 20px; line-height:40px; font-family: 'Montserrat Regular',sans-serif;}

.headeMail a{color: #707070; line-height:40px; font-size: 14px;}
.headeMail > i{font-size:15px; color: #0031A7;}

a.facebookhh{ display:block; width:34px; height:34px; font-size:16px; line-height:34px; text-align:center; color:#0031A7 ; float:left; margin-right:3px; transition: all 0.3s ease-in-out;}
a.facebookhh:hover{ background:#016bb6; border-color:#016bb6; color:#fff;}

a.twitterhh{ display:block; width:34px; height:34px; font-size:16px; line-height:34px; text-align:center; color:#0031A7; float:left; margin-right:3px; transition: all 0.3s ease-in-out;}
a.twitterhh:hover{  background:#08c1e2; border-color:#08c1e2; color:#fff;}

a.linkedinhh{ display:block; width:34px; height:34px; font-size:16px; line-height:34px; text-align:center; color:#0031A7; float:left; margin-right:3px; transition: all 0.3s ease-in-out;}
a.linkedinhh:hover{  background:#0077b5; border-color:#0077b5; color:#fff;}

a.instagramhh{ display:block; width:34px; height:34px; font-size:16px; line-height:34px; text-align:center; color:#0031A7; float:left; margin-right:3px; transition: all 0.3s ease-in-out;}
a.instagramhh:hover{  background:#e95950; border-color:#e95950; color:#fff;}


a.youtubehh{ display:block; width:34px; height:34px; font-size:16px; line-height:34px; text-align:center; color:#0031A7; float:left; margin-right:3px; transition: all 0.3s ease-in-out;}
a.youtubehh:hover{  background:#FF0000; border-color:#FF0000; color:#fff;}

@media only screen and (max-width: 1700px) {
    .headerNew  { padding: 0 15px;}
    .header__nav .nav__link {
    margin: 0 0;
        padding: 0 15px;}
}

@media only screen and (max-width: 1520px) {
    .headerNew  { padding: 0 15px;}
}

@media only screen and (max-width: 1594px) {
    .header__nav .nav__link {
    margin: 0 0;
        padding: 0 15px;}
}

@media only screen and (max-width: 1410px) {
.header__nav-iconBox{width: 50px; height: 50px; padding:8px 11px; float: left;}
.header__nav-iconBox img{height:34px !important;}
    .header__nav-textContainer{ margin-left: 60px;}
    .header__nav-textTitle{font-size: 14px;}
    .header__nav-textC{font-size:11px;}
    .navSubTitle {
    font-size: 13px; line-height: 15px;
    font-family: 'Montserrat Light',sans-serif;
    color: #fff;
}
    .navSubTxt {
    font-size: 11px;
    font-family: 'Montserrat Light',sans-serif;
    color: #fff;
        line-height: 15px;
    opacity: .4;
        
}
    .mainHeader .login{padding:8px 15px !important;}
    .mainHeader .search{padding-right: 15px !important;}
    
.header__nav .nav__item:hover .nav-content {
    width: 100%;
    height: auto;
    padding: 30px 0 0 0;
    opacity: 1;
    visibility: visible;
    
} 
    .header__nav .nav__link {font-size:16px;}
}
@media only screen and (max-width: 1268px) {
  .header__nav .nav__link {font-size:14px;}  
}

@media only screen and (max-width: 1180px) {
    
    .headerNew{padding: 0 20px;}
    .header__nav .nav__link{margin: 0;}
    .mainHeader .search{padding-right: 15px !important;}
    .mainHeader .login{padding:5px 10px !important;font-size: 13px;}
    .header__nav .nav__link {font-size:14px;}
    .header__nav .nav__link {
    margin: 0 0;
    padding: 0 7px;
}
    
}
@media only screen and (max-width: 1066px) {
    

    .mainHeader .login{padding:8px 15px !important; display: none !important;}
.navSubTxt {
font-size: 10px;
font-family: 'Montserrat Light',sans-serif;
color: #fff;
line-height: 13px;
opacity: .4;
height: 50px; overflow: hidden;
}
}

@media only screen and (max-width: 995px) {
    .mainHeader .login{padding:8px 15px !important; display: none;}
.mainHeader .search{padding-right: 0 !important; display: none;}
    .header__nav .nav__link {font-size:14px; padding:0 5px; }
    a.lgnBtn{font-size: 13px; width: auto;}
}
 
@media only screen and (max-width: 892px) {
    .mainHeader .login{padding:8px 7px !important; display: none;}
.mainHeader .search{padding-right: 0 !important;}
    .header__nav .nav__link {font-size:12px; padding:0 5px; }
}

@media only screen and (max-width: 803px) {
   .header__nav .nav__link {font-size:11px; padding:0 5px; }
    .header__nav-textC{ font-size: 10px;}
    .navSubTitle{font-size: 11px;}
    .navSubTitle span{font-size:9px;}
}

@media only screen and (max-width: 768px) {
    .mainHeader{display:none;}
   .h-170 {     padding: 80px 0 0 0 !important;} 
}



