*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Helvetica", sans-serif;
}

*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: #D9D9D9;
}

*::-webkit-scrollbar-thumb {
	background-color: #202020;
	border-radius: 25px;
}

body{
	font-weight: 400;
}

a{
	text-decoration: none;
}

li{
	list-style: none;
}

.no_scroll{
	overflow: hidden;
}

.popup_box{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -999;
	top: 0;
	left: 0;
	display: flex;
	padding: 20px;
	overflow-y: auto;
	display: flex;
	opacity: 0;
	transition: opacity .5s, background-color .5s;
}

.open_popup{
	opacity: 1;
	z-index: 999;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity .5s, background-color .5s;
}

.popup{
	max-width: 630px;
	/*height: 380px;*/
	background: #fff;
	margin: auto;
	padding: 50px 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	opacity: 0;
	transform: translateY(35px);
	transition: opacity .5s, transform .5s;
}

.popup.show_popup{
	opacity: 1;
	transform: translateY(0px);
	transition: opacity .5s, transform .5s;
}

.close_icon{
	width: 38px;
	height: 38px;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}


.popup .popup_title{
	font-weight: 700;
	font-size: 36px;
	text-align: left;
}

.popup form{
	margin-top: 40px;
}

.popup form input[type=text],
.popup form textarea{
	width: 100%;
	height: 60px;
	margin-bottom: 30px;
	padding: 0 13px;
	color: #AEAEAE;
	font-size: 15px;
	font-weight: 300;
	outline: none;
	border: 1px solid #AEAEAE;
}

.popup form textarea{
	margin-bottom: 0;
	padding: 19px 13px;
	min-height: 204px;
	resize: none;
}

.popup form label{
	display: flex;
	align-items: baseline;
	margin-top: 8px;
	font-weight: 300;
	font-size: 13px;
	color: #AEAEAE;
	line-height: 18px;
}

.popup form label span.rule_check{
	min-width: 12px;
	width: 12px;
	height: 12px;
	border: 1px solid #AEAEAE;
	outline: none;
	cursor: pointer;
	margin-right: 8px;
	display: block;
}


.popup form label a{
	color: rgba(174, 174, 174, 1);
	text-decoration: underline;
}



.popup form button{
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 15px;
	color: #E81A26;
	border: 1px solid #E81A26;
	background: transparent;
	cursor: pointer;
	margin-top: 27px;
	text-transform: uppercase;
	transition: color .3s, background-color .3s;
}


.popup form button:hover{
	background: #E81A26;
	color: #fff;
	transition: color .3s, background-color .3s;
}

.checkbox{
	width: 20px;
	height: 20px;
	position: fixed;
	bottom: 25px;
	right: 25px;
	cursor: pointer;
	z-index: 9999;
}

.checkbox:checked + div{
	display: block;
}

.overlay{
	width: 100%;
	height: 6769px;
	position: absolute;
	top: 0;
	left: 0;
	background: url(overlay.jpg) no-repeat center 0;
	opacity: .5;
	z-index: 99;
	display: none;
}

.container{
	max-width: 1388px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.top_line{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}

.top_line .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 130px;
	padding-top: 6px;
}

.top_line nav{
	margin-right: 70px;
}

.top_line nav ul{
	display: flex;
	align-items: center;
}

.top_line nav ul li a{
	padding-left: 40px;
	display: block;
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	transition: color .3s;
}

.top_line.main_page nav ul li a{
	color: #000;
}

.top_line nav ul li a:hover{
	color: #e81a26;
	transition: color .3s;
}

.top_line nav ul li:first-child a{
	padding-left: 0;
}

.burger{
	width: 30px;
	height: 19px;
	position: relative;
	margin-right: 5px;
	display: none;
}

.burger span{
	position: absolute;
	width: 100%;
	height: 3px;
	background: #474747;
	border-radius: 25px;
	left: 0;
	transform: rotate(0deg);
	transition: opacity .3s, transform .3s;
}

.burger span:nth-child(2){
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
}

.burger span:last-child{
	bottom: 0;
}

.burger.active span:first-child{
	transform: rotate(-45deg);
	transition: transform .3s;
	top: 10px;
}
.burger.active span:nth-child(2){
	opacity: 0;
	transition: opacity .3s;
}
.burger.active span:last-child{
	transition: transform .3s;
	transform: rotate(45deg);
	bottom: 6px;
}

.logo{
	margin-left: 70px;
}

.section_title{
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

.offer{
	padding-top: 8px;
	overflow: hidden;
}

.offer .section_title{
	margin-bottom: 50px;
}

.offer_box{
	display: flex;
	justify-content: center;
	margin-bottom: 82px;
}

.offer_item{
	margin: 0 15px;
	position: relative;
	max-width: 386px;
	width: 100%;
}

.offer_item img{
	max-width: 100%;
}

.offer_title{
	width: calc(100% - 48px);
	height: 72px;
	color: #fff;
	background: #202020;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	bottom: 5px;
	left: 50%;
	transform: translate(-50%, 50%);
	font-weight: 700;
}

.offer_desc{
	padding: 0 70px;
	display: flex;
	justify-content: space-between;
}

.offer_desc > span{
	font-size: 16px;
	line-height: 22px;
	max-width: 715px;
	width: 100%;
	font-weight: 300;
	letter-spacing: -0.15px;
}

.offer_desc a{
	display: flex;
	align-items: center;
	white-space: nowrap;
	height: 60px;
	color: #E81A26;
	border: 1px solid #E81A26;
	font-size: 15px;
	text-transform: uppercase;
	padding-right: 51px;
	padding-left: 42px;
	letter-spacing: -0.3px;
	transition: background-color .3s, color .3s;
}

.offer_desc a:hover{
	background: #E81A26;
	color: #fff;
	transition: background-color .3s, color .3s;
}


.slider{
	overflow: hidden;
	padding-top: 130px;
}


.slider .container:after{
	content: "";
	width: 1200px;
	height: 644px;
	background: url(img/slider_bg.png) no-repeat center;
	position: absolute;
	top: 0;
	left: -731px;
	z-index: -9;
}
.slider .container:before{
	content: "";
	width: 1092px;
	height: 779px;
	background: url(img/slider_before.png) no-repeat center;
	position: absolute;
	right: -700px;
	z-index: -9;
	bottom: -128px;
}

.slider_box{
	margin-bottom: 130px;
}

.slider_box .slick-list{
	padding-bottom: 73px;
}

.slider_box .slick-dots{
	max-width: 641px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 14px;
	left: 0;
}

.slider_box .slick-dots li{
	cursor: pointer;
	width: 19px;
	height: 19px;
	background: #D9D9D9;
	border-radius: 50%;
	margin: 0 12.5px;
}

.slider_box .slick-dots li.slick-active{
	background: #E81A26;
}

.slider_box .slick-dots li button{
	display: none;
}

.slide{
	background: #202020;
	position: relative;
}

.slide .slide_img{
	position: absolute;
	top: 0;
	right: 0;
}

.slide .slide_desc{
	max-width: 585px;
	height: 570px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 70px;
	color: #fff;
	padding-top: 58px;
	position: relative;
	z-index: 9;
}

.slide .title{
	font-size: 36px;
	display: block;
	margin-bottom: 30px;
	font-weight: 700;
	line-height: 50px;
}

.slide span{
	font-size: 16px;
	display: block;
	margin-bottom: 30px;
	font-weight: 300;
	line-height: 22px;
	max-width: 490px;
	letter-spacing: -0.1px;
}

.button_link{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.slide .button_link a{
	padding: 9px 14px;
	border: 1px solid #E81A26;
	color: #e81a26;
	display: block;
	font-size: 14px;
	letter-spacing: 0.3px;
	transition: color .3s, border-color .3s;
}

.slide .button_link a:hover{
	color: #fff;
	border-color: #fff;
	transition: color .3s, border-color .3s;
}

.about{
	padding-top: 126px;
}

.about_s{
	padding: 0 70px;
}

.about_s span{
	display: block;
	margin-bottom: 15px;
	line-height: 22px;
	font-weight: 300;
	letter-spacing: -0.1px;
}

.about_s span:last-child{
	margin-bottom: 0;
}


.about_s1{
	background: url(img/about_bg1.jpg) no-repeat center 0;
	background-size: cover;
	color: #fff;
	padding-top: 115px;
	padding-bottom: 82px;
	min-height: 791px;
}

.about_s1 .section_title{
	margin-bottom: 32px;
	text-align: left;
}


.about_s1 .about_wrap{
	max-width: 490px;
	width: 100%;
}


.about_s2{
	background: url(img/about_bg2.jpg) no-repeat center 0;
	background-size: cover;
	padding-top: 75px;
	padding-bottom: 75px;
	min-height: 574px;
}

.about_s2 .about_wrap{
	max-width: 490px;
	width: 100%;
	margin-right: 0;
	margin-left: auto;
}


.quality{
	padding-top: 130px;
}

.quality .section_title{
	line-height: 52px;
	padding-left: 63px;
}

.qual_box{
	margin: 29px auto 0;
	display: flex;
	flex-wrap: wrap;
	max-width: 1248px;
	width: 100%;
}

.qual_item{
	width: calc(33.33% - 30px);
	border: 1px solid #D9D9D9;
	min-height: 381px;
	padding: 20px;
	margin: 15px;
	padding-top: 0;
}

.qual_item:last-child{
	min-height: 328px;
}

.qual_icon{
	height: 134px;
	display: flex;
	align-items: center;
	margin-bottom: 3px;
}

.qual_title{
	font-size: 16px;
	color: #1e1e1e;
	font-weight: 600;
}

.qual_desc{
	font-size: 15px;
	color: #1e1e1e;
	margin-top: 12px;
	line-height: 21px;
	font-weight: 300;
	letter-spacing: -0.2px;
}


.group{
	margin-top: 102px;
	overflow: hidden;
}

.group.group_page{
	background: #202020;
	margin-top: 0;
}

.group.group_page .group_wrap{
	padding-top: 217px;
}

.group_wrap{
	background: #202020;
	padding-top: 113px;
	padding-left: 70px;
	padding-bottom: 87px;
	display: flex;
	justify-content: space-between;
}

.group_desc{
	color: #fff;
	max-width: 580px;
	width: 100%;
}

.group_desc .section_title{
	text-align: left;
	margin-bottom: 9px;
}

.group_desc .section_title strong{
	color: #e81a26;
}

.group_desc .subtitle{
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 40px;
}

.group_desc > span{
	font-size: 16px;
	line-height: 22px;
	font-weight: 300;
}

.group_desc > strong{
	font-weight: 700;
	font-size: 24px;
	line-height: 33px;
	display: block;
	margin-top: 50px;
}

.group_box{
	display: flex;
	margin-top: 43px;
	width: 90%;
	justify-content: space-between;
}

.group_num{
	font-size: 32px;
}

.group_info{
	margin-top: 10px;
	font-weight: 300;
}

.group_excell{
	padding-right: 125px;
	padding-top: 55px;
	position: relative;
	z-index: 9;
}

.group_excell:after {
	content: "";
	width: 571px;
	height: 638px;
	background: url(img/group_bg.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: -99px;
	right: 76px;
	z-index: -9;
}



.group_excell > span{
	color: #fff;
	display: block;
	font-size: 20px;
	padding-left: 10px;
}

.excell_box{
	max-width: 480px;
	width: 100%;
	margin-top: 11px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.excell_box button{
	width: 230px;
	height: 60px;
	background: #E81A26;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	border: 0;
	margin-left: 10px;
	margin-top: 14px;
	text-transform: uppercase;
	font-size: 15px;
	border: 1px solid transparent;
	transition: background-color .3s, color .3s, border-color .3s;
}

.excell_box button:hover{
	background: transparent;
	color: #E81A26;
	border-color: #E81A26;
	transition: all .3s
}

.excell_item{
	width: 220px;
	height: 130px;
	background: #fff;
	margin: 10px;
	padding: 0 14px;
	padding-top: 5px;
}

.excell_icon{
	height: 54px;
	display: flex;
	align-items: center;
}

.excell_desc{
	font-weight: 300;
}


.map{
	margin-top: 134px;
	position: relative;
	overflow: hidden;
	z-index: 9;
}

.map .container{
	padding-bottom: 140px;
}

.map .container:after{
	content: "";
	width: 2235px;
	height: 1119px;
	background: url(img/map_after.png) no-repeat center;
	position: absolute;
	bottom: 31px;
	right: 275px;
	z-index: -9;
}

.map_box{
	margin: 42px auto 0;
	max-width: 1218px;
	position: relative;
}

.map_box img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.map_wrap{
	position: relative;
}

.map_info{
	width: 287px;
	padding-bottom: 42px;
	background: #121212;
	position: absolute;
	z-index: 9;
	color: #fff;
	padding-top: 26px;
	padding-left: 36px;
	opacity: 0;
	transition: opacity .3s;
}

.map_info.active{
	opacity: 1;
	transition: opacity .3s;
}

.map_info .city{
	font-size: 32px;
	margin-bottom: 16px;
	font-weight: 700;
}

.map_info .address{
	font-size: 20px;
	margin-bottom: 12px;
}

.map_info a{
	display: block;
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 4px;
	color: #fff;
}

.map_info a:last-child{
	margin-bottom: 0;
	transition: color .3s;
}

.map_info a:hover{
	color: rgba(232, 26, 38, 1);
	transition: color .3s;
}

.map_info1{
	top: 17%;
	left: 12%;
}
.map_info2{
	top: 65%;
    left: 18%;
}
.map_info3{
	top: 37%;
	right: 28%;
}
.map_info4{
	top: 45%;
	right: 11%;
}

.region{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .3s;
}

.region.active{
	opacity: 1;
	transition: opacity .3s;
}

.map_pin{
	position: absolute;
	cursor: pointer;
	z-index: 99;
}

.map_pin svg path{
	transition: all .3s;
}

.map_pin svg:hover path{
	fill: rgba(232, 26, 38, 1);
	transition: all .3s;
}

.map_pin.active svg path{
	fill: rgba(232, 26, 38, 1);
	transition: all .3s;
}

.map_pin1{
	top: 34%;
	left: 6%;
}

.map_pin2{
	bottom: 17%;
	left: 12%;
}

.map_pin3{
	top: 28%;
	right: 38%;
}

.map_pin4{
	bottom: 15%;
	right: 22%;
}


.map .section_title{
	line-height: 49px;
}

.map .subtitle{
	text-align: center;
	margin-top: 8px;
	font-size: 20px;
}

.product_page{
	padding-bottom: 140px;
}

.product_top{
	padding-top: 210px;
	background: url(img/product_bg.jpg) no-repeat center 0;
	background-size: cover;
	min-height: 506px;
	margin-bottom: 72px;
	color: #fff;
}

.container.cont_s{
	max-width: 1247px;
}

.product_top h1{
	font-weight: 700;
	font-size: 36px;
}

.product_top span{
	max-width: 490px;
	width: 100%;
	display: block;
	font-weight: 300;
	line-height: 22px;
	margin-top: 30px;
}


.types{
	margin-top: 50px;
}

.types strong{
	max-width: 671px;
	display: block;
	font-size: 24px;
	line-height: 33px;
}


.type_box{
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	/*align-items: flex-start;*/
}

.type_item{
	width: calc(33.33% - 30px);
	background: #202020;
	margin: 15px;
	color: #fff;
	padding: 0px 20px 30px 20px;
}

.type_img{
	height: 258px;
	overflow: hidden;
	margin-bottom: 19px;
	margin-left: -20px;
	margin-right: -20px;
}

.type_title{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.type_item ul{
	padding-left: 18px;
}

.type_item ul li{
	position: relative;
	line-height: 22px;
	font-weight: 300;
	list-style: disc;
}

.offer_desc{
	margin-top: 73px;
}

.offer_desc strong{
	font-size: 20px;
	line-height: 27px;
	display: block;
	max-width: 750px;
}

.offer_desc .container{
	display: flex;
	justify-content: space-between;
}



footer{
	background: #121212;
	/*margin-top: 140px;*/
	color: #fff;
	overflow: hidden;
}

footer .logo{
	margin-left: 0;
}

footer > .container{
	padding-top: 80px;
	padding-bottom: 0px;
	display: flex;
	justify-content: space-between;
	position: relative;
	flex-wrap: wrap;
}

footer > .container:after{
	content: "";
	width: 177px;
	height: 100%;
	background: url(img/f_after.png) repeat-y center 0;
	position: absolute;
	top: 0;
	right: -151px;
	z-index: 99;
}

footer .left_col{
	display: flex;
}

footer nav{
	margin-left: 223px;
}

footer nav ul li a{
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 34px;
	font-weight: 300;
	display: block;
	transition: color .3s;
}

footer nav ul li a:hover{
	color: #e61a26;
	transition: color .3s;
}

footer nav ul li:last-child a{
	margin-bottom: 0;
}

footer .f_info{
	font-size: 20px;
	/* margin-right: 107px; */
	margin-top: 5px;
}


footer .f_info a{
	color: #fff;
}

footer .f_info a:hover{
	color: #e61a26;
	transition: color .3s;
}



footer .f_info li:first-child{
	margin-bottom: 19px;
}

footer .f_info li:first-child a{
	font-size: 24px;
}

footer .f_info li:last-child{
	margin-top: 16px;
	letter-spacing: -0.4px;
	line-height: 27px;
}

.f_bottom{
    width: 100%;
    height: 45px;
    color: #c1c0c0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: 14px;
	position: relative;
	z-index: 9;
}
.f_bottom:after{
	content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    background: #191919;
    z-index: -9;
    left: 50%;
    transform: translateX(-50%);
}

.f_bottom a{
	color: #c1c0c0;
	transition: all .3s;
}

.f_bottom a:hover{
	color: #e81a26;
	transition: all .3s;
}
    