@charset 'UTF-8';


html {
	min-height: 100%;
	font-size: 10px;
	scroll-behavior: smooth;
}

:root {
	--green: #0B5652;
	--text: #333333;
	--gold: #CFA16D;

	--bg: #F5EFE9;

	--text: "Inter", sans-serif;
	--bold: 500;

	--transition: 0.5s all ease;

	--xl: 7rem;
	--l: 5rem;
	--m: 3rem;
	--s: 2rem;

	--animation-delay: 0.6s;
	--animation-duration: 0.4s;

	--animation-distance: 25%;
	--animation-distance-big: 50%;
}

body {
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: var(--text);
	background: var(--bg);
	color: var(--text);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.25;
	position: relative;
	padding: 0;
	margin: 0;
	font-weight: var(--bold);
}

h1, .h1 {
	font-size: 4.2rem;
	text-transform: uppercase;
	color: var(--green);
}

h2, .h2 {
	font-size: 3.2rem;
	color: var(--green);
}

h3 {
	font-size: 2rem;
	text-transform: uppercase;
}

.lead {
	font-size: 2.0rem;
}

.muted {
	color : var(--muted);
}

img {
	max-width: 100%;
}

a[href^="tel:"],
a[href^="mailto:"],
.logo a {
	white-space: nowrap;
	text-decoration: none;
	color: currentColor;
	border-bottom: none;
}

.button {
	display: block;
	padding: 0;
	border: none;
	outline: 0;
	text-decoration: none;
	background-color: var(--green);
	cursor: pointer;
	line-height: 1;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
	transition: var(--transition);
	white-space: nowrap;
	padding: 30px 0;
}

.button:after {
	content : '';
	transition: var(--transition);
	position: absolute;
	width: 20px;
	height: 16px;
	right: 30px;
	background-repeat: no-repeat;
	background-position: center right;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+YXJyb3dfZm9yd2FyZF9ibGFja18yNGRwPC90aXRsZT4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSLQk9C70LDQstC90LDRjyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEzNzQuMDAwMDAwLCAtMTczLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODUuMDAwMDAwLCAxMDkuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iYXJyb3dfZm9yd2FyZF9ibGFja18yNGRwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjg5LjAwMDAwMCwgNjQuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIHBvaW50cz0iMCAwIDE0IDAgMTQgMTQgMCAxNCI+PC9wb2x5Z29uPgogICAgICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJQYXRoIiBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHBvaW50cz0iNyAyLjMzMzMzMzMzIDYuMTc3NSAzLjE1NTgzMzMzIDkuNDMyNSA2LjQxNjY2NjY3IDIuMzMzMzMzMzMgNi40MTY2NjY2NyAyLjMzMzMzMzMzIDcuNTgzMzMzMzMgOS40MzI1IDcuNTgzMzMzMzMgNi4xNzc1IDEwLjg0NDE2NjcgNyAxMS42NjY2NjY3IDExLjY2NjY2NjcgNyI+PC9wb2x5Z29uPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
}

.button:hover {
	background-color: var(--gold);
	color: #fff;
}

.button:hover:after {
	right: 15px;
}

section {
	margin-top: var(--big-mr);
}

.subsection {
	margin-top: var(--sm-mr);
}

a {
	color: currentColor;
	transition: var(--transition);
	text-decoration: none;
}

a:hover {
	color: var(--green);
}

a.boss {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 100;
}

ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

li {
	position: relative;
	padding-left: 3.5rem;
	margin-top: 1rem;
}

li:before {
	content: "";
	width: 7px;
	height: 7px;
	background-color: var(--green);
	position: absolute;
	left: 0;
	top: 8px;
}

.container {
	max-width: 1360px;
	padding: 0 1.5rem;
	margin: 0 auto;
	width: 100%;
}

[class*=__wrap] {
	display: flex;
	margin: 0 -1.5rem;
	/* justify-content: space-between; */
	justify-content: flex-start;
	/* flex-wrap: wrap; */
}


[class*=col-] {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	flex: 0 0 auto;
}

.col-0 {
	flex: 1 0 0%;
}

.col-1 {
	width: 25%;
}

.offset-1 {
	margin-left: 25%;
}

.col-2 {
	width: 50%;
}

.offset-2 {
	margin-left: 50%;
}

.col-3 {
	width: 75%;
}

.offset-3 {
	margin-left: 75%;
}

.col-4 {
	width: 100%;
}

hr {
	display: block;
	height: 2px;
	background-color: var(--green);
	border: 0;
}

section {
	margin-top: var(--xl);
}

.parallax__layer {
	position: absolute;
	z-index: -1;
}

.parallax_1 {
	top: 100px;
	margin-left: -300px;
}

.parallax_2 {
	top: 750px;
	right: 0;
}

.parallax_3 {
	right: 0;
	top: 1400px;
}

.parallax_4 {
	top: 2500px;
	left: 0;
}

.parallax_5 {
	bottom: 300px;
	left: 0;
}

/* START */

.header__box {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	align-items: center;
}

.company__nav {
	margin-bottom: 10px;
}

.company__nav a {
	color: var(--gold);
	display: inline-block;
	margin-right: 30px;
}

.company__nav a:hover {
	color: var(--green);
}

.product__nav {
	border-top: 1px solid rgba(51,51,51, 0.2);
	padding-top: 10px;
}

.product__nav a {
	display: inline-block;
}

.product__nav a:not(:last-child) {
	margin-right: 30px;
}


.header__contacts .messengers{
	text-align: right;
	margin-top: 5px;
}

.header__contacts .messengers img {
	margin-left: 5px;
}

/* hero */

.hero {
	padding-bottom: var(--l);
	border-bottom: 2px solid var(--green);
}

.hero-text__wrap {
	align-items: flex-start;
	margin-top: var(--xl);
	padding-bottom: var(--m);
}

.hero-text__wrap .lead {
	padding-right: 40px;
}

.hero__slider {
	margin-top: var(--l);
}

.hero__slider .swiper-slide img {
	width: 100%;
}

ul.hero__list {
	display: flex;
	justify-content: space-between;
}

ul.hero__list li {
	flex: 0 1 25%;
}

.hero__slider-text__wrap {
	margin-top: var(--m);
}

.hero__slider-text .swiper-slide {
	opacity: 0;
	transition: 1s all ease;
}

.hero__slider-text .swiper-slide.swiper-slide-active {
	opacity: 1;
}

.type-title {
	text-transform: uppercase;
	margin-top: 10px;
}

.slider-nav {
	display: flex;
	justify-content: flex-end;
}

.slider-nav-item svg{
	width: 83px;
	height: 18px;
	fill: var(--text);
}

.slider-nav-item {
	transition: var(--transition);
	cursor: pointer;
}

.slider-nav-item:hover svg {
	fill: var(--gold);
}

.slider-prev {
	margin-right: 30px;
}

.slider-prev:hover {
	transform: translateX(-10px);
}

.slider-next:hover {
	transform: translateX(10px);
}

.slider__count {
	text-align: right;
	margin-top: 20px;
}

/* advantages */

section > h2 {
	width: 25%;
}

.advantages__wrap {
	margin-top: var(--xl);
}

.advantages__wrap h3 {
	margin-bottom: var(--l);
}

.advantages__wrap hr {
	margin-top: var(--m);
}

.advantages-sub__wrap {
	margin-top: var(--m);
}
/* PLAN */

.plan__wrap {
	margin-top: var(--l);
}

.plan__wrap .col-1 {	
	padding-bottom: 40px;
	position: relative;
}

.plan__wrap .col-1:not(:last-child) {
	/* border-bottom: 1px solid var(--gold); */
}

.plan__wrap .col-1:not(:last-child):before {
	content : '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--gold);
	bottom: 0px;
}

.plan__wrap .col-1:after {
	content : '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--green);
	display: block;
	bottom: -4px;
}

.plan-text__wrap {
	margin-top: var(--l);
}

.plan-text__wrap p {
	margin-top: var(--l);
}

/* PROMO */

.promo {
	padding: 40px;
	background:  url('/_img/smeta.png') right top no-repeat, url(/_img/wood__bg.svg) no-repeat center center fixed;
	height: 200px;
	background-color: #D6CDC1;
}

.promo-cta .button {
	margin-top: 40px;
}

/* REVIEWS */

.reviews__bg {
	background-color: var(--green);
}

.review-text {
	color: #fff;
}

.review-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
}

.slider__nav-box {
	padding: 0 40px 40px 0;
}

.review__text-slider {
	width: 100%;
}

.review__text-slider .swiper-slide h3 {
	margin-top: var(--l);
	margin-bottom: var(--xl);
}

.review-text .slider-nav-item svg{
	fill: var(--gold);
}

.review-text .slider-nav-item:hover svg {
	fill: #fff;
}

/* PROJECTS */

.filter-inner {
	background-color: var(--green);
	margin-top: var(--m);
	padding: 30px;
}

.items__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;

}
.section-item {
	color: #fff;
	cursor: pointer;
	margin-bottom: 20px;
	transition: var(--transition);
}

.section-item:hover,
.section-item.active {
	color: var(--gold);
}

.project__item {
	width: 33%;
	flex: 0 0 auto;
	margin-top: var(--m);
	position: relative;
}

.project__title {
	display: flex;
	align-items: center;
}

.project__title:after {
	content : '';
	width: 54px;
	height: 11px;
	background: url('/_img/arrow__right.svg') no-repeat;
	background-size: contain;
	flex: 1 0 auto;
	margin-left: 40px;
	transition: var(--transition);
}

.project__item:hover .project__title:after {
	transform: translateX(20px)
}

.photos__wrap {
	/* align-items: stretch; */
}

.photo-detail {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
	background-color: #666;
	background: #666 center top/ contain no-repeat;
}

.thumbs {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 0;
}

.thumbs img {
	width: 100px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.thumbs img.active {
	border: 4px solid var(--gold);
}

/* INNEER */

.contacts-item .messengers img {
	width: 40px;
	margin-right: 20px;
}

.hero.inner {
	padding-bottom: 0;
	border-bottom: 0;
}

.inner .parallax_1 {
	opacity: .3;
}
.inner .parallax_1,
.inner .parallax_2,
.inner .parallax_3,
.inner .parallax_4,
.inner .parallax_5 {
	display: none;
}

#contacts-map {
	height: 500px;
}

.map__box {
	background-color: var(--green);
	margin-top: var(--l);
}

.contacts__info {
	padding: var(--m) var(--s);
	color: #fff!important;
}

.contacts__info h2 {
	color: #fff;
}

.contacts-photo__wrap {
	margin-top: var(--m);
}

.offer-slider .swiper-slide .container {
	position: relative;
	z-index: 1;
}

.offer-tabs__wrap {
	padding: 30px 0;
}

.offer__tab.active {
	font-size: 2rem;
	line-height: 2.4rem;
	text-transform: uppercase;
	opacity: 1;
}

.offer__tab {
	counter-increment: offers;
	position: relative;
	cursor: pointer;
	opacity: 0.5;
}

.offer__tab:before {
	content : '0' counter(offers);
	margin-bottom: 10px;
	display: block;
	color: var(--gold);
}

.offer__tab.active:after {
	content: '';
	background: var(--arrow);
	width: 36px;
	height: 36px;
	position: absolute;
	margin-left: 10px;
	bottom: -5px;
	transform: rotate(225deg);
	transition: var(--transition);
}

.offer-content-table {
	border-top: 2px solid var(--green);
}

.offer__content {
	display: none;
}

.offer__content.active {
	display: block;
}

.offer__content table td {
	padding : 10px 40px 5px 0;
	border-bottom: 1px solid var(--gold);
	min-width: 300px;
}

.offer__content table td:nth-of-type(odd) {
	font-weight: bold;
}

/* футер */

footer {
	margin-top: var(--xl);
	padding-bottom: var(--m);
}

.footer__wrap {
	padding-top: var(--l);
	border-top: 2px solid var(--green);
}

.footer__wrap a.h2 {
	color: var(--green);
}

.chudov {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chudov svg {
	fill: var(--green);
	transition: var(--transition);
	margin-left: 20px;
}

.chudov:hover svg {
	fill: var(--gold);
}

/* ФОРМА */

/* Попапы */

.checkbox {
	position: relative;
	padding-left: 40px;
	cursor: pointer;
	font-size: 1.6rem;
	color: #000;
	margin-top: 2rem;
}

.checkbox:before {
	content: "";
	width: 24px;
	height: 24px;
	border: 1px solid rgba(0, 0, 0, 0.6);
	background: transparent;
	display: block;
	position: absolute;
	left: 0;
	text-align: center;
}

.checkbox.active:before {
	content: "\2713";
}

html.overflow {
	overflow: hidden;
}

html.overflow header,
html.overflow main,
html.overflow footer,
body.spec.preload header,
body.spec.preload main {
	filter: blur(10px);
}

.modal {
	position: fixed;
	/* фиксированное положение */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(247, 123, 27, 0.1);
	/* цвет фона */
	z-index: 1050;
	opacity: 0;
	/* по умолчанию модальное окно прозрачно */
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	/* анимация перехода */
	pointer-events: none;
	/* элемент невидим для событий мыши */
}

/* при отображении модального окно */
.modal.open {
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
}

/* ширина модального окна и его отступы от экрана */
.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px;
	transform: translateY(-100%);
	opacity: 0;
	transition: all 0.3s ease-in;
	display: none;
}

.modal.open .modal-dialog {
	opacity: 1;
	transform: translateY(100px);
}

/* свойства для кнопки "Закрыть" */
.modal-form__close {
	font-family: sans-serif;
	font-size: 44px;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	/* text-shadow: 0 1px 0 #fff; */
	opacity: 0.5;
	text-decoration: none;
	position: absolute;
	right: -30px;
	top: 0px;
}

@media screen and (max-width: 480px) {
	.modal-form__close {
		color: var(--main);
		top: 20px;
		right: 20px;
	}

	.modal__content h4 {
		width: calc(100% - 60px);
	}
}

/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */

.modal-form__close:focus,
.modal-form__close:hover {
	color: #000;
}

.modal__content {
	padding: 60px;
	background: #fff;
	margin: 0 auto;
	position: relative;
	max-width: 600px;
}

.form__success {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-direction: column;
	text-align: center;
	padding: 80px;
	opacity: 0;
	transition: var(--transition);
	transform: scale(0.5);
}

.form__success.active {
	opacity: 1;
	transform: scale(1);
	z-index:1000
}

input,
textarea {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	padding: 1rem;
	width: 100%;
	background: transparent;
	margin-top: 4rem;
	color: #000;
}

textarea {
	border: 1px solid rgba(0, 0, 0, 0.6);
}

form .button {
	margin-top: 5rem;
}

form *::placeholder {
	color: #000;
}

.input__error {
	color: red;
	font-size: 12px;
}

.close-btn {
	display: none;
}

.burger {
	display: none;
}

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

	:root {
		--xl: 6rem;
		--l: 4rem;
		--m: 3rem;
		--s: 2rem;
	}

	html {
		font-size: 8px;
		overflow-x: hidden;
	}
	body {
		min-width: 320px;
		overflow-x: hidden;
	}
	section {
		margin-top: 40px;
	}

	header {
		position: relative;
		padding : 0;
	}

	nav {
		display: none;
	}

	.container {
		padding: 1px 15px;
	}

	.content h1 {
		font-size: 4.2rem;
		max-width: none;
		line-height: 4.8rem;
	}

	[class*="__wrap"] {
		display: block;
		margin: 0;
	}
	
	[class*="col-"] {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 20px;
	}

	[class*="offset-"] {
		margin-left: 0;
	}

	.header__box {
		justify-content: flex-start;
	}

	.header__contacts {
		margin-left: auto;
	}

	.burger {
		margin-left: 30px;
		display: block;
		display: flex;
		background-color: var(--green);
		padding: 10px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.burger:hover {
		background-color: var(--gold);
	}

	nav {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.5);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		z-index: 999;
		overflow-y: auto;
		visibility: hidden;
		transition: 0.5s all ease;
		opacity: 0;
		transform: translateX(100%); 
		display: flex;
		padding: 70px 10px 20px 10px;
		font-size: 20px;
		justify-content: space-between;
	}

	nav.active {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}

	.product__nav {
		border-top: none;
	}

	nav a {
		margin-bottom: 20px;

	}

	.company__nav a, .product__nav a {
		margin-right: 0!important;
	}

	.company__nav, .product__nav {
		display: flex;
		flex-direction: column;
		padding: 10px;
	}

	.close-btn {
		display: block;
		position: absolute;
		right: 20px;
		top: 20px;
	}
}

.partners__wrap {
	flex-wrap: wrap;
}

.partners__wrap .col-1 {
	margin-bottom: var(--s);
}

.otz__item {
	margin-bottom: var(--m);
	border-radius: 30px;
	padding: 40px;
	background-color: #fff;
}

section.content {
	margin-top: var(--s);
}