@font-face {
	font-family: Muller;
	font-weight: 200;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/MullerUltraLight/MullerUltraLight.woff"), url("../fonts/MullerUltraLight/MullerUltraLight.woff2"), url("../fonts/MullerUltraLight/MullerUltraLight.ttf");
}

@font-face {
	font-family: Muller;
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/MullerLight/MullerLight.woff"), url("../fonts/MullerLight/MullerLight.woff2"), url("../fonts/MullerLight/MullerLight.ttf");
}

@font-face {
	font-family: Muller;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/MullerRegular/MullerRegular.woff"), url("../fonts/MullerRegular/MullerRegular.woff2"), url("../fonts/MullerRegular/MullerRegular.ttf");
}

@font-face {
	font-family: SnellRoundhand;
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/SnellRoundhandRegular/SnellRoundhandRegular.woff"), url("../fonts/SnellRoundhandRegular/SnellRoundhandRegular.woff2"), url("../fonts/SnellRoundhandRegular/SnellRoundhandRegular.ttf");
}

*::placeholder {
	opacity: 1;
}

* {
	box-sizing: border-box;
}

*::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html header, html main, html footer {
	transition: filter 0.3s;
}

body {
	position: relative;
	min-width: 360px;
	color: #000;
	font-family: Muller, sans-serif;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 300;
	margin: 0;
}

@media (max-width: 1200px) {
	.body-overflow {
		overflow: hidden;
	}
}

p {
	margin: 0;
}

a {
	color: inherit;
	font: inherit;
	outline: none;
	text-decoration: none;
}

img {
	transform: translateZ(0);
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: bottom;
}

ul li, ol li, menu li {
	list-style: none;
}

ul, ol, menu {
	display: block;
	padding: 0;
	margin: 0;
}

button {
	border: none;
	background: none;
	font: inherit;
	cursor: pointer;
	outline: none;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	margin: 0;
}

input {
	display: block;
	width: 100%;
	font: inherit;
	outline: none;
}

textarea {
	display: block;
	width: 100%;
	font: inherit;
	outline: none;
	resize: none;
}

.container {
	position: relative;
	max-width: 1440px;
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
}

@media (max-width: 1300px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 479px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

[data-tab] {
	display: none;
	transition: opacity 0.5s;
}

[data-accordion-text] {
	overflow: hidden;
	height: 0;
	padding-top: 0;
	transition: all 0.3s;
	box-sizing: content-box;
}

[data-accordion-text].active {
	padding-top: 20px;
}

.totop {
	position: fixed;
	z-index: 5;
	right: 100px;
	bottom: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #304A0A;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	cursor: pointer;
	padding-left: 2px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s;
}

@media (max-width: 850px) {
	.totop {
		right: 20px;
	}
}

.totop svg {
	transform: rotate(-90deg);
	width: 20px;
	height: 20px;
	fill: #fff;
}

.totop.active {
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}

@media (hover) {
	.totop:hover {
		background-color: #192605;
	}
}

.anchor-wrap {
	position: relative;
}

.anchor {
	position: absolute;
	top: -62px;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.anchor {
		top: -150px;
	}
}

@media (max-width: 750px) {
	.anchor {
		top: -50px;
	}
}

.text {
	font-size: 16px;
	line-height: 1.4;
}

.text > *:first-child {
	margin-top: 0;
}

.text > *:last-child {
	margin-bottom: 0;
}

.text h2, .text h3, .text h4, .text h5 {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	margin-top: 32px;
	margin-bottom: 16px;
}

@media (max-width: 750px) {
	.text h2, .text h3, .text h4, .text h5 {
		font-size: 26px;
		margin-top: 24px;
	}
}

.text p {
	margin: 16px 0;
}

.text ul, .text ol {
	margin-top: 16px;
	margin-bottom: 32px;
}

.text ul li, .text ol li {
	margin: 5px 0;
}

.text ul li {
	position: relative;
	padding-left: 14px;
}

.text ul li::after {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: red;
}

.text ol {
	counter-reset: li;
}

.text ol li {
	counter-increment: li;
}

.text ol li::before {
	content: counter(li, decimal-leading-zero) ".";
	color: red;
	margin-right: 5px;
}

.text__imgs1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin: 24px -4px;
}

.text__imgs1-col {
	width: 50%;
	padding: 0 4px;
	margin-top: 8px;
}

.text__imgs1-col--w100 {
	width: 100%;
}

.text__imgs1-col--w100 .text__imgs1-img1 {
	padding-top: 43%;
}

.text__imgs1-img1 {
	position: relative;
	padding-top: 67%;
}

.text__imgs1-img1 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.text__imgs1-descr {
	display: block;
	color: #838383;
	font-size: 14px;
	margin-top: 8px;
}

.text__img1 {
	max-width: 470px;
	width: 100%;
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

@media (max-width: 750px) {
	.text__img1 {
		max-width: none;
		float: none;
		margin-left: 0;
	}
}

.text__img1 img {
	border-radius: 16px;
}

.text__img2 {
	max-width: 470px;
	width: 100%;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media (max-width: 750px) {
	.text__img2 {
		max-width: none;
		float: none;
		margin-right: 0;
	}
}

.text__img2 img {
	border-radius: 16px;
}

.text__blockquote1 {
	position: relative;
	border-radius: 12px;
	background-color: #f7f5f4;
	padding: 24px;
	padding-left: 45px;
	margin: 24px 0;
}

@media (max-width: 750px) {
	.text__blockquote1 {
		padding: 20px 15px;
		padding-left: 45px;
	}
}

.text__blockquote1::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 16px;
	width: 20px;
	height: 15px;
	background: url("../img/blockquote-icon.svg") center/contain no-repeat;
}

@media (max-width: 750px) {
	.text__blockquote1::after {
		top: 15px;
	}
}

.text__blockquote2 {
	border-left: 4px solid #603620;
	padding-left: 32px;
	margin: 24px 0;
}

@media (max-width: 750px) {
	.text__blockquote2 {
		padding-left: 20px;
		margin: 15px 0;
	}
}

.text blockquote {
	border-radius: 12px;
	background-color: #f7f5f4;
	padding: 24px;
	margin: 24px 0;
}

@media (max-width: 750px) {
	.text blockquote {
		padding: 20px 15px;
		margin: 15px 0;
	}
}

.btn1 {
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: inline-block;
	border-radius: 14px;
	background: url("../img/btn1-bg.webp") center repeat;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 25px;
}

@media (hover) {
	.btn1:hover::after {
		opacity: 1;
	}
}

@media (max-width: 479px) {
	.btn1 {
		padding: 12px 15px;
	}
}

.btn1::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: url("../img/btn1-bg-hover.webp") center repeat;
	opacity: 0;
	transition: opacity 0.3s;
}

.btn2 {
	display: inline-block;
	border-radius: 25px;
	background-color: #fff;
	color: #000;
	font-size: 21px;
	font-weight: 400;
	padding: 25.5px 60px;
	transition: transform 0.3s;
}

@media (max-width: 550px) {
	.btn2 {
		padding-top: 21px;
		padding-bottom: 21px;
	}
}

@media (hover) {
	.btn2:hover {
		transform: translateY(2px);
	}
}

.btn3 {
	display: inline-block;
	border: 1px solid #000;
	border-radius: 25px;
	font-size: 21px;
	font-weight: 400;
	padding: 25px 59px;
	transition: transform 0.3s;
}

@media (hover) {
	.btn3:hover {
		transform: translateY(2px);
	}
}

.btn4 {
	display: inline-block;
	border: 1px solid #304a0a;
	border-radius: 25px;
	background-color: #304a0a;
	color: #fff;
	font-size: 21px;
	padding: 24.8px 39px;
	pointer-events: initial;
	transition: all 0.3s;
}

.btn4.disabled {
	border: 1px solid rgba(0, 0, 0, 0.2) !important;
	background-color: transparent !important;
	color: rgba(0, 0, 0, 0.2) !important;
	pointer-events: none !important;
}

@media (hover) {
	.btn4:hover {
		background-color: #192605;
	}
}

body .cookies07111 {
	font-family: Muller, sans-serif;
}

body .cookies07111__text a {
	color: #304a0a;
}

body .cookies07111__btn {
	border: 1px solid #000;
	background: none;
	color: #000;
	font-family: Muller, sans-serif;
	text-transform: none;
	transition: transform 0.3s;
}

@media (hover) {
	body .cookies07111__btn:hover {
		transform: translateY(1px);
		background: none;
	}
}