 html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
	background: #ffffff;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
.clear{
	clear: both;
	visibility: hidden;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

h1, h2, h3, h4, h5, h6{
	margin: 0;
	color: #28221D;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Roboto Slab', serif;
}
h1{
	font-size: 64px;
	color: #ffffff;
}
h2{
	font-size: 48px;
	color: #28221D;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 12px;
}
h5{
	font-size: 10px;
}
h6{

}
p {
	
	margin: 0 0 25px 0;
	color: #283342;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
}
img{
	display: block;
	max-width: 100%;
}
.b-list{

}
.b-list li{
	list-style: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #6E7680;	
	margin: 0 0 10px 0;
}
.b-list li strong{
	font-weight: 400;
	color: #283342;
}
.b-list li:last-child{
	margin: 0;
}
.b-list li:before{
	content: "";
	width: 13px;
	height: 2px;
	background: url(../images/red-line.svg) no-repeat;
	margin: 12px 15px 0 0;
	flex-shrink: 0;
}
/*== buttons
---------------------------------*/
.b-link{
	font-weight: 600;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #EF4231;
	text-decoration: none;
	opacity: 1;
	transition: 0.3s;
	border-bottom: 1px solid #EF4231;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-link:hover{
	text-decoration: none;
	color: #EF4231;
	opacity: 0.6;
	transition: 0.3s;
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
.button{
	background: #80C721;
	border-radius: 5px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #203F32;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 9px 42px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.button:hover ,.button:active{
	color: #FFFFFF;
	background: #80C721;
	box-shadow: 0px 4px 15px rgba(128, 199, 33, 0.27);
	transition: 0.3s;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}
.b-input-text{
	width: 100%;
	height: auto;
	background: none;;
	border-bottom: 1px solid #2B5B47;
	border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;	
	padding: 0px 0 9px 0;
	transition: 0.3s;
	margin: 0 0 20px 0;
}
.b-input-text:active{
	border-color: #749B8B;
	transition: 0.3s;
}
.b-input-text:valid{
	transition: 0.3s;
} 
.b-input-text.empty_field{
	transition: 0.3s;
	background: #F7F7FB;
	border: 1px solid transparent;
}
.b-input-text:hover{
	border-color: #749B8B;
	transition: 0.3s;
}
.b-input-text::-webkit-input-placeholder{
	color: #396955;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;		
}
.b-input-text:-moz-placeholder{
	color: #396955;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;		
}
.b-input-text.error{
	border-color: #EF4231;
}

textarea{
	height: 80px;
	outline: none;
}
.b-textarea{
	width: 100%;
	height: 135px;
	background: none;;
	border: none;;
	border-bottom: 1px solid #2B5B47;
	border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;	
	padding: 0;
	transition: 0.3s;
	margin: 0 0 50px 0;
}
.b-textarea.empty_field{
	transition: 0.3s;
	border: 1px solid transparent;
}
.b-textarea.error{
	border-color: #EF4231;
}
.b-textarea:hover{
	border-color: #749B8B;
	transition: 0.3s;
}
.b-textarea:active{
	border-color: #749B8B;
	transition: 0.3s;
}
.b-textarea::-webkit-input-placeholder{
	color: #396955;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;	
}
.b-textarea:-moz-placeholder{
	color: #396955;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;		
}


/*== checkbox , raido
---------------------------------*/
.b-checkbox{
	margin: 0 0 15px 0;
	font-family: 'Roboto', sans-serif;
}
.b-checkbox:last-child{
	margin-bottom: 0;
	margin-top: 0;
}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label span{
	width: 25px;
	height: 25px;
	background: #F0F4F7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	flex-shrink: 0;
	margin: 0 20px 0 0;
}
.b-checkbox input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	width: 25px;
	height: 25px;
	background: #F0F4F7 url(../images/check-ico.png) center no-repeat;
}
.b-checkbox input[type="checkbox"]:checked + label{
    color: #000000;
}
.b-checkbox input[type="checkbox"] + label i{
	font-size: 14px;
	line-height: 1.6;
	color: #6E7680;
	font-style: normal;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
select{
	outline: none;
}
.b-select{
	width: 100%;
	height: 30px;
	border: none;
	border-bottom: 1px solid  #65a32a;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #a7a7a7;
	font-family: "Myriad Pro";
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;	
	padding:  0 0 0 8px; 	
	background: #ffffff url(../images/select-arrow.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    appearance: none !important;
    margin: 0 0 35px 0;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
	position: relative;
}
.fancybox-container{
	z-index: 999999;
}
.b-mobile{
	display: none;
}
.modal-dialog{
	pointer-events: inherit;
}
.modal{
	z-index: 99999999;
}
.slick-slide{
	outline: none !important;
}
/* End Total css ====*/
.container-fluid{
	max-width: 1600px;
}
.container{

}
.b-mobile{
	display: none;
}
.b-container{
	position: relative;
}
/* -------------- page index -------------- */
.b-header{
	background: rgba(55, 85, 70, 0.25);
	mix-blend-mode: normal;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 300;
}
.b-header-top{
	/* background: #203F32; */
	padding: 10px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;;
}
.b-header-top__container{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.b-header-contacts{
	margin: 0 73px 0 0;;
}
.b-header-contacts ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-header-contacts ul li{
	list-style: none;
	margin: 0 70px 0 0;;
}
.b-header-contacts ul li:last-child{
	margin: 0;
}
.b-header-contacts ul li a{
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-feature-settings: 'pnum' on, 'lnum' on;
	color: #FFFFFF;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-header-contacts ul li a span{
	margin: -1px 15px 0 0;
	flex-shrink: 0;
	font-size: 16px;
}
.b-social{

}
.b-social ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-social ul li{
	list-style: none;
	margin: 0 13px 0 0;;
}
.b-social ul li:last-child{
	margin: 0;;
}
.b-social ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background: #80C721;
	color: #203F32;
	font-size: 11px;
	text-decoration: none;
}
.b-header-content{
	padding: 24px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;;
}
.b-header-content > .container > .row > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-logo{
	width: 257px;
	height: 57px;
/*	background: url(../images/logo.svg) no-repeat; */
}
.b-header-right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-nav{
	margin: 0 180px 0 0;;
}
.b-nav ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-nav ul li{
	list-style: none;
	margin: 0 46px 0 0 ;;
}
.b-nav ul li:last-child{
	margin: 0;;
}
.b-nav ul li a{
	display: block;;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	position: relative;
	text-decoration: none;
}
.b-nav ul li a:after{
	position: absolute;
	bottom: -44px;
	left: 0;
	content: "";
	width: 0px;
	height: 2px;
	background: #80C721;
	transition: 0.3s;
}
.b-nav ul li a:hover:after{
	width: 100%;
	transition: 0.3s;
}
.header-btn{
	border: 1px solid #80C721;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0px 4px 15px rgba(128, 199, 33, 0.27);
	border-radius: 5px;
    padding: 9px 33px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;	
	transition: 0.3s;
}
.header-btn:hover{
	background: #80C721;
	box-shadow: 0px 4px 15px rgba(128, 199, 33, 0.27);
	transition: 0.3s;
}

/* -------------- b-main -------------- */
.b-main{
	position: relative;
	z-index: 2;
}
.b-main:After{
	position: absolute;
	bottom: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 232px;
	background: url(../images/main-bottom.svg) bottom center repeat-x;
}
.b-main-item{
	height: 1020px !important;
	background-position: top center !important;
	background-size: cover !important;
	position: relative;
}
.b-main-item:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #135c2f 0%, rgba(32, 63, 50, 0) 50%);
	/* background: linear-gradient(90deg, #203F32 0%, rgba(32, 63, 50, 0) 77.37%); */
	/* background: linear-gradient(90deg, #008c51 0%, rgba(32, 63, 50, 0) 20%); */
	mix-blend-mode: normal;
	z-index: 1;
}
.b-main-item__wrapper{
	padding: 283px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	max-width: 497px;
}
.b-main-item__wrapper span{
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.41em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 16px 0;;
}
.b-main-item__wrapper p{
	font-weight: normal;
	font-size: 18px;
	line-height: 1.2;
	color: #FFFFFF;
	margin: 22px 0 40px 0;
}
.b-main-nav{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 0 0 240px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;;
}
.b-main-nav__container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.slick-dots{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0 20px;
	order: 2;	
}
.slick-dots li{
	list-style: none;
	width: 12px;
	height: 12px;
	border: 1px solid transparent;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	margin: 0 10px 0 0;
}	
.slick-dots li:last-child{
	margin: 0;;
}
.slick-dots li button{
	text-indent: -99999px;
	display:  block;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 100%;	
}
.slick-dots li.slick-active{
	border-color: #FFFFFF;
	transition: 0.3s;
}
.slick-dots li.slick-active button{
	background: rgba(255, 255, 255, 1);
}
.b-arrow{
	color: #ffffff;	
	font-size: 23px;
	cursor: pointer;
}
.b-arrow-prev{
	order: 1;
}
.b-arrow-next{
	order: 3;
}
/* -------------- b-about -------------- */
.b-about{
	overflow: hidden;
	position: relative;
	z-index: 20;
}
.b-about-content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-about-left{
	width: 50%;
	flex-shrink: 0;
	padding: 42px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;;
}
.b-about-left h2{
	margin: 0 0 40px 0;;
}
.b-about-text{
	border-top: 1px solid #BCA795;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 32px 60px 0 0;
	margin: 0 0 0 120px;
}
.b-about-text p{
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	font-weight: 400;
	color: #000000;
	text-align: justify;
}
.b-about-right{
	margin: -25px 0 0 0;
}
.b-about-slider__item{
	width: 768px;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
	overflow: hidden;
	margin: 25px;
}
.b-about-nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 60px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-about-nav .b-arrow:before{
	color: #000000;
}
.b-about-nav  .slick-dots li{

}
.b-about-nav  .slick-dots li button{
	background: rgba(188, 167, 149, 0.5);
}
.b-about-nav  .slick-dots li.slick-active{
	border-color: #BCA795;
}
.b-about-nav  .slick-dots li.slick-active button{

}
/* -------------- b-advantages -------------- */
.b-advantages{
	background: #28221D;
	padding: 70px 0 0px 0 ;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 3;
}
.b-advantages:before{
	position: absolute;
	bottom: 99%;
	left: 0;
	content: "";
	background: #28221D;
	width: 100%;;
	height: 55px;
}
.b-advantages:after{
	position: absolute;
	top: 99%;
	left: 0;
	content: "";
	width: 100%;
	height: 232px;
	background: url(../images/b-advantages-bg.png) left bottom repeat-x;
	z-index: 1;
}
.b-advantages-item{
	position: relative;
	z-index: 5;
}
.b-advantages-item__ico{
	font-size: 104px;
	line-height: 1;
	text-align: center;
	margin: 0 0 20px 0;;
}
.b-advantages-item__text{
	text-align: center;
	padding: 0 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-advantages-item__text p{
	font-weight: normal;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	 margin: 0;;
}
.b-advantages-item__text a{
	color: #BCA795;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.04em;	
}
/* -------------- b-certificate -------------- */
.b-certificate{
	position: relative;
	z-index: 4;
	margin: 150px 0 120px 0;
}
.b-certificate-slider{
	padding: 0 150px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-certificate-item{

}
.b-certificate-item__img{
	margin: 0 0 28px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-certificate-item__img__wrap{
	position: relative;
}
.b-certificate-item__link{
	display: block;
	position: absolute;
	bottom: 30px;
	right: -20px;
	background: url(../images/svg/pdf.svg) no-repeat;
	width: 39px;
	height: 39px;
}
.b-certificate-item__img img{
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
}
.b-certificate-item__text{
	text-align: center;
	font-family: 'Roboto', sans-serif;
}
.b-certificate-item__text b{
	display: block;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.3;
	color: #28221D;
}
.b-certificate-item__text p{
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	color: #28221D;
	margin: 5px 0;
}
.b-certificate-item__text span{
	display: block;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	color: #C0C0C0;
}
.b-certificate .b-arrow{
	width: 34px;
	height: 34px;
	border: 1px solid #000000;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 15px;
	position: absolute;
	top: 150px;
}
.b-certificate .b-arrow-prev{
	left: 0;
}
.b-certificate .b-arrow-next{
	right: 0;
}

/* -------------- b-certificate -------------- */
.b-info{
	padding: 0 0 130px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-info-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-info-title{
	padding: 0 0 40px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 55px 0;
	position: relative;
}
.b-info-title:after{
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #BCA795;
}
.b-info-content{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.b-info-col{
	width: 33.333333%;
	position: relative;
	z-index: 30;
}
.b-info-img{
	flex-shrink: 0;
	width: 33.333333%;
	padding: 145px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-info-img img{
	max-width: inherit;
}
.b-info-item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 60px 0;
	position: relative;
}
.b-info-item:last-child{
	margin: 0;;
}
.b-info-item__number{
	flex-shrink: 0;
	font-weight: 900;
	font-size: 64px;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #BCA795;	
	margin: 0 13px 0 0;
	width: 50px;
	text-align: center;
	opacity: 0.3;
	transition: 0.3s;;
}
.b-info-item__text{
	padding: 40px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 457px !important;
	flex-shrink: 0;
}
.b-info-item__text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: #28221D;
	margin: 0;
}
.b-info-item__text p b{
	display: block;
	font-weight: 600;
}
.b-info-col__right .b-info-item{
	flex-direction: row-reverse;
	text-align: right;
}
.b-info-col__right .b-info-item__number{
	margin: 0 0 0 13px;
}
.b-info-col__right .b-info-item{
	margin: 0 0 60px 0;
}
.b-info-item:hover .b-info-item__number{
	opacity: 1;
	transition: 0.3s;
}
.b-info-item__first{
	position: relative;
}
.b-info-item__first:after{
	position: absolute;
    top: 118px;
    right: -108px;
	content: "";
	width: 185px;
	height: 93px;
	background: url(../images/b-info-item__first__img.svg) center no-repeat;
	z-index: 10;
}
 
.b-info-item__2:after{
	position: absolute;
    top: 57px;
    right: -108px;
	content: "";
	width: 185px;
	height: 93px;
	background: url(../images/b-info-item__2.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__3:after{
	position: absolute;
	top: -2px;
    right: -145px;
	content: "";
	width: 185px;
	height: 93px;
	background: url(../images/b-info-item__3.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__4:after{
	position: absolute;
	top: -11px;
    right: -125px;
	content: "";
	width: 185px;
	height: 93px;
	background: url(../images/b-info-item__4.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__5:after{
	position: absolute;
	top: 48px;
    left: -64px;
	content: "";
	width: 186px;
	height: 139px;
	background: url(../images/b-info-item__5.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__6:after{
	position: absolute;
    top: 73px;
    left: -66px;
	content: "";
	width: 184px;
	height: 30px;
	background: url(../images/b-info-item__6.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__7:after{
	position: absolute;
    top: 8px;
    left: -88px;
	content: "";
	width: 186px;
	height: 42px;
	background: url(../images/b-info-item__7.svg) center no-repeat;
	z-index: 10;
}
.b-info-item__8:after{
	position: absolute;
	top: 10px;
    left: -194px;
	content: "";
	width: 186px;
	height: 64px;
	background: url(../images/b-info-item__8.svg) center no-repeat;
	z-index: 10;
}
.b-info-item:after{
	opacity: 0;
	visibility: visible;
	transition: 0.3s;
}
.b-info-item:hover:after{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}


/* -------------- b-product -------------- */
.b-product{
	background: url(../images/b-product-bg.jpg) center bottom repeat-x ;
	padding: 66px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 883px;;
}
.b-product-content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-product-left{
	padding: 36px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-product-top{
	margin: 0 0 42px 0;;
}
.b-product-top h2{
	color: #ffffff;
}
.b-product-wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 42px 106px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #80C721;
	margin: 0 0 0 120px;;
}
.b-product-block{
	width: 360px;
	margin: 0 40px 0 0;;
}
.b-product-block:last-child{
	margin: 0;;
}
.b-product-block__img{
	margin: 0 0 24px 0;;
}
.b-product-block p{
	font-weight: normal;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	margin: 0;;
}
.b-form{
	width: 507px;
	background: #203F32;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.22);
	border-radius: 5px;
	flex-shrink: 0;
	padding: 55px 60px 53px 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;;
}
.b-form-top{
	margin: 0 0 40px 0;;
}
.b-form-top b{
	font-family: 'Roboto Slab', serif;
	display: block;
	font-weight: bold;
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFFFFF;
	display: block;
	margin: 0 0 25px 0;
}
.b-form-top span{
	display: block;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #FFFFFF;	
}
.btn-submit{
	margin: 0 auto 0;
	cursor: pointer;
}
.b-form i{
	display: block;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	color: #509678;
	margin: 26px 0 0 0;;
}
/* -------------- b-partners -------------- */
.b-partners{
	margin: 0 0 50px 0;;
}
.b-partners-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-partners-title{
	padding: 0 0 35px 0;
	margin: 0 0 40px 0;
	position: relative;	
}
.b-partners-title:after{
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	width: 349px;
	height: 1px;
	background: #BCA795;
}
.b-partners-content{

}
.b-partners-content > .row > div{
	margin-top: 40px;
	margin-bottom: 40px;
}
.b-partners-item{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-map{
	position: relative;
}
.b-map:before{
	position: absolute;
	top: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 232px;
	background: url(../images/map-top.png) center top repeat-x;
	z-index: 20;
}
#map{
	width: 100%;
	height: 740px;
}
/* -------------- b-footer -------------- */
.b-footer{
	background: #203F32;
	overflow: hidden;
}
.b-footer-content{
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
}
.b-footer-left{
	padding: 25px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 160px 0 0;;
}
.b-footer-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 25px 0;;
}
.b-footer-logo{
    width: 220px;
    height: 100px;
    background: url(../images/logo.svg) no-repeat;	
    margin: 0 127px 0 0;
    flex-shrink: 0;
}
.b-footer-nav{
	flex-shrink: 0;
}
.b-footer-nav ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer-nav ul li{
	list-style: none;
	margin: 0 36px 0 0;;
}
.b-footer-nav ul li:last-child{
	margin: 0;;
}
.b-footer-nav ul li a{
	display: block;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #FFFFFF;
}
.b-footer-social{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer-social b{
	display: block;
	margin: 0 15px 0 0;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #FFFFFF;	
}
.b-copyright{
	margin: 30px 0 0 0;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	color: #95B5A7;	
}
.b-footer-right{
	background: #2B5B47;
	padding: 48px 0 0 95px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.b-footer-right:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 99999px;
	height: 100%;
	background: #2B5B47;
	z-index: 1;
}
.b-footer-right__wrapper{
	position: relative;
	z-index: 5;
}
.b-footer-wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-footer-right .b-header-contacts ul{
	display: block;
}
.b-footer-right .b-header-contacts{
	margin: 0 60px 0 0;;
}
.b-footer-right .b-header-contacts:last-child{
	margin: 0;
}
.b-footer-right .b-header-contacts ul li{
	margin: 0 0 15px 0;
	line-height: 1.5;
}
.b-footer-right .b-header-contacts ul li a{
	align-items: flex-start;
	font-weight: 400;
	text-transform: none;
}
.footer-marker .b-header-contacts ul li a span{
	margin: 3px 15px 0 0;
}
.b-copyright__xs{
	display: none;
}
.b-design{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin: 35px 0 0 0;;
}
.b-design span{
	font-weight: normal;
	font-size: 14px;
	line-height: 1.2;
	color: rgba(149, 181, 167, 0.5);
	display: block;
	margin: 0 21px 0 0;;
}
.b-design-ico{
	font-size: 134px;
	line-height: 20px !important;
	margin: -5px 0 0 0;;
}


.animate-top , .animate-left , .animate-right , .animate-down{
	opacity: 0;
	transition: 1s;
}
/* -------------- SAV -------------- */
#logo img.m-logo {
	width: 220px;
	height: 100px;
	position: absolute;
	top: -50px;
	left: 2px;
	z-index: 999;
}

.video-bg {
    z-index: 1;
    background: url(../vid/bg_pelleti.jpg) no-repeat #058b00;
}

.video-bg > video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto; 
}

 @supports (object-fit: cover) {
     .video-bg > video {
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
     }
 }