*{
	/* Universal reset: */
	margin:0;
	padding:0;
}

header,footer,
article,section,
hgroup,nav,
figure{
	display:block;
}

html, body{
	background: #F5F5F5;
	color: #203D1C;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	min-width: 320px;
	line-height: 1.3;
	box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
}

a {
	color:#333;
	text-decoration:none;
	outline:none;
	transition: .2s;
}

a:hover, a:active {
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	outline: none;
	list-style: none;
}

h1 {
	margin: 130px 0 20px 0;
	font-family: 'Lexend Exa', sans-serif;
	line-height: 1;
	font-size: 132px;
	color: #fff;
	font-weight: 400;
	left: -15px;
	position: relative;
}


h2 {
	font-family: "Montserrat",sans-serif;
	margin: 10px 0 165px 0;
	font-size: 16px;
	color: #fff;
	line-height: 1.3;
	font-weight: 300;
}

section {
	position: relative;
}

img {
	max-width: 100%;
}

p {
	margin: 10px 0;
}

input.range__range {
	padding: 10px 0;
	-webkit-appearance: none;
	height: 5px;
	border-radius: 5px;
	background: #d7dcdf;
	outline: none;
 	padding: 0;
  	margin: 0;
}

input.range__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	        appearance: none;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #19a62c;
	cursor: pointer;
	transition: background .15s ease-in-out;
}

input.range__range::-webkit-slider-thumb:hover {
  	background: #f8db52;
}

input.range__range:active::-webkit-slider-thumb {
  	background: #f8db52;
}

input.range__range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #f8db52;
	cursor: pointer;
	transition: background .15s ease-in-out;
}

input.range__range::-moz-range-thumb:hover {
  	background: #f8db52;
}

input.range__range:active::-moz-range-thumb {
  	background: #f8db52;
}

input.range__range:focus::-webkit-slider-thumb {
  	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f8db52;
}

main {
	margin: 0 auto;
	background-image: url("/img/bg.png");
	background-size: cover;
	background-position: center;
	padding-bottom: 120px;
	position: relative;
}

main:after {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: -10px;
	left: 0;
	background: transparent;
	background-image: linear-gradient(to top, #F5F5F5 10%, transparent 80%);
	z-index: 10;
}

.header {
	padding: 0 60px;
	background: inherit;
	backdrop-filter: blur(10px);
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__item {
	max-width: 300px;
}

.logo {
	max-width: 170px;
}

.feedback {
	display: flex;
	align-items: center;
}

.feedback__item {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
	color: #fff;
}

.feedback__item_phone {
	margin: 0;
}

.feedback__item_phone a {
	font-weight: 500;
	color: #fff;
}

.about__link {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
}

.modal {
	display: flex;
	width: 90%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #CECAC4;
	padding: 30px;
	z-index: 999999;
}

.modal__item {
	max-width: 50%;
	margin-right: 30px;
}


h3 {
	color: rgba(32, 61, 28, 0.6);
	font-size: 20px;
	margin-right: 50px;
}

h3 .title {
	font-size: 20px;
}

h3 .description {
	font-weight: 500;
	font-size: 16px;
}

.modal__item:last-child {
	margin-right: 0;
}

.modal__child {
	display: flex;
}

.close {
	font-size: 36px;
	font-weight: 400;
	color: rgba(32, 61, 28, 0.4);
	position: absolute;
	top: 40px;
	right: 40px;
	line-height: 0;
}

.btn {
	margin: 40px 0;
	padding: 20px 35px;
	background: #203D1C;
	color: #fff;
	font-size: 20px;
	font-weight: 200;
}

.modal__box_text {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.modal__child {
	color: rgba(32, 61, 28, 0.6);
	font-weight: 500;
}

.modal__child_text {
	max-width: 200px;
	margin: 10px 10px 10px 0;
	border: 1px solid;
	padding: 10px 20px;
}

.none {
	display: none;
}

.close {
	cursor: pointer;
}

.main {
	padding: 0 60px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.main__item_title {
	max-width: 550px;
}

.main__text_feedback {
	max-width: 550px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main__item_info {
	display: flex;
	justify-content: space-between;
	color: #fff;
}

.main__text_feedback .btn {
	margin: 0;
}

.main__text:first-child {
	padding-right: 40px;
}

.main__text_p {
	padding: 0 40px;
}

.main__text:last-child {
	padding-left: 40px;
}

.main__text:last-child:after {
	content: none;
}

.main__text {
	text-align: center;
	position: relative;
}

.main__text:after {
	content: '';
	position: absolute;
	background: #fff;
	width: 1px;
	right: 0;
	top: 15px;
	bottom: 15px;
}

.main__text .title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 64px;
	font-weight: 400;
}

.svg {
	margin-right: 40px;
}

.slider {
	display: flex;
	padding: 30px 60px 60px 60px;
	overflow: hidden;
	background: #F5F5F5;
	position: relative;
	z-index: 12555;
}

.slider__item:first-child {
	margin-right: 30px;
}

.slider__item {
	max-width: 50%;
	overflow: hidden;
}

.slider__text_title {
	font-weight: 600;
	font-size: 40px;
	color: #203D1C;
	text-transform: uppercase;
}

.nav {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	width: 150px;
	margin-bottom: 20px;
}

.nav__arrow_left {
	margin-right: 20px;
}

.nav__arrow {
	max-width: 50px;
}

.nav__arrow, .swiper-slide {
	cursor: pointer;
}

.slider__item:first-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.slider__text_description {
	max-width: 300px;
}

@media only screen and (max-width : 1660px) {

}

@media only screen and (max-width : 1520px) {

}

@media only screen and (max-width : 1430px) {

}

@media only screen and (max-width : 1280px) {
	h1 {
		font-size: 102px;
	}

	.main__text .title {
		font-size: 40px;
	}
}

@media only screen and (max-width : 1150px) {
	.modal {
		flex-direction: column;
		width: 60%;
	}

	.modal__item {
		max-width: none;
		margin: 0 0 30px 0;
	}
}

@media only screen and (max-width : 1040px) {
	.main {
		flex-direction: column;
		align-items: flex-start;
	}

	.main__item_info {
		margin-top: 30px;
	}

	.slider {
		flex-direction: column;
	}

	.slider__item {
		max-width: 80%;
	}

	.slider__text_description {
		max-width: 550px;
	}
}

@media only screen and (max-width : 930px) {
	.modal {
		width: 90%;
	}
}

@media only screen and (max-width : 768px) {
	.header, .main, .slider {
		padding: 0 30px;
	}

	.modal *,
	.header__item,
	.header__item a,
	h2,
	.main__text .description,
	.slider__text_description,
	.btn {
		font-size: 16px;
	}

	.feedback__item_icon {
		display: none;
	}

	.slider__item {
		max-width: none;
	}

	.header__item {
		max-width: 200px;
	}

	.logo {
		max-width: 120px;
	}

	h1 {
		font-size: 50px;
		left: 0;
		margin: 50px 0 15px 0;
	}

	h2 {
		margin: 10px 0 60px 0;
	}

	.btn {
		margin: 20px 0;
		padding: 15px 25px;
	}

	.svg {
		margin: 0 0 0 20px;
	}

	.svg svg {
		width: 40px;
		height: 40px;
	}

	.main__text .title, .slider__text_title {
		font-size: 30px;
	}

	.slider__text_description {
		max-width: none;
	}

	.main__text_feedback {
		justify-content: flex-start;
	}

	.main {
		padding-bottom: 0;
	}

	.slider__item:last-child {
		display: none;
	}

	.close {
		font-size: 36px!important;
	}

	.main__text {
		padding: 0 10px!important;
	}
}

@media only screen and (max-width : 640px) {

	.modal {
		width: 80%;
	}

	.modal__child_text {
		max-width: 100%;
		width: 100%;
	}
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 480px) {
	.header {
		flex-direction: column;
		height: auto;
	}

	.header__item {
		margin: 10px 0;
	}

	.svg {
		display: none;
	}

	.main__text .title {
		font-size: 24px;
	}

	.main__item_info {
		flex-direction: column;
	}

	.main__text:after {
		content: none;
	}

	.main__item_info {
		width: 100%;
	}

	.main__text {
		text-align: left;
	}
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}