

.only_mob {
	display: none;
}

.header {
	width: 100%;
	min-width: 300px;
	height: auto;
	z-index: 10;
	transition: all ease-in-out .3s;
	-ms-transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-o-transition: all ease-in-out .3s;
}

.header.mobile .header_top .top {
	height: 0;
	padding: 0;
	opacity: 0;
}

.header.mobile .header_top {
	background: rgba(5, 128, 5, .7);
}

.header.mobile .header_top .gp-container {
	background: none;
}

.header.mobile .header_top .nav>ul>li a {
	color: #fff;
}

.header.mobile .nav ul li .subNav {
	background: rgba(5, 128, 5, .7);
}


.header .gp-container {
	position: relative;
	z-index: 2;

}


@media screen and (max-width:1640px) {
	


}

@media screen and (max-width:1460px) {
	
}

@media screen and (max-width:1280px) {
	
}

@media screen and (max-width:1040px) {

	.header.mobile .header_top {
		background: none;
	}

	.header_top .top .right {
		display: none;
	}

	.header.mobile .header_top .top {
		height: auto;
		padding: 20px 0;
		opacity: 1;
	}

	.header.mobile .header_top .gp-container {
		background: none;
	}




	.mob_nav_btn {
		height: 40px;
		text-align: left;
		width: 40px;
		z-index: 996;
		position: absolute;
		cursor: pointer;
		margin-right: 0;
		font-weight: 700;
		text-align: right;
		right: 20px;
		top: 18px;
		-webkit-transition: background .5s;
		-moz-transition: background .5s;
		-o-transition: background .5s;
		transition: background .5s;
		background: none;
		display: block;
	}

	.searchActive .mob_nav_btn {
		z-index: 10;
	}

	.mob_nav_btn.on span {
		background: #fff;
		position: absolute;
		left: calc((100% - 33px)/ 2);
		top: calc((100% + 15px)/ 3);
	}

	.mob_nav_btn span {
		position: absolute;
		left: calc((100% - 34px)/ 2);
		top: calc((100% + 6px)/ 3);
		width: 35px;
		height: 2px;
		background-color: #9A0000;
		animation-duration: .5s;
		animation-fill-mode: both;
	}

	.mob_nav_btn span:nth-child(1) {
		transform: translateY(4px) rotate(0);
		animation-name: outfirst
	}

	.mob_nav_btn span:nth-child(2) {
		transform: translateY(-4px) rotate(0);
		animation-name: outsecond
	}

	.mob_nav_btn span:nth-child(3) {
		transform: translateY(-4px) rotate(0);
		animation-name: outthird
	}

	@keyframes outfirst {
		0% {
			transform: translateY(0) rotate(-45deg)
		}

		100% {
			transform: translateY(-9px) rotate(0)
		}
	}

	@keyframes outsecond {
		0% {
			transform: translateY(0) rotate(45deg)
		}

		100% {
			transform: translateY(4px) rotate(0)
		}
	}

	@keyframes outthird {
		0% {
			transform: translateY(0) rotate(90deg)
		}

		100% {
			transform: translateY(15px) rotate(0);
		}
	}

	.mob_nav_btn.on span:nth-child(1) {
		animation-name: clickfirst
	}

	.mob_nav_btn.on span:nth-child(2) {
		animation-name: clicksecond
	}

	.mob_nav_btn.on span:nth-child(3) {
		animation-name: clickthird
	}

	@keyframes clickfirst {
		0% {
			transform: translateY(4px) rotate(0)
		}

		100% {
			transform: translateY(0) rotate(45deg)
		}
	}

	@keyframes clicksecond {
		0% {
			transform: translateY(-4px) rotate(0)
		}

		100% {
			transform: translateY(0) rotate(-45deg)
		}
	}

	@keyframes clickthird {
		0% {
			opacity: 0
		}

		100% {
			opacity: 0
		}
	}

	.mobile_header_cover {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 100%;
		background: rgba(0, 0, 0, .7);
		z-index: 9;
		transition: all ease-in-out .2s;
		-ms-transition: all ease-in-out .2s;
		-moz-transition: all ease-in-out .2s;
		-webkit-transition: all ease-in-out .2s;
		-o-transition: all ease-in-out .2s
	}

	.mobile_header_cover.on {
		bottom: 0;
	}


	.mobile-header {
		max-width: 100%;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 995;
		overflow: auto;
		background: #9A0000;
		/* display: none; */
		transform: translate(0%, -150%);
		width: 100%;
		box-sizing: border-box;
		padding: 50px 15px;
		transition: all .3s ease;
	}

	.mobile-header.on {
		animation-duration: .5s;
		animation-fill-mode: both;
		animation-name: y_scale;
		display: block;
		transform: translate(0%, 0);
	}

	.mobile-nav {
		width: 100%;
		padding-top: 0;
	}

	.mobile-nav li {
		position: relative;
		padding: 0 0;
		border-bottom: 1px solid #f2f2f2;
		
	}
	.mobile-nav li{
		-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: returnToNormal;
		animation-name: returnToNormal;
	}


	.mobile-nav li.on .arrow {
		transform: rotate(90deg);
	}

	.mobile-nav li a {
		display: block;
		line-height: 25px;
		text-decoration: none;
		font-size: 18px;

		color: #373837;
		padding: 12.5px 0;
		color: #fff;
	}

	.mobile-nav dd a {
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: returnToNormal;
		animation-name: returnToNormal
	}


	.mobile_subNav {
		padding: 0 15px;
		box-sizing: border-box;
		background: rgba(255, 255, 255, .9);
		overflow: hidden;
	}

	.mobile-nav dd a {
		height: 20px;
		line-height: 20px;
		border-top: 1px solid rgba(135, 135, 135, .1);
		font-size: 16px;
		padding-left: 20px;
		position: relative;
		color: #282828;
	}

	.mobile-nav dd:first-child a {
		border-top: 0
	}

	.mobile-nav dd a::before {
		content: '';
		display: block;
		position: absolute;
		left: 50%;
		right: 50%;
		top: 0;
		bottom: 0;
		background: #B00C1D;
		transition: all ease-in-out .3s;
		-ms-transition: all ease-in-out .3s;
		-moz-transition: all ease-in-out .3s;
		-webkit-transition: all ease-in-out .3s;
		-o-transition: all ease-in-out .3s;
		z-index: -1
	}

	.mobile-nav dd:hover a {
		color: #fff
	}

	.mobile-nav dd:hover a::before {
		left: -30px;
		right: -30px
	}

	.mobile-nav .arrow {
		color: #fff;
		position: absolute;
		right: 0;
		top: 0;
		font-size: 2.5rem;
		cursor: pointer;
		width: 50px;
		height: 50px;
		text-align: center;
		line-height: 50px;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		/* background: url(../images/mobile_arrow1.png) center no-repeat; */
		background-size: 10px 15px;
	}

	.mobile-nav .arrow.on {
		/* background-image: url(../images/mobile_arrow2.png) */
	}

	.mobile_subNav {
		display: none
	}

	li.on .mobile_subNav {
		display: block
	}

	.mobile_search {
		height: 40px;
		z-index: 600;
		overflow: hidden;
		position: relative;
		transition: all ease-in-out .3s;
		-ms-transition: all ease-in-out .3s;
		-moz-transition: all ease-in-out .3s;
		-webkit-transition: all ease-in-out .3s;
		-o-transition: all ease-in-out .3s;
		margin: 20px 0px;
		border: 1px solid #d3d3d3
	}

	.mobile_search .search {
		width: 100%;
		height: 100%
	}

	.mobile_search .search input.notxt {
		position: absolute;
		width: calc(100% - 58px);
		height: 100%;
		color: #666;
		left: 0;
		right: 0;
		padding-right: 15px;
		top: 1px;
		margin: 0;
		outline: 0;
		font-size: 16px;
		z-index: 3;
		box-sizing: border-box;
		border: 0
	}

	.mobile_search .search input.notxt1 {
		position: absolute;
		width: 58px;
		height: 100%;
		border: none;
		background: url(../images/search.png) center center no-repeat;
		background-size: 30px;
		right: 0;
		cursor: pointer;
		top: 0;
		z-index: 3;
		font-size: 0;
		padding: 0;
	}

	.mob_links {
		color: #fff;
		text-align: center;
		line-height: 40px;
		margin-top: 20px;
		display: none;
	}

	.mob_linksIn {
		overflow: hidden;
		float: right;
		margin-right: 50px
	}

	.mob_links dl dt::before {
		background: #fff;
		opacity: .75
	}

	.mob_links dl {
		margin: 0 0 10px;
		overflow: hidden;
	}

	.mob_links dl:nth-child(2) {
		margin: 0
	}

	.mob_links dl a {
		color: #fff;
		font-size: 14px
	}

	.mob_links dl dt {
		position: relative
	}

	.mob_links dl dt::before {
		content: '';
		position: absolute;
		width: 16px;
		height: 2px;
		background: #a7a8a7;
		bottom: 0;
		left: calc(50% - 8px);
	}

	.mob_links dl dt a {
		font-size: 14px;
		color: #333;
		font-weight: 700
	}

	.mob_links dl dd {
		/* float:left; */
		padding: 0 10px;
		position: relative;
		display: inline-block;
		background: #c98966;
		border-radius: 40px;
		display: none;
	}

	.mob_links dl dd::before {
		content: '';
		position: absolute;
		width: 5px;
		height: 1px;
		opacity: .3;
		background: #fff;
		right: 10px;
		top: 50%
	}

	.mob_links dl dd:last-child::before {
		display: none
	}

	.header_top .gp-container {
		padding: 0;
		background: none;
	}

	

	.xh {
		width: 200px;
		right: 20.67%;
	}


	.nav {
		display: none;
	}

	.fs24 {
		font-size: 20px;
	}

	.lh28, [class*="lh28"] {
		line-height: 24px;
	}

	.lh30, [class*="lh30"] {
		line-height: 25px;
	}

	.lh32, [class*="lh32"] {
		line-height: 30px;
	}

	.lh36, [class*="lh36"] {
		line-height: 30px;
	}

	.lh38, [class*="lh38"] {
		line-height: 32px;
	}

	.lh30x2 {
		height: 50px;
	}

	.lh30x3 {
		height: 75px;
	}

	.footerone {
		padding-bottom: 25px;
	}

	.footertwo {
		padding: 20px 0 20px;
	}


}



@media screen and (max-width:997px) {

	

}


@media screen and (max-width:768px) {
	



	.mob_nav_btn {
		transform: scale(.8);
		top: 16px;
		right: 30px;
	}

	.fs24 {
		font-size: 18px;
	}

	.lh28, [class*="lh28"] {
		line-height: 20px;
	}

	.lh30, [class*="lh30"] {
		line-height: 22px;
	}

	.lh32, [class*="lh32"] {
		line-height: 24px;
	}

	.lh36, [class*="lh36"] {
		line-height: 26px;
	}

	.lh38, [class*="lh38"] {
		line-height: 28px;
	}

	.lh30x2 {
		height: 44px;
	}

	.lh30x3 {
		height: 66px;
	}

}

@media screen and (max-width:740px) {
	

	.mobile-header {
		top: 0;
	}

	.linkbox {
		width: 57px;
		height: 26px;
		line-height: 25px;
		padding: 0 5px;
		border-radius: 25px;
		margin: 0 0px;
		text-align: center;
	}

	.mob_nav_btn {
		top: 6px;
		right: 15px;
	}

	.gp-serBtn2 {
		margin-left: 0;
	}

	.right {
		padding-right: 38px;
	}

}

@media screen and (max-width:479px) {


	.mob_links {
		display: block
	}

	.mob_links dd:nth-child(2) {
		display: inline-block;
	}

}

@media screen and (max-width:470px) {

}

@media screen and (max-width:414px) {
	.mob_nav_btn {
		top: 6px;
	}

}

@media screen and (max-width:400px) {
	
}