/*!
Theme Name: Sovora
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
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: sovora
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.

Sovora 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=Merriweather:ital,wght@0,700;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');


:root {
	--container: 1440px;
	--gap: 40px;

	--text-size: 22px;
	--text-size-sm: 14px;
	--text-size-md: 16px;
	--text-size-lg: 18px;
	--text-size-xl: 20px;
	--h1-size: 45px;
	--h2-size: 40px;
	--h3-size: 36px;
	--h4-size: 32px;
	--h5-size: 28px;
	--h6-size: 26px;

	--black: #323232;
	--white: #FFFFFF;
	--green: #1D687E;
	--grey-light: #ECECEC;
	--grey-dark: #444444;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	color: var(--black);
	background: var(--white);
	line-height: 1.72;
}
body.woocommerce-cart,
body.woocommerce-checkout {
	background-image: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
	opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
	-webkit-transition: opacity .5s linear 0.2s;
	-moz-transition: opacity .5s linear 0.2s;
	transition: opacity .5s linear 0.2s;
	opacity: 1;
}
a {
	color: var(--black);
	text-decoration: none;
	transition: .25s;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Merriweather', serif;
	margin: 0 0 20px;
	font-weight: 700;
	line-height: 1.21;
}
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 {
	margin: 0 0 20px;
}
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 {
	margin-bottom: 0;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -9px -28px;
}
.form-field {
	position: relative;
	margin-bottom: 28px;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 9px;
}
.form-field-3 {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.form-field > label {
	position: relative;
	font-size: var(--text-size-lg);
	margin-bottom: 8px;
	line-height: 1.5;
	font-weight: 400;
	display: block;
	color: var(--white);
}
.form-field-btn .btn {
	min-width: 160px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
	width: 100%;
	height: 30px;
	outline: none;
	background: none;
	border: none;
	border-bottom: 1px solid var(--white);
	font-size: var(--text-size-sm);
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: var(--white);
	padding: 0 0 8px;
	line-height: 1.5;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
select option {
	color: var(--black);
	background: var(--white);
}
/*select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
	background: var(--white) url(images/arrow-down.svg) no-repeat calc(100% - 20px) 50%;
	background-size: 13px;
	cursor: pointer;
}*/
::-webkit-input-placeholder {
	color: rgba(255,255,255,.5);
}
::-moz-placeholder {
	color: rgba(255,255,255,.5);
}
:-ms-input-placeholder {
	color: rgba(255,255,255,.5);
}
:-moz-placeholder {
	color: rgba(255,255,255,.5);
}
.wpcf7-list-item {
	margin: 0;
}
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid var(--white);
	width: 28px;
	height: 28px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	outline: 0;
	padding: 0;
	margin: -2px 14px 0 0;
	position: relative;
	vertical-align: middle;
}
input[type="checkbox"]:checked:after {
	content: "";
	width: 7px;
	height: 16px;
	border-bottom: 2px solid var(--white);
	border-right: 2px solid var(--white);
	display: block;
	position: absolute;
	top: 3px;
	left: 9px;
	transform: rotate(45deg);
}
.form-field-policy {
	line-height: 1.4;
	font-size: var(--text-size-md);
}
.form-field-policy a {
	color: var(--white);
	text-decoration: underline;
}
.wpcf7-form-control-wrap {
	display: flex;
	flex-wrap: wrap;
}
.wpcf7-form-control-wrap > * {
	flex: 0 0 100%;
	max-width: 100%;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	font-size: var(--text-size-sm);
	font-weight: 400;
}
.wpcf7 form .wpcf7-response-output {
	margin: 0 0 var(--gap);
	text-align: center;
	font-size: var(--text-size-md);
	font-weight: 400;
}

.container {
	position: relative;
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}

.section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 3;
}
.section-xl {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	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;
}

.bg-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.heading {
	position: relative;
	margin-bottom: 60px;
}
.heading.center {
	text-align: center;
}
.heading h1,
.heading h2 {
	position: relative;
	font-size: var(--h1-size);
	z-index: 1;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	outline: none;
	padding: 19px 30px;
	border: 1px solid transparent;
	background-color: transparent;
	line-height: 1.5;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: .25s;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
	transition: .25s;
}
.btn-icon-left:before {
	margin-right: 30px;
}
.btn-icon-right:after {
	margin-left: 30px;
}
.btn-primary {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-primary:before,
.btn-primary:after {
	background-color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--green);
}
.btn-secondary:hover {
	background-color: var(--green);
	border-color: var(--white);
	color: var(--white);
}
.btn-secondary:before,
.btn-secondary:after {
	background-color: var(--green);
}
.btn-secondary:hover:before,
.btn-secondary:hover:after {
	background-color: var(--white);
}
.btn-outline-primary {
	background-color: transparent;
	border-color: var(--green);
	color: var(--green);
}
.btn-outline-primary:hover {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.btn-outline-primary:before,
.btn-outline-primary:after {
	background-color: var(--green);
}
.btn-outline-primary:hover:before,
.btn-outline-primary:hover:after {
	background-color: var(--white);
}
.btn-link {
	padding: 5px 20px;
	font-weight: 500;
	text-decoration: underline;
	color: var(--white);
	text-underline-offset: 7px;
}
.btn-link:hover {
	opacity: .8;
}
.btn-icon-arrowRight:before,
.btn-icon-arrowRight:after {
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}



.owl-nav {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 2;
}
.owl-nav.disabled {
	display: none;
}
.owl-nav button {
	position: absolute;
	width: 79px;
	height: 79px;
	background: var(--green) !important;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .25s;
}
.owl-nav button.owl-prev {
	left: 0;
	transform: rotate(-180deg);
}
.owl-nav button.owl-next {
	right: 0;
}
.owl-nav button:hover {
	background: var(--black) !important;
}
.owl-nav button:before {
	content: '';
	-webkit-mask-image: url(images/arrow-right-long.svg);
	mask-image: url(images/arrow-right-long.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	flex: 0 0 68px;
	max-width: 68px;
	width: 68px;
	height: 23px;
	margin-left: -22px;
	transition: .25s;
}
.owl-nav button.disabled {
	background: var(--green) !important;
	opacity: .45;
}
.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
}
.owl-dots.disabled {
	display: none;
}
.owl-dots button {
	background: var(--white) !important;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	margin-right: 13px;
	padding: 0;
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	outline: none;
	box-shadow: none;
	transition: .25s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:before {
	content: '';
	flex: 0 0 7px;
	max-width: 7px;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	background: var(--green);
	opacity: 0;
	transition: .25s;
}
.owl-dots button.active:before,
.owl-dots button:hover:before {
	opacity: 1;
}



.soc-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.soc-links li {
	margin-right: 10px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.soc-links li a:hover {
	opacity: .8;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}



.wrapper {
	position: relative;
	z-index: 1;
}
.header {
	position: sticky;
	top: 0;
	background: var(--white);
	padding: 20px 0;
	z-index: 99;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	flex: auto;
	max-width: 100%;
}
.header-logo img {
	width: 100%;
	max-width: 230px;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu li {
	position: relative;
	margin-right: 80px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li:after {
	content: '';
	background: #EBEBEB;
	position: absolute;
	width: 1px;
	height: 17px;
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	z-index: 1;
}
.main-menu li:last-child:after {
	display: none;
}
.main-menu li a {
	color: var(--grey-dark);
	font-size: var(--text-size-lg);
	font-weight: 400;
}
.main-menu li a:hover,
.main-menu li.current-menu-item a {
	color: var(--green);
}
.menu-lang {
	margin: 0 80px 0 0;
	padding: 0;
	list-style: none;
}
.header-lang {
	margin: 0 30px 0 0;
}
.menu-lang > li {
	position: relative;
}
.menu-lang > li > a {
	position: relative;
	padding: 4px 24px 4px 11px;
	background: var(--grey-light);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	font-size: var(--text-size-lg);
	font-weight: 400;
	display: block;
	z-index: 1;
}
.menu-lang > li > a:after {
	content: '';
	position: absolute;
	top: calc(50% - 3.5px);
	right: 9px;
	width: 9px;
	height: 9px;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	transition: .25s;
}
.menu-lang > li.active > a:after {
	transform: rotate(180deg);
}
.menu-lang ul {
	display: none;
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	overflow: hidden;
	z-index: 9;
}
.menu-lang ul li a {
	position: relative;
	padding: 4px 24px 4px 11px;
	border-top: none;
	background: var(--grey-light);
	font-size: var(--text-size-lg);
	font-weight: 400;
	display: block;
	z-index: 1;
}
.menu-lang ul li a:hover {
	color: var(--green);
}

.header-toggle {
	display: none;
	align-items: center;
	justify-content: flex-end;
}
.header-toggle button {
	flex: 0 0 46px;
	max-width: 46px;
	width: 46px;
	height: 46px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--green);
	border: none;
	padding: 0;
	outline: none !important;
	cursor: pointer;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--black);
}
.header-toggle button:before {
	content: '';
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	flex: 0 0 22px;
	max-width: 22px;
	width: 22px;
	height: 22px;
}


.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
  transition: .25s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .25s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
  position: relative;
  background: var(--white);
  border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
  height: 100%;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  transform: translateX(100%);
  padding: 70px 20px 20px;
  transition: .25s;
  overflow: auto;
  z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-mask-image: url(images/cancel.svg);
  mask-image: url(images/cancel.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--black);
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  outline: none !important;
  transition: .25s;
}
.modal-mobile-close:hover {
	background-color: var(--green);
}




.slider-section {
	overflow: hidden;
	height: 874px;
}
.slider-item {
	position: relative;
	background: #10303D;
	color: var(--white);
	z-index: 1;
}
.slider-item__wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 874px;
	padding: 130px 0;
	overflow: hidden;
	z-index: 1;
}
.slider-item__info {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	padding-left: calc((100% - var(--container)) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.slider-item__info h1 {
	font-size: calc(var(--h1-size) * 1.555);
}
.slider-item__info p {
	max-width: 620px;
	margin-bottom: 48px;
}
.slider-item__image {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	z-index: 1;
}
.slider-item__image:before {
	content: '';
	background: url(images/slide-bg.svg) no-repeat left center;
	background-size: contain;
	position: absolute;
	width: 1334px;
	height: 1191px;
	left: -216px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.slider-item__image span {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.slider-item__image img {
	max-width: inherit;
	width: auto !important;
	transform: translate(-100%, -150%);
	transition: transform 2s ease;
}
.slider-item__button {
	display: flex;
	align-items: center;
	gap: 45px;
}
.slider-item__button .btn-primary {
	min-width: 196px;
}
.slider-section .owl-dots {
	position: absolute;
	bottom: 100px;
	left: calc((100% - var(--container)) / 2);
	z-index: 9;
}




.catalog-section {
	position: relative;
	background: var(--grey-light);
	padding: 120px 0 180px;
	overflow: hidden;
	z-index: 1;
}
.catalog-section:before {
	content: '';
	background: url(images/bg.svg) repeat-y top center;
	background-size: 90%;
	position: absolute;
	top: -100px;
	left: calc((100% - var(--container)) / 2);
	width: 2153px;
	height: calc(100% + 100px);
	z-index: -1;
}
.catalog-item {
	margin-bottom: 60px;
}
.catalog-item:last-child {
	margin-bottom: 0;
}
.catalogCategory {
	overflow: hidden;
}
.catalogCategory-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}
.catalog-item:nth-child(2n) .catalogCategory-wrap {
	flex-direction: row-reverse;
}
.catalogCategory-wrap:before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: var(--white);
	filter: blur(70px);
	left: calc(-428px + 44px);
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.catalog-item:nth-child(2n) .catalogCategory-wrap:before {
	left: auto;
	right: calc(-454px + 44px);
}
.catalogCategory-left,
.catalogCategory-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.catalogCategory-title {
	font-size: var(--h1-size);
	margin-bottom: 20px;
}
.catalogCategory-title-mobile {
	display: none;
}
.catalogCategory-text {
	max-width: 420px;
	font-weight: 500;
}
.catalogCategory-button {
	position: relative;
	margin-top: 48px;
}
.catalogCategory-button a {
	min-width: 304px;
}
.catalogCategory-image {
	position: relative;
	min-height: 600px;
	z-index: 1;
}
.catalogCategory-image:before {
	content: '';
	background: var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	position: absolute;
	width: 454px;
	height: 454px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.catalogCategory-image span {
	position: absolute;
	bottom: 30px;
	/*left: 50%;
	transform: translateX(-50%);*/
	left: 0;
	z-index: 1;
}
.catalog-item:nth-child(2n) .catalogCategory-image span {
	right: 0;
	left: auto;
}
.catalogCategory-image img {
	max-width: calc(100% + 60px);
	width: auto !important;
	max-height: 570px;
}
.catalog-item:nth-child(2n) .catalogCategory-image img {
	position: relative;
	right: 60px;
}
.catalog-item .owl-nav {
	max-width: 788px;
	right: calc((100% - var(--container)) / 2 - 40px);
	bottom: 188px;
	top: inherit !important;
}



.advantages-section {
	background: #10303D;
	color: var(--white);
	overflow: hidden;
}
.advantages-section:before {
	content: '';
	background: url(images/logo-element.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 1373px;
	height: 1041px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	opacity: .07;
	z-index: -1;
}
.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -40px;
}
.advantages-item {
	position: relative;
	padding: 0 15px;
	margin: 0 0 40px;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.advantages-item__wrap {
	position: relative;
	text-align: center;
	padding: 20px 0;
}
.advantages-item__wrap:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: var(--white);
	right: -15px;
	top: 0;
	opacity: .4;
	z-index: -1;
}
.advantages-item:nth-child(3n) .advantages-item__wrap:after,
.advantages-item:last-child .advantages-item__wrap:after {
	display: none;
}
.advantages-item__image {
	position: relative;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.advantages-item__image img {
	max-height: 66px;
}
.advantages-item__title {
	font-size: var(--h6-size);
	font-weight: 600;
	margin-bottom: 1px;
}
.advantages-item__text {
	font-size: var(--text-size-lg);
	font-weight: 400;
}



.map-section {
	background: linear-gradient(0deg, rgba(148, 209, 214, 0.28) 0%, rgba(148, 209, 214, 0.00) 72.75%);
	padding-bottom: 40px;
}
.map-section .heading {
	margin-bottom: 100px;
}
.map-image-1 {
	max-width: 800px;
}
.map-image-2 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc((100% - var(--container)) / 2 + (var(--container) - 800px));
	height: 758px;
	z-index: -1;
}
.map-image-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}




.brands-section {
	background: #10303D;
	color: var(--white);
}
.brands-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -40px;
}
.brands-item {
	position: relative;
	padding: 0 20px;
	margin: 0 0 40px;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.brands-item__image {
	position: relative;
	background: var(--white);
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 170px;
	padding: 20px;
}
.brands-item__image img {
	max-height: 130px;
}



.feedback-wrap {
	position: relative;
	background: var(--green);
	color: var(--white);
	padding: 36px 46px;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	z-index: 1;
}


.footer {
	position: relative;
	padding: 45px 0;
	background: #10303D;
	color: var(--white);
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 -15px;
}
.footer-widget {
	padding: 0 15px;
}
.footer-widget-title {
	font-size: var(--text-size-lg);
	font-weight: 600;
	margin-bottom: 10px;
}
.footer-menu {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-width: 420px;
	margin-bottom: -15px;
	padding: 0;
	list-style: none;
}
.footer-menu li {
	position: relative;
	margin-bottom: 15px;
	margin-right: 0;
}
.footer-menu li:last-child {
	margin-right: 0;
}
.footer-menu li a {
	font-size: var(--text-size-md);
	font-weight: 400;
	color: var(--white);
}
.footer-menu li a:hover {
	opacity: .8;
}
.footer-soc {
	margin-top: 35px;
}
.contacts-info {
	position: relative;
}
.contacts-info p {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: var(--text-size-md);
	font-weight: 400;
}
.contacts-info p:last-child {
	margin-bottom: 0;
}
.contacts-info p:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #CDCDCD;
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin-right: 8px;
}
.contacts-info p.phone:before {
	-webkit-mask-image: url(images/call.svg);
	mask-image: url(images/call.svg);
}
.contacts-info p.e-mail:before {
	-webkit-mask-image: url(images/email.svg);
	mask-image: url(images/email.svg);
}
.contacts-info p a {
	color: var(--white);
}
.contacts-info p a:hover {
	opacity: .8;
}


.page-blockBG {
	position: relative;
	background: var(--grey-light);
	overflow: hidden;
	z-index: 1;
}
.page-blockBG:before {
	content: '';
	background: url(images/bg.svg) repeat-y top center;
	background-size: 90%;
	position: absolute;
	top: -200px;
	left: calc((100% - var(--container)) / 2);
	width: 2153px;
	height: calc(100% + 200px);
	z-index: -1;
}


.page-header {
	position: relative;
	padding: 30px 0 60px;
	z-index: 1;
}
.archive .page-header,
.single-post .page-header {
	padding-bottom: 30px;
}
.page-blockBG .page-header:before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background: var(--white);
	filter: blur(70px);
	left: 50%;
	top: -320px;
	transform: translateX(-50%);
	z-index: -1;
}
.aioseo-breadcrumbs {
	position: relative;
	margin-bottom: 60px;
	font-size: var(--text-size-sm);
}
.aioseo-breadcrumbs a {
	text-decoration: underline;
}
.aioseo-breadcrumbs a:hover {
	text-decoration: none;
}
.aioseo-breadcrumbs:last-child {
	margin-bottom: 0;
}
.page-title {
	text-align: center;
}






.catalogTabs-nav {
	position: relative;
	margin: 0 auto 24px;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: max-content;
	max-width: 100%;
	background: var(--white);
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	overflow: hidden;
	z-index: 1;
}
.catalogTabs-nav li {
	position: relative;
}
.catalogTabs-nav.first li {
	max-width: calc(100% / 3);
}
.catalogTabs-nav li:last-child {
	margin-right: 0;
}
.catalogTabs-nav li a {
	font-family: 'Merriweather', serif;
	font-size: var(--text-size-xl);
	padding: 18px 57px;
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	color: #000000;
	display: block;
}
.catalogTabs-nav.second li a {
	padding: 20px 15px;
	font-size: var(--text-size-lg);
	color: rgba(0,0,0,.52);
}
.catalogTabs-nav.second.active li a {
	color: #000000;
}
.catalogTabs-nav li.active a,
.catalogTabs-nav li a:hover {
	background: var(--green);
	color: var(--white) !important;
}


.catalogTabs-tabs {
	position: relative;
}
.catalogTabs-tab {
	position: relative;
	display: none;
}
.catalogTabs-tab.active {
	display: block;
}

.catalogTabs-blocks {
	position: relative;
	padding-top: 60px;
}
.catalogTabs-block {
	position: relative;
	margin-bottom: 100px;
}
.catalogTabs-block:last-child {
	margin-bottom: 0;
}


.catalogTabs-items {
	position: relative;
}
.catalogTabs-item {
	position: relative;
}
.catalogTabs-item__wrap {
	display: block;
	position: relative;
	z-index: 1;
}
.catalogTabs-item__image {
	position: relative;
	height: 330px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 30px 30px 0;
	margin: 0 auto 40px;
	z-index: 1;
}
.catalogTabs-item__image img {
	width: auto !important;
	max-height: 300px;
}
.catalogTabs-item__image img.second,
.catalogTabs-item__image img.third {
	position: absolute;
	z-index: -1;
	opacity: 0;
	transition: 1s;
}
.catalogTabs-item__wrap:hover .catalogTabs-item__image img.second {
	transform: translate(30px, -30px);
	opacity: 1;
}
.catalogTabs-item__wrap:hover .catalogTabs-item__image img.third {
	transform: translate(-30px, 30px);
	opacity: 1;
}
.catalogTabs-item__image:after {
	content: '';
	background: var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	position: absolute;
	width: 265px;
	height: 265px;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -2;
}
.catalogTabs-item__title {
	color: #000000;
	text-align: center;
	font-size: var(--h4-size);
}
.catalogTabs-item__wrap:hover .catalogTabs-item__title {
	color: var(--green);
}
.owl-catalogTabs .owl-nav {
	width: calc(100% + 158px);
	left: -79px;
	top: 170px;
}


.page-title-group {
	position: relative;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 70px;
	z-index: 1;
}
.page-title-group h1,
.page-title-group h2 {
	display: inline-block;
	font-size: var(--h3-size);
	background: var(--white);
	border-radius: 13px;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	padding: 14px 36px;
	min-width: 300px;
	z-index: 1;
}


.products-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -40px;
}
.products-items.owl-carousel {
	margin: 0;
}
.products-item {
	position: relative;
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin: 0 0 40px;
	padding: 0 15px;
	z-index: 1;
}
.products-items.owl-carousel .products-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.products-item__wrap {
	position: relative;
	display: block;
}
.products-item__image {
	position: relative;
	height: 355px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 16px;
	z-index: 1;
}
.products-items.owl-carousel .products-item__image {
	height: 300px;
}
.products-item__image img {
	width: auto !important;
	max-height: 355px;
	transition: 1s;
}
.products-items.owl-carousel .products-item__image img {
	max-height: 300px;
}
.products-item__wrap:hover .products-item__image img {
	transform: scale(1.05);
}
.products-item__image:before {
	content: '';
	position: absolute;
	width: 296px;
	height: 296px;
	background: var(--white);
	top: 50%;
	left: 50%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.products-items.owl-carousel .products-item__image:before {
	width: 240px;
	height: 240px;
}
.products-item__title {
	font-size: var(--text-size-xl);
	font-weight: 700;
	line-height: 2;
	text-align: center;
	color: #000000;
	max-width: 260px;
	margin: 0 auto;
}
.products-item__wrap:hover .products-item__title {
	color: var(--green);
}
.products-items.owl-carousel .owl-nav {
	bottom: inherit;
	top: calc(300px / 5 + 40px);
}
.products-items.owl-carousel .owl-nav button.owl-prev {
	left: -80px;
}
.products-items.owl-carousel .owl-nav button.owl-next {
	right: -80px;
}
.products-items-button {
	text-align: center;
	position: relative;
	margin-top: 60px;
}
.products-items-button .btn {
	min-width: 294px;
}



.singleProduct-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.singleProduct-title {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 60px;
	font-size: var(--h2-size);
	line-height: 1.8;
	text-align: center;
}
.singleProduct-image {
	position: relative;
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
	text-align: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 550px;
	z-index: 1;
}
.singleProduct-image img {
	max-height: 720px;
}
.singleProduct-image:before {
	content: '';
	position: absolute;
	width: 550px;
	height: 550px;
	background: var(--white);
	bottom: 0;
	left: 50%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	transform: translate(-50%, 0);
	z-index: -1;
}
.singleProduct-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.singleProduct-content {
	position: relative;
	margin-bottom: 60px;
}
.singleProduct-content:last-child {
	margin-bottom: 0;
}
.singleProduct-button {
	position: relative;
}
.singleProduct-button .btn {
	min-width: 294px;
}




.pageAbout-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pageAbout-content {
	flex: 0 0 calc(53% - 20px);
	max-width: calc(53% - 20px);
	margin-bottom: 55px;
}
.pageAbout-images {
	flex: 0 0 calc(47% - 20px);
	max-width: calc(47% - 20px);
	margin-bottom: 55px;
}
.pageAbout-image {
	position: relative;
	text-align: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 580px;
	z-index: 1;
}
.pageAbout-image img {
	width: auto !important;
	max-height: 580px;
}
.pageAbout-image:before {
	content: '';
	position: absolute;
	width: 454px;
	height: 454px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	z-index: -1;
}
.pageAbout-video {
	flex: 0 0 100%;
	max-width: 100%;
}
.pageAbout-video video {
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	width: 100%;
}
.owl-aboutImages .owl-nav {
	position: relative;
	bottom: 0;
	margin-top: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.owl-aboutImages .owl-nav button {
	position: relative;
	margin-right: 86px;
}
.owl-aboutImages .owl-nav button:last-child {
	margin-right: 0;
}



.brandsBlock-items {
	position: relative;
}
.brandsBlock-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 120px;
}
.brandsBlock-item:nth-child(2n) {
	flex-direction: row-reverse;
}
.brandsBlock-item:last-child {
	margin-bottom: 0;
}
.brandsBlock-item__image {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
	text-align: center;
}
.brandsBlock-item__info {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.brandsBlock-item__title {
	position: relative;
	margin-bottom: 24px;
	font-size: var(--h1-size);
}
.brandsBlock-item__text {
	position: relative;
	margin-bottom: 40px;
	max-width: 420px;
}
.brandsBlock-item__text:last-child {
	margin-bottom: 0;
}
.brandsBlock-item__button {
	position: relative;

}
.brandsBlock-item__button .btn {
	min-width: 304px;
}



.error-404-number {
	font-size: calc(var(--h1-size) * 7.5);
	color: var(--green);
	line-height: 1;
	text-align: center;
	font-weight: 700;
}




@media (max-width: 1599px) {
	:root {
		--container: 1240px;
		--gap: 40px;

		--text-size: 20px;
		--text-size-sm: 14px;
		--text-size-md: 15px;
		--text-size-lg: 16px;
		--text-size-xl: 18px;
		--h1-size: 40px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 26px;
		--h6-size: 22px;
	}
	.section-xl {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.btn {
		font-size: 20px;
	}
	.heading {
		margin-bottom: 40px;
	}
	.owl-nav button {
		width: 64px;
		height: 64px;
	}
	.owl-nav button:before {
		flex: 0 0 52px;
		max-width: 52px;
		width: 52px;
		height: 20px;
		margin-left: -12px;
	}
	.slider-section,
	.slider-item__wrap {
		height: 780px;
	}
	.slider-item__image img {
		max-width: 900px;
	}
	.slider-item__image:before {
		height: 1000px;
		left: -180px;
	}
	.catalogCategory-button a,
	.brandsBlock-item__button .btn,
	.singleProduct-button .btn,
	.products-items-button .btn {
    	min-width: 240px;
	}
	.catalogCategory-image {
		min-height: 500px;
	}
	.catalogCategory-image img,
	.pageAbout-image img {
		max-height: 480px;
	}
	.catalogCategory-image:before,
	.pageAbout-image:before {
		width: 400px;
		height: 400px;
	}
	.catalog-item .owl-nav {
    	max-width: 600px;
		right: calc((100% - var(--container)) / 2);
		bottom: 130px;
	}
	.advantages-section:before {
		height: 940px;
	}
	.map-section .heading {
    	margin-bottom: 60px;
	}
	.pageAbout-image {
		height: 500px;
	}
	.page-header {
		padding-bottom: 40px;
	}
	.aioseo-breadcrumbs {
		margin-bottom: 40px;
	}
	.brandsBlock-item {
		margin-bottom: 80px;
	}
	.brandsBlock-item__title {
		font-size: var(--h2-size);
		margin-bottom: 20px;
	}
	.brandsBlock-item__text {
		margin-bottom: 30px;
	}
	.products-item__image {
		height: 300px;
	}
	.products-item__image img {
		max-height: 300px;
	}
	.products-item__image:before {
		width: 260px;
		height: 260px;
	}
	.singleProduct-image {
		min-height: 460px;
	}
	.singleProduct-image:before {
		width: 460px;
		height: 460px;
	}
	.singleProduct-image img {
		max-height: 640px;
	}
	.singleProduct-content {
		margin-bottom: 40px;
	}
	.products-items.owl-carousel .owl-nav {
		top: calc(410px / 5 + 32px);
	}
	.products-items.owl-carousel .owl-nav button.owl-prev {
		left: -64px;
	}
	.products-items.owl-carousel .owl-nav button.owl-next {
		right: -64px;
	}
	.owl-catalogTabs .owl-nav {
    	width: calc(100% + 128px);
    	left: -64px;
    	top: 180px;
	}
	.owl-aboutImages .owl-nav button {
		margin-right: 60px;
	}
}


@media (max-width: 1399px) {
	:root {
		--container: 1040px;
		--gap: 30px;

		--text-size: 18px;
		--text-size-sm: 14px;
		--text-size-md: 15px;
		--text-size-lg: 15px;
		--text-size-xl: 16px;
		--h1-size: 34px;
		--h2-size: 30px;
		--h3-size: 26px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.btn {
		font-size: 18px;
	}
	.btn-icon-left:before {
		margin-right: 20px;
	}
	.btn-icon-right:after {
		margin-left: 20px;
	}
	.slider-section, .slider-item__wrap {
    	height: 680px;
	}
	.slider-item__image img {
		max-width: 800px;
	}
	.slider-item__image:before {
		height: 900px;
		left: -140px;
	}
	.slider-section .owl-dots {
		bottom: 40px;
	}
	.catalogCategory-button a,
	.brandsBlock-item__button .btn,
	.singleProduct-button .btn,
	.products-items-button .btn {
    	min-width: 210px;
	}
	.catalogCategory-image {
		min-height: 460px;
	}
	.pageAbout-image {
		height: 460px;
	}
	.catalogCategory-image img,
	.pageAbout-image img {
		max-height: 440px;
	}
	.catalogCategory-image span {
		bottom: 20px;
	}
	.catalogCategory-image:before,
	.pageAbout-image:before {
		width: 360px;
		height: 360px;
	}
	.catalog-item .owl-nav {
    	max-width: 505px;
		bottom: 120px;
	}
	.advantages-section:before {
		height: 800px;
		top: -60px;
	}
	.map-image-1 {
		max-width: 600px;
	}
	.map-image-2 {
		width: calc((100% - var(--container)) / 2 + (var(--container) - 620px));
    	height: 600px;
	}
	.brands-item__image {
		height: 140px;
	}
	.brands-item__image img {
    	max-height: 100px;
	}
	.footer-menu {
		flex-direction: column;
		min-width: auto;
	}
	.footer-menu li {
		margin-bottom: 3px;
	}
	.catalogTabs-blocks {
		padding-top: 40px;
	}
	.catalogTabs-item__image {
		height: 280px;
		padding: 20px 20px 0;
		margin-bottom: 30px;
	}
	.products-item__image,
	.products-items.owl-carousel .products-item__image {
		height: 260px;
	}
	.catalogTabs-item__image img,
	.products-item__image img,
	.products-items.owl-carousel .products-item__image img {
		max-height: 260px;
	}
	.catalogTabs-item__image:after,
	.products-item__image:before,
	.products-items.owl-carousel .products-item__image:before {
		width: 220px;
		height: 220px;
	}
	.catalogTabs-item__wrap:hover .catalogTabs-item__image img.second {
		transform: translate(20px, -20px);
	}
	.catalogTabs-item__wrap:hover .catalogTabs-item__image img.third {
		transform: translate(-20px, 20px);
	}
	.singleProduct-image {
		min-height: 400px;
	}
	.singleProduct-image:before {
		width: 400px;
		height: 400px;
	}
	.singleProduct-image img {
		max-height: 520px;
	}
	.products-items.owl-carousel .owl-nav {
    	top: calc(330px / 5 + 32px);
	}
	.products-items.owl-carousel .owl-nav button.owl-prev {
		left: -68px;
	}
	.products-items.owl-carousel .owl-nav button.owl-next {
		right: -68px;
	}
	.owl-aboutImages .owl-nav button {
		margin-right: 40px;
	}
	.products-items-button {
		margin-top: 40px;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 900px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 15px;
		--text-size-lg: 15px;
		--text-size-xl: 16px;
		--h1-size: 30px;
		--h2-size: 26px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	input[type="checkbox"] {
		width: 20px;
		height: 20px;
		margin-right: 10px;
	}
	input[type="checkbox"]:checked:after {
		width: 6px;
		height: 12px;
		top: 2px;
		left: 6px;
	}
	.btn {
    	font-size: 16px;
    	padding: 15px 26px;
	}
	.btn-link {
		padding: 5px 18px;
	}
	.header {
		padding: 15px 0;
	}
	.header-logo img,
	.footer-logo img {
		max-width: 180px;
	}
	.menu-lang {
		margin-right: 60px;
	}
	.main-menu li {
		margin-right: 50px;
	}
	.main-menu li:after {
		right: -25px;
	}
	.slider-item__button .btn-primary {
    	min-width: 160px;
	}
	.slider-section, .slider-item__wrap {
    	height: 600px;
	}
	.slider-item__info h1 {
    	font-size: calc(var(--h1-size) * 1.2);
	}
	.slider-item__image img {
    	max-width: 640px;
	}
	.slider-item__image:before {
		height: 700px;
		left: -100px;
	}
	.slider-item__info p {
		margin-bottom: 32px;
	}
	.slider-item__button {
		gap: 30px;
	}
	.catalog-section {
		padding: 90px 0 100px;
	}
	.catalog-item {
		margin-bottom: 40px;
	}
	.catalogCategory-image {
		min-height: 400px;
	}
	.pageAbout-image {
		height: 400px;
	}
	.catalogCategory-image span {
		bottom: 0;
	}
	.catalogCategory-image img,
	.pageAbout-image img {
		max-height: 400px;
	}
	.catalogCategory-image img {
		max-width: calc(100% + 20px);
	}
	.catalog-item:nth-child(2n) .catalogCategory-image img {
		right: 20px;
	}
	.catalogCategory-image:before,
	.pageAbout-image:before {
		width: 280px;
		height: 280px;
	}
	.catalog-item .owl-nav {
    	max-width: 435px;
		bottom: 100px;
	}
	.advantages-section:before {
		height: 700px;
		top: -40px;
	}
	.map-image-1 {
		max-width: 520px;
	}
	.map-image-2 {
		width: calc((100% - var(--container)) / 2 + (var(--container) - 520px));
    	height: 540px;
	}
	.footer-soc {
    	margin-top: 15px;
	}
	.owl-aboutImages .owl-nav {
		margin-top: 20px;
	}
	.catalogCategory-button {
		margin-top: 32px;
	}
	.products-item__title {
		line-height: 1.8;
	}
	.page-title-group {
		margin-bottom: 40px;
	}
	.singleProduct-title {
		margin-bottom: 40px;
	}
	.singleProduct-image {
		min-height: 360px;
	}
	.singleProduct-image:before {
		width: 360px;
		height: 360px;
	}
	.singleProduct-image img {
		max-height: 400px;
	}
}


@media (max-width: 991px) {
	:root {
		--container: calc(100vw - 54px);
		--gap: 30px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 15px;
		--text-size-lg: 15px;
		--text-size-xl: 16px;
		--h1-size: 30px;
		--h2-size: 26px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section-xl {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.heading {
		margin-bottom: 30px;
	}
	.header {
		height: 76px;
	}
	.header .main-menu {
		display: none;
	}
	.menu-lang {
    	margin-right: 20px;
	}
	.header-toggle {
		display: flex;
	}
	.header-logo {
		margin-right: 20px;
	}
	.header-logo img, .footer-logo img {
    	max-width: 175px;
	}
	.slider-section, .slider-item__wrap {
		height: auto;
	}
	.slider-section {
		min-height: 520px;
	}
	.slider-item__wrap {
		padding: 20px 0 90px;
		flex-direction: column-reverse;
	}
	.slider-item__image {
		flex: auto;
		max-width: 100%;
		text-align: right;
		margin-bottom: 20px;
	}
	.slider-item__image span {
		position: relative;
		width: calc(100% + 40px);
		display: block;
		top: 0;
		transform: none;
	}
	.slider-item__image img {
		transform: none !important;
		max-width: 100%;
		max-height: 640px;
		display: inline-block !important;
	}
	.slider-item__info {
		padding: 0 20px;
		flex: auto;
		max-width: 100%;
	}
	.slider-item__image:before {
    	height: 640px;
    	left: 20%;
	}
	.catalogCategory-title-mobile {
		display: block;
	}
	.catalogCategory-title-desktop {
		display: none;
	}
	.catalogCategory-wrap,
	.catalog-item:nth-child(2n) .catalogCategory-wrap {
		flex-direction: column-reverse;
	}
	.catalogCategory-left, .catalogCategory-right {
    	flex: auto;
    	width: 100%;
    	max-width: 100%;
	}
	.catalogCategory-image {
		margin-bottom: 36px;
		text-align: center;
	}
	.catalogCategory-image span {
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}
	.catalog-item:nth-child(2n) .catalogCategory-image span {
		left: 50%;
		right: auto;
	}
	.catalogCategory-image img {
		display: inline-block !important;
		max-width: 100%;
	}
	.catalogCategory-text {
		max-width: 100%;
	}
	.catalogCategory-button {
		margin-top: 20px;
	}
	.catalog-item .owl-nav,
	.owl-catalogTabs .owl-nav,
	.products-items.owl-carousel .owl-nav {
		max-width: 100%;
		width: 100%;
		bottom: 0;
		position: relative;
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.catalog-item .owl-nav {
		right: 0;
	}
	.owl-catalogTabs .owl-nav,
	.products-items.owl-carousel .owl-nav {
		position: relative;
		left: 0;
		top: inherit;
	}
	.catalog-item .owl-nav button,
	.owl-catalogTabs .owl-nav button,
	.products-items.owl-carousel .owl-nav button {
		position: relative;
		margin-right: 60px;
		left: 0 !important;
		right: 0 !important;
	}
	.catalog-item .owl-nav button:last-child,
	.owl-catalogTabs .owl-nav button:last-child,
	.products-items.owl-carousel .owl-nav button:last-child {
		margin-right: 0;
	}
	.catalog-item {
    	margin-bottom: 60px;
	}
	.pageAbout-image {
		height: 340px;
	}
	.catalogCategory-image {
		min-height: 340px;
	}
	.catalogCategory-image img, .pageAbout-image img {
		max-height: 340px;
	}
	.catalog-section {
		padding: 80px 0;
	}
	.advantages-section:before {
    	height: 100%;
    	top: 0;
    	width: calc(100% - 60px);
    	background-position: center 100px;
	}
	.advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantages-item__wrap {
		padding: 0;
	}
	.advantages-item__wrap:after {
		display: none;
	}
	.map-section {
		padding-bottom: 0;
	}
	.map-image-1 {
    	max-width: 100%;
    	text-align: center;
    	margin-bottom: 40px;
	}
	.map-image-1 img,
	.map-image-2 img {
		max-height: 500px;
	}
	.map-image-2 {
    	width: 100%;
    	height: auto;
    	position: relative;
    	text-align: right;
	}
	.map-image-2 img {
		width: auto;
	}
	.brands-items {
		margin: 0;
	}
	.brands-item {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.brands-item:last-child {
		margin-bottom: 0;
	}
	.feedback-wrap {
		padding: 24px;
	}
	.form-field-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-btn {
		text-align: center;
	}
	.footer-wrap {
		flex-wrap: wrap;
		margin: 0;
		flex-direction: column;
		align-items: center;
	}
	.footer-widget {
		flex: auto;
		max-width: 100%;
		margin-bottom: 20px;
		padding: 0;
		text-align: center;
	}
	.footer-widget:nth-last-child(1) {
		order: 3;
	}
	.footer-widget:nth-last-child(2) {
		margin-bottom: 0;
		order: 4;
	}
	.footer-soc {
		margin-top: 0;
	}
	.brandsBlock-item {
    	margin-bottom: 60px;
    	flex-direction: column !important;
	}
	.brandsBlock-item__image {
		flex: auto;
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}
	.brandsBlock-item__image img {
		max-height: 120px;
	}
	.brandsBlock-item__info {
		flex: auto;
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
	.brandsBlock-item__text {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.pageAbout-content {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
		margin-bottom: 30px;
	}
	.pageAbout-images {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 45px;
	}
	.pageAbout-video {
		order: 3;
	}
	.catalogTabs-block {
		margin-bottom: 60px;
	}
	.products-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.singleProduct-title {
		margin-bottom: 30px;
	}
	.singleProduct-image {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}
	.singleProduct-info {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleProduct-content {
		margin-bottom: 20px;
	}
	.singleProduct-button {
		text-align: center;
	}
	.products-items-button {
		margin-top: 30px;
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 6);
	}	
	.main-menu {
		flex-direction: column;
	}
	.main-menu li {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.main-menu li:after {
		display: none;
	}
	.main-menu li a {
		font-size: var(--text-size-xl);
	}
}




@media (max-width: 767px) {
	:root {
		--container: calc(100vw - 54px);
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 14px;
		--text-size-md: 15px;
		--text-size-lg: 15px;
		--text-size-xl: 16px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.owl-nav button {
    	width: 46px;
    	height: 46px;
	}
	.owl-nav button:before {
    	flex: 0 0 40px;
    	max-width: 40px;
    	width: 40px;
    	height: 20px;
    	margin-left: -10px;
	}
	.slider-item__image img {
		max-height: 480px;
	}
	.slider-item__image:before {
		height: 480px;
	}
	.slider-item__button {
		justify-content: center;
		gap: 20px;
	}
	.slider-section .owl-dots {
		left: 0;
		width: 100%;
	}
	.pageAbout-image {
		height: 280px;
	}
	.catalogCategory-image {
    	min-height: 280px;
	}
	.catalogCategory-image:before, .pageAbout-image:before {
    	width: 190px;
    	height: 190px;
	}
	.catalogCategory-image img, .pageAbout-image img {
		max-height: 280px;
	}
	.catalog-item .owl-nav button, .owl-catalogTabs .owl-nav button, .products-items.owl-carousel .owl-nav button {
		margin-right: 40px;
	}
	.catalogCategory-image {
		margin-bottom: 24px;
	}
	.map-image-1 img, .map-image-2 img {
    	max-height: 400px;
	}
	.brands-item__image {
    	height: 120px;
    	padding: 15px;
	}
	.brands-item__image img {
    	max-height: 90px;
	}
	.advantages-item__title {
		font-size: var(--h4-size);
	}


	.catalogTabs-item__image {
		height: 220px;
	}
	.products-item__image,
	.products-items.owl-carousel .products-item__image {
		height: 200px;
	}
	.catalogTabs-item__image img,
	.products-item__image img,
	.products-items.owl-carousel .products-item__image img {
		max-height: 200px;
	}
	.catalogTabs-item__image:after,
	.products-item__image:before,
	.products-items.owl-carousel .products-item__image:before {
		width: 180px;
		height: 180px;
	}
	.catalogTabs-item__title {
		font-size: var(--h6-size);
	}

	.singleProduct-image {
		min-height: 320px;
	}
	.singleProduct-image:before {
		width: 320px;
		height: 320px;
	}
	.singleProduct-image img {
		max-height: 420px;
	}
	.catalogTabs-nav {
		margin-bottom: 16px;
	}
	.page-title-group {
		margin-top: 32px;
		margin-bottom: 32px;
	}
	.catalogTabs-nav.second li a {
		padding: 14px 15px;
		font-size: var(--text-size-xl);
	}
	.products-item__title {
		font-size: var(--text-size-md);
	}
}


@media (max-width: 575px) {
	.heading {
		margin-bottom: 20px;
	}
	.slider-item__image img {
    	max-height: 420px;
	}
	.slider-item__image:before {
    	height: 440px;
    	left: 10%;
	}
	.slider-item__info h1 {
		font-size: 32px;
	}
	.catalogTabs-nav li a {
		padding: 18px 24px;
	}
	.products-item__image, .products-items.owl-carousel .products-item__image {
		height: 180px;
	}
	.catalogTabs-item__image {
    	height: 190px;
    	padding: 10px 10px 0;
    	margin-bottom: 20px;
	}
	.catalogTabs-item__image img, .products-item__image img, .products-items.owl-carousel .products-item__image img {
    	max-height: 180px;
	}
	.catalogTabs-item__image:after, .products-item__image:before, .products-items.owl-carousel .products-item__image:before {
    	width: 140px;
    	height: 140px;
	}
	.catalogTabs-item__image:after {
		bottom: -8px;
	}
	.catalogTabs-item__wrap:hover .catalogTabs-item__image img.second {
		display: none;
	}
	.catalogTabs-item__wrap:hover .catalogTabs-item__image img.third {
		display: none;
	}
	.catalogTabs-block .heading h2 {
		font-size: var(--h2-size);
	}
	.products-item__title {
		font-size: var(--text-size);
	}
	.products-items {
		margin: 0 -10px -30px;
	}
	.products-item {
		margin-bottom: 30px;
		padding: 0 10px;
	}
	.singleProduct-title {
    	margin-bottom: 20px;
    	line-height: 1.6;
	}
	.singleProduct-image {
		min-height: 280px;
	}
	.singleProduct-image:before {
		width: 280px;
		height: 280px;
	}
	.singleProduct-image img {
    	max-height: 350px;
	}
}