@charset "utf-8";
/* CSS Document */
header{
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap;
	justify-content: space-between;
    align-items: center;
    transition: transform .2s ease-in;
	position: fixed;
	z-index: 1001;
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub_menu{
	
	position:fixed;
    top: 0;
    width: 100%;
	height:380px;
    left: 0;
    color:#fff;
    opacity: 0;
	background:rgb(0 0 0 / 70%);
	box-shadow: 0 2px 20px 0 rgb(255 255 255 / 5%);
	line-height: normal;
	z-index:999;
	
	transform: scale(1, 0);
	
}

.sub_menu_show{

    opacity: 1;
	
	transform: scale(1, 1);
	transition: max-height 0.3s ease-in;
	transform-origin: 50% 0;
	animation: slide-down 0.3s ease-in;
	-webkit-animation: slide-down 0.3s ease-in;
	
}

.sub_menu_hide{
    opacity: 1;
	
	transition:0 0.3s ease-out;
	transform-origin: 50% 0;
	animation: slide-up 0.3s ease-out;
	-webkit-animation: slide-up 0.3s ease-out;
	
}

@keyframes slide-down {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
 
@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: scale(1, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}

@keyframes slide-up {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0);
  }
}
 
@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0);
  }
}



.header__col {
    display: flex;
    align-items: center;
	
	
	
}

.header__col_center{
	position: relative;
    z-index: 1001;

	
}

.head_nav{
	position: absolute;
	top:60px;
	height: 230px;
	width: 100%;
	display: none;
}

.nav_pc{
	position: absolute;
	top:0;
	left:0;
	color:#fff;
	display:flex;
	align-items: center;
	
	opacity: 0;
	
}

.nav_pc_show{

    opacity: 1;
	
}




.nav_pc li{ 
	/* width:100px;  */
	height:40px;  
	margin-right: 75px;
	white-space: nowrap;
}
.nav_pc li a{ display:block; color:#fff; line-height:35px;}

header.change_w .nav_pc li a{
	
	color:#000;
	font-size:14px;
	
}



.header__link-wrapper {
    margin-right: 65px;
    white-space: nowrap;
}
.header__link{
    font-size: 16px;
    text-transform: uppercase;
}
.link__text{
	color:#fff;
	font-family: PFM,Arial, "sans-serif";
	font-size:18px;
	font-weight: 800;

}
.button_type_default {
    overflow: hidden;
}
.button_font-size_small {
    font-size: 16px;
    font-weight: 700;
}
.button__icon_chevron {
    width: 15px;
}
.button__icon {
    margin-right: 10px;
    transition: .5s;
}
.button_text-color_white .button__text {
    color: #fff;
	font-family: DIN;
}
.button__text {
    transition: .5s;
}
.button__icon_chevron_after {
    position: absolute;
    right: -35px;
}
.button_type_default:hover .button__icon, 
.button_type_default:hover .button__text {
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
}
.button_icon-color_red .button__icon path {
    fill: #05519d;
}
.language-select_theme_white{
    color: #fff;
	font-size: 18px;
}
.menu-button{
    position: relative;
    height: 30px;
    outline: none;
}
.menu-button__line{
    position: absolute;
    left: 0;
    height: 2px;
    transition: .3s;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    will-change: transform;
	background: #FFF;
}
.menu-button__line_top{
    top: 8px;
}
.menu-button__line_center{
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	top: 12px
}
.menu-button__line_bottom{
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
	bottom: 9px
}


header.change_w{
	height:80px;
	background: #fff;
	position: fixed;
	top:0;
	z-index: 1001;
	border-bottom: 1px solid #ebebeb;
}
.color{display:none;}
header.change_w .white{
	display:none;
}
header.change_w .color{
	display:block;
}
header.change_w .link__text{
	color:#121212;
	font-family: PFM;
}
header.change_w #main-navigation .l1 a:hover{
	color:#03367f;
	font-weight: bold;
}
header.change_w .button_text-color_white .button__text{
	color: #333;
	font-family: DIN;
}
.header__contact-desktop .button{
	position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    transition: .5s;
}
header.change_s{
	height:80px;
	background: #fff;
	position: relative;
	left: 0;
	top:0;
	z-index: 99;
	border-bottom: 1px solid #ebebeb;
}
header.change_s .white{
	display:none;
}
header.change_s .color{
	display:block;
}
header.change_s .link__text{
	color:#121212;
	font-family: PFM;
}
header.change_s #main-navigation .l1 a:hover{
	color:#03367f;
	font-weight: bold;
}
header.change_s .button_text-color_white .button__text{
	color: #333;
	font-family: DIN;
}





header.mb_w{
	height:60px;
	background: #fff;
	position: fixed;
	top:0;
	z-index: 999;
	border-bottom: 1px solid #ebebeb;
}
header.mb_w .white{
	display:none;
}
header.mb_w .color{
	display:block;
}
header.mb_w .link__text{
	color:#121212;
	font-family: PFM;
}
header.mb_w #main-navigation .l1 a:hover{
	color:#03367f;
	font-weight: bold;
}
header.mb_w .button_text-color_white .button__text{
	color: #333;
	font-family: DIN;
}
header.mb_w .language-select_theme_white{color:#121212;}
header.mb_w .header__contact-mobile_theme_white path {fill: #2064a7;}
header.mb_w .menu-button__line{background:#2064a7;}
.menu-button_state_closed .menu-button__line_top{
	top:9px;
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
}

.menu-button_state_closed .menu-button__line_center{
   display:none;
}
.menu-button_state_closed .menu-button__line_bottom{
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
}




#main-navigation {
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
    font-size: 18px;
	font-family:mR; 
}
#main-navigation ul {
    list-style: none;
    padding: 0;
}
#main-navigation li {
    display: inline-block;
    margin: 0 35px;
	position: relative;
}
#main-navigation .l1{
	line-height:80px;
}
#main-navigation .l1 a{
	color:#fff;
}


.nav-item{
	position: absolute;
    top: 100%;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    font-size: 16px;
    display: none;
	/* box-shadow: 0 2px 20px 0 rgb(0 0 0 / 5%); */
	line-height: normal;
}
#main-navigation .nav-item li{
	width:100%;
	margin: 0;
	margin-bottom: -1px;
    /* border: 1px solid #f4f4f7; 
    background-color: #fff;*/
    -webkit-transition: all .3s;
    transition: all .3s;
	line-height: 45px;
}
.nav-item li a{
	display: block;
	height: 45px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #000;
}


/*二级导航*/
.menu-sublist {
    display: none;
    position: absolute;
    left: 0;
    z-index: 500;
    top: calc(100% - 3px);
    min-width: 260px;
    box-shadow: 0 5px 23px 0 rgb(0 0 0 / 15%);
    background: #fff;
	line-height: 47px;
}
.sub-item {
    display: block;
	width:100%;
    position: relative;
	margin:0!important;
}
.menu-level-2 {
    font-size: 14px;
    line-height: 1;
    padding: 16px 10px 17px 30px;
    text-align: left;
    letter-spacing: normal;
    font-weight: 400;
    font-style: normal;
    color: #292929;
    text-decoration: none;
    background-color: transparent;
    position: relative;
    display: block;
    transition: .3s;
    z-index: 1;
}
.third {
    display: none;
    left: calc(100% + 1px);
    top: -3px;
    position: absolute;
    z-index: 500;
    width: 360px;
    box-shadow: 0 5px 23px 0 rgb(0 0 0 / 15%);
    background: #fff;
}
.third .third-item {
    display: block;
	width:100%;
	margin:0!important;
}
/*悬停效果*/
#main-navigation .l1:hover{
	color:#89b032;
}
#main-navigation .l1:hover .nav-item{
	display:block;
}
#main-navigation .nav-item li:hover{background: none;}
.nav-item li:hover a{
	font-weight: 500;
    color: #fff;
}
.sub-item:hover > .menu-level-2 {
    color: #fff;
    padding-left: 46px;
    background-color: #89b032;
}
.third .third-item:hover .menu-level-2 {
    color: #fff;
    padding-left: 46px;
    background-color: #89b032;
}
.l1:hover>.menu-sublist {
    display: block;
}
.sub-item:hover>.third {
    display: block;
}



.mb_nav{
	display: none;
	position: fixed;
    z-index: 9999999;
    width: 100vw;
    height: calc(100vh - 60px);
   	top:60px;
	background: #fff;
}
.mb_nav ul{
	margin: 35px 28px 55px;
}
.menu-list__item {
	width: 100%;
	font-size: 18px;
    margin-bottom: 15px;
	color: #121212;
    text-transform: uppercase;
    /* cursor: pointer; */
    transition: color .3s;
}
.menu-list-item_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-list-item__text {
    display: block;
    max-width: 258px;
	font-weight: bold;
}
.menu-list-item__sublink {
    margin-bottom: 30px;
}
.menu-list-item__sublinks {
    padding-top: 15px;
	display:none;
}
.link_styled.link {
	display:block;
    position: relative;
    z-index: 2;
    cursor: pointer;
    outline: none;
    transition: .3s;
	margin-bottom: 10px;
}
.link_styled.link_type_menu .link__text{
    font-size: 14px;
	color: #666;
}
/**************页脚*****************/
footer{
	width:100%;
	background:#253959;
	padding-top:60px;
}
footer .top_nav{
	display:flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
footer .top_nav .col-2{;
	margin-left: 100px;
}
footer .top_nav .col-1 a,
footer .top_nav .col-2 h2,
footer .top_nav .col-3 p{
	width:100%;
	display:block;
	font-size:18px;
	font-weight: normal;
	color:#fff;
	margin-bottom: 20px;
	font-family: PFR, Arial, "sans-serif";
}
footer .top_nav .col-1 a,
footer .top_nav .col-2 h2{
    font-family: PFM, Arial, "sans-serif";
}
footer .top_nav .col-2 a{
	width:100%;
	display:block;
	font-size:16px;
	height: 30px;
	color:rgba(255,255,255,1);
	margin-bottom: 20px;
	font-family: PFR, Arial, "sans-serif";
}
footer .top_nav .col-3{
	margin-left:8vw;
}
footer .top_nav .col-3 a{
	display:block;
	margin-bottom:60px;
}
footer .top_nav .col-3 .social a{
	display:inline-block;
	width:32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 50px;
	background: #fff;
	margin-right:15px;
}
.foot_info{
	padding:20px 0;
	border-top:1px solid #fff;
	color:#fff;
}
/****************搜索框*****************/
#modals-container{
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
}
#modals-container .mak {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
#modals-container .box {
	position: absolute;
    top: 50%;
    left: 50%;
	-webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: #fff;
    min-width: 864px;
    min-height: 502px;
    padding: 40px;
}

.modal-form_close {
    position: absolute;
    top: 11px;
    right: 15px;
    width: 10px;
    cursor: pointer;
    box-sizing: content-box;
    padding: 10px;
    margin: -10px;
}
.modal-form_close path {
    fill: #989898;
    transition: .3s;
}
.modal-form_title {
    padding-bottom: 25px;
	font-size: 56px;
    line-height: 60px;
    text-transform: none;
    letter-spacing: .016em;
	color:#121212;
	font-family: PFM;
}
.modal-form_row {
    display: flex;
    justify-content: space-between;
}
.modal-form_col {
    width: 50%;
}
.modal-form_col input{
    display: block;
	width: 100%;
	height: 61px;
	padding: 15px 40px;
	font-size:16px;
	box-sizing: border-box;
    border: 1px solid #e2e2e2;
	font-family: DIN,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
	border-bottom: 0;
	color:#666;
}
.modal-form_col input:last-child{
	border-bottom: 1px solid #e2e2e2;
}
.mt30 .modal-form_col input{
	border-bottom: 1px solid #e2e2e2!important;
}
.modal-form_col textarea{
	display: block;
	width: 100%;
	flex-basis: 100%;
    min-height: 184px;
	padding: 15px 40px;
	font-size:18px;
	box-sizing: border-box;
    border: 1px solid #e2e2e2;
	font-family: DIN,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
	color:#666;
	border-left: 0;
}
.modal-form_description {
    max-width: 345px;
    font-size: 16px;
    line-height: 24px;
    color: #6e6e6e;
}
.modal-form_social{
	display: flex;
    width: 50%;
}
.modal-form_social li{
    width:50%;
    height: 59px;
    border: 1px solid #e2e2e2;
    border-left: none;
	text-align: center;
	line-height: 59px;
}
.modal-form_social li:first-child{border-left:1px solid #e2e2e2;}
.social-links_icon path {
    fill: #131516;
    transition: fill .3s;
}
.modal-form_social li:hover .social-links_icon path {
    fill: #05519d;
}
.base-form{margin-top:30px;}
.mt30{margin-top:30px;}
.modal-form_info-text {
	margin-top:30px;
    font-size: 12px;
    color: #989898;
	display: block;
}

@media (max-width: 767.98px) {
	
	.link__text{
		color:#fff;
		font-family: PFM,Arial, "sans-serif";
		font-size:16px;
		font-weight: 500;

	}
	
	/*
		header.mb_w{
		
		background: none;
	
		border-bottom: none;
	}
	header.mb_w .white{
		display:none;
	}
	header.mb_w .color{
		display:block;
	}
	header.mb_w .link__text{
		color:#fff;
		
	}
	header.mb_w #main-navigation .l1 a:hover{
		color:#fff;
		font-weight: bold;
	}
	header.mb_w .button_text-color_white .button__text{
		color: #fff;
		
	}
	header.mb_w .language-select_theme_white{color:#fff;}
	header.mb_w .header__contact-mobile_theme_white path {fill: #fff;}
	header.mb_w .menu-button__line{background:#fff;}
	*/

}

