/*
Theme Name: mytheme
Version: 1.0
*/

:root {
	--white: #FFF;
	--super-light-gray: #F6F6FA;
	--light-gray: #ccc;
	--simple-text: #555;
	--header-text: #29373F;
	--green-1: #47AB7A;
	--green-2: #2D7A54;
	--green-3: #C1F3DB;
	--green-4: #DBF4E8;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	color: var(--simple-text);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 120%;
	color: var(--header-text);
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
	color: var(--green-1);
}

h1 {
	font-size: 44px;
	font-weight: 700;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
	line-height: 130%;
}

.title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
.title span {
	font-size: 20px;
	font-weight: 700;
	line-height: 100%;
	color: var(--green-1);
	text-transform: uppercase;
}
.title h1, .title h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 120%;
	color: var(--header-text);
}

@media screen and (max-width: 1600px) {
	h1 {
		font-size: 36px;
	}
	h2, .title h2, .title h1 {
		font-size: 32px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 20px;
	}
	.title {
		gap: 10px;
	}
	.title span {
		font-size: 16px;
	}
}
@media screen and (max-width: 1023px) {
	h1 {
		font-size: 32px;
	}
	h2, .title h2, .title h1 {
		font-size: 28px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 18px;
	}
}
@media screen and (max-width: 770px) {
	h1 {
		font-size: 30px;
	}
	h2, .title h2, .title h1 {
		font-size: 24px;
	}
	h2:not(.blockContacts__container h2) {
		text-align: center;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 16px;
	}
	h5 {
		font-size: 16px;
	}
}
@media screen and (max-width: 400px) {
	h1 {
		font-size: 26px;
	}
}
strong {
	font-size: inherit;
	font-weight: 700;
	line-height: inherit;
	color: inherit;
}

a {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 600;
	color: var(--header-text);
}

img, video, iframe {
	display: block;
}

svg path {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

button {
	outline: none;
	border: none;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
}
body.lock {
	overflow-y: hidden;
}

main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

section {
	position: relative;
	overflow: hidden;
}
section.gray {
	background: var(--super-light-gray);
}

.wrapper {
	width: 100%;
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

._container {
	position: relative;
	z-index: 3;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 100px; /* 15 - 100*/
	padding-right: 100px; /* 15 - 100 */
	width: 100%;
	max-width: 1620px; /* 1450 */
}

.form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.form__field {
	position: relative;
}
.form__field input, .form__field textarea {
	position: relative;
	padding: 14px 14px 14px 50px;
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(255, 255, 255, 0.85);
	outline: none;
	border: 1px solid #eee;
	resize: none;
	line-height: 120%;
	color: var(--header-text);
}
.form__field input:focus, .form__field textarea:focus {
	border: 1px solid var(--green-1);
}
.form__field input::-webkit-input-placeholder, .form__field textarea::-webkit-input-placeholder {
	color: var(--simple-text);
}
.form__field input::-moz-placeholder, .form__field textarea::-moz-placeholder {
	color: var(--simple-text);
}
.form__field input:-ms-input-placeholder, .form__field textarea:-ms-input-placeholder {
	color: var(--simple-text);
}
.form__field input::-ms-input-placeholder, .form__field textarea::-ms-input-placeholder {
	color: var(--simple-text);
}
.form__field input::placeholder, .form__field textarea::placeholder {
	color: var(--simple-text);
}
.form__field::before {
	position: absolute;
	left: 20px;
	z-index: 3;
}
.form__field input {
	border-radius: 50px;
}
.form__field textarea {
	min-height: 80px;
	border-radius: 15px;
}
.form__field.fname::before {
	content: url("assets/icons/person.svg");
	top: 12px;
}
.form__field.fphone::before {
	content: url("assets/icons/phone.svg");
	top: 15px;
}
.form__field.femail::before {
	content: url("assets/icons/email.svg");
	top: 16px;
}
.form__field.fcomment::before {
	content: url("assets/icons/comment.svg");
	top: 15px;
}
.form__field.fexperience::before {
	content: url("assets/icons/experience.svg");
	top: 16px;
}
.form__field.fwhen::before {
	content: url("assets/icons/date.svg");
	top: 15px;
}
.form__submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
.form__submit .btn {
	width: 100%;
}
.form__agree {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.form__agree p, .form__agree p a {
	font-size: 14px;
	line-height: 120%;
	color: var(--header-text);
}
.form__agree p a {
	font-weight: 600;
	border-bottom: 1px solid var(--header-text);
}
.form__check {
	position: relative;
	margin-top: 3px;
	min-width: 18px;
	max-width: 18px;
	height: 18px;
	display: block;
	border-radius: 4px;
	border: 1px solid var(--green-1);
	overflow: hidden;
}
.form__check input, .form__check label {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
}
.form__check label {
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--green-1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.form__check input:checked ~ label {
	opacity: 1;
}
.form__check input:checked ~ label svg {
	opacity: 1;
}

.wpcf7-response-output {
	display: none !important;
}
.wpcf7-not-valid-tip {
	position: absolute;
	top: 102%;
	right: 0;
	font-size: 12px;
	text-align: right;
	color: #ff6464;
}
input.wpcf7-not-valid {
	border: 1px solid red;
}

.soc {
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 40px;
	background: var(--green-1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.soc svg path {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.link {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 16px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0.02em;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.link.dark {
	color: var(--header-text);
}
.link.light {
	color: var(--white);
}
.link.gray {
	color: var(--light-gray);
}
.link.big {
	font-size: 24px;
}

.link-hidden {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
	font-size: 1px;
}

.btn {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn span {
	font-weight: 600;
	line-height: 120%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn.simple-btn {
	padding: 0 30px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn.simple-btn.light {
	border: 1px solid var(--white);
	background: var(--white);
}
.btn.simple-btn.light span {
	color: var(--header-text);
	text-align: center;
}
.btn.simple-btn.green {
	border: 1px solid var(--green-1);
	background: var(--green-1);
}
.btn.simple-btn.green span {
	color: var(--white);
	text-align: center;
}
.btn.btn-with-circle {
	padding: 5px 5px 5px 25px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}
.btn.btn-with-circle .btn-circle {
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 40px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn.btn-with-circle.light {
	border: 1px solid var(--white);
	background: var(--white);
}
.btn.btn-with-circle.light span {
	color: var(--header-text);
	text-align: center;
}
.btn.btn-with-circle.light .btn-circle {
	background: var(--green-1);
}
.btn.btn-with-circle.green {
	border: 1px solid var(--green-1);
	background: var(--green-1);
}
.btn.btn-with-circle.green span {
	color: var(--white);
	text-align: center;
}
.btn.btn-with-circle.green .btn-circle {
	background: var(--white);
}

.btn-arrow {
	min-width: 80px;
	max-width: 80px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50px;
	background: var(--super-light-gray);
	border: 1px solid var(--super-light-gray);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
/* .btn-arrow.green {
	background: var(--green-1);
	border: 1px solid var(--green-1);
}
.btn-arrow.green svg path {
	fill: var(--white);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
} */
.btn-arrow svg path {
	fill: var(--header-text);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-outer {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 5px;
	border-radius: 50px;
	background: transparent;
	cursor: pointer;
}
.btn-outer::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	z-index: 2;
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50px;
	border: 1px solid var(--green-1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-outer-wrapper {
	position: relative;
	z-index: 3;
	padding: 0 30px;
	width: 100%;
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50px;
	background: var(--green-1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-outer-wrapper span {
	font-weight: 600;
	line-height: 100%;
	color: var(--white);
	text-align: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.vacancies__btn {
	padding: 10px 16px;
	background: var(--header-text);
	border-radius: 8px;
	font-size: 14px;
	color: var(--white);
	text-align: center;
}

.dots ul, .popup__slider .slick-dots {
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}
.dots ul li, .popup__slider .slick-dots li {
	min-width: 8px;
	max-width: 8px;
	height: 8px;
	border-radius: 8px;
	background: var(--light-gray);
	overflow: hidden;
}
.dots ul li.slick-active, .popup__slider .slick-dots li.slick-active {
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
	background: var(--green-1);
}
.dots ul li button, .popup__slider .slick-dots li button {
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
}

.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.breadcrumbs span {
	min-width: 6px;
	max-width: 6px;
	height: 6px;
	border-radius: 10px;
	background: var(--green-1);
}
.breadcrumbs p {
	color: var(--green-1);
}

.animation-item {
	-webkit-transform: translateY(150px);
	transform: translateY(150px);
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100vw;
	background: var(--white);
	-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.07);
}
.header ._container {
	padding-top: 0;
	padding-bottom: 0;
}
.header__content, .header__nav, .header__menu {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}
.header__logo {
	width: 100%;
	max-width: 160px;
	min-width: 140px;
}
.header__logo img {
	width: 100%;
}
.header__nav {
	max-width: 900px;
	gap: 20px;
}
.header__menu {
	max-width: 560px;
	gap: 15px;
}
.header__menu.header__menu-3 {
	max-width: 420px;
}
.header__item {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 85px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 5px solid var(--white);
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	color: var(--header-text);
	letter-spacing: 0.03em;
	white-space: nowrap;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.header__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}
.header__btn {
	position: relative;
	padding: 10px 30px;
/* 	padding: 0 30px; */
	width: 100%;
	max-width: 220px;
/* 	height: 60px; */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 6px;
	background: var(--green-1);
	border: 1px solid var(--green-1);
	cursor: pointer;
}
/* .header__btn::before, .header__btn::after {
	content: "";
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 60px 0 60px 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.header__btn::before {
	top: -3px;
	left: -3px;
	background: var(--green-2);
}
.header__btn::after {
	bottom: -3px;
	right: -3px;
	background: rgba(71, 171, 122, 0.6);
} */
.header__btn span {
	position: relative;
	z-index: 3;
	font-size: 14px;
	font-weight: 600;
/* 	line-height: 120%; */
	line-height: 130%;
	color: var(--white);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.burger {
	position: relative;
	width: 24px;
	height: 15px;
	display: none;
}
.burger span, .burger::before, .burger::after {
	content: "";
	position: absolute;
	left: 0;
	width: 24px;
	height: 1px;
	background: var(--header-text);
	border-radius: 2px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.burger::before {
	top: 0;
}
.burger span {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.burger::after {
	bottom: 0;
}
.burger.active {
	height: 24px;
}
.burger.active::before {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	background: var(--green-1);
}
.burger.active span {
	opacity: 0;
}
.burger.active::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	background: var(--green-1);
}

.mobileMenu {
	position: fixed;
	top: 80px;
	right: -100%;
	z-index: 8;
	width: 100%;
	max-width: 360px;
	height: calc(100vh - 80px);
	background: var(--white);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.mobileMenu__container {
	padding: 50px 40px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.mobileMenu__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
}
.mobileMenu__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}
.mobileMenu.open {
	right: 0;
}
.mobileMenu__btn {
	max-width: 100%;
}

.blockContacts ._container {
	max-width: 1920px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.blockContacts__content {
	position: relative;
	width: 100%;
	max-width: 1655px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blockContacts__wrapper {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
	width: 100%;
	max-width: 620px;
}
.blockContacts__box {
	position: relative;
	width: 100%;
	padding: 40px 60px 50px;
	background: var(--white);
	border-radius: 30px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}
.blockContacts__container {
	position: relative;
	z-index: 3;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}
.blockContacts__container .line {
	width: 100%;
	max-width: 200px;
	height: 1px;
	background: var(--light-gray);
}
.blockContacts__block, .blockContacts__info, .blockContacts__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}
.blockContacts__info {
	gap: 20px;
}
.blockContacts__info h4 {
	font-size: 22px;
	font-weight: 400;
	color: var(--simple-text);
}
.blockContacts__items {
	gap: 10px;
}
.blockContacts__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.blockContacts__image {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 0 0 0 250px;
	overflow: hidden;
}
.blockContacts__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.blockContacts__map {
	width: 100%;
	max-width: 1200px;
	height: 800px;
	border-radius: 30px;
	overflow: hidden;
}
.blockContacts__map iframe {
	width: 100%;
	height: 100%;
}

.footer {
	background: var(--header-text);
}
.footer ._container {
	padding-top: 50px;
	padding-bottom: 30px;
}
.footer__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}
.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
}
.footer__block {
	width: 100%;
	max-width: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}
.footer__logo {
	width: 100%;
}
.footer__logo img {
	width: 100%;
}
.footer__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
.footer__text p {
	color: var(--white);
}
.footer__menu, .footer__items {
	max-width: 280px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 25px;
}
.footer__menu span, .footer__items span {
	font-weight: 600;
	line-height: 120%;
	color: var(--green-1);
	text-transform: uppercase;
}
.footer__items {
	gap: 20px;
}
.footer__items .link {
	width: 100%;
}
.footer__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.footer__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}
.footer__bottom {
	padding-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--green-1);
}
.footer__bottom h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
}

.pageHero {
	margin-top: 85px;
	border-radius: 0 0 40px 40px;
}
.pageHero ._container {
	padding-top: 50px;
	padding-bottom: 80px;
}
.pageHero__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}
.pageHero__content .breadcrumbs {
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.pageHero__content h1 {
	text-align: center;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
}
.overlay__container {
	padding: 40px 15px;
	width: 100%;
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.popup {
	position: relative;
	width: 100%;
}
.popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--green-1);
	border-radius: 40px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.popup__close svg path {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.popup__wrapper {
	position: relative;
	z-index: 4;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}
.popup__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}
.popup__text h3, .popup__text p {
	text-align: center;
}

#popupForm .popup {
	padding: 50px 60px 60px;
	max-width: 540px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .95);
	overflow: hidden;
}
#popupForm .popup > img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0.2;
}
#popupForm .popup__form {
	width: 100%;
}

#popupSuccess .popup {
	padding: 50px 30px 60px;
	max-width: 480px;
	border-radius: 20px;
	background: var(--white);
	overflow: hidden;
}
#popupSuccess .popup__image {
	width: 100%;
	max-width: 260px;
}
#popupSuccess .popup__image img {
	width: 100%;
}

#popupImages .popup {
	width: auto;
	max-width: 1200px;
}
#popupImages .popup__box, #popupImages .popup__slider, #popupImages .popup__slider .slick-list {
	width: 100%;
	overflow: hidden;
}
#popupImages .popup__slider {
	position: relative;
}
.popup__slider .slick-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#popupImages .popup__slider .slick-list .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#popupImages .popup__slide {
	min-width: 1200px;
	max-width: 1200px;
	overflow: hidden;
}
#popupImages .popup__slide img {
	width: 100%;
	height: 100%;
	max-height: 90vh;
	-o-object-fit: contain;
	object-fit: contain;
}
#popupImages .popup__slider .btn-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 4;
	min-width: 50px;
	max-width: 50px;
}
#popupImages .popup__slider .btn-arrow.next {
	right: 0;
	left: auto;
}

@media screen and (max-width: 1600px) {
	._container {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.header__logo {
		max-width: 130px;
		min-width: 100px;
	}
	.header__menu {
		max-width: 380px;
	}
	.header__item {
		font-size: 14px;
		height: 75px;
	}
/* 	.header__btn {
		padding: 0 20px;
		max-width: 200px;
		height: 50px;
	} */
	.header__btn span {
		font-size: 12px;
	}
	.pageHero {
		margin-top: 75px;
	}
	.blockContacts__wrapper {
		max-width: 540px;
	}
	.blockContacts__box {
		padding: 30px 40px 40px;
	}
	.blockContacts__block {
		gap: 20px;
	}
	.blockContacts__info h4 {
		font-size: 20px;
	}
	.blockContacts__map {
		max-width: 1000px;
		height: 700px;
	}
}
@media screen and (max-width: 1500px) {
	._container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.blockContacts__wrapper {
		max-width: 550px;
	}
	.blockContacts__map {
		max-width: 1000px;
	}
}
@media screen and (max-width: 1240px) {
	.header__nav {
		max-width: 800px;
	}
	.blockContacts__wrapper {
		max-width: 500px;
	}
	.blockContacts__box {
		padding: 40px 40px 50px;
	}
	.blockContacts__map {
		max-width: 800px;
	}
	#popupImages .popup {
		width: 100%;
	}
	#popupImages .popup__slide {
		min-width: auto;
		max-width: 100%;
		width: calc(100vw - 30px);
	}
}
@media screen and (max-width: 1100px) {
	.header .vacancies__btn {
		display: none;
	}
}
@media screen and (max-width: 1023px) {
	._container {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.footer__top {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
	.footer__menu {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.blockContacts__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}
	.blockContacts__wrapper {
		position: static;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		max-width: 700px;
	}
	.blockContacts__box {
		padding: 40px 80px 50px;
	}
	.blockContacts__map {
		max-width: 100%;
		height: 400px;
	}
}
@media screen and (max-width: 930px) {
	.header__content {
		height: 80px;
	}
	.header__menu, .header__btn:not(.mobileMenu__btn) {
		display: none;
	}
	.header__nav {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.header__item {
		height: 45px;
	}
	.burger {
		display: block;
	}
	.homeHero, .pageHero, .productHero {
		margin-top: 80px;
	}
}
@media screen and (max-width: 800px) {
	._container {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.pageHero {
		border-radius: 0 0 30px 30px;
	}
	.pageHero ._container {
		padding-top: 50px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 630px) {
	.blockContacts__box {
		padding: 40px 40px 50px;
	}
}
@media screen and (max-width: 550px) {
	._container {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.header__content {
		height: 60px;
		gap: 20px;
	}
	.header__logo {
		max-width: 120px;
		min-width: 60px;
	}
	.mobileMenu {
		top: 60px;
		height: calc(100vh - 60px);
	}
	.footer__top {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.blockContacts__box {
		padding: 30px 20px 40px;
	}
	.homeHero, .pageHero {
		margin-top: 60px;
	}
	.pageHero {
		border-radius: 0 0 20px 20px;
	}
	.pageHero ._container {
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.blockContacts__info h4 {
		font-size: 20px;
	}
}
@media screen and (max-width: 480px) {
	.blockContacts__image {
		width: 160px;
		height: 160px;
	}
	#popupForm .popup {
		padding: 40px 30px;
	}
}
@media screen and (max-width: 430px) {
	.blockContacts__image {
		width: 120px;
		height: 120px;
	}
	.blockContacts__info h4 {
		font-size: 18px;
	}
}
@media screen and (max-width: 400px) {
	._container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#popupForm .popup {
		padding: 40px 15px;
	}
}

@media screen and (min-width: 1024px) {
	.link:hover, a:not(.header__item):hover {
		color: var(--green-1);
	}
	.soc:hover {
		background: var(--green-3);
	}
	.soc:hover svg path {
		fill: var(--green-2);
	}
	.btn.simple-btn.light:hover {
		background: transparent;
	}
	.btn.simple-btn.light:hover span {
		color: var(--white);
	}
	.btn.simple-btn.green:hover {
		background: transparent;
	}
	.btn.simple-btn.green:hover span {
		color: var(--header-text);
	}
	.btn.btn-with-circle.green:hover {
		background: transparent;
	}
	.btn.btn-with-circle.green:hover span {
		color: var(--header-text);
	}
	.btn.btn-with-circle.green:hover .btn-circle {
		background: var(--green-1);
	}
	.btn.btn-with-circle.green:hover .btn-circle svg path {
		fill: var(--white);
	}
	.btn-arrow:hover {
		border: 1px solid var(--green-1);
		background: transparent;
	}
	.btn-arrow:hover svg path {
		fill: var(--green-1);
	}
	.btn-outer:hover::before {
		-webkit-transform: translateY(-50%) translateX(-50%) scale(0.3);
		transform: translateY(-50%) translateX(-50%) scale(0.3);
	}
	.btn-outer:hover .btn-outer-wrapper {
		background: var(--green-3);
	}
	.btn-outer:hover .btn-outer-wrapper span {
		color: var(--header-text);
	}
	.header__item:hover {
		border-bottom: 5px solid var(--green-1);
	}
	.header__btn:hover {
		background: transparent;
	}
/* 	.header__btn:hover::before {
		top: 0;
		left: 0;
		background: var(--green-3);
	}
	.header__btn:hover::after {
		opacity: 0;
	} */
	.header__btn:hover span {
		color: var(--header-text);
	}
	.prods__card:hover .prods__image img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	.prods__card:hover .prods__info {
		top: 0;
	}
	.popup__close:hover {
		background: var(--green-1);
	}
	.popup__close:hover svg path {
		fill: var(--white);
	}
}