header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
}
header.sticky,
.header-shadow{
	-webkit-box-shadow: 0px 5px 20px #0000000D;
    -moz-box-shadow: 0px 5px 20px #0000000D;
    box-shadow: 0px 5px 20px #0000000D;
}
.logo a{
	display: block;
}
.logo img{
	width: 12.7rem;
	height: auto;
}
.menu{
	margin-left: auto;
}
.menu ul{
	margin: 0;
}
.menu li{
	padding: 0;
	margin: 0;
}
.menu li:after{
	content: none;
}
.menu > ul{
	display: flex;
}
.menu > ul > li{
	margin-left: 3.2rem;
	position: relative;
}
.menu > ul > li:first-child{
	margin-left: 0;
}
.menu > ul > li > a{
	font-weight: 500;
	color: #000000 !important;
	display: flex;
	align-items: center;
	line-height: 2rem;
	padding: 4.9rem 0;
	letter-spacing: 0.4px;
	position: relative;
}
.menu > ul > li.active > a:before,
.menu > ul > li:hover > a:before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 0.4rem;
	background: #E30613;
	border-radius: 0 0 0.8rem 0.8rem;
}
.menu > ul > li.haschild > a:after{
	position: relative;
	content: "";
	width: 0.8rem;
	height: 0.4rem;
	background: url(../images/icon-arrow.png);
	background-size: cover;
	background-position: center;
	margin-left: 0.8rem;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.menu > ul > li.haschild:hover > a:after{
	transform: rotate(-180deg);
}
.submenu-head{
	display: flex;
	align-items: center;
	height: 5.5rem;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 0 1.5rem;
	display: none;
}
.submenu{
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 20rem;
	background: #E30613;
	border-radius: 0 0 0.4rem 0.4rem;
	overflow: hidden;
	-webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  	-webkit-transform-origin: top center;
    transform-origin: top center;
  	visibility: hidden;
	transition: 0.2s ease;
}
.menu > ul > li.haschild:hover .submenu{
	visibility: visible;
  	-webkit-transform: scale(1, 1);
    transform: scale(1, 1);	
}
.submenu ul{
	padding: 0.5rem 0;
}
.submenu a{
	display: block;
	padding: 1rem 1.5rem;
	line-height: 2rem;
	color: #fff;
}
.submenu li:hover a,
.submenu li.active a{
	opacity: 0.8;
}
.header-btn{
	margin-left: 2.4rem;
}
.header-contact{
	margin-left: 2.4rem;
}
.contact-link{
	display: flex;
	align-items: center;
	color: #000000 !important;
	font-weight: 500;
}
.contact-link:hover{
	text-decoration: underline !important;
}
.contact-link img{
	margin-right: 1.6rem;
}
.menu-btn{
	display: none;
}
.header-socail{
	margin-left: 2.4rem;
}
.header-socail ul{
	margin: 0;
}
.header-socail li{
	padding: 0;
	margin: 0 0 0 0.8rem;
}
.header-socail li:first-child{
	margin: 0;
}
.header-socail li:after{
	content: none;
}
.header-socail a{
	width: 2.4rem;
	height: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.2rem;
	background: #3260AB;
}
.header-socail a:hover{
	background: #1c488f;
}
.header-socail a img{
	max-width: 100%;
	max-height: 100%;
}
.toggleMenu {
    height: 1.9rem;
    width: 2.4rem;
    position: relative;
    cursor: pointer;
    display: none;
    margin-left: 2.4rem;
}
.toggleMenu span {
    position: absolute;
    display: block;
    width: 100%;
    height: 0.3rem;
    background: #000;
}
.toggleMenu span.bar1 {
    top: 0;
    transform: rotate(0);
    transition: top .15s ease .15s,transform .15s ease-out .05s;
}
.toggleMenu.active span.bar1 {
    top: 0.8rem;
    transform: rotate(45deg);
    transition: top .15s ease .05s,transform .15s ease-out .25s;
}
.toggleMenu span.bar2 {
    top: 0.8rem;
    opacity: 1;
    transition: .15s ease .15s;
}
.toggleMenu.active span.bar2 {
    opacity: 0;
}
.toggleMenu span.bar3 {
    top: 1.6rem;
    transform: rotate(0);
    transition: top .15s ease .15s,transform .15s ease-out .05s;
}
.toggleMenu.active span.bar3 {
    top: 0.8rem;
    transform: rotate(-45deg);
    transition: top .15s ease .05s,transform .15s ease-out .25s;
}
@media(min-width:1460px) and (max-width:1579.98px){
	.menu > ul > li {
    	margin-left: 3rem;
	}
	.menu > ul > li > a {
    	padding: 4.2rem 0;
    	font-size: 1.5rem;
    }
    .contact-link {
    	font-size: 1.5rem;
	}
	.header-btn .btn {
    	font-size: 1.5rem;
    	padding: 0 3.4rem;
	}	
}
@media(min-width:1360px) and (max-width:1459.98px){
	.logo img {
    	width: 10.7rem;
    }
    .menu > ul > li {
	    margin-left: 2.6rem;
	}
	.menu > ul > li > a {
    	padding: 4rem 0;
    	font-size: 1.4rem;
	}
	.header-btn,.header-contact,.header-socail{
    	margin-left: 2.2rem;
	}
	.header-btn .btn {
    	font-size: 1.4rem;
    	height: 5.2rem;
    	padding: 0 3rem;
	}
	.contact-link{
		font-size: 1.4rem;
	}
	.contact-link img {
    	margin-right: 1rem;
	}
	.submenu a {
    	padding: 0.8rem 1.5rem;
    	font-size: 1.5rem;
	}
}
@media(min-width:1200px) and (max-width:1359.98px){
	.logo img {
    	width: 9.7rem;
    }
    .menu > ul > li > a {
    	padding: 4rem 0;
    	font-size: 1.35rem;
	}
	.contact-link {
    	font-size: 1.35rem;
	}
	.contact-link img {
    	margin-right: 1rem;
	}
	.menu > ul > li {
    	margin-left: 1.8rem;
	}
	.header-btn,.header-contact,.header-socail{
    	margin-left: 1.6rem;
	}
	.header-btn .btn{
		padding: 0 2rem !important;
		font-size: 1.4rem !important;
		height: 4.5rem;
	}
	.menu > ul > li.haschild > a:after {
    	margin-left: 0.4rem;
    }
    .submenu {
    	min-width: 18rem;
	}
    .submenu a {
    	line-height: 1.5rem;
    	font-size: 1.4rem;
	}
}
@media(min-width:992px) and (max-width:1199.98px){
	.logo img {
    	width: 9rem;
    }
    .menu > ul > li > a {
    	padding: 3.6rem 0;
    	font-size: 1.25rem;
	}
	.menu > ul > li {
    	margin-left: 1.3rem;
	}
	.menu > ul > li.haschild > a:after {
    	margin-left: 0.2rem;
    }
	.header-contact,.header-socail,.header-btn{
    	margin-left: 1.6rem;
	}
	.contact-link span{
		display: none;
	}
	.contact-link img{
		margin-right: 0;
	}
	.header-btn .btn {
    	padding: 0 1.4rem;
    	height: 4.1rem !important;
    	font-size: 1.3rem;
	}
	.submenu {
    	min-width: 18rem;
	}
	.submenu a {
    	padding: 0.8rem 1.2rem;
    	font-size: 1.4rem;
	}
}
@media(max-width:991.98px){
	body.show{
		overflow: hidden;
	}
	header {
    	padding: 2rem 0;
	}
	.logo img {
    	width: 9rem;
    }	
    .toggleMenu{
    	display: block;
    }
    .header-contact {
    	margin-left: auto;
	}
    .header-btn{
		display: none;
	}
	.menu {
    	width: 100%;
    	position: fixed;
    	top: 7.389rem;
    	right: -100%;
    	height: calc(100% - 7.389rem);
    	overflow: hidden;
    	overflow-y: auto;
    	background: #fff;
    	z-index: 1;
    	border-top: 1px solid rgba(0, 0, 0, 0.1);
    	-webkit-transition: all 0.3s linear;
    	-moz-transition: all 0.3s linear;
    	transition: all 0.3s linear;
	}
	.menu.show{
		right: 0;
	}
	.menu > ul {
    	display: block;
	}
	.menu > ul > li {
    	margin-left: 0;
    	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	.menu > ul > li > a {
    	padding: 1.5rem;
    }
    .menu > ul > li.active > a:before, .menu > ul > li:hover > a:before {
    	top: auto;
    	bottom: 0;
    	height: 0.2rem;
    }
    .menu-btn{
    	display: block;
    	padding: 1.5rem;
    }
    .menu-btn .btn{
    	width: 100%;
    }
    .menu > ul > li.haschild > a:after {
    	position: absolute;
    	background: transparent;
    	right: 1.5rem;
    	transform: rotate(0) !important;
    	width: 0; 
  		height: 0; 
  		border-top: 0.7rem solid transparent;
  		border-bottom: 0.7rem solid transparent;
  		border-left: 0.7rem solid #000;
	}
	.submenu {
    	position: fixed;
    	top: 0;
    	left: auto;
    	right: -100%;
    	width: 100%;
    	min-width: 100%;
    	background: #fff;
    	border-radius: 0;
    	-webkit-transform: scale(1, 1);
    	transform: scale(1, 1);
    	visibility: visible;
    	height: 100vh;
    	z-index: 1;
	}
	.submenu.show{
		right: 0;
	}
	.submenu-head{
		display: flex;
		font-weight: 600;
		color: #000;
		cursor: pointer;
	}
	.submenu-head img{
		-webkit-filter: invert(100%);
		filter: invert(100%);
		transform: rotate(-135deg);
		width: 1.3rem;
		margin-right: 1.2rem;
	}
	.submenu-list{
		height: calc(100vh - 5.5rem);
		overflow: hidden;
		overflow-y: auto;
	}
	.submenu ul {
    	padding: 0;
	}
	.submenu li {
    	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	.submenu a {
    	padding: 1.5rem;
    	color: #000000;
	}
}
@media(max-width:767.98px){
	.contact-link img {
    	margin-right: 0;
	}
	.contact-link span{
		display: none;
	}
}