/*!
Theme Name: Teplobak
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: teplobak
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Teplobak is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


@import url('https://fonts.googleapis.com/css2?family=Days+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--container: 1008px;
	--gap: 20px;

	--text-size: 14px;
	--text-size-sm: 12px;
	--h1-size: 44px;
	--h2-size: 32px;
	--h3-size: 24px;
	--h4-size: 20px;
	--h5-size: 18px;
	--h6-size: 16px;

	--black: #232222;
	--black-2: #363432;
	--green: #44D62C;
	--green-2: #8DE971;
	--green-3: #31B700;
	--green-4: #00AA13;
	--grey: #908D8D;
	--grey-light: #EAF3E8;
	--white: #FFFFFF;
	--white-2: #F5F5F1;

	--green-gradient: linear-gradient(270deg, #44D62C 15.68%, #8DE971 43.55%);
	--black-gradient: linear-gradient(90deg, #232222 28.2%, #908D8D 100%);
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	line-height: 1.4;
	color: var(--black-2);
	background: var(--white);
}
a {
	color: var(--black);
	transition: .5s;
}
a:hover,
a:active {
	text-decoration: none;
	color: var(--green-4);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Days One', serif;
	font-weight: 400;
	margin: 0 0 var(--gap);
	line-height: 1.2;
	color: var(--black);
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote, table {
	margin: 0 0 var(--gap);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, table:last-child {
	margin-bottom: 0;
}
iframe {
	width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -4) calc(var(--gap) / -2);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 4);
	margin-bottom: calc(var(--gap) / 2);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: block;
	margin-bottom: 4px;
}
::-webkit-input-placeholder {
	color: var(--grey);
}
::-moz-placeholder {
	color: var(--grey);
}
:-ms-input-placeholder {
	color: var(--grey);
}
:-moz-placeholder {
	color: var(--grey);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
select,
textarea {
	font-size: var(--text-size-sm);
	font-weight: 500;
	font-family: 'Rubik', sans-serif;
	line-height: 1.4;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--grey-light);
	color: var(--black);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 10px 14px;
	height: 34px;
	outline: none;
	transition: .5s;
}
input[type="search"] {
	border: none;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
}
textarea {
	height: 90px;
	resize: vertical;
}
select {
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
	color: var(--green-4);
}
.form-field-button .btn {
	width: 100%;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	font-size: var(--text-size-sm);
	margin-top: 4px;
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: 10px 16px;
	font-size: var(--text-size-sm);
}
.form-field-require {
	font-size: var(--text-size-sm);
}
.form-field-require span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--green-4);
	color: var(--white);
	font-size: var(--h4-size);
	width: 20px;
	height: 20px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	vertical-align: bottom;
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
	.pt-lg-0 {
		padding-top: 0 !important;
	}
	.pb-lg-0 {
		padding-bottom: 0 !important;
	}
}
.bg-white {
	background: var(--white-2);
}
.bg-grey-light {
	background: var(--grey-light);
}


.page-content strong {
	font-weight: 500;
}
.page-content img {
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.page-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.page-content ul li {
	position: relative;
	padding-left: 23px;
	z-index: 1;
}
.page-content ul li:before {
	content: '';
	background: url(images/check-list.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 13px;
	height: 13px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.page-content img.alignleft,
.page-content img.alignright,
.page-content img.aligncenter {
	max-width: calc(50% - var(--gap) / 2);
}



.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading h2 {
	position: relative;
	font-size: var(--h5-size);
	font-family: 'Days One', serif;
	text-transform: uppercase;
	color: var(--black);
	z-index: 1;
}
.heading h2 span {
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--green-4);
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size-sm);
	font-family: 'Rubik', serif;
	font-weight: 500;
	line-height: 1.4;
	border: 1px solid transparent;
	padding: 8px 16px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	outline: none;
	height: 33px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn.btn-sm {
	padding: 6px 16px;
	height: 29px;
}
.btn-primary {
	border: none;
	background: var(--green-gradient);
	color: var(--black);
}
.btn-primary:hover {
	background: var(--green-gradient);
	color: var(--black);
}
.btn-primary:active {
	background: linear-gradient(270deg, var(--green-2) 15.68%, var(--green-2) 43.55%);
	color: var(--black);
}
.btn-primary:disabled {
	background: linear-gradient(270deg, var(--grey) 15.68%, var(--grey) 43.55%);
	color: var(--black);
}
.btn-secondary {
	border: none;
	background: linear-gradient(270deg, var(--white-2) 15.68%, var(--white-2) 43.55%);
	color: var(--black);
}
.btn-secondary:hover {
	background: var(--green-gradient);
	color: var(--black);
}
.btn-secondary:active {
	background: linear-gradient(270deg, var(--green) 15.68%, var(--green) 43.55%);
	color: var(--black);
}
.btn-secondary:disabled {
	background: linear-gradient(270deg, var(--grey) 15.68%, var(--grey) 43.55%);
	color: var(--black);
}
.btn-thirdy {
	border: none;
	background: linear-gradient(270deg, var(--green-2) 15.68%, var(--green-2) 43.55%);
	color: var(--black);
}
.btn-thirdy:hover {
	background: var(--green-gradient);
	color: var(--black);
}
.btn-thirdy:active {
	background: linear-gradient(270deg, var(--green) 15.68%, var(--green) 43.55%);
	color: var(--black);
}
.btn-thirdy:disabled {
	background: linear-gradient(270deg, var(--grey) 15.68%, var(--grey) 43.55%);
	color: var(--black);
}
.btn-outline-primary {
	border-color: var(--green);
	background: transparent;
	color: var(--black);
}
.btn-outline-primary:hover {
	border-color: var(--green);
	background: var(--grey-light);
	color: var(--black);
}
.btn-outline-primary:active {
	border-color: var(--green);
	background: linear-gradient(270deg, var(--green) 15.68%, var(--green) 43.55%);
	color: var(--black);
}
.btn-outline-primary:disabled {
	border-color: var(--grey);
	background: linear-gradient(270deg, var(--grey) 15.68%, var(--grey) 43.55%);
	color: var(--black);
}
.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--green-4);
	height: auto;
	text-transform: uppercase;
	border: none;
	border-bottom: 1px solid;
	line-height: 1.2;
}
.btn.btn-link:hover {
	color: var(--green);
}
.btn.btn-link:active {
	color: var(--green-2);
}
.btn.btn-link:disabled {
	color: var(--grey);
}


.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--gap);
	padding: 4px 0;
	gap: 4px;
}
.swiper-pagination-bullet {
	position: relative;
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px !important;
	height: 15px !important;
	background: transparent !important;
	margin: 0 !important;
	opacity: 1 !important;
	z-index: 1;
}
.swiper-pagination-bullet:before {
	content: '';
	position: absolute;
	width: 9px;
	height: 9px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	transition: .5s;
	z-index: 1;
}
.swiper-pagination.green .swiper-pagination-bullet:before {
	background: var(--green-4);
}
.swiper-pagination.white .swiper-pagination-bullet:before {
	background: var(--white-2);
}
.swiper-pagination-bullet-active:before {
	opacity: 0;
}
.swiper-pagination-bullet:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 3px solid transparent;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.swiper-pagination.green .swiper-pagination-bullet-active:after {
	border-color: var(--green-4);
}
.swiper-pagination.white .swiper-pagination-bullet-active:after {
	border-color: var(--white-2);
}
.swiper-pagination-bullet-active:after {
	opacity: 1;
}

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-circle.svg);
	mask-image: url(images/arrow-circle.svg);
	background-color: var(--black-2);
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--green-4);
}
.swiper-navigation button:disabled {
	background: var(--black-2);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button.swiper-navigation-prev {
	transform: scale(-1, 1);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: var(--green-4);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.soc-links li a:hover {
	background: var(--green);
}
.soc-links li a svg {
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	/*opacity: 0;*/
	pointer-events: none;
	transition: opacity .3s ease;
}
.modal-mobile.show {
	/*opacity: 1;*/
	pointer-events: auto;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white-2);
	height: 100%;
	width: 100%;
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow: auto;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-header {
	position: relative;
	padding: 14px 0;
	z-index: 1;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 25px;
	gap: var(--gap);
}
.modal-mobile-logo {
	flex: auto;
	max-width: 100%;
}
.modal-mobile-logo img {
	max-height: 25px;
}
.modal-mobile-close {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--green-4);
}
.modal-mobile-body {
	padding: var(--gap) 0;
}
.mobile-menu {
	margin: 0 0 var(--gap);
	padding: var(--gap) 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 2px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu > li > a {
	text-transform: uppercase;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 auto;
	max-width: calc(100% - 18px - 4px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--green-4);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_down.svg);
	mask-image: url(images/arrow_down.svg);
	background-color: var(--black);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	margin-left: 4px;
	margin-top: -4px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle,
.mobile-menu li.current-menu-item > .mobile-menu-toggle {
	background-color: var(--green-4);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--green-4);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: var(--gap) 0 0;
	padding: 0;
	list-style: none;
	text-transform: none;
	z-index: 9;
}
.mobile-menu ul li {
	border-bottom: 1px solid #E9E9E9;
}
.mobile-menu ul li:last-child {
	border-bottom: none;
}
.mobile-menu ul li a {
	padding: 14px 10px;
}
.mobile-menu ul li.menu-item-has-children > a {
	padding-right: 0;
}
.mobile-menu ul .mobile-menu-toggle {
	margin-top: -2px;
}
.mobile-menu ul ul {
	margin-top: 0;
	margin-bottom: calc(var(--gap) / 2);
	padding-left: var(--gap);
}
.modal-mobile-search-form {
	margin-bottom: var(--gap);
}
.modal-mobile-footer {
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.lang-menu.mobile-lang-menu ul {
	top: auto;
	bottom: 100%;
	border: 1px solid var(--green-4);
	border-bottom: none;
}
.mobile-button {
	flex: auto;
}
.mobile-button .btn {
	width: 100%;
	padding: 8px 16px;
	height: 33px;
	font-size: var(--text-size-sm);
}




.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white-2);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	font-family: 'Days One', serif;
	font-weight: 400;
	color: var(--black);
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
	text-transform: uppercase;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--black);
	width: 28px;
	height: 28px;
	top: 10px;
	right: 10px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--green-4);
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 cac(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - var(--gap)) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - var(--gap) * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: var(--gap);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}



.wrapper {
	position: relative;
	z-index: 1;
}


.header {
	position: relative;
	padding: 20px 0 10px;
	background: var(--white-2);
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: calc(var(--gap) * 1.2);
}
.header-logo {
	max-width: 213px;
}
.header-logo img {
	max-height: 64px;
}
.header-certified {
	display: flex;
	align-items: center;
	gap: 18px;
}
.header-certified:before {
	content: '';
	background: url(images/sert_icon.png) no-repeat center;
	background-size: contain;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 32px;
}
.header-phones {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.header-phones a {
	text-decoration: none;
}
.header-right {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.2);
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lang-menu > li {
	position: relative;
}
.lang-menu > li > a {
	position: relative;
	border: 1px solid var(--green-4);
	color: var(--green-4);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	gap: 8px;
	width: 83px;
	height: 32px;
	z-index: 1;
}
.lang-menu > li > a:hover,
.lang-menu > li.active > a {
	color: var(--white);
	background: var(--green-4);
}
.lang-menu > li > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_down.svg);
	mask-image: url(images/arrow_down.svg);
	background-color: var(--green-4);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transition: .5s;
}
.lang-menu > li > a:hover:after {
	background-color: var(--white);
}
.lang-menu > li.active > a:after {
	transform: rotate(-180deg);
	background-color: var(--white);
}
.lang-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	width: 100%;
	border: none;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: var(--white-2);
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 9;
}
.lang-menu ul li {
	position: relative;
	z-index: 1;
}
.lang-menu ul li:last-child {
	border-bottom: none;
}
.lang-menu ul li a {
	border: 1px solid transparent;
	border-bottom-color: #E9E9E9;
	text-transform: uppercase;
	color: var(--green-4);
	display: flex;
	align-items: center;
	height: 32px;
	padding: 0 10px;
	text-decoration: none;
}
.lang-menu ul li a:hover {
	background: var(--grey-light);
	border-color: #E9E9E9;
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--black);
	padding: 0;
	outline: none;
	border: none;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--green-4);
}


.main-navigation {
	position: relative;
	padding: 10px 0;
	background: var(--white-2);
	z-index: 91;
}
.main-navigation-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	height: 54px;
}
.main-menu {
	flex: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.2);
	font-weight: 500;
}
.main-menu li {
	position: relative;
	padding: 15px 0;
	z-index: 1;
}
.main-menu li a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 2px 0;
	text-decoration: none;
	text-transform: uppercase;
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_down.svg);
	mask-image: url(images/arrow_down.svg);
	background-color: var(--black);
	margin-top: -3px;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu li.menu-item-has-children > a:hover:after,
.main-menu li.menu-item-has-children > a:active:after,
.main-menu li.current-menu-item.menu-item-has-children > a:after {
	background-color: var(--green-4);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--white-2);
	width: 268px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li {
	padding: 0;
}
.main-menu ul li a {
	padding: 14px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: none;
	border-bottom: 1px solid #E9E9E9;
}
.main-menu ul li:last-child a {
	border-bottom: none;
}
.main-menu ul li a:hover {
	background: var(--grey-light);
}
.main-menu ul li.menu-item-has-children > a:after,
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.main-menu ul ul {
	top: 0;
	left: 100%;
}

.header-search {
	position: relative;
	flex: auto;
	max-width: 360px;
	z-index: 1;
}
.search-form {
	position: relative;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}
.search-form input {
	padding-right: 50px;
}
.search-form button {
	position: absolute;
	top: calc(50% - 9px);
	right: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
	background-color: var(--black);
	width: 18px;
	height: 18px;
	cursor: pointer;
	outline: none;
	border: 0;
	padding: 0;
	transition: .25s;
}
.search-form button:hover {
	background-color: var(--green-4);
}
.header-search-results {
	position: absolute;
	width: 100%;
	top: calc(100% + 4px);
	left: 0;
	z-index: 1;
}
.ajaxSearch-wrap {
	position: relative;
	background: var(--white);
	border: 1px solid var(--grey-light);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	min-width: 320px;
	max-height: calc(100vh - 168px);
	overflow: auto;
	z-index: 1;
}
.ajaxSearch-no-result {
	font-size: var(--text-size-sm);
	text-align: center;
	color: var(--black);
	padding: 8px 16px;
}
.ajaxSearch-item {
	border-bottom: 1px solid var(--white-2);
}
.ajaxSearch-item:last-child {
	border-bottom: none;
}
.ajaxSearch-item__wrap {
	padding: 8px 16px;
	display: block;
	text-decoration: none;
	font-size: var(--text-size-sm);
}


.main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}


.footer {
	position: relative;
	background: var(--grey-light);
	z-index: 1;
}
.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 2);
	padding: calc(var(--gap) * 2) 0;
}
.footer-logo {
	max-width: 158px;
}
.footer-logo img {
	max-height: 64px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
	font-weight: 500;
}
.footer-menu li a {
	text-decoration: none;
	color: var(--black-2);
}
.footer-menu li a:hover {
	color: var(--green-4);
}
.footer-menu li a:active {
	color: var(--green);
}
.footer-menu ul {
	display: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) * 2);
	padding: calc(var(--gap) * 2) 0 var(--gap);
}
.footer-widget {
	max-width: 270px;
}
.copyright {
	margin-bottom: 4px;
	font-size: var(--text-size-sm);
}
.developer {
	font-size: var(--text-size-sm);
	margin-bottom: 16px;
}
.developer a {
	color: var(--green-4);
	text-decoration: none;
}
.developer a:hover {
	color: var(--green-3);
}


.footer-contacts {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: var(--text-size-sm);
	gap: 6px;
	padding-left: 26px;
	z-index: 1;
}
.footer-contacts:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
.footer-contacts.phone:before {
	background-image: url(images/phone.svg);
}
.footer-contacts.e-mail:before {
	background-image: url(images/mail.svg);
}
.footer-contacts a {
	text-decoration: none;
}



.page-title {
	font-size: var(--h2-size);
	text-transform: uppercase;
	margin: 0;
}
.page-breadcrumbs {
	position: relative;
	padding: 8px 0;
	font-size: var(--text-size-sm);
	color: var(--grey);
}
.page-breadcrumbs a {
	color: var(--grey);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--black);
}
.breadcrumbs-sep {
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_down.svg);
	mask-image: url(images/arrow_down.svg);
	background-color: var(--black);
	width: 25px;
	display: inline-block;
	height: 8px;
	transform: rotate(-90deg);
	vertical-align: baseline;
}
body.single-product .page-breadcrumbs .breadcrumb_last,
body.single-product .page-breadcrumbs .breadcrumbs-sep:nth-last-child(2) {
	display: none;
}



.error-404-number {
	font-size: calc(var(--h1-size) * 4);
	font-weight: 400;
	font-family: 'Days One', serif;
	line-height: 1;
	text-align: center;
	color: var(--grey-light);
	margin-bottom: var(--gap);
}
.error-404-button {
	text-align: center;
}



.hero-swiper {
	overflow: hidden;
}
.hero-section,
.heroSlider-item {
	position: relative;
	height: calc(100vw / 2.4);
	min-height: 600px;
	z-index: 1;
}
.heroSlider-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.heroSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.heroSlider-item__bg:after {
	content: '';
	background: var(--black-gradient);
	opacity: .4;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.heroSlider-item__wrap {
	margin-bottom: 40px;
}
.heroSlider-item__heading {
	font-size: var(--h1-size);
	font-weight: 400;
	font-family: 'Days One', serif;
	margin-bottom: calc(var(--gap) * 2);
	color: var(--white-2);
	line-height: 1;
	text-transform: uppercase;
}
.heroSlider-item__description {
	font-size: var(--h4-size);
	font-weight: 500;
	margin-bottom: calc(var(--gap) * 3);
	color: var(--white-2);
}
.hero-pagination {
	position: absolute !important;
	margin-top: 0 !important;
	bottom: calc(var(--gap) * 1.2) !important;
	top: auto !important;
}



.advantages-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.advantages-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.advantages-item__wrap {
	position: relative;
	text-align: center;
	z-index: 1;
}
.advantages-item__icon {
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}
.advantages-item__icon img {
	max-height: 88px;
}
.advantages-item__text {
	font-size: var(--text-size-sm);
	font-weight: 500;
	color: var(--black);
}


.advantages_2-section.section-sm {
	padding-top: 60px;
}
.advantages_2-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) / -4) calc(var(--gap) / -2);
}
.advantages_2-item {
	flex: 0 0 20%;
	max-width: 20%;
	margin: 0 0 calc(var(--gap) / 2);
	padding: 0 calc(var(--gap) / 4);
}
.advantages_2-item__wrap {
	position: relative;
	text-align: center;
	z-index: 1;
}
.advantages_2-item__icon {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
}
.advantages_2-item__icon img {
	max-height: 60px;
}
.advantages_2-item__text {
	font-size: var(--text-size-sm);
	color: var(--black);
}


.about-section:before {
	content: '';
	position: absolute;
	width: 323px;
	height: 338px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	top: 15px;
	left: calc((100% - var(--container)) / 2 - 250px);
	transform: rotate(-197deg);
	opacity: .2;
	z-index: -1;
}
.about-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.about-left,
.about-right {
	flex: 1;
}
.about-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-content {
	max-width: 410px;
}
.about-image {
	overflow: hidden;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}



.cta-block {
	padding-left: 85px;
	padding-right: 85px;
	overflow: hidden;
}
.cta-block:after {
	content: '';
	position: absolute;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	width: 320px;
	height: 333px;
	top: 47px;
	right: 40px;
	transform: rotate(33deg);
	z-index: -1;
}
.cta-wrap {
	max-width: 324px;
}
.cta-heading {
	font-size: var(--h5-size);
	font-family: 'Days One', serif;
	text-transform: uppercase;
	color: var(--black);
	margin: 0 0 var(--gap);
}
.cta-description {
	margin-bottom: calc(var(--gap) * 2);
}


.infoBlocks-section:before {
	content: '';
	position: absolute;
	width: 323px;
	height: 338px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	top: 27%;
	left: calc((100% - var(--container)) / 2 - 290px);
	transform: rotate(147deg);
	opacity: .2;
	z-index: -1;
}
.infoBlocks-section:after {
	content: '';
	position: absolute;
	width: 446px;
	height: 467px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	bottom: -312px;
	right: calc((100% - var(--container)) / 2 - 400px);
	transform: rotate(37deg);
	opacity: .2;
	z-index: -1;
}
.infoBlocks-item__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10%
}
.infoBlocks-item:nth-child(2n) .infoBlocks-item__wrap {
	flex-direction: row-reverse;
}
.infoBlocks-item__content {
	flex: 0 0 50%;
	max-width: 50%;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
}
.infoBlocks-item:nth-child(2n) .infoBlocks-item__content {
	flex: 0 0 40%;
	max-width: 40%;
}
.infoBlocks-item__image {
	flex: 0 0 40%;
	max-width: 40%;
	overflow: hidden;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.infoBlocks-item:nth-child(2n) .infoBlocks-item__image {
	flex: 0 0 50%;
	max-width: 50%;
}
.infoBlocks-item__content > * {
	margin: 0;
}
.infoBlocks-item__content h1 {
	font-size: var(--h3-size);
}
.infoBlocks-item__content h2 {
	font-size: var(--h4-size);
}
.infoBlocks-item__content h3 {
	font-size: var(--h5-size);
}
.infoBlocks-item__content h4,
.infoBlocks-item__content h5 {
	font-size: var(--h6-size);
}


.partners-swiper {
	overflow: hidden;
}
.partners-item__wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	padding: 15px;
}
.partners-item__wrap img {
	max-height: 60px;
	opacity: .5;
}
.partners-item__wrap:hover img {
	opacity: 1;
}


.classification-swiper {
	overflow: hidden;
}
.classification-swiper .swiper-wrapper {
	align-items: center;
}


.news-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news-heading {
	flex: auto;
	max-width: calc(100% - 100px - var(--gap));
}
.news-button {
	margin-bottom: calc(var(--gap) * 2);
}
.news-wrap .news-items {
	flex: 0 0 calc(100% + var(--gap));
	max-width: calc(100% + var(--gap));
}

.news-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.news-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.news-items.columns-1 .news-item {
	flex: 0 0 100%;
	max-width: 100%;
}
.news-items.columns-2 .news-item {
	flex: 0 0 50%;
	max-width: 50%;
}
.news-item__wrap {
	display: flex;
	gap: var(--gap);
	min-height: 160px;
}
.news-item__image {
	flex: 0 0 283px;
	max-width: 283px;
	overflow: hidden;
}
.news-item__image:hover img {
	transform: scale(1.1);
}
.news-item__info {
	flex: auto;
	display: flex;
	flex-direction: column;
}
.news-item__date {
	color: #666666;
	font-size: var(--text-size-sm);
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 2);
}
.news-item__title {
	margin-bottom: 4px;
	font-size: var(--text-size);
	font-weight: 500;
	font-family: 'Rubik', sans-serif;
	line-height: 1.4;
}
.news-item__title a {
	text-decoration: none;
}
.news-item__excerpt {
	color: var(--grey);
	margin-bottom: calc(var(--gap) / 2);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.home .news-item__excerpt {
	display: none;
}
.news-item__button {
	margin-top: auto;
}



.page-body-wrap {
	display: flex;
	gap: var(--gap);
}
.page-body-sidebar {
	flex: 0 0 23.8%;
	max-width: 23.8%;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.page-body-main {
	flex: auto;
	max-width: calc(76.2% - var(--gap));
}
.widget_text {
	font-size: var(--text-size-sm);
	color: var(--grey);
}
.widget_nav_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget_nav_menu ul li {
	border-bottom: 1px solid var(--grey-light);
}
.widget_nav_menu ul li:last-child {
	border-bottom: none;
}
.widget_nav_menu ul li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	padding: 12px;
	text-decoration: none;
	color: var(--black-2);
}
.widget_nav_menu ul li a:hover {
	color: var(--green-4);
}
.widget_nav_menu ul li.current-menu-item > a,
.widget_nav_menu ul li.current-post-ancestor > a {
	background: var(--grey-light);
	color: var(--black-2);
}
.widget_nav_menu ul li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--black);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	transition: .5s;
}
.widget_nav_menu ul li.menu-item-has-children > a:hover:after {
	background-color: var(--green-4);
}
.widget_nav_menu ul li.current-menu-item.menu-item-has-children > a:after {
	transform: rotate(90deg);
	background-color: var(--green-4);
}
.widget_nav_menu ul ul {
	display: none;
	background: var(--white-2);
}
.widget_nav_menu ul li.current-menu-item > ul,
.widget_nav_menu ul li.current-post-ancestor > ul {
	display: block;
}
.widget_nav_menu ul ul li {
	border-bottom: none;
}
.widget_nav_menu ul ul li a:hover {
	background: var(--white);
	color: var(--green);
}
.widget_nav_menu ul ul li.current-menu-item > a {
	background: #E2E2E2;
	color: var(--black-2);
}
.widget_nav_menu ul ul ul li a {
	padding-left: 24px;
	padding-right: 24px;
}



.infoContent-items {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 3);
	z-index: 1;
}
.infoContent-item__contentImage {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.infoContent-item__contentImage.left {
	flex-direction: row-reverse;
}
.infoContent-item__contentImage__info,
.infoContent-item__contentImage__image {
	flex: 1;
}
.infoContent-item__contentImage__image {
	position: relative;
	overflow: hidden;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	z-index: 1;
}
.infoContent-item__heading {
	margin-bottom: calc(var(--gap) * -1);
}
.infoContent-item__content__content iframe {
	height: calc((var(--container) * .762 - 20px) / 1.65);
}


.infoContent-item__capacity {
	position: relative;
	background: var(--white-2);
	z-index: 1;
}
.infoContent-item__capacity__image {
	height: 216px;
}
.infoContent-item__capacity__info {
	padding: var(--gap);
	text-align: center;
}
.infoContent-item__capacity__heading {
	font-size: var(--h6-size);
	font-weight: 600;
	margin-bottom: var(--gap);
}
.infoContent-item__capacity__description {
	margin-bottom: calc(var(--gap) * 1.5);
}
.infoContent-item__capacity__formule {
	font-family: 'Days One', serif;
	font-size: var(--h5-size);
	margin-bottom: var(--gap);
}
.infoContent-item__capacity__text {
	font-size: var(--text-size-sm);
	color: var(--grey);
}


.infoContent-item__contentBlocks50 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.infoContent-item__contentBlocks50-content {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.infoContent-item__contentBlocks50-content > * {
	margin-bottom: calc(var(--gap) / 2);
}
.infoContent-item__contentBlocks50-content > *:last-child {
	margin-bottom: 0;
}





.post-84 .infoContent-items:after {
	content: '';
	position: absolute;
	width: 500px;
	height: 522px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	top: 25%;
	right: -300px;
	transform: rotate(43deg);
	opacity: .1;
	z-index: -1;
}
.post-86 .infoContent-items:after {
	content: '';
	position: absolute;
	width: 390px;
	height: 407px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	top: 7%;
	right: -330px;
	transform: rotate(-40deg);
	opacity: .1;
	z-index: -1;
}

.archiveNews-elements {
	position: absolute;
	top: -20px;
	right: calc((100% - var(--container)) / 2 - 322px);
	width: 354px;
	height: 466px;
	opacity: .1;
	z-index: -1;
}
.archiveNews-elements:before {
	content: '';
	position: absolute;
	width: 310px;
	height: 322px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	bottom: 0;
	left: 0;
	transform: rotate(-151deg);
	z-index: -2;
}
.archiveNews-elements:after {
	content: '';
	position: absolute;
	width: 275px;
	height: 287px;
	background: url(images/element-c-2.svg) no-repeat center;
	background-size: contain;
	top: 0;
	right: 0;
	transform: rotate(-31deg);
	z-index: -1;
}



.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 2;
}
ul.page-numbers,
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	width: 32px;
	height: 32px;
	font-size: var(--text-size-sm);
	font-weight: 500;
	color: var(--grey);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	color: var(--green-4);
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow_down.svg);
	mask-image: url(images/arrow_down.svg);
	background-color: var(--black);
	font-size: 0;
	transition: .5s;
}
.nav-links .page-numbers.prev {
	transform: rotate(90deg);
}
.nav-links .page-numbers.next {
	transform: rotate(-90deg);
}
.nav-links .page-numbers.prev:hover,
.nav-links .page-numbers.next:hover {
	background-color: var(--green-4);
}



.singleNews-wrap:after {
	content: '';
	display: block;
	clear: both;
}
.singleNews-image {
	float: left;
	max-width: 250px;
	margin: 0 var(--gap) var(--gap) 0;
}
.singleNews-image img {
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	max-height: 250px;
}
.singleNews-date {
	color: #666666;
	font-size: var(--text-size-sm);
	font-weight: 500;
}


.share-soc {
	position: relative;
	margin-top: 30px;
}
.share-soc-title {
	color: var(--grey);
	margin-bottom: 10px;
}



.products-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.products-heading {
	flex: auto;
	max-width: calc(100% - 70px - var(--gap));
}
.products-navigation {
	flex: 0 0 70px;
	max-width: 70px;
	margin-bottom: calc(var(--gap) * 2);
}
.products-carousel {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	z-index: 1;
}
.products-swiper {
	overflow: hidden;
}
.products-swiper .swiper-slide {
	height: auto;
}




.products-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.products-item,
.category-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.products-swiper .products-item {
	margin: 0;
	padding: 0;
	height: 100%;
}
.products-items.columns-4 .products-item,
.products-items.columns-4 .category-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.products-items.columns-3 .products-item,
.products-items.columns-3 .category-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.products-items.columns-2 .products-item,
.products-items.columns-2 .category-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.products-items.columns-1 .products-item,
.products-items.columns-1 .category-item {
	flex: 0 0 calc(100% / 1);
	max-width: calc(100% / 1);
}


.category-item a {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--white-2);
	border: 1px solid var(--grey-light);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 16px;
	text-decoration: none;
	z-index: 1;
}
.category-item__image {
	position: relative;
	background: var(--white);
	flex: 0 0 calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.25);
	max-height: calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.25);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}
.category-item__image img {
	max-height: calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.25);
	transition: .5s;
}
.category-item a:hover .category-item__image img {
	transform: scale(1.1);
}
.woocommerce-loop-category__title {
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	color: var(--green-4);
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: auto;
	line-height: 1.4;
	min-height: 40px;
	transition: .5s;
}
.woocommerce-loop-category__title mark {
	display: none;
}


.products-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white-2);
	border: 1px solid var(--grey-light);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 16px;
	text-decoration: none;
	z-index: 1;
}
.products-item__wrap a {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	z-index: 1;
}
.products-item__image {
	position: relative;
	background: var(--white);
	flex: 0 0 calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.05);
	max-height: calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.05);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}
.products-item__image-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	z-index: 1;
}
.products-item__image-inner:nth-child(1) {
	opacity: 1;
}
.products-item__wrap a:hover .products-item__image-inner:nth-child(1) {
	opacity: 0;
}
.products-item__wrap a:hover .products-item__image-inner:nth-child(2) {
	opacity: 1;
}
.products-item__image img {
	max-height: calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 1.05);
	transition: .5s;
}
.products-item__wrap a:hover .products-item__image img {
	transform: scale(1.1);
}
.woocommerce-loop-product__title {
	font-size: var(--text-size);
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	color: var(--black);
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: auto;
	line-height: 1.4;
	margin-bottom: 16px;
	transition: .5s;
}
.products-item__button .btn {
	width: 100%;
}


.archiveShopInfoContent-section.section-sm {
	padding-top: 60px;
}


body.post-type-archive-product .page-body:before {
	content: '';
	position: absolute;
	width: 777px;
	height: 811px;
	background: url(images/element-c.svg) no-repeat center;
	background-size: contain;
	top: 34.5%;
	left: calc((100% - var(--container)) / 2 - 413px);
	transform: rotate(145deg);
	opacity: .2;
	z-index: -1;
}



.singleProduct-main {
	position: relative;
	border: 2px solid var(--grey-light);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: var(--gap);
	gap: var(--gap);
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	z-index: 1;
}
.singleProduct-image {
	position: relative;
	height: 328px;
	flex: 0 0 calc(52% - var(--gap) / 2);
	max-width: calc(52% - var(--gap) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.no-content > .singleProduct-image {
	flex: 0 0 100%;
	max-width: 100%;
}
.singleProduct-image-inner img {
	max-height: 328px;
}
.woocommerce-product-gallery__image {
	position: relative;
	display: none;
	z-index: 1;
}
.woocommerce-product-gallery__image:first-child {
	display: block;
}
.woocommerce-product-gallery__image a:before {
	content: '';
	position: absolute;
	width: 44px;
	height: 44px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--black);
	opacity: 0;
	backdrop-filter: blur(1.5px);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	transition: .5s;
	z-index: 1;
}
.woocommerce-product-gallery__image a:hover:before {
	opacity: .7;
}
.woocommerce-product-gallery__image a:after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
	background-color: var(--white);
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.woocommerce-product-gallery__image a:hover:after {
	opacity: 1;
}
.singleProduct-iconsOptions {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 2;
}
.singleProduct-iconsOptionsInput {
	left: var(--gap);
}
.singleProduct-iconsOptionsOutput {
	right: var(--gap);
}
.singleProduct-iconsOptions:before {
	content: '';
	background: url(images/arrow-right-long.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	z-index: 1;
}
.singleProduct-iconsOptionsInput:before {
	left: calc(100% + var(--gap));
}
.singleProduct-iconsOptionsOutput:before {
	right: calc(100% + var(--gap));
}
.singleProduct-summary {
	flex: 0 0 calc(48% - var(--gap) / 2);
	max-width: calc(48% - var(--gap) / 2);
}
.no-content > .singleProduct-summary {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.singleProduct-content {
	color: #555555;
	margin-bottom: calc(var(--gap) * 1.5);
}
.no-content > .singleProduct-summary .share-soc:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	top: -30px;
	left: 0;
	background: var(--green-gradient);
	z-index: 1;
}


.singleProduct-contentItems {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 3);
	margin-top: calc(var(--gap) * 2);
	z-index: 1;
}
.singleProduct-contentItemCharacteristics__items {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.singleProduct-contentItemCharacteristics__items td {
	padding: 5px 0;
	border-bottom: 1px dotted #aaa;
}
.singleProduct-contentItemCharacteristics__items td:nth-child(1) {
	font-weight: 500;
}
.singleProduct-contentItemCharacteristics__items td:nth-child(2) {
	text-align: right;
	width: 40%;
}
.singleProduct-contentItemCharacteristics__items td span {
	display: inline;
	background: var(--white);
	position: relative;
	bottom: -10px;
}
.singleProduct-contentItemCharacteristics__items td:nth-child(1) span {
	left: -1px;
	padding-right: 10px;
}
.singleProduct-contentItemCharacteristics__items td:nth-child(2) span {
	padding-left: 10px;
	right: -1px;
}

.singleProduct-contentItemContent table {
	width: 100%;
	text-align: center;
	display: block;
	overflow: auto;
	border-collapse: collapse;
    border-spacing: 0;
    font-size: var(--text-size-sm);
}
.singleProduct-contentItemContent table tbody {
	display: table;
	min-width: 100%;
}
.singleProduct-contentItemContent table tr {
	border: 1px solid var(--grey-light);
}
.singleProduct-contentItemContent table th {
	text-align: center;
	background-color: var(--green-3);
	color: var(--white);
	font-weight: normal;
	border: 1px solid var(--grey-light);
}
.singleProduct-contentItemContent table td {
	border: 1px solid var(--grey-light);
}
.singleProduct-contentItemContent table th,
.singleProduct-contentItemContent table td {
	padding: 5px 10px;
	width: auto !important;
	height: auto !important;
}
.singleProduct-contentItemContent table td.t_grey {
	background: var(--grey-light);
}

.singleProduct-contentItemContent-toggle {
	position: relative;
	margin-top: var(--gap);
}
.singleProduct-contentItemContent-toggle__head {
	position: relative;
	background: #F4F4F4;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	padding: 14px 12px;
	display: flex;
	align-items: center;
	gap: var(--gap);
	cursor: pointer;
	z-index: 1;
}
.singleProduct-contentItemContent-toggle__head:before {
	content: '';
	background: var(--green-gradient);
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.singleProduct-contentItemContent-toggle__head:after {
	content: '';
	background: url(images/arrow-right-gradient.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
}
.singleProduct-contentItemContent-toggle.active .singleProduct-contentItemContent-toggle__head:after {
	transform: rotate(90deg);
}
.singleProduct-contentItemContent-toggle__head p {
	flex: auto;
	max-width: calc(100% - var(--gap) - 24px);
	margin: 0;
	color: var(--green-3);
}
.singleProduct-contentItemContent-toggle__body {
	display: none;
	margin-top: var(--gap);
}



.singleProduct-contentItemFiles__items {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.singleProduct-contentItemFiles__item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleProduct-contentItemFiles__item__wrap {
	position: relative;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	z-index: 1;
}
.singleProduct-contentItemFiles__item__icon {
	flex: 0 0 42px;
	max-width: 42px;
}
.singleProduct-contentItemFiles__item__info {
	flex: auto;
}
.singleProduct-contentItemFiles__item__info p {
	color: var(--green-4);
	margin-bottom: 2px;
}
.singleProduct-contentItemFiles__item__info span {
	color: var(--grey);	
}

.singleProduct-contentItemCheckList-items {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	font-size: var(--text-size-sm);
	color: var(--black);
}
.singleProduct-contentItemCheckList-items li {
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	padding-left: 43px;
	min-height: 33px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.singleProduct-contentItemCheckList-items.columns-2 li {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.singleProduct-contentItemCheckList-items.columns-2.not-even li:last-child {
	flex: 0 0 100%;
	max-width: 100%;
}
.singleProduct-contentItemCheckList-items li:before {
	content: '';
	background: url(images/check-list-big.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 33px;
	height: 33px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}


.singleProduct-back {
	position: relative;
	margin-top: calc(var(--gap) * 2);
	z-index: 1;
}
.singleProduct-back .btn {
	padding-left: 8px;
	gap: 8px;
}
.singleProduct-back .btn:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--black);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transform: scale(-1, 1);
	margin-top: -2px;
	transition: .5s;
}




.files-blocks {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	z-index: 1;
}
.files-block-row {
	display: flex;
	justify-content: space-between;
	background: var(--white-2);
}
.files-block-row:nth-child(2n) {
	background: #E9E9E9;
}
.files-block-head {
	background: var(--green-4);
	color: var(--white);
	font-weight: 500;
}
.files-block-title {
	flex: 0 0 calc(100% / 3 * 2);
	max-width: calc(100% / 3 * 2);
	padding: 7px 8px;
}
.files-block-link {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 7px 8px;
	text-align: center;
}
.files-block-head .files-block-link {
	text-align: left;
}
.files-block-subhead {
	color: var(--black);
	font-weight: 500;
}
.files-block-link a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: var(--green-4);
	font-size: 13px;
	font-weight: 400;
}
.files-block-link a:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/pdf.svg);
    mask-image: url(images/pdf.svg);
    background-color: var(--green-4);
    flex: 0 0 12px;
    max-width: 12px;
    width: 12px;
    height: 12px;
    margin-top: -2px;
}



.certificates-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.certificates-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.certificates-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white-2);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 16px;
	z-index: 1;
}
.certificates-item__image {
	height: calc(((var(--container) - var(--gap) * 3) / 4 - 32px) / 0.6742);
	overflow: hidden;
	margin-bottom: 16px;
}
.certificates-item__image a:before {
	content: '';
	position: absolute;
	width: 44px;
	height: 44px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #9C9C9C;
	opacity: 0;
	backdrop-filter: blur(1.5px);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	transition: .5s;
	z-index: 1;
}
.certificates-item__image a:hover:before {
	opacity: .4;
}
.certificates-item__image a:after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
	background-color: var(--black);
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.certificates-item__image a:hover:after {
	opacity: 1;
}
.certificates-item__title {
	font-weight: 500;
	color: var(--black);
}



.pContactsMain {
	position: relative;
	margin-bottom: calc(var(--gap) * 4);
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	z-index: 1;
}
.pContactsMain-left {
	flex: 0 0 calc(28% - var(--gap) / 2);
	max-width: calc(28% - var(--gap) / 2);
}
.pContactsMain-right {
	flex: 0 0 calc(72% - var(--gap) / 2);
	max-width: calc(72% - var(--gap) / 2);
}
.pContactsMain-heading.heading {
	margin-bottom: var(--gap);
}
.pContactsMain-description {
	margin-bottom: calc(var(--gap) * 1.5);
}
.pContactsMain-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.pContactsMain-item {
	position: relative;
	padding-left: 72px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 1;
}
.pContactsMain-item:before {
	content: '';
	background-size: contain;
	background-position: center;
	background-repeat: none;
	position: absolute;
	width: 52px;
	height: 52px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.pContactsMain-item.address:before {
	background-image: url(images/contact-address.svg);
}
.pContactsMain-item.phone:before {
	background-image: url(images/contact-phone.svg);
}
.pContactsMain-item.e-mail:before {
	background-image: url(images/contact-e-mail.svg);
}
.pContactsMain-item.schedule:before {
	background-image: url(images/contact-schedule.svg);
}
.pContactsMain-item__label {
	font-weight: 500;
	color: var(--black);
	margin-bottom: 0;
}
.pContactsMain-item__value {
	color: var(--grey);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.pContactsMain-item__value a {
	color: var(--grey);
	text-decoration: none;
}
.pContactsMain-item__value a:hover {
	color: var(--green-4);
}
.pContactsMain-map {
	height: 100%;
}
.pContactsMain-map iframe {
	width: 100%;
	height: 100%;
	min-height: 250px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.pContactsInfo {
	max-width: calc(72% - var(--gap) / 2);
	margin-left: auto;
	margin-bottom: calc(var(--gap) * 4);
}
.pContactsFeedback {
	position: relative;
	max-width: calc(72% - var(--gap) / 2);
	margin-left: auto;
	background: var(--white-2);
	padding: var(--gap);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	z-index: 1;
}
.pContactsFeedback-heading.heading {
	margin-bottom: var(--gap);
}
.pContactsFeedback-description {
	max-width: 270px;
	font-size: 13px;
	margin-bottom: calc(var(--gap) * 2);
}
.pContactsFeedback-form textarea {
	height: 238px;
	display: block;
}



.search-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.search-item__title a {
	position: relative;
	background: #F4F4F4;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	padding: 14px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	gap: var(--gap);
	z-index: 1;
}
.search-item__title a:before {
	content: '';
	background: var(--green-gradient);
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.search-item__title a:after {
	content: '';
	background: url(images/arrow-right-gradient.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
}

.no-results-form {
	position: relative;
	background: var(--white-2);
	padding: 20px;
	z-index: 1;
}





.map {
	position: relative;
	width: 100%;
	height: 620px;
}

.mapPopup-wrap {
	width: 220px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.mapPopup-image {
	text-align: center;
}
.mapPopup-image img {
	max-height: 100px;
}
.mapPopup-title {
	margin: 0 !important;
	text-align: center;
	font-family: 'Days One', serif;;
	text-transform: uppercase;
	font-size: var(--h6-size);
	color: var(--black);
	font-weight: 400;
}
.mapPopup-info {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mapPopup-info li {
	display: flex;
	gap: 10px;
}
.mapPopup-info li:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--green-4);
	margin-top: -3px;
}
.mapPopup-info li.phone:before {
	-webkit-mask-image: url(images/phone-map.svg);
	mask-image: url(images/phone-map.svg);
}
.mapPopup-info li.address:before {
	-webkit-mask-image: url(images/location-map.svg);
	mask-image: url(images/location-map.svg);
}
.mapPopup-info li.e-mail:before {
	-webkit-mask-image: url(images/email-map.svg);
	mask-image: url(images/email-map.svg);
}
.mapPopup-info li.website:before {
	-webkit-mask-image: url(images/website-map.svg);
	mask-image: url(images/website-map.svg);
}
.mapPopup-info li.schedule:before {
	-webkit-mask-image: url(images/clock-map.svg);
	mask-image: url(images/clock-map.svg);
}
.mapPopup-info li a {
	text-decoration: none;
	color: var(--black);
}
.mapPopup-info li a:hover {
	color: var(--green-4);
}









@media (max-width: 1079px) {
	:root {
		--container: 910px;
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 44px;
		--h2-size: 32px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.news-item__image {
		flex: 0 0 260px;
		max-width: 260px;
	}
}


@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.section,
	.section-md {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.btn {
		font-size: var(--text-size);
		padding: 10px 20px;
		height: 40px;
	}
	.btn.btn-sm {
		font-size: var(--text-size-sm);
	}
	.btn.btn-link {
		font-size: var(--text-size-sm);
	}
	.header {
		position: sticky;
		top: 0;
		padding: 14px 0;
	}
	.header-wrap {
		height: 25px;
		gap: var(--gap);
	}
	.header-certified,
	.header-phones,
	.header-right,
	.main-navigation {
		display: none;
	}
	.header-logo {
		flex: auto;
		max-width: 100%;
	}
	.header-logo img {
		max-height: 25px;
	}
	.heroSlider-item.section {
		padding-bottom: 110px;
		justify-content: flex-end;
	}
	.heroSlider-item__wrap {
		margin-bottom: 0;
	}
	.heroSlider-item__heading {
		margin-bottom: calc(var(--gap) / 2);
	}
	.heroSlider-item__description {
		margin-bottom: calc(var(--gap) * 2);
		font-size: var(--h5-size);
	}
	.advantages-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.advantages-item__icon {
		height: 60px;
	}
	.advantages-item__icon img {
		max-height: 60px;
	}
	.about-section:before {
		display: none;
	}
	.about-left, .about-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.about-content {
		max-width: 100%;
	}
	.products-item__wrap {
		padding: 8px;
	}
	.products-item__image {
		flex: 0 0 calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.05);
		max-height: calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.05);
	}
	.products-item__image img {
		max-height: calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.05);
	}
	.news-button .btn {
		height: 33px;
		font-size: var(--text-size-sm);
		padding: 8px 16px;
	}
	.news-items.columns-2 .news-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.home .news-item__excerpt {
		display: -webkit-box;
	}
	.cta-block {
		padding-left: 20px;
		padding-right: 20px;
	}
	.infoBlocks-item__wrap,
	.infoBlocks-item__content {
		gap: var(--gap);
	}
	.infoBlocks-item__content,
	.infoBlocks-item:nth-child(2n) .infoBlocks-item__content,
	.infoBlocks-item__image,
	.infoBlocks-item:nth-child(2n) .infoBlocks-item__image {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.infoBlocks-item__image {
		height: calc(var(--container) / 1.52);
	}
	.infoBlocks-item__content h3 br {
		display: none;
	}
	.infoBlocks-section:before,
	.infoBlocks-section:after {
		display: none;
	}
	.footer-top {
		padding: calc(var(--gap) * 2) 0 0;
		flex-direction: column;
		gap: var(--gap);
	}
	.footer-bottom {
		padding: var(--gap) 0;
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}
	.footer-logo img {
		max-height: 25px;
	}
	.footer-menu {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
	}
	.footer-widget {
		order: 1;
	}
	.footer-widget:first-child {
		order: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer-contacts {
		padding: 20px 0 0;
		text-align: center;
		align-items: center;
	}
	.footer-contacts:before {
		left: 50%;
		transform: translateX(-50%);
	}
	.footer-soc {
		order: 1;
		margin-bottom: 16px !important;
	}
	.copyright {
		text-align: center;
		order: 2;
		margin-bottom: 4px;
	}
	.developer {
		order: 3;
		margin-bottom: 0;
	}

	.page-body.section-sm {
		padding-top: var(--gap);
	}
	.page-body-sidebar {
		display: none;
	}
	.page-body-main {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.page-title {
		font-size: var(--h1-size);
	}
	body.post-type-archive-product .page-title,
	body.single-product .page-title,
	body.single-post .page-title,
	body.tax-product_cat .page-title,
	body.error404 .page-title {
		font-size: var(--h4-size);
	}
	.breadcrumbs-sep {
		height: 9px;
	}
	.post-86 .infoContent-items {
		gap: var(--gap);
	}
	.post-86 .infoContent-item__heading {
		margin-bottom: 0;
	}
	.infoContent-item__contentImage__info, .infoContent-item__contentImage__image {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.infoContent-item__contentImage__image span {
		position: relative;
	}
	.post-84 .infoContent-items:after,
	.post-86 .infoContent-items:after {
		display: none;
	}
	.infoContent-item__content__content iframe {
		height: calc(var(--container) / 1.65);
	}
	.category-item a {
		padding: 8px;
	}
	.category-item__image {
		flex: 0 0 calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.25);
		max-height: calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.25);
	}
	.category-item__image img {
		max-height: calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 1.25);
	}
	.page-body-main .products-items {
		margin-bottom: 0;
	}
	.advantages_2-section.section-sm {
		padding-top: 40px;
	}
	.advantages_2-section:before {
		content: '';
		position: absolute;
		width: 100vw;
		height: 100%;
		background: var(--white-2);
		top: 0;
		left: calc((100vw - var(--container)) / -2);
		z-index: -1;
	}
	.advantages_2-items {
		margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
	}
	.advantages_2-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
		margin: 0 0 var(--gap);
		padding: 0 calc(var(--gap) / 2);
	}
	.advantages_2-item__icon {
		margin-bottom: 6px;
	}
	.advantages_2-item__text {
		font-weight: 500;
	}
	.archiveShopInfoContent-section.section-sm {
		padding-top: var(--gap);
		gap: calc(var(--gap) * 2);
	}
	body.post-type-archive-product .page-body:before {
		display: none;
	}
	.infoContent-item__capacity__image {
		height: 510px;
	}
	.infoContent-item__contentBlocks50-content {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-contentItems {
		margin-top: var(--gap);
		gap: var(--gap);
	}
	.singleProduct-contentItemFiles__item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-contentItemCheckList-items {
		gap: calc(var(--gap) / 2);
	}
	.singleProduct-contentItemCheckList-items.columns-2 li {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-contentItemCheckList-items li:before {
		top: calc(50% - 3px);
	}

	.certificates-item__wrap {
		padding: 8px;
	}
	.certificates-item__image {
		height: calc(((var(--container) - var(--gap) * 2) / 3 - 16px) / 0.6742);
		margin-bottom: 10px;
	}
	.pContactsMain {
		gap: calc(var(--gap) * 2);
		margin-bottom: calc(var(--gap) * 2);
	}
	.pContactsMain-left,
	.pContactsMain-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pContactsMain-map {
		height: calc(var(--container) / 1.35);
		min-height: 250px;
	}
	.pContactsInfo {
		margin-bottom: calc(var(--gap) * 2);
		max-width: 100%;
	}
	.pContactsFeedback {
		max-width: 100%;
	}
	.archiveNews-elements {
		display: none;
	}
}


@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.alignleft,
	.aligncenter,
	.alignright {
		float: none;
		display: block;
	}
	.products-item__image {
		flex: 0 0 calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.05);
		max-height: calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.05);
	}
	.products-item__image img {
		max-height: calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.05);
	}
	.cta-block:after {
		width: 252px;
		height: 264px;
		position: relative;
		margin-bottom: -80px;
		top: auto;
		right: auto;
		display: block;
		transform: rotate(61deg);
		margin-left: auto;
		margin-right: -50px;
		margin-top: 24px;
	}
	.singleNews-image {
		float: none;
		max-width: 100%;
		margin: 0 0 var(--gap);
	}
	.products-items.columns-3 .products-item, .products-items.columns-3 .category-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.category-item__image {
		flex: 0 0 calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.25);
		max-height: calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.25);
	}
	.category-item__image img {
		max-height: calc(((var(--container) - var(--gap)) / 2 - 16px) / 1.25);
	}
	.singleProduct-image,
	.singleProduct-summary {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-summary {
		flex-direction: column;
		gap: 0;
	}
	.no-content > .singleProduct-summary .share-soc:before {
		display: none;
	}
	.share-soc {
		margin-top: var(--gap);
	}
	.page-content img.alignleft, .page-content img.alignright, .page-content img.aligncenter {
		max-width: 100%;
	}
	.certificates-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.certificates-item__image {
		height: calc(((var(--container) - var(--gap)) / 2 - 16px) / 0.6742);
	}
	.pContactsFeedback-description {
		max-width: 100%;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-iconsOptionsInput {
		left: 0;
	}
	.singleProduct-iconsOptionsInput:before {
		left: calc(100% + var(--gap) / 2);
	}
	.singleProduct-iconsOptionsOutput {
		right: 0;
	}
	.singleProduct-iconsOptionsOutput:before {
		right: calc(100% + var(--gap) / 2);
	}
	.heroSlider-item__description br {
		display: none;
	}
}


@media (max-width: 575px) {
	:root {
		--container: calc(100vw - var(--gap) * 2);
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.btn.btn-link {
		font-size: 10px;
	}
	.advantages-item,
	.advantages_2-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.news-item__wrap {
		flex-wrap: wrap;
		min-height: auto;
		gap: 8px;
	}
	.news-item__image {
		flex: 0 0 100%;
		max-width: 100%;
		height: calc(var(--container) / 1.94);
	}
	.news-item__date {
		margin-bottom: 4px;
	}
	.news-item__title {
		margin-bottom: 8px;
	}
	.news-item__excerpt {
		display: none !important;
	}
	.partners-item__wrap {
		height: 70px;
		padding: 10px;
	}
	.partners-item__wrap img {
		max-height: 50px;
	}
	.heroSlider-item__button .btn,
	.cta-button .btn,
	.singleProduct-button .btn {
		width: 100%;
	}
	.modal-dialog {
		max-width: var(--container);
	}
	.map {
		height: 480px;
	}
	.mapPopup-wrap {
		width: 180px;
	}
}