/*  Reset styles
    ------------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;}

* {
	box-sizing: border-box;
}

a {
	color: #312f30;
	outline: none;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

sup {
	vertical-align: super;
}

/*  fonts
    ------------------------------------------------------- */
@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.eot');
    src: url('../fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Light.woff2') format('woff2'),
         url('../fonts/OpenSans-Light.woff') format('woff'),
		 url('../fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Regular.woff2') format('woff2'),
         url('../fonts/OpenSans-Regular.woff') format('woff'),
		 url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/OpenSans-SemiBold.eot');
    src: url('../fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
         url('../fonts/OpenSans-SemiBold.woff') format('woff'),
		 url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/OpenSans-Bold.eot');
    src: url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Bold.woff2') format('woff2'),
         url('../fonts/OpenSans-Bold.woff') format('woff'),
		 url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-BoldItalic';
    src: url('../fonts/OpenSans-BoldItalic.eot');
    src: url('../fonts/OpenSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-BoldItalic.woff2') format('woff2'),
         url('../fonts/OpenSans-BoldItalic.woff') format('woff'),
		 url('../fonts/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RussoOne-Regular';
    src: url('../fonts/RussoOne-Regular.eot');
    src: url('../fonts/RussoOne-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RussoOne-Regular.woff2') format('woff2'),
         url('../fonts/RussoOne-Regular.woff') format('woff'),
		 url('../fonts/RussoOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*  body
    ------------------------------------------------------- */
html,
body {
	height: 100%;
}

#page {
	position: relative;
	background-color: #fff;
	color: #312f30;
	font-size: 20px;
	font-family: 'OpenSans-Regular';
}

#page::after {
    content: '';
	position: fixed;
	z-index: 9001;
	top: 0;
	left: 0;
    height: 0;
    width: 0;
    opacity: 0;
	background: rgba(0, 0, 0, 0.8);
	-webkit-transition: opacity 0.4s ease-out 0s;
    		transition: opacity 0.4s ease-out 0s;
}

#page.form-open {
	overflow: hidden;
}

#page.form-open::after {
    height: 100%;
    width: 100%;
	opacity: 1;
}

.wrapper {
	overflow: hidden;
}

.wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1320px;
	padding-right: 20px;
	padding-left: 20px;
	position: relative;
}

h1, h2, h3, h4 {
	text-transform: uppercase;
	font-family: 'OpenSans-Bold';
}

.section-title {
	text-align: center;
	font-size: 48px;
}

.section-title > span {
	position: relative;
}

.section-title > span::before,
.section-title > span::after {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 960px;
	height: 4px;
	background-color: #c4c4c4;
}

.section-title > span::before {
	right: 100%;
	margin-right: 34px;
}

.section-title > span::after {
	left: 100%;
	margin-left: 34px;
}

.btn {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 19px;
	font-size: 23px;
	color: #fff;
	background-color: #2fd071;
	text-transform: uppercase;
	font-family: 'OpenSans-Bold';
}

.btn:hover {
	background-color: #ffa800;
}

.btn::before {
	content: '';
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border-radius: 19px;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.wrap-items {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
}

.row {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}

.custom-nav > button {
	position: relative;
	z-index: 2;
	width: 31px;
	height: 45px;
	background-image: url('../img/arrow.png');
}

.custom-nav > button:hover {
	background-image: url('../img/arrow_hover.png');
}

.custom-nav .owl-next {
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
}

/*  header
    ------------------------------------------------------- */
.header {
	position: relative;
	z-index: 10;
	height: 160px;
	color: #fff;
}

.header .wrap {
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.header .logo {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 204px;
	height: 93px;
	background-image: url('../img/logo.png');
}

.nav {
	margin: 0 19px 0 36px;
	-webkit-flex-grow: 1;
			flex-grow: 1;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	overflow: hidden;
}

.nav > a {
	margin-right: 85px;
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'OpenSans-Bold';
}

.nav > a:last-child {
	margin: 0;
}

.nav > a:first-child::before,
.nav > a:last-child::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 300px;
	height: 4px;
	background-color: rgba(0, 0,0, 0.1);
	pointer-events: none;
}

.nav > a:first-child::before {
	right: 100%;
	margin-right: 17px;
}

.nav > a:last-child::before {
	left: 100%;
	margin-left: 17px;
}

.nav > a::after {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	right: -67px;
	width: 51px;
	height: 4px;
	background-color: rgba(0, 0,0, 0.1);
	pointer-events: none;
}

.nav > a:last-child::after {
	display: none;
}

.header .column-right {
	-webkit-align-items: center;
			align-items: center;
}

.header .tel {
	font-family: 'OpenSans-Bold';
}

.header .tel > a:first-child {
	display: block;
	position: relative;
	padding-left: 21px;
	font-size: 26px;
}

.header .tel > a:first-child::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	left: 0;
	width: 12px;
	height: 21px;
	background-image: url('../img/tel.png');
	background-size: cover;
}

.header .tel > a:last-child {
	margin-top: 9px;
	display: inline-block;
	width: 227px;
	height: 46px;
	line-height: 46px;
	border-radius: 23px;
	text-align: center;
	color: #fff;
	background-color: #2fd071;
	font-size: 17px;
	text-transform: uppercase;
}

.header .tel > a:last-child:hover {
	background-color: #ffa800;
}

.header .menu-btn {
	display: none;
	margin-left: 40px;
	position: relative;
	z-index: 12;
	width: 30px;
	height: 25px;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
			transition: .5s ease-in-out;
	cursor: pointer;
}

.menu-btn span {
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 3px;
	background-color: #312f30;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
			transition: .25s ease-in-out;
}

.menu-btn span:nth-child(1) {
	top: 0;
}

.menu-btn span:nth-child(2) {
	top: 11px;
}

.menu-btn span:nth-child(3) {
	top: 22px;
}

/*  left menu
    ------------------------------------------------------- */
.nav-left {
	position: fixed;
	z-index: 9002;
	top: 0;
	right: -200%;
	width: 320px;
	height: 100%;
	padding: 177px 20px 62px;
	background-color: #738c79;
	-webkit-transition: 0.3s;
			transition: 0.3s;
	overflow-y: auto;
	font-family: 'OpenSans-Bold';
}

.nav-left.nav-open {
	right: 0;
}

.nav-left a {
	color: #fff;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.nav-left a:hover {
	color: #ffa800;
}

.nav-left .contacts {
	margin-bottom: 40px;
}

.nav-left .tel {
	display: inline-block;
	position: relative;
	padding-left: 40px;
	font-size: 28px;
	color: #ffa800;
}

.nav-left .tel::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    		transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 34px;
    background-image: url('../img/tel.png');
}

.nav-left .list > li {
	margin-bottom: 28px;
}

.nav-left .list > li:last-child {
	margin: 0;
}

.nav-left .list > li a {
	line-height: 19px;
	text-transform: uppercase;
}

.nav-left .menu-close {
	position: absolute;
	top: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
}

.nav-left .menu-close > svg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}

/*  section1
    ------------------------------------------------------- */
.section1 {
	position: relative;
	padding-bottom: 72px;
}

.section1::before {
	content: '';
	position: absolute;
    top: -160px;
	left: 0;
	width: 100%;
    height: 650px;
    background-image: url('../img/bg1.jpg');
    background-position: center center;
}

.section1 .row {
	-webkit-justify-content: center;
			justify-content: center;
}

.section1 img {
	margin: -15px 53px 0 0;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
}

.section1 h1 {
	margin-top: 79px;
	max-width: 400px;
	font-size: 55px;
	color: #fff;
}

.section1 h1 > span {
	color: #000;
}

.section1 .tel {
	display: none;
	margin-bottom: 20px;
	width: 290px;
	font-family: 'OpenSans-Bold';
}

.section1 .tel > a:first-child {
	display: block;
	position: relative;
	padding-left: 21px;
	font-size: 26px;
	color: #fff;
}

.section1 .tel > a:first-child::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	left: 0;
	width: 12px;
	height: 21px;
	background-image: url('../img/tel.png');
	background-size: cover;
}

.section1 .tel > a:last-child {
	margin-top: 9px;
	display: inline-block;
	width: 227px;
	height: 46px;
	line-height: 46px;
	border-radius: 23px;
	text-align: center;
	color: #fff;
	background-color: #ffa800;
	font-size: 17px;
	text-transform: uppercase;
}

.section1 .tel > a:last-child:hover {
	background-color: #2fd071;
}

/*  section2
    ------------------------------------------------------- */
.section2 {
	position: relative;
	padding: 43px 0 30px;
}

.section2::before {
	content: '';
	position: absolute;
	z-index: -1;
    bottom: 0;
	left: 0;
	width: 100%;
    height: 398px;
    background-image: url('../img/bg2.jpg');
    background-position: center center;
}

.section2 h2 {
	margin-bottom: 34px;
}

.section2 .containers {
	padding-bottom: 85px;
}

.section2 .containers .item {
	width: 308px;
	cursor: pointer;
}

.section2 .containers .wrap-img {
	margin-bottom: 27px;
	height: 305px;
	position: relative;
}

.section2 .containers img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.section2 .containers .item:hover img {
	margin-top: -20px;
}

.section2 .containers h4 {
	margin-bottom: 27px;
	padding-left: 2px;
	font-size: 23.16px;
	overflow: hidden;
}

.section2 .containers h4 > span {
	position: relative;
}

.section2 .containers h4 > span::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	left: 100%;
	margin-left: 15px;
	width: 100px;
	height: 1px;
	background-color: #b2b2b2;
}

.section2 .containers h4 span > span {
	text-transform: lowercase;
}

.section2 .containers h4 sup {
	font-size: 18px;
}

.section2 .containers .item:hover .btn {
	background-color: #ffa800;
}

.section2 .containers .btn > span:last-child {
	display: none;
}

.section2 .containers .item:hover .btn > span:first-child {
	display: none;
}

.section2 .containers .item:hover .btn > span:last-child {
	display: inline;
}

.section2 h3 {
	margin-bottom: 54px;
	padding: 0 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	height: 116px;
	font-size: 30px;
	line-height: 1.2;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.4);
}

.section2 h3 > span::before,
.section2 h3 > span::after {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}

.section2 .wastes {
	margin: 0 auto;
	max-width: 1100px;
}

.section2 .wastes .item {
	margin-bottom: 53px;
	padding-left: 63px;
	position: relative;
	width: 280px;
	color: #fff;
	font-size: 18px;
	line-height: 1.3;
	text-transform: uppercase;
	font-family: 'OpenSans-Bold';
	-webkit-transition: all 0.5s;
			transition: all 0.5s;
}

.section2 .wastes .item:hover {
	color: #ffa800;
}

.section2 .wastes .item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 48px;
	height: 47px;
	-webkit-transition: all 0.5s;
			transition: all 0.5s;
}

.section2 .wastes .item:nth-child(1)::before {
	background-image: url('../img/wastes/1.png');
}

.section2 .wastes .item:nth-child(2)::before {
	background-image: url('../img/wastes/2.png');
}

.section2 .wastes .item:nth-child(3)::before {
	background-image: url('../img/wastes/3.png');
}

.section2 .wastes .item:nth-child(4)::before {
	background-image: url('../img/wastes/4.png');
}

.section2 .wastes .item:nth-child(5)::before {
	background-image: url('../img/wastes/5.png');
}

.section2 .wastes .item:nth-child(6)::before {
	background-image: url('../img/wastes/6.png');
}

.section2 .wastes .item:hover:nth-child(1)::before {
	background-image: url('../img/wastes/media/1.png');
}

.section2 .wastes .item:hover:nth-child(2)::before {
	background-image: url('../img/wastes/media/2.png');
}

.section2 .wastes .item:hover:nth-child(3)::before {
	background-image: url('../img/wastes/media/3.png');
}

.section2 .wastes .item:hover:nth-child(4)::before {
	background-image: url('../img/wastes/media/4.png');
}

.section2 .wastes .item:hover:nth-child(5)::before {
	background-image: url('../img/wastes/media/5.png');
}

.section2 .wastes .item:hover:nth-child(6)::before {
	background-image: url('../img/wastes/media/6.png');
}

/*  section3
    ------------------------------------------------------- */
.section3 {
	padding: 72px 0 87px;
}

.section3 h2 {
	margin-bottom: 70px;
}

.section3 .table .column {
	width: 298px;
}

.section3 .table li {
	margin-bottom: 1px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
	text-align: right;
	font-size: 30px;
	color: #0a3a1d;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
	font-family: 'OpenSans-Bold';
}

.section3 .table li:last-child {
	margin: 0;
}

.section3 .table li:nth-child(2n) {
	background-color: #e5e5e5;
}

.section3 .table .column:hover li:nth-child(2n) {
	background-color: #dbdbdb;
}

.section3 .table li:nth-child(2n + 1) {
	background-color: #f7f7f7;
}

.section3 .table .column:hover li:nth-child(2n + 1) {
	background-color: #ededed;
}

.section3 .table li.head {
	font-size: 29px;
	color: #fff;
	background-color: #2fd071;
}

.section3 .table .column:hover li.head {
	background-color: #28b160;
}

.section3 .table span {
	padding: 19px 0 23px;
}

.section3 .table span:last-child {
	-webkit-flex-grow: 1;
			flex-grow: 1;
	padding-right: 27px;
}

.section3 .table .label {
	display: none;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 107px;
	text-align: center;
	color: #fff;
	border-right: 1px solid #fff;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.section3 .table .column:first-child .label {
	display: block;
}

.section3 .table li:nth-child(2n) .label {
	background-color: #2f5841;
}

.section3 .table .column:hover li:nth-child(2n) .label {
	background-color: #2a4e3a;
}

.section3 .table li:nth-child(2n + 1) .label {
	background-color: #97aba0;
}

.section3 .table .column:hover li:nth-child(2n + 1) .label {
	background-color: #8b9d93;
}

.section3 .table .label sup {
	font-size: 16px;
}

/*  section4
    ------------------------------------------------------- */
.section4 {
	position: relative;
	height: 723px;
	padding-top: 114px;
	font-family: 'OpenSans-Bold';
}

.section4::before {
	content: '';
	position: absolute;
    bottom: 0;
	left: 0;
	width: 100%;
    height: 100%;
    background-image: url('../img/bg3.jpg');
    background-position: top center;
}

.section4 .wrap {
	z-index: 2;
}

.section4 .logo {
	margin-bottom: 106px;
	display: inline-block;
	width: 230px;
	height: 45px;
}

.section4 h2 {
	margin-bottom: 12px;
	font-size: 57px;
	color: #fff;
	text-shadow: 1px 2px 21px rgba(35, 35, 35, 0.28);
}

.section4 h2 > span {
	color: #ffa800;
}

.section4 .info {
	margin-bottom: 31px;
	color: #d8ffe8;
	font-size: 34.79px;
}

.section4 .promo-code {
	margin-bottom: 93px;
	font-size: 44px;
	color: #000;
}

.section4 .tel {
	position: relative;
	display: inline-block;
    padding-left: 40px;
    font-size: 36px;
	color: #ffa800;
}

.section4 .tel::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 34px;
    background-image: url('../img/tel.png');
}

/*  section5
    ------------------------------------------------------- */
.section5 {
	position: relative;
	padding: 83px 0 58px;
}

.section5 h2 {
	margin-bottom: 90px;
}

.section5 .item {
	margin-bottom: 65px;
	width: calc((100% - 250px) / 3);
}

.section5 .wrap-icon {
	margin-bottom: 24px;
	height: 98px;
	position: relative;
}

.section5 .wrap-icon::before {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #312f30;
}

.section5 .wrap-icon .icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	left: 0;
	display: inline-block;
	padding-right: 18px;
	background-color: #fff;
}

.section5 h4 {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.2;
}

.section5 .description {
	font-size: 20px;
	line-height: 1.3;
	color: #939393;
	font-family: 'OpenSans-SemiBold';
}

/*  section6
    ------------------------------------------------------- */
.section6 {
	position: relative;
	height: 643px;
	padding-top: 83px;
	color: #fff;
}

.section6::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg4.jpg');
	background-position: center center;
}

.section6 .section-title {
	margin-bottom: 25px;
}

.section6 .section-title > span::before,
.section6 .section-title > span::after {
    background-color: rgba(0, 0, 0, 0.23);
}

.section6 .info {
	margin-bottom: 59px;
	font-size: 24px;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	font-family: 'OpenSans-SemiBold';
}

.section6 .item {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
			align-items: flex-start;
}

.section6 .item .avatar {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 273px;
	height: 273px;
	padding: 6px;
	border: solid 4px #a7c6ab;
	border-radius: 50%;
}

.section6 .item .avatar > img {
	width: 100%;
	border-radius: 50%;
}

.section6 .item .column-right {
	margin: 0 45px 0 98px;
	max-width: 577px;
}

.section6 .item .name {
	margin-bottom: 21px;
	text-transform: none;
}

.section6 .item .description {
	position: relative;
	padding: 20px 0 32px;
	font-size: 20px;
	line-height: 1.3;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.section6 .item .description::before,
.section6 .item .description::after {
	position: absolute;
	font-size: 60px;
	font-family: 'RussoOne-Regular';
}

.section6 .item .description::before {
	content: '“';
	top: 10px;
	left: -45px;
}

.section6 .item .description::after {
	content: '”';
	bottom: -9px;
	right: -45px;
}

.section6 .item .btn {
	margin-top: 29px;
	font-size: 20px;
	max-width: 308px;
	height: 45px;
    line-height: 45px;
	border-radius: 22.5px;
}

.section6 .item .btn::before {
    border-radius: 22.5px;
}

.section6 .slider-content {
	position: relative;
	padding: 0 107px;
}

.section6 .custom-nav {
	position: absolute;
	z-index: 2;
	top: 89px;
	right: 0;
	left: 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}

.section6 .custom-nav > button {
	background-image: url('../img/arrow_green.png');
}

.section6 .custom-nav > button:hover {
	background-image: url('../img/arrow_hover.png');
}

/*  section7
    ------------------------------------------------------- */
.section7 {
	padding: 84px 0;
}

.section7 h2 {
	margin-bottom: 53px;
}

.section7 .item .wrap-img {
	margin-bottom: 20px;
	position: relative;
	width: calc((100% - 40px) / 3);
	font-size: 0;
	cursor: pointer;
}

.section7 .item .wrap-img::before,
.section7 .item .wrap-img::after {
	opacity: 0;
	content: '';
	position: absolute;
}

.section7 .item .wrap-img::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 168, 0, 0.8);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.section7 .item .wrap-img::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	background-image: url('../img/plus.png');
}

.section7 .item .wrap-img:hover::before,
.section7 .item .wrap-img:hover::after {
	opacity: 1;
}

.section7 .item .wrap-img > img {
	width: 100%;
}

.section7 .custom-nav {
	margin-top: 6px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}

.section7 .owl-dots {
	margin: 0 53px;
	position: relative;
	overflow: hidden;
}

.section7 .owl-dot {
	position: relative;
}

.section7 .owl-dot:first-child::before,
.section7 .owl-dot:last-child::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 580px;
	height: 4px;
	background-color: #c4c4c4;
}

.section7 .owl-dot:first-child::before {
	right: 100%;
	margin-right: 30px;
}

.section7 .owl-dot:last-child::before {
	left: 100%;
	margin-left: 30px;
}

/*  section8
    ------------------------------------------------------- */
.section8 {
	position: relative;
	height: 577px;
	padding-top: 88px;
	font-family: 'OpenSans-Bold';
}

.section8::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg5.jpg');
	background-position: center center;
}

.section8 .wrap {
	padding-right: 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
			justify-content: flex-end;
}

.section8 .content {
	width: 100%;
	max-width: 670px;
}

.section8 .logo {
	margin-bottom: 102px;
	display: inline-block;
}

.section8 h2 {
	margin-bottom: 24px;
	font-size: 57px;
	color: #fff;
}

.section8 .info {
	margin-bottom: 34px;
	color: #d8ffe8;
	font-size: 31px;
}

.section8 .tel {
	position: relative;
	display: inline-block;
    padding-left: 74px;
    font-size: 69px;
	color: #ffa800;
	text-shadow: 1px 2px 21px rgba(35, 35, 35, 0.58);
}

.section8 .tel::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 38px;
    height: 64px;
    background-image: url('../img/tel.png');
	background-size: cover;
}


/*  footer
    ------------------------------------------------------- */
.footer .row-top {
	padding: 26px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.footer .logo {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 158px;
	height: 40px;
	background-image: url('../img/logo_footer.png');
}

.footer .tel {
	width: 153px;
	height: 31px;
	line-height: 31px;
	border-radius: 15.5px;
	text-align: center;
	color: #fff;
	background-color: #2fd071;
	font-size: 11.46px;
	text-transform: uppercase;
	font-family: 'OpenSans-Bold';
}

.footer .tel:hover {
	background-color: #ffa800;
}

.footer .row-bottom {
	padding-bottom: 44px;
	font-size: 13px;
	color: rgba(49, 47, 48, 0.5);
	font-family: 'OpenSans-SemiBold';
}

.footer .row-bottom .column-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
}

.footer .row-bottom .column-center > span {
	margin-right: 60px;
}

.footer .row-bottom .column-center > span:last-child {
	margin: 0;
}

/*  form UI
    ------------------------------------------------------- */
input::-moz-placeholder {
	opacity: 1;
	color: #c8e6d0;
}

input::-webkit-input-placeholder {
	color: #c8e6d0;
}

input:-ms-input-placeholder {
	color: #c8e6d0;
}

input::-ms-input-placeholder {
	color: #c8e6d0;
}

input::placeholder {
	color: #c8e6d0;
}

:invalid {
  box-shadow: none;
}

button {
    padding: 0;
    font-size: 0;
    background: transparent;
    border: none;
    outline: none;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
    cursor: pointer;
}

.input__field {
	display: inline-block;
	width: 100%;
	height: 35px;
	font-size: 14px;
	line-height: 17px;
	color: #c8e6d0;
	border: 1px solid #a7c6ab;
	background: transparent;
	outline: none;
	margin: 0;
	padding: 9px 15px 9px;
	font-family: 'OpenSans-Regular';
}

/*  modal form
    ------------------------------------------------------- */
.fs-box {
	display: none;
    height: 100%;
    left: 0;
    overflow: hidden;
	overflow-y: auto;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
	z-index: 10000;
	-webkit-animation-duration: 1s;
    		animation-duration: 1s;
  	-webkit-animation-fill-mode: both;
    		animation-fill-mode: both;
}

.fs-box::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
	height: 100%;
}

.fs-box > section {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.fs-form {
    position: relative;
    width: 673px;
	background: #fff;
	text-align: left;
}

.fs-form.gallery {
	width: 1288px;
	background: transparent;
}

.fs-form .close {
	position: absolute;
	top: -40px;
	right: 0;
	width: 24px;
	height: 24px;
	background-image: url('../img/close.png');
}

.fs-form h3 {
	font-size: 26px;
	height: 83px;
	line-height: 83px;
	text-align: center;
	color: #fff;
	background-color: #a7c6ab;
}

.fs-form .action {
	margin-top: 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}

.fs-form .action > a {
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.01em;
	color: #424242;
}

.fs-form .form {
	padding: 18px 21px 34px;
}

.fs-form .input__field {
	height: 44px;
	padding: 14px 16px 13px;
	color: #6f9674;
}

.fs-form .form > .input__field {
	margin-bottom: 9px;
}

.fs-form .form > .input__field:last-child {
	margin: 0;
}

.fs-form .row .input__field {
	width: calc((100% - 10px) / 2);
}

.fs-form .input__text {
	resize: none;
	height: 121px;
}

.call .btn {
	margin-top: 20px;
	height: 46px;
	line-height: 46px;
	border-radius: 23px;
	font-size: 17px;
	background-color: #ffa800;
}

.fs-form .btn:hover {
	background-color: #2fd071;
}

.fs-form .btn::before {
	border-radius: 23px;
}

.fs-form input::-moz-placeholder {
	opacity: 1;
	color: #6f9674;
}

.fs-form input::-webkit-input-placeholder {
	color: #6f9674;
}

.fs-form input:-ms-input-placeholder {
	color: #6f9674;
}

.fs-form input::-ms-input-placeholder {
	color: #6f9674;
}

.fs-form input::placeholder {
	color: #6f9674;
}

.fs-form textarea::-moz-placeholder {
	opacity: 1;
	color: #6f9674;
}

.fs-form textarea::-webkit-input-placeholder {
	color: #6f9674;
}

.fs-form textarea:-ms-input-placeholder {
	color: #6f9674;
}

.fs-form textarea::-ms-input-placeholder {
	color: #6f9674;
}

.fs-form textarea::placeholder {
	color: #6f9674;
}

.gallery .item {
	font-size: 0;
}

.gallery .item > img {
	width: 100%;
}

.gallery .owl-dots {
	margin: 0 53px;
}

.gallery .owl-carousel .owl-dot {
    background-color: rgba(255, 255, 255, 0.5);
}

.gallery .owl-carousel .owl-dot.active {
	background-color: #fff;
}

.gallery .custom-nav {
	margin-top: 11px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
}

.gallery .custom-nav > button {
    background-image: url('../img/arrow_white.png');
}

.gallery .custom-nav > button:hover {
    background-image: url('../img/arrow_hover.png');
}

/*  ANIMATIONS MODAL FORM
    ------------------------------------------------------- */
@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}


/*  Modal window message
    ------------------------------------------------------- */
.popup-info {
	position: fixed;
	z-index: 90006;
	top: 20px;
	left: 20px;
	max-width: 400px;
	font-size: 16px;
	padding: 20px 40px 20px 80px;
	background: #229451;
	color: #fff;
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	visibility: visible;
	-webkit-animation-name: bounceInDown;
			animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;	
	-webkit-animation-timing-function: ease-in-out;	
			animation-timing-function: ease-in-out;
	font-family: 'OpenSans-Regular';
}

.popup-info p {
	line-height: 30px;
}

.popup-info > svg {
	position: absolute;
	left: 40px;
	width: 26px;
	height: 26px;   
}

.popup-error {
	background: #e74c3c;
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel .owl-dots {
	-webkit-transform: translateY(37px);
			transform: translateY(37px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
}

.owl-carousel .owl-dot {
	margin-right: 13px;
    width: 17px;
	height: 17px;
	background-color: #231d10;
}

.owl-carousel .owl-dot:last-child {
	margin: 0;
}

.owl-carousel .owl-dot.active {
	background-color: #2fd071;
}

.owl-carousel .owl-dot:hover {
	background-color: #ffa800;
}


.owl-carousel {
	margin: 0 auto;
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-wrapper {
	margin: 0 auto;
}


  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }



  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }

  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }