/*!
Theme Name: Acturon
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: acturon
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.

Acturon 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=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'Coolvetica';
	src:
		url('fonts/CoolveticaRg-Regular.woff2') format('woff2'),
		url('fonts/CoolveticaRg-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


:root {
	--container: 1300px;
	--gap: 24px;
	--header-height: 86px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 65px;
	--h2-size: 50px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;

	--nude-bg: #F3ECE6;
	--black: #191B1B;
	--white: #FFFFFF;
	--green: #549C84;
	--green-bg: #D9EFE0;
	--violet: #6B508E;
	--violet-bg: #EBE7FF;
	--grey: #787878;
	--bg: #F3F3F3;
	--dark: #333333;
}
*, ::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: 'Inter Tight', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--white);
	letter-spacing: .03em;
}
body.page-template-page-prices {
	background: #F3F3F3;
}
a {
	text-decoration: none;
	color: var(--grey);
	transition: .5s;
}
a:hover {
	color: var(--green);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
/* 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;
}
.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: 'Coolvetica', serif;
	font-weight: 400;
	margin-bottom: calc(var(--gap) * 1.5);
	line-height: 1;
}
h1, h2 {
	margin-top: calc(var(--gap) * 3.333);
}
h3, h4, h5, h6 {
	margin-top: calc(var(--gap) * 1.5);
}
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 calc(var(--gap) / 1.25);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
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;
}
iframe {
	max-width: 100%;
}
strong {
	font-weight: 600;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) * -1);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 3);
	margin-bottom: var(--gap);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: block;
	margin-bottom: calc(var(--gap) / 4);
}
::-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="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter Tight', sans-serif;
	line-height: 1.4;
	width: 100%;
	background: transparent;
	border: 1px solid #DCDCDC;
	color: var(--black);
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	padding: 8px 15px;
	height: 40px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 94px;
	resize: vertical;
}
select {
	padding-right: 42px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background-image: url(images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
	background-size: 14px;
}
select::-ms-expand {
	display: none;
}
.form-field-button {
	margin-top: calc(var(--gap) / 3);
}
.wpcf7-form.submitting {
	opacity: .75;
}
.wpcf7-form.submitting .form-field-button .btn:after {
	-webkit-mask-image: url(images/loading.svg);
	mask-image: url(images/loading.svg);
	animation: rotate 2s linear infinite;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
}
.form-field-policy {
	font-size: var(--text-size-sm);
	line-height: 1.15;
	color: var(--grey);
}
.form-field-policy a {
	text-decoration: underline;
	color: var(--grey);
}
.form-field-policy a:hover {
	color: var(--white);
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 29px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: transparent;
	border: 1px solid #DCDCDC;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .25s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
	width: 6px;
	height: 11px;
	border-bottom: 1px solid var(--black);
	border-right: 1px solid var(--black);
	display: block;
	position: absolute;
	top: 1px;
	left: 6px;
	transform: rotate(45deg);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.container-md {
	width: 100%;
	max-width: calc(var(--container) * .83);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	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;
	}
}


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading h1,
.heading h2 {
	font-size: var(--h2-size);
	margin: calc(var(--gap) / 2) 0 var(--gap);
}
.heading h1:first-child,
.heading h2:first-child {
	margin-top: 0;
}
.heading h1:last-child,
.heading h2:last-child {
	margin-bottom: 0;
}
.heading p:first-child {
	font-size: var(--text-size-sm);
	margin-bottom: 0;
	color: var(--grey);
	text-transform: uppercase;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 14px 31px;
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	outline: none;
	min-height: 54px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow.svg);
	mask-image: url(images/arrow.svg);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transition: .5s;
}
.btn-primary {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.btn-primary:after {
	background-color: var(--white);
}
.btn-primary:hover:after {
	background-color: var(--white);
}
.btn-secondary,
.home .header:not(.fixed) .btn-primary,
.page-template-page-booking .header:not(.fixed) .btn-primary,
.feedback-form .btn-primary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--black);
}
.btn-secondary:hover,
.home .header:not(.fixed) .btn-primary:hover,
.page-template-page-booking .header:not(.fixed) .btn-primary:hover,
.feedback-form .btn-primary:hover {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.btn-secondary:after,
.home .header:not(.fixed) .btn-primary:after,
.page-template-page-booking .header:not(.fixed) .btn-primary:after,
.feedback-form .btn-primary:after {
	background-color: var(--black);
}
.btn-secondary:hover:after,
.home .header:not(.fixed) .btn-primary:hover:after,
.page-template-page-booking .header:not(.fixed) .btn-primary:hover:after,
.feedback-form .btn-primary:hover:after {
	background-color: var(--white);
}
.btn-outline-primary {
	background-color: transparent;
	border-color: var(--black);
	color: var(--black);
}
.btn-outline-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-outline-primary:after {
	background-color: var(--black);
}
.btn-outline-primary:hover:after {
	background-color: var(--white);
}


/*
.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}

.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 56px;
	max-width: 56px;
	width: 56px;
	height: 36px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	clip-path: polygon(30% 0, 100% 0%, 70% 100%, 0% 100%);
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--blue-dark);
}
.swiper-navigation button:disabled {
	background: var(--blue);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-down.svg);
    mask-image: url(images/expand-down.svg);
    background-color: var(--white);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    transition: .5s;
    z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
	transform: rotate(90deg);
}
.swiper-navigation button.swiper-navigation-next:before {
	transform: rotate(-90deg);
}*/


.soc-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
}
.soc-links ul.messenger {
	gap: calc(var(--gap) / 3);
}
.soc-links.fill ul.messenger {
	gap: calc(var(--gap) / 1.5);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.soc-links ul.circle li a {
	width: 46px;
	height: 46px;
}
.soc-links ul.messenger li a {
	width: 24px;
	height: 24px;
}
.soc-links.fill ul.messenger li a {
	width: 64px;
	height: 64px;
	background: var(--black);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.soc-links.fill ul.messenger li a:hover {
	background: var(--green);
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links.fill ul.messenger li a svg {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.soc-links li a path {
	fill: var(--dark);
	transition: .5s;
}
.soc-links.fill ul.messenger li a svg path {
	fill: var(--white);
}
.soc-links li a rect {
	stroke: var(--dark);
	transition: .5s;
}
.soc-links.fill ul.messenger li a svg rect {
	stroke: var(--white);
}
.soc-links li a:hover path {
	fill: var(--green);
}
.soc-links li a:hover rect {
	stroke: var(--green);
}


.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	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);
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	transform: translateY(-100%);
	transition: .5s;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateY(0);
}
.modal-mobile-header {
	position: relative;
	padding: calc(var(--gap) / 1.5) 0;
	border-bottom: 1px solid rgba(25, 27, 27, 0.15);
	z-index: 92;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	height: calc(var(--header-height) - (var(--gap) / 1.5) * 2);
	gap: calc(var(--gap) / 1.25);
}
.modal-mobile-logo {
	position: relative;
	flex: 0 0 138px;
	max-width: 138px;
	height: calc(var(--header-height) - (var(--gap) / 1.5) * 2);
	z-index: 1;
}
.modal-mobile-logo img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	object-position: center;
	transition: .5s;
	z-index: 1;
}
.modal-mobile-close {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: 30px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--green);
}
.modal-mobile-body {
	position: relative;
	flex: auto;
	padding: calc(var(--gap) * 2.5) 0;
	z-index: 1;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	font-size: var(--h4-size);
	font-weight: 600;
	line-height: .9;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--gap) calc(var(--gap) / 2);
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: calc(var(--gap) / 1.25);
	padding-bottom: calc(var(--gap) / 1.25);
}
.mobile-menu > li:last-child {
	margin-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - calc(var(--gap) / 2) - 14px);
	max-width: calc(100% - calc(var(--gap) / 2) - 14px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--green);
}
.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 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--green);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0;
	padding: 0 0 0 calc(var(--gap) / 1.25);
	list-style: none;
	text-transform: none;
	font-size: var(--h5-size);
	z-index: 9;
}
.mobile-menu ul li {
	margin: 0 0 var(--gap);
}
.mobile-menu ul li:last-child {
	margin-bottom: 0;
}
.modal-mobile-footer {
	padding-bottom: calc(var(--gap) * 2.5);
}
.modal-mobile-button {
	padding-top: calc(var(--gap) * 1.667);
	border-top: 1px solid #EAEAEA;
}
.modal-mobile-button .btn {
	width: 100%;
}





.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: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.gallery-item > * {
	overflow: hidden;
}
.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);
}



.header {
	position: sticky;
	top: 0;
	background: transparent;
	padding: calc(var(--gap) / 1.5) 0;
	border-bottom: 1px solid rgba(25, 27, 27, 0.15);
	transition: .5s;
	z-index: 92;
}
.header.fixed {
	background: var(--white);
}
.home .header:not(.fixed) {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.page-template-page-booking .header:not(.fixed) {
	border-bottom-color: rgba(27, 27, 27, .22);
}
.header-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.583);
	height: calc(var(--header-height) - (var(--gap) / 1.5) * 2);
}
.header-logo {
	position: relative;
	flex: 0 0 170px;
	max-width: 170px;
	height: calc(var(--header-height) - (var(--gap) / 1.5) * 2);
	z-index: 1;
}
.header-logo img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	object-position: center;
	transition: .5s;
	z-index: 1;
}
.header-logo img.logo-light,
.home .header:not(.fixed) .header-logo img.logo-dark,
.page-template-page-booking .header:not(.fixed) .header-logo img.logo-dark {
	opacity: 0;
}
.home .header:not(.fixed) .header-logo img.logo-light,
.page-template-page-booking .header:not(.fixed) .header-logo img.logo-light {
	opacity: 1;
}
.main-menu {
	flex: auto;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: calc(var(--gap) * 1.583);
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	color: var(--black);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3);
	padding: calc(var(--gap) / 2); 0;
	text-decoration: none;
}
.home .header:not(.fixed) .main-menu li a,
.page-template-page-booking .header:not(.fixed) .main-menu li a {
	color: var(--white);
}
.main-menu li a:hover,
.home .header:not(.fixed) .main-menu li a:hover,
.page-template-page-booking .header:not(.fixed) .main-menu li a:hover {
	color: var(--green);
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	-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);
	transition: .5s;
}
.home .header:not(.fixed) .main-menu li.menu-item-has-children > a:after,
.page-template-page-booking .header:not(.fixed) .main-menu li.menu-item-has-children > a:after {
	background-color: var(--white);
}
.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.current-menu-item.menu-item-has-children > a:after,
.home .header:not(.fixed) .main-menu li.menu-item-has-children > a:hover:after,
.home .header:not(.fixed) .main-menu li.current-menu-item.menu-item-has-children > a:after,
.page-template-page-booking .header:not(.fixed) .main-menu li.menu-item-has-children > a:hover:after,
.page-template-page-booking .header:not(.fixed) .main-menu li.current-menu-item.menu-item-has-children > a:hover:after {
	background-color: var(--green);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) * -.5);
	margin: 0;
	padding: calc(var(--gap) / 4); 0;
	list-style: none;
	background: var(--bg);
	color: var(--black);
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	width: max-content;
	max-width: 240px;
	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: calc(var(--gap) / 2.4) calc(var(--gap) / 1.5);
}
.main-menu ul li a {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.home .header:not(.fixed) .main-menu ul li a,
.page-template-page-booking .header:not(.fixed) .main-menu ul li a {
	color: var(--black);
}
.home .header:not(.fixed) .main-menu ul li a:hover,
.page-template-page-booking .header:not(.fixed) .main-menu ul li a:hover {
	color: var(--green);
}
.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: calc(var(--gap) / 4);
	left: 100%;
}


.lang-menu {
	flex: 0 0 auto;
}


.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	background: var(--black);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	outline: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background: var(--green);
}
.header-toggle button:before {
	content: '';
	-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(--white);
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
	transition: .5s;
}


.main {
	margin-top: calc((var(--header-height) + (var(--gap) / 1.5) * 2) * -1);
}
.error404 .main,
.page-template-page-contacts .main,
.category .main,
.single-post .main,
.post-type-archive-services .main,
.page-template-page-prices .main {
	margin-top: 0;
}


.page-header {
	background: var(--nude-bg);
}
.page-header.section-md {
	padding-top: calc(100px + var(--header-height) + (var(--gap) / 1.5) * 2);
}
.page-title {
	margin-bottom: var(--gap);
}
.page-title:last-child {
	margin-bottom: 0;
}
.pageAbout-description {
	font-size: var(--h3-size);
	font-weight: 400;
	line-height: 1.2;
	font-family: 'Coolvetica';
}
.page-body {
	border-bottom: 1px solid #DDDDDD;
}
.page-content {
	font-size: var(--h5-size);
}
.page-content ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
	list-style: circle;
}
.page-content blockquote {
	margin-bottom: calc(var(--gap) * 1.5);
	background: var(--green-bg);
	padding: calc(var(--gap) * 2);
	font-size: var(--text-size);
}
.page-content blockquote:last-child {
	margin-bottom: 0;
}
.page-content blockquote h1,
.page-content blockquote h2,
.page-content blockquote h3,
.page-content blockquote h4,
.page-content blockquote h5,
.page-content blockquote h6 {
	line-height: 1.2;
	margin-bottom: var(--gap);
}
.page-content blockquote h1:last-child,
.page-content blockquote h2:last-child,
.page-content blockquote h3:last-child,
.page-content blockquote h4:last-child,
.page-content blockquote h5:last-child,
.page-content blockquote h6:last-child {
	margin-bottom: 0;
}



.pageService-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}




.footer {
	position: relative;
	padding-top: calc(var(--gap) * 2);
	z-index: 1;
}
.footer-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2.75) var(--gap);
}
.footer-contacts,
.footer-nav {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.footer-contacts-col {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.footer-contacts-mob {
	display: none;
}
.footer-messenger {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.footer-contacts-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.footer-contacts-item__label,
.soc-links > p {
	font-size: 10px;
}
.soc-links > p {
	margin-bottom: calc(var(--gap) / 3);
}
.footer-contacts-item__value a {
	color: var(--black);
}
.footer-contacts-item__value a:hover {
	color: var(--green);
}
.footer-nav {
	display: flex;
	gap: var(--gap);
}
.footer-widget {
	flex: 1;
}
.footer-widget-title {
	font-size: 10px;
	margin-bottom: calc(var(--gap) / 1.5);
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.footer-menu li a {
	color: var(--black);
}
.footer-menu li a:hover {
	color: var(--green);
}
.footer-menu ul {
	display: none;
}
.footer-bottom {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	gap: var(--gap);
	overflow: hidden;
}
.copyright {
	flex: 1;
	margin: 0;
	font-size: 10px;
	color: var(--grey);
	margin-bottom: -48px;
}
.footer-logo {
	flex: 1;
	transform: translateY(14px);
}
.footer-logo img {
	width: 100%;
	max-width: 586px;
}




.error-404-image {
	text-align: center;
	margin-bottom: var(--gap);
}
.error-404-image img {
	max-height: 245px;
}
.error-404-title {
	font-size: var(--h2-size);
	margin: 0 0 calc(var(--gap) / 1.5);
	text-align: center;
}
.error-404-description {
	color: var(--grey);
	text-align: center;
	margin-bottom: calc(var(--gap) * 1.5);
}
.error-404-button {
	text-align: center;
}




.hero-section.section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 670px;
	padding-top: 230px;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
/*.hero-bg:before,
.hero-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}*/
/*.hero-bg:before {
	background: conic-gradient(from 162.73deg at 50% 50%, #BAA080 -36.12deg, #407972 19.89deg, #9AC0A7 94.01deg, #B49E8C 158.18deg, #698169 175.98deg, #FFD6B5 279.86deg, #BAA080 323.88deg, #407972 379.89deg);
	mix-blend-mode: multiply;
}*/
.hero-bg:after {
	background: url(images/noise.png) no-repeat; center;
	background-size: cover;
	mix-blend-mode: soft-light;
	opacity: .25;
}
.hero-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.hero-left {
	flex: auto;
	max-width: 41%;
}
.hero-heading {
	color: var(--white);
	margin-bottom: var(--gap);
}
.hero-description {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--white);
}
.hero-image {
	text-align: right;
	padding-top: 10px;
	max-width: 567px;
	margin-left: auto;
}
.hero-right {
	flex: 0 0 59%;
	max-width: 59%;
	text-align: right;
}




.about-wrap {
	position: relative;
	background: linear-gradient(180deg, #E7E3E0 0%, #C2B9B3 100%);
	padding: calc(var(--gap) * 2.5) calc(var(--gap) * 2.25) calc(var(--gap) * 2.5) calc(var(--gap) * 2.75);
	display: flex;
	gap: var(--gap);
	justify-content: space-between;
	min-height: 660px;
	z-index: 1;
}
.about-heading {
	flex: 0 0 40%;
	max-width: 40%;
}
.about-info {
	flex: 0 0 28%;
	max-width: 28%;
	padding-top: calc(var(--gap) * 6.75);
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.about-content h3 {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	line-height: 1.4;
	font-size: var(--text-size-sm);
	margin-bottom: var(--gap);
}
.about-image {
	position: absolute;
	width: 38%;
	height: 100%;
	left: 30%;
	bottom: 0;
	text-align: center;
	z-index: -1;
}
.about-image:before {
	content: '';
	background: url(images/about-image-element.svg) no-repeat bottom center;
	background-size: contain;
	position: absolute;
	width: calc(100% + var(--gap));
	height: 92%;
	bottom: 0;
	right: var(--gap);
	z-index: -1;
}
.about-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}



.advantages-section {
	z-index: 2;
}
.advantages-items {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.5);
}
.advantages-item {
	position: relative;
	flex: 0 0 calc((100% / 3) - (2 * (var(--gap) / 1.5) / 3));
	max-width: calc((100% / 3) - (2 * (var(--gap) / 1.5) / 3));
	-webkit-backface-visibility: hidden;
	z-index: 1;
}
.advantages-item:hover {
	z-index: 2;
}
.advantages-item__wrap {
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}
.advantages-item__front,
.advantages-item__back {
	height: calc((var(--container) - var(--gap) / 1.5 * 2) / 3 / .8333);
	-ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
	transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
	-webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: calc(var(--gap) / 1.1667);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--gap);
}
.advantages-item__front {
	-ms-transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.advantages-item__wrap:hover .advantages-item__front {
	-ms-transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.advantages-item__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	-ms-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;

	padding: 0;
	display: block;
}
.advantages-item__wrap:hover .advantages-item__back {
	-ms-transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.advantages-item__back-inner {
	position: relative;
	overflow: auto;
	width: 100%;
	height: 100%;
	padding: calc(var(--gap) / 1.1667);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--gap);
	z-index: 1;
}
.advantages-item__bg,
.advantages-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.advantages-item__bg:after {
	content: '';
	background: url(images/noise.png) no-repeat; center;
	background-size: cover;
	mix-blend-mode: soft-light;
	opacity: .45;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.advantages-item__count {
	color: var(--white);
	margin: 0;
}
.advantages-item:nth-child(3) .advantages-item__count {
	color: var(--black);
}
/*.advantages-item__back .advantages-item__count {
	color: var(--grey) !important;
}*/
.advantages-item__info {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.advantages-item__title {
	font-weight: 400;
	font-family: 'Coolvetica', serif;
	font-size: var(--h3-size);
	margin: 0;
}
/*.advantages-item__back .advantages-item__title {
	color: var(--white);
}
.advantages-item__content {
	color: var(--white);
}
*/


.services-section {
	background: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);
}
.servicesTabs-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.servicesTabs-left {
	flex: 0 0 calc(43% - var(--gap));
	max-width: calc(43% - var(--gap));
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.5);
}
.servicesTabs-right {
	flex: 0 0 49%;
	max-width: 49%;
}
.servicesTabs-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.servicesTabs-nav-head {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	cursor: pointer;
}
.servicesTabs-nav-count {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	color: var(--grey);
	margin: 0;
}
.servicesTabs-nav-title {
	flex: auto;
	max-width: 100%;
	font-size: var(--h3-size);
	line-height: 1.2;
	margin: 0;
}
.servicesTabs-nav-toggle {
	flex: 0 0 54px;
	max-width: 54px;
	width: 54px;
	height: 54px;
	background: var(--black);
	border: 1px solid var(--black);
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.servicesTabs-nav-head:hover .servicesTabs-nav-toggle,
.servicesTabs-nav li.active .servicesTabs-nav-toggle {
	background: transparent;
}
.servicesTabs-nav-toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transition: .5s;
}
.servicesTabs-nav-head:hover .servicesTabs-nav-toggle:before,
.servicesTabs-nav li.active .servicesTabs-nav-toggle:before {
	background-color: var(--black);
}
.servicesTabs-nav li.active .servicesTabs-nav-toggle:before {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.servicesTabs-nav-body {
	padding-bottom: calc(var(--gap) / 1.5);
}
.servicesTabs-nav li.active .servicesTabs-nav-body {
	display: block;
}
.servicesTabs-nav-description,
.servicesTabs-nav-buttons {
	margin-top: var(--gap);
}
.servicesTabs-nav-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.5);
}
.servicesTabs-image {
	position: relative;
	height: calc(var(--container) * .49 / .8214);
	z-index: 1;
}
.servicesTabs-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.servicesTabs-image-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -70px;
	left: 0;
	z-index: 1;
}


.pageBlog-section .heading h1 {
	font-size: var(--h1-size);
}

.blog-section {
	overflow: hidden;
}
.blog-wrap {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2) var(--gap);
}
.blog-heading.heading {
	margin-bottom: 0;
	flex: auto;
	max-width: calc(100% - 240px - var(--gap));
}
.blog-button {
	flex: 0 0 240px;
	max-width: 240px;
	text-align: right;
}
.blog-inner {
	flex: 0 0 100%;
	max-width: 100%;
}
.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) * -2);
}
.blog-items .blog-item {
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 calc(var(--gap) / 3);
	width: auto;
	height: auto;
	transition: all .5s ease;
}
.blog-item.swiper-slide {
	height: auto;
}
.blog-items.columns-4 .blog-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.blog-items.columns-3 .blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.blog-items.columns-2 .blog-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.blog-items.columns-1 .blog-item {
	flex: 0 0 calc(100% / 1);
	max-width: calc(100% / 1);
}
.blog-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.blog-item__image {
	overflow: hidden;
	margin-bottom: var(--gap);
}
.blog-items.columns-4 .blog-item__image {
	flex: 0 0 calc((var(--container) - 3 * var(--gap) / 1.5) / 4 / 1.5441);
	max-height: calc((var(--container) - 3 * var(--gap) / 1.5) / 4 / 1.5441);
}
.blog-items.columns-3 .blog-item__image {
	flex: 0 0 calc((var(--container) - 2 * var(--gap) / 1.5) / 3 / 1.6865);
	max-height: calc((var(--container) - 2 * var(--gap) / 1.5) / 3 / 1.6865);
}
.blog-items.columns-2 .blog-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) / 1.5) / 2 / 1.6865);
	max-height: calc((var(--container) - var(--gap) / 1.5) / 2 / 1.6865);
}
.blog-items.columns-1 .blog-item__image {
	flex: 0 0 calc(var(--container) / 1.6865);
	max-height: calc(var(--container) / 1.6865);
}
.blog-item__wrap:hover .blog-item__image img {
	transform: scale(1.05);
}
.blog-item__title {
	flex: auto;
	font-size: var(--text-size);
	font-weight: 600;
	font-family: 'Inter Tight', sans-serif;
	line-height: 1.4;
	margin: 0 0 calc(var(--gap) / 1.5);
}
.blog-item__title a {
	color: var(--black);
}
.blog-item__title a:hover {
	color: var(--green);
}
.blog-item__categories {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
.blog-item__categories li {
	--moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--grey);
	color: var(--white);
	font-size: 10px;
	text-transform: uppercase;
	padding: 8px 14px;
}
.blog-item__categories li.green {
	background: var(--green-bg);
	color: var(--green);
}
.blog-item__categories li.violet {
	background: var(--violet-bg);
	color: var(--violet);
}


.feedback-section {
	background: var(--black);
	overflow: hidden;
}
.feedback-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--black) url(images/bg-abstract.jpg) no-repeat center;
	background-size: cover;
	mix-blend-mode: multiply;
	z-index: -4;
}
.feedback-bg-noise {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(images/noise.png) no-repeat; center;
	background-size: cover;
	mix-blend-mode: soft-light;
	opacity: .45;
	z-index: -3;
}
.feedback-section:before {
	content: '';
	position: absolute;
	width: 1065px;
	height: 106px;
	bottom: -11px;
	left: calc((100% - var(--container)) / 2 - 537px);
	background: var(--green);
	filter: blur(150px);
	opacity: .6;
	mix-blend-mode: plus-lighter;
	z-index: -2;
}
.feedback-section:after {
	content: '';
	position: absolute;
	width: 1175px;
	height: 106px;
	bottom: 42px;
	left: calc((100% - var(--container)) / 2 - 518px);
	background: #4C6F4B;
	filter: blur(150px);
	opacity: .8;
	mix-blend-mode: plus-lighter;
	transform: rotate(35.91deg);
	z-index: -1;
}
.feedback-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.feedback-left {
	flex: 0 0 calc(50% - var(--gap));
	max-width: 430px;
}
.feedback-right {
	flex: calc(50% - var(--gap));
	max-width: calc(50% - var(--gap));
}
.feedback-form {
	color: var(--white);
}
.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form input[type="tel"],
.feedback-form input[type="password"],
.feedback-form select,
.feedback-form textarea {
	background: #252A2A;
	color: var(--white);
	border-color: #252A2A;
}
.feedback-form select {
	background-image: url(images/arrow-down-select.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
	background-size: 14px;
}
.feedback-form .wpcf7-acceptance input[type="checkbox"]:checked:after {
	border-bottom-color: var(--white);
	border-right-color: var(--white);
}


.pageContacts-section.section {
	background: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);
}
.pageContacts-section .heading h1 {
	font-size: var(--h1-size);
}
.pageContacts-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.pageContacts-left {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: 430px;
}
.pageContacts-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.pageContacts-content {
	margin-bottom: calc(var(--gap) * 1.75);
}
.pageContacts-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
}
.pageContacts-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-left: 88px;
	min-height: 64px;
	z-index: 1;
}
.pageContacts-item__icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 64px;
	background: var(--black);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.pageContacts-item__icon:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
}
.pageContacts-item.phone .pageContacts-item__icon:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.pageContacts-item.e-mail .pageContacts-item__icon:before {
	-webkit-mask-image: url(images/envelope.svg);
	mask-image: url(images/envelope.svg);
}
.pageContacts-item__label {
	color: var(--grey);
}
.pageContacts-item__value {
	font-family: 'Coolvetica';
	font-size: var(--h3-size);
	font-weight: 400;
	line-height: 1.2;
}
.pageContacts-item__value a {
	color: var(--black);
}
.pageContacts-item__value a:hover {
	color: var(--green);
}

.pageContacts-messenger.soc-links > p {
	font-size: var(--text-size);
	margin-bottom: calc(var(--gap) / 2.4);
	color: var(--grey);
}




.blogPrimary-item__wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.blogPrimary-item__left {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.blogPrimary-item__right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: 540px;
	display: flex;
	flex-direction: column;
}
.blogPrimary-item__image {
	overflow: hidden;
	height: calc((var(--container) - var(--gap)) / 2 / 1.5469);
}
.blogPrimary-item__wrap:hover .blogPrimary-item__image img {
	transform: scale(1.05);
}
.blogPrimary-item__categories {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
	margin: 0 0 calc(var(--gap) / 1.5);
	padding: 0;
	list-style: none;
}
.blogPrimary-item__categories li {
	--moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: var(--grey);
	color: var(--white);
	font-size: 10px;
	text-transform: uppercase;
	padding: 8px 14px;
}
.blogPrimary-item__categories li.green {
	background: var(--green-bg);
	color: var(--green);
}
.blogPrimary-item__categories li.violet {
	background: var(--violet-bg);
	color: var(--violet);
}
.blogPrimary-item__title {
	font-size: var(--h3-size);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 calc(var(--gap) / 1.1667);
}
.blogPrimary-item__title a {
	color: var(--black);
}
.blogPrimary-item__title a:hover {
	color: var(--green);
}
.blogPrimary-item__description {
	flex: auto;
	color: var(--grey);
	margin-bottom: var(--gap);
}



.blogCats-nav {
	display: flex;
	overflow: auto;
	gap: calc(var(--gap) / 1.71);
	margin-bottom: calc(var(--gap) * 1.5);
	padding: 0;
	list-style: none;
}
.blogCats-nav li {
	flex: 0 0 auto;
}
.blogCats-nav li a {
	display: inline-block;
	font-size: var(--text-size);
	font-weight: 600;
	background: var(--black);
	color: var(--white);
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	padding: 13px 32px;
	line-height: 1.5;
}
.blogCats-nav li.green a {
	background: var(--green-bg);
	color: var(--green);
}
.blogCats-nav li.violet a {
	background: var(--violet-bg);
	color: var(--violet);
}



.navigation.pagination {
	position: relative;
	margin-top: 80px;
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: calc(var(--gap) / 1.71);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 71px;
	height: 50px;
	font-weight: 600;
	color: var(--black);
	border: 1px solid transparent;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 calc(var(--gap) / 1.5);
	text-decoration: none;
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
	border-color: var(--black);
	font-size: 0;
}
.nav-links .page-numbers.prev:before,
.nav-links .page-numbers.next:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow.svg);
	mask-image: url(images/arrow.svg);
	background-color: var(--black);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transition: .5s;
}
.nav-links .page-numbers.prev:before {
	transform: scale(-1, 1);
}
.nav-links .page-numbers.prev:hover:before,
.nav-links .page-numbers.next:hover:before {
	background-color: var(--white);
}



.singleBlog-date {
	margin-bottom: var(--gap);
	font-size: var(--text-size-sm);
}
.singleBlog-title {
	font-size: var(--h1-size);
	font-weight: 400;
	line-height: .9;
	margin: 0;
}
.singleBlog-body.section {
	padding-top: calc(var(--gap) * 2);
}
.singleBlog-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.singleBlog-left {
	flex: 0 0 calc(67% - var(--gap) / 2);
	max-width: calc(67% - var(--gap) / 2);
}
.singleBlog-right {
	position: relative;
	flex: 0 0 calc(33% - var(--gap) / 2);
	max-width: 315px;
	z-index: 1;
}
.singleBlog-image {
	margin-bottom: calc(var(--gap) * 2);
	height: calc((var(--container) * .67 - var(--gap) / 2) / 1.54);
}
.singleBlog-share {
	margin: calc(var(--gap) * 3.333) 0 0;
}
.singleBlog-share.soc-links > p {
	font-size: var(--h6-size);
	font-weight: 600;
}
.post-toc {
	position: sticky;
	top: calc(var(--header-height) + var(--gap));
	z-index: 1;
}
.widget-title {
	font-size: var(--h5-size);
	font-weight: 500;
	line-height: .9;
	margin-bottom: calc(var(--gap)) !important;
}
.ez-toc-title-container {
	margin-bottom: var(--gap);
}
.post-toc-title {
	font-size: var(--h5-size);
	font-weight: 500;
	color: var(--black);
	margin-bottom: var(--gap);
}
.post-toc ul {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.5);
	margin: 0;
	padding: 0;
	list-style: none;
	z-index: 1;
}
.post-toc ul:before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	background: #DDDDDD;
	z-index: -1;
}
.post-toc ul li {
	line-height: 1.4 !important;
}
.post-toc ul li a {
	position: relative;
	display: inline-block;
	padding-left: 24px !important;
	color: var(--grey) !important;
	padding: 2px 0;
	text-decoration: none;
	z-index: 1;
}
.post-toc ul li a:hover,
.post-toc ul li a.active {
	background: transparent !important;
	color: var(--green) !important;
}
.post-toc ul li a:before {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background: var(--green);
	top: 0;
	left: 0px;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}
.post-toc ul li a.active:before {
	opacity: 1;
}




.faq-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.faq-item {
	padding-bottom: var(--gap);
	border-bottom: 1px solid #DDDDDD;
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	font-size: var(--h3-size);
	font-family: 'Coolvetica';
	line-height: 1.2;
	font-weight: 400;
	cursor: pointer;
	transition: .5s;
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 54px;
	max-width: 54px;
	width: 54px;
	height: 54px;
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	background: var(--black);
	border: 1px solid var(--black);
	transition: .5s;
}
.active .faq-item__toggle {
	background: transparent;
}
.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	transition: .55s;
}
.active .faq-item__toggle:before {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
	background-color: var(--black);
}
.faq-item__body {
	margin-top: calc(var(--gap) * 1.5);
}




.pageAbout-header {
	/*background: linear-gradient(180deg, #FFFFFF 0%, #D8EEE0 100%);*/
	overflow: hidden;
	background: url(images/bg-header-about.jpg) no-repeat center;
	background-size: cover;
}
/*.pageAbout-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(images/bg-abstract.jpg) no-repeat center;
	background-size: cover;
	mix-blend-mode: screen;
	z-index: -4;
}
.pageAbout-header:before {
	content: '';
	position: absolute;
	width: 704px;
	height: 106px;
	bottom: -15px;
	right: calc((100% - var(--container)) / 2 + 124px);
	background: #DDB197;
	filter: blur(250px);
	opacity: .6;
	mix-blend-mode: multiply;
	transform: rotate(-24.37deg);
	z-index: -3;
}
.pageAbout-header:after {
	content: '';
	position: absolute;
	width: 1175px;
	height: 106px;
	bottom: -91px;
	right: calc((100% - var(--container)) / 2 - 250px);
	background: #89C788;
	filter: blur(150px);
	opacity: .8;
	mix-blend-mode: multiply;
	transform: rotate(-10.48deg);
	z-index: -2;
}
.pageAbout-noise {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(images/noise.png) no-repeat; center;
	background-size: cover;
	mix-blend-mode: soft-light;
	opacity: .35;
	z-index: -1;
}*/



.pageAbout-small-heading {
	margin-bottom: calc(var(--gap) * 2.5);
	font-size: var(--text-size-sm);
	color: var(--grey);
	text-transform: uppercase;
}

.about-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 3.333);
}
.about-item__wrap {
	display: flex;
	gap: calc(var(--gap) * 3.333);
}
.about-item__left {
	flex: 0 0 54%;
	max-width: 54%;
}
.about-item__image {
	height: calc((var(--container) * .54) / 1.413);
}
.about-item__right {
	flex: 0 0 calc(46% - var(--gap) * 3.333);
	max-width: calc(46% - var(--gap) * 3.333);
}
.about-item__count {
	font-size: var(--text-size-sm);
}
.about-item__title {
	font-size: var(--h2-size);
	margin: 0 0 var(--gap);
}
.about-item__description {
	font-size: var(--h5-size);
}






.pageServices-section.section {
	padding-top: calc(var(--gap) * 2);
}
.pageServices-wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 5.125);
}
.pageServices-left {
	flex: 0 0 calc(42% - var(--gap) * 5.125);
	max-width: calc(42% - var(--gap) * 5.125);
}
.pageServices-left .heading {
	font-size: var(--h5-size);
}
.pageServices-left .heading h1 {
	font-size: var(--h1-size);
}
.pageServices-right {
	flex: 0 0 58%;
	max-width: 58%;
}
.pageServices-image {
	position: relative;
	height: calc(var(--container) * .58 / 1.413);
	z-index: 1;
}
.pageServices-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pageServices-image-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.pageServices-image-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}






.services-item__wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.services-item:nth-child(2n+1) .services-item__wrap {
	flex-direction: row-reverse;
}
.services-item__left {
	position: relative;
	flex: 0 0 calc(42% - var(--gap) * 2);
	max-width: calc(42% - var(--gap) * 2);
	background: var(--white);
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.06);
	padding: calc(var(--gap) / 1.7142);
	z-index: 1;
}
.services-item__head {
	position: relative;
	padding: calc(var(--gap) * 1.25) calc(var(--gap) / 2);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: calc(var(--gap) * 1.25);
	z-index: 1;
}
.services-item__head.gradient-1 {
	background: linear-gradient(128.56deg, #FEFAF7 14.01%, rgba(152, 150, 148, 0.02) 118.19%);
}
.services-item__head.gradient-2 {
	background: linear-gradient(119.76deg, rgba(255, 255, 255, 0.02) -47.43%, #FFEDDE 104.89%);
}
.services-item__head.gradient-3 {
	background: linear-gradient(119.67deg, rgba(255, 255, 255, 0.02) -47.38%, #C4ECD1 118.68%);
}
.services-item__head.gradient-4 {
	background: linear-gradient(119.67deg, rgba(255, 255, 255, 0.02) -47.38%, #EAEAEA 118.68%);
}
.services-item__count {
	color: var(--grey);
	margin-bottom: calc(var(--gap) / 1.25);
}
.services-item__title {
	font-size: var(--h2-size);
	margin: 0 0 calc(var(--gap) / 2.4);
}
.services-item__content {
	margin-bottom: calc(var(--gap) * 1.667);
}
.services-item__content-title {
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: .9;
	margin-bottom: calc(var(--gap) / 1.6);
}
.services-item__accordion {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	margin-bottom: calc(var(--gap) * 1.667);
}
.services-item__accordion-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	font-size: var(--h5-size);
	line-height: .9;
	font-weight: 600;
	cursor: pointer;
	transition: .5s;
}
.services-item__accordion-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: var(--black);
	border: 1px solid var(--black);
	transition: .5s;
}
.active .services-item__accordion-item__toggle {
	background: transparent;
}
.services-item__accordion-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	flex: 0 0 11px;
	max-width: 11px;
	width: 11px;
	height: 11px;
	transition: .55s;
}
.active .services-item__accordion-item__toggle:before {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
	background-color: var(--black);
}
.services-item__accordion-item__body {
	display: none;
	margin-top: calc(var(--gap) / 1.5);
}
.services-item__right {
	flex: 0 0 58%;
	max-width: 58%;
}
.services-item__image {
	position: relative;
	height: 100%;
	z-index: 1;
}
.services-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.services-item__image-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: var(--gap) 0;
	z-index: 1;
}
.services-item__image-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}


.singleServicesInfo-wrap {
	max-width: 58%;
	margin-left: auto;
}
.singleServicesInfo-heading {
	font-size: var(--h2-size);
	margin-bottom: calc(var(--gap) * 1.25);
}
.singleServicesInfo-content {
	margin-bottom: calc(var(--gap) * 2);
}



.pagePrices-section .heading h1 {
	font-size: var(--h1-size);
}
.prices-block {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.prices-block__head {
	position: relative;
	padding: calc(var(--gap) * 1.5) calc(var(--gap) * 2.5);
	background: var(--nude-bg);
	overflow: hidden;
	z-index: 1;
}
.prices-block__title {
	font-size: var(--h2-size);
	margin: 0 0 calc(var(--gap) / 1.71);
}
.prices-block__head-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -4;
}
.prices-block__head.style-1 .prices-block__head-bg {
	background: url(images/style/bg-1.jpg) no-repeat center;
	background-size: cover;
	opacity: .4;
}
.prices-block__head.style-2 .prices-block__head-bg {
	background: url(images/style/bg-2.jpg) no-repeat center;
	background-size: cover;
	backdrop-filter: blur(2px);
}
.prices-block__head.style-3 .prices-block__head-bg {
	background: url(images/style/bg-3.jpg) no-repeat center;
	background-size: cover;
}
.prices-block__head.style-4 .prices-block__head-bg {
	background: url(images/style/bg-4.jpg) no-repeat center;
	background-size: cover;
}
.prices-block__head-noise {
	content: '';
	background: url(images/noise.png) no-repeat; center;
	background-size: cover;
	mix-blend-mode: soft-light;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .25;
	z-index: -3;
}


.prices-items {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 1.5);
}
.prices-item {
	position: relative;
	flex: 0 0 calc(50% - var(--gap) / 1.5 / 2);
	max-width: calc(50% - var(--gap) / 1.5 / 2);
	background: var(--white);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: calc(var(--gap) * 2) calc(var(--gap) * 2.5) calc(var(--gap) * 2.5);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.prices-item.last {
	flex: 0 0 100%;
	max-width: 100%;
	flex-direction: row;
}
.prices-item__head {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.5);
	z-index: 1;
}
.prices-item.last .prices-item__head {
	flex: 0 0 auto;
	max-width: 33%;
	justify-content: center;
}
.prices-item__title {
	font-size: var(--h3-size);
	line-height: 1.2;
	margin: 0;
	min-height: 68px;
}
.prices-item__price {
	display: flex;
}
.prices-item__price span {
	font-size: var(--h1-size);
	font-family: 'Coolvetica';
	font-weight: 400;
	line-height: .9;
}
.prices-item__price sub {
	font-size: var(--text-size);
	margin-right: 10px;
	margin-top: auto;
	vertical-align: inherit;
}
.prices-item__price sup {
	font-size: var(--text-size);
	margin-left: 10px;
	vertical-align: inherit;
}
.prices-item__body {
	margin-top: calc(var(--gap) * 2);
	padding-top: calc(var(--gap) * 2);
	border-top: 1px solid #DDDDDD;
}
.prices-item.last .prices-item__body {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	margin-left: calc(var(--gap) * 2);
	padding-left: calc(var(--gap) * 2);
	border-left: 1px solid #DDDDDD;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.prices-item__content ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.25);
	padding: 0;
	list-style: none;
}
.prices-item__content ul li {
	position: relative;
	padding-left: 25px;
	z-index: 1;
}
.prices-item__content ul li:before {
	content: '';
	background: url(images/check.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 16px;
	height: 16px;
	top: 3px;
	left: 0;
	z-index: 1;
}




.booking-section.section {
	padding-top: calc(100px + var(--header-height) + (var(--gap) / 1.5) * 2);
	background: url(images/bg-booking.jpg) no-repeat center;
	background-size: cover;
}
.booking-section .heading h1 {
	font-size: var(--h1-size);
}
.booking-content {
	color: var(--white);
}





.pageService-content {
	width: calc(100% / 3 * 2);
	font-size: var(--h6-size);
	letter-spacing: 0;
}
.pageService-content h1,
.pageService-content h2,
.pageService-content ul {
	margin-bottom: calc(var(--gap) * 2.333);
}
.pageService-content h1:last-child,
.pageService-content h2:last-child,
.pageService-content ul:last-child {
	margin-bottom: 0;
}
.pageService-content ul {
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.0909);
}
.pageService-content ul li {
	position: relative;
	padding-left: 23px;
}
.pageService-content ul li:before {
	content: '';
	background: url(images/check.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 16px;
	height: 16px;
	top: 6px;
	left: 0;
	z-index: 1;
}

.pageService-button {
	margin-top: calc(var(--gap) * 2);
}

.pageService-items {
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) * 1.25) calc(var(--gap) / 2 / -1.71) calc(var(--gap) * -1.25);
}
.pageService-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 calc(var(--gap) * 1.25);
	padding: 0 calc(var(--gap) / 2 / 1.71);
}
.pageService-item__wrap {
	position: relative;
	height: 100%;
	background: var(--nude-bg);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: calc(var(--gap) * 2);
	z-index: 1;
}
.pageService-item__count {
	color: var(--grey);
	margin-bottom: var(--gap);
	line-height: 1.4;
	display: inline-block;
}
.pageService-item__heading {
	margin: 0 0 var(--gap);
	font-size: var(--h3-size);
	font-weight: 400;
	line-height: 1.2;
}
.pageService-item__content {

}





@media (max-width: 1399px) {
	:root {
		--container: 1100px;
		--gap: 24px;
		--header-height: 86px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 56px;
		--h2-size: 42px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.section-md {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section-sm {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.header-wrap {
		gap: calc(var(--gap) * 1.5);
	}
	.main-menu {
		gap: var(--gap);
	}
	.feedback-left {
		max-width: 360px;
	}
	.page-header.section-md {
		padding-top: calc(80px + var(--header-height) + (var(--gap) / 1.5) * 2);
	}
	.booking-section.section {
		padding-top: calc(80px + var(--header-height) + (var(--gap) / 1.5) * 2);
	}
}




@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 24px;
		--header-height: 86px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 48px;
		--h2-size: 38px;
		--h3-size: 28px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.container-md {
		max-width: calc(var(--container) * .9);
	}
	.header-wrap {
		gap: var(--gap);
	}
	.header-logo {
		flex: 0 0 138px;
		max-width: 138px;
	}
	.header-button .btn {
		padding-left: 21px;
		padding-right: 21px;
	}
	.main-menu {
		gap: 0;
	}
	.hero-left {
		max-width: 47%;
	}
	.hero-right {
    flex: 0 0 53%;
    max-width: 53%;
  }
  .about-info {
  	padding-top: calc(var(--gap) * 2);
  }
  .about-wrap {
  	min-height: 540px;
  	padding: calc(var(--gap) * 2) calc(var(--gap) * 2.25);
  }
  .servicesTabs-left {
    flex: 0 0 calc(49% - var(--gap));
    max-width: calc(49% - var(--gap));
  }
  .footer-logo {
  	transform: translateY(8px);
  }
  .about-item__wrap {
  	gap: calc(var(--gap) * 2);
  }
  .about-item__right {
    flex: 0 0 calc(42% - var(--gap) * 2);
    max-width: calc(42% - var(--gap) * 2);
	}
	.about-items {
		gap: calc(var(--gap) * 2.5);
	}
	.prices-block__head {
		padding: calc(var(--gap) * 1.5) calc(var(--gap) * 2);
	}
	.prices-item {
		padding: calc(var(--gap) * 2) calc(var(--gap) * 1.5);
	}
	.singleBlog-body.section {
		padding-top: 0;
	}
	.error-404-image img {
		max-height: 200px;
	}
}




@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 24px;
		--header-height: 86px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 48px;
		--h2-size: 38px;
		--h3-size: 28px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.main {
		overflow: hidden;
	}
	/*[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}*/
	h1, h2, h3, h4, h5, h6 {
		margin-bottom: var(--gap);
	}
	h1, h2 {
		margin-top: calc(var(--gap) * 2.5);
	}
	h3, h4, h5, h6 {
		margin-top: calc(var(--gap) * 1.1667);
	}
	.soc-links li.soc-mobile {
		display: block;
	}
	.soc-links li.soc-desktop {
		display: none;
	}
	.header-wrap {
		gap: calc(var(--gap) / 1.25);
	}
	.main-menu,
	.header-button {
		display: none;
	}
	.lang-menu {
		display: flex;
		flex: auto;
		justify-content: flex-end;
	}
	.hero-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2);
	}
	.hero-left,
	.hero-right {
		flex: auto;
		max-width: 100%;
	}
	.hero-image {
		padding-top: 0;
		text-align: center;
		max-width: 100%;
	}
	.hero-heading {
		font-size: calc(var(--h1-size) * 1.25);
	}
	.hero-description {
		font-size: var(--h4-size);
	}
	.about-wrap {
		min-height: auto;
		padding: 0;
		background: transparent;
		flex-direction: column;
		gap: calc(var(--gap) * 2.5);
	}
	.about-heading.heading {
		margin-bottom: 0;
		flex: auto;
		max-width: 100%;
	}
	.about-image {
		position: relative;
		left: 0;
		width: 100%;
		background: linear-gradient(180deg, #E7E3E0 0%, #C2B9B3 100%);
	}
	.about-image:before {
		width: 100%;
		right: 0;
		height: 93.5%;
	}
	.about-image img {
		max-height: 530px;
	}
	.about-info {
		flex: auto;
		max-width: 100%;
		padding-top: 0;
	}
	.about-content {
		font-size: var(--h5-size);
	}
	.about-content h3 {
		font-size: var(--h4-size);
	}
	.about-button .btn {
		width: 100%;
	}
	.advantages-items {
		gap: calc(var(--gap) / 1.25);
	}
	.advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.advantages-item__front, .advantages-item__back {
		height: calc(var(--container) / 1.063);
		padding: calc(var(--gap) * 1.25) calc(var(--gap) / 1.25);
	}
	.advantages-item__back {
		padding: 0;
	}
	.advantages-item__back-inner {
		padding: calc(var(--gap) * 1.25) calc(var(--gap) / 1.25);
	}
	.servicesTabs-wrap {
		flex-direction: column-reverse;
		gap: calc(var(--gap) * 2.5);
	}
	.servicesTabs-left,
	.servicesTabs-right {
		flex: auto;
		max-width: 100%;
	}
	.servicesTabs-left {
		gap: calc(var(--gap) * 2.5);
	}
	.servicesTabs-image {
		height: calc(var(--container) / .8214);
	}
	.servicesTabs-nav {
		gap: calc(var(--gap) / 1.25);
	}
	.servicesTabs-nav li {
		padding-bottom: calc(var(--gap) / 1.25);
		border-bottom: 1px solid #EAEAEA;
	}
	.servicesTabs-nav-body {
		padding-bottom: 0;
	}
	.servicesTabs-nav-head {
		flex-wrap: wrap;
		gap: calc(var(--gap) / 1.25) calc(var(--gap) / 1.5);
	}
	.servicesTabs-nav-count {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	.servicesTabs-nav-title {
		max-width: calc(100% - var(--gap) / 1.5 - 40px);
	}
	.servicesTabs-nav-toggle {
		flex: 0 0 40px;
		max-width: 40px;
		width: 40px;
		height: 40px;
		-moz-border-radius: 8px;
		-webkit-border-radius: 8px;
		border-radius: 8px;
	}
	.servicesTabs-nav-description {
		margin-top: calc(var(--gap) * 1.5);
	}
	.servicesTabs-nav-buttons {
		margin-top: calc(var(--gap) * 1.667);
		flex-direction: column;
		gap: calc(var(--gap) / 1.7);
	}
	.servicesTabs-nav-buttons .btn,
	.services-button .btn {
		width: 100%;
	}

	.blog-heading.heading {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.blog-inner {
		order: 2;
	}
	.blog-button {
		flex: 0 0 100%;
		max-width: 100%;
		order: 3;
	}
	.blog-button .btn {
		width: 100%;
	}
	.feedback-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2.5);
	}
	.feedback-left,
	.feedback-right {
		flex: auto;
		max-width: 100%;
	}
	.footer {
		padding: calc(var(--gap) * 1.667) 0;
	}
	.footer-wrap {
		gap: calc(var(--gap) * 1.667);
	}
	.footer-contacts, .footer-nav {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-contacts {
		padding-bottom: calc(var(--gap) / 1.25);
		border-bottom: 1px solid #EAEAEA;
		display: flex;
		gap: calc(var(--gap));
	}
	.footer-contacts-col {
		flex: 1;
		justify-content: space-between;
	}
	.footer-contacts-mob {
		display: flex;
	}
	.footer-nav {
		flex-wrap: wrap;
		padding-bottom: calc(var(--gap) * 1.667);
		border-bottom: 1px solid #EAEAEA;
	}
	.footer-widget {
		flex: 0 0 calc(50% - var(--gap) / 2);
		max-width: calc(50% - var(--gap) / 2);
	}
	.footer-bottom {
		flex-direction: column;
		gap: calc(var(--gap) * 1.667);
		flex-direction: column-reverse;
		align-items: normal;
	}
	.copyright {
		margin-bottom: 0;
		text-align: center;
	}
	.footer-logo {
		transform: none;
		text-align: center;
	}
	.footer-logo img {
		width: 360px;
	}

	.blog-items {
		margin: 0 calc(var(--gap) / -3) calc(var(--gap) * -1);	
	}
	.blog-items .blog-item {
		margin: 0 0 var(--gap);
	}
	.swiper-wrapper:not(.blog-items) .blog-item.swiper-slide {
		width: calc((var(--container) - var(--gap) / 1.25) / 2 * .8975);
	}
	.blog-items.columns-3 .blog-item,
	.blog-items.columns-4 .blog-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.swiper-wrapper:not(.blog-items) .blog-item__image,
	.blog-items.columns-3 .blog-item__image,
	.blog-items.columns-4 .blog-item__image {
		flex: 0 0 calc((var(--container) - var(--gap) / 1.5) / 2 / 1.769);
		max-height: calc((var(--container) - var(--gap) / 1.5) / 2 / 1.769);
	}
	.blog-item__title {
		font-size: var(--h5-size);
	}


	.page-header.section-md {
		padding-top: calc(100px + var(--header-height) + (var(--gap) / 1.5) * 2);
		padding-bottom: 100px;
	}
	.page-body.section {
		padding-top: 60px;
	}
	.page-description {
		font-size: var(--h5-size);
	}
	.page-content h1 {
		font-size: var(--h2-size);
	}
	.page-content h2 {
		font-size: var(--h3-size);
	}
	.page-content h3 {
		font-size: var(--h4-size);
	}
	.page-content h4 {
		font-size: var(--h5-size);
	}
	.page-content h5 {
		font-size: var(--h6-size);
	}
	.page-content h6 {
		font-size: var(--h6-size);
	}
	.pageServices-section.section {
		padding-top: 100px;
	}
	.pageServices-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2.5);
		align-items: normal;
	}
	.pageServices-left,
	.pageServices-right {
		flex: auto;
		max-width: 100%;
	}
	.pageServices-image {
		height: calc(var(--container) / 1.413);
		min-height: 445px;
	}
	.services-item__wrap,
	.services-item:nth-child(2n+1) .services-item__wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2.5);
	}
	.services-item__left,
	.services-item__right {
		flex: auto;
		max-width: 100%;
	}
	.servicesTabs-left {
		-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	}
	.services-item__title {
		font-size: calc(var(--h2-size) / 1.1176);
	}
	.services-item__accordion-item__toggle {
		flex: 0 0 40px;
		max-width: 40px;
		width: 40px;
		height: 40px;
	}
	.services-item__accordion-item__toggle:before {
		flex: 0 0 18px;
		max-width: 18px;
		width: 18px;
		height: 18px;
	}
	.services-item__accordion {
		gap: calc(var(--gap) / 1.25);
	}
	.services-item__accordion-item__body,
	.services-item__content-text {
		font-size: var(--text-size);
	}
	.services-item__button .btn {
		width: 100%;
	}
	.services-item__image {
		height: var(--container);
	}
	.services-item.section:not(:last-child) {
		padding-bottom: 0;
	}
	.pageServices-left .heading {
		margin-bottom: calc(var(--gap) * 1.667);
	}
	.heading h1 {
		font-size: var(--h1-size);
	}
	.heading p:not(:first-child) {
		font-size: var(--h5-size);
	}
	.singleServicesInfo-wrap {
		max-width: 100%;
		margin-left: 0;
	}
	.singleServicesInfo-content {
		font-size: var(--h5-size);
		margin-bottom: calc(var(--gap) * 1.667);
	}
	.singleServicesInfo-button .btn {
		width: 100%;
	}
	.pagePrices-section .heading p:first-child {
		font-size: var(--text-size);
	}
	.prices-block {
		gap: calc(var(--gap) * 1.667);
	}
	.prices-block.section-md {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.prices-block.section-md:first-child {
		padding-top: 60px;
	}
	.prices-block__head {
		padding: calc(var(--gap) * 1.25) calc(var(--gap) / 1.25);
	}
	.prices-block__title {
		font-size: calc(var(--h2-size) / 1.0555);
	}
	.prices-items {
		gap: calc(var(--gap) / 1.25);
	}
	.prices-item {
		flex: 0 0 100%;
		max-width: 100%;
		padding: calc(var(--gap) * 1.25) calc(var(--gap) / 1.25);
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}
	.prices-item__head {
		gap: var(--gap);
	}
	.prices-item__title {
		font-size: calc(var(--h3-size) / 1.1667);
		min-height: inherit;
	}
	.prices-item__price sub {
		font-size: var(--text-size-sm);
	}
	.prices-item__button .btn {
		width: 100%;
	}
	.prices-item__body {
		margin-top: calc(var(--gap) * 1.25);
		padding-top: calc(var(--gap) * 1.25);
	}
	.prices-item__content ul {
		gap: calc(var(--gap) / 1.25);
	}
	.prices-item.last {
		flex-direction: column;
	}
	.prices-item.last .prices-item__head {
		flex: auto;
		max-width: 100%;
		justify-content: normal;
	}
	.prices-item.last .prices-item__body {
		margin-top: calc(var(--gap) * 1.25);
		padding-top: calc(var(--gap) * 1.25);
		border-top: 1px solid #DDDDDD;
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
	}
	.page-template-page-about .page-body.section {
		padding-top: 100px;
	}
	.pageAbout-small-heading {
		font-size: var(--text-size);
	}
	
	.about-item__description {
		font-size: var(--text-size);
	}


	/*.pageAbout-bg {
		background-size: 2400px;
	}
	.pageAbout-header:before {
		width: 740px;
		height: 106px;
		bottom: -42px;
		right: calc((100% - var(--container)) / 2 - 52px);
	}
	.pageAbout-header:after {
		bottom: -128px;
		right: calc(50% - 587px - 20px);
	}*/


	.about-item__wrap {
		flex-direction: column-reverse;
		gap: calc(var(--gap) * 2.5);
	}
	.about-item__left,
	.about-item__right {
		flex: auto;
		max-width: 100%;
	}
	.about-item__image {
		height: calc(var(--container) / 1.413);
		min-height: 360px;
	}
	.pageBlog-section .heading.section-md {
		padding-top: 100px;
	}
	.blogPrimary-item__wrap {
		gap: calc(var(--gap) * 1.667);
		flex-direction: column;
	}
	.blogPrimary-item__left,
	.blogPrimary-item__right {
		flex: auto;
		max-width: 100%;
	}
	.blogPrimary-item__image {
		height: calc(var(--container) / 1.769);
	}
	.blogPrimary-item__title {
		font-size: calc(var(--h3-size) / 1.1667);
	}
	.blogPrimary-item__description {
		font-size: var(--h5-size);
	}
	.blogPrimary-item__more .btn {
		width: 100%;
	}
	.blogCats-nav {
		margin-bottom: calc(var(--gap) * 2.5);
	}
	.navigation.pagination {
		margin-top: calc(var(--gap) * 2.5);
	}
	.nav-links {
		justify-content: center;
	}
	.single-post .singleBlog-header.section-md {
		padding-top: 100px;
		padding-bottom: 0;
	}
	.singleBlog-date {
		font-size: var(--text-size);
		margin-bottom: calc(var(--gap) / 1.71);
	}
	.singleBlog-left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.singleBlog-right {
		display: none;
	}
	.singleBlog-image {
		height: calc(var(--container) / 1.7843);
		margin-bottom: calc(var(--gap) * 1.667);
	}
	.page-content blockquote {
		margin-bottom: calc(var(--gap) * 1.1667);
		padding: calc(var(--gap) * 1.25) calc(var(--gap) / 1.5);
	}
	.singleBlog-share {
		margin-top: calc(var(--gap) * 2.5);
	}
	.singleBlog-body {
		overflow: hidden;
	}
	.faq-section.section {
		padding-top: 60px;
	}
	.faq-item {
		padding-bottom: calc(var(--gap) / 1.25);
	}
	.faq-item__head {
		font-size: var(--h4-size);
	}
	.faq-item__toggle {
		flex: 0 0 40px;
		max-width: 40px;
		width: 40px;
		height: 40px;
		-moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
	}
	.faq-item__body {
		margin-top: calc(var(--gap) / 1.25);
	}
	.faq-item__body .page-content {
		font-size: var(--text-size);
	}
	.pageContacts-section .heading p:first-child {
		font-size: var(--text-size);
	}
	.pageContacts-section .heading.section-md {
		padding-top: 100px;
		padding-bottom: 24px;
	}
	.pageContacts-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2.5);
	}
	.pageContacts-left,
	.pageContacts-right {
		flex: auto;
		max-width: 100%;
	}
	.pageContacts-items {
		display: none;
	}
	.pageContacts-content {
		margin-bottom: 0;
	}
	.form-field-button .btn {
		width: 100%;
	}
	.container-md {
		max-width: var(--container);
	}
	.page404-section.section-md {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.error-404-image {
		margin-bottom: calc(var(--gap) * 2.5);
	}
	.error-404-image img {
		max-height: 194px;
	}
	.error-404-title {
		font-size: var(--h1-size);
		margin-bottom: var(--gap);
	}
	.error-404-description {
		font-size: var(--h5-size);
		margin-bottom: calc(var(--gap) * 2.5);
	}
	.error-404-button .btn {
		width: 100%;
	}
	.servicesTabs-image-inner {
		top: -30px;
	}
	.page-description br {
		display: none;
	}
	.ez-toc-mobile-toggle-btn {
		display: none !important;
	}


	.booking-section.section {
		padding-top: calc(100px + var(--header-height) + (var(--gap) / 1.5) * 2);
	}


	.pageService-header.page-header.section-md {
		padding-top: calc(150px + var(--header-height));
		padding-bottom: calc(var(--gap) * 1.5);
		min-height: 424px;
	}


	.pageService-header + .page-body.section {
		padding-top: 100px;
	}
	.pageService-header .page-description {
		line-height: 1.38;
	}
	.pageService-content {
		width: 100%;
		font-size: var(--text-size);
	}
	.pageService-content h1, .pageService-content h2 {
		margin-bottom: var(--gap);
	}
	.pageService-content h2 {
		font-size: calc(var(--h4-size) * 1.2);
	}
	.pageService-content ul {
		margin-bottom: calc(var(--gap) * 1.25);
		gap: calc(var(--gap) / 1.0909);
	}
	.pageService-content ul li:before {
		top: 3px;
	}


	.pageService-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pageService-item__wrap {
		padding: var(--gap);
	}
	.pageService-item__heading {
		font-size: calc(var(--h4-size) * 1.2);
	}
}




@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 24px;
		--header-height: 86px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 48px;
		--h2-size: 38px;
		--h3-size: 28px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.booking-section .heading br {
		display: none;
	}
}




@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 32px);
		--gap: 24px;
		--header-height: 86px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 48px;
		--h2-size: 38px;
		--h3-size: 28px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.pageAbout-header {
		background-image: url(images/bg-header-about-mob.jpg);
	}
	.advantages-item__image {
		top: -24px;
		width: 90%;
		left: 5%;
	}
	.servicesTabs-image {
	  height: calc(var(--container) / .6811);
	}
	.servicesTabs-image-inner {
		top: 0;
	}
	.swiper-wrapper:not(.blog-items) .blog-item.swiper-slide {
		width: calc(var(--container) * .8975);
	}
	.blog-items.columns-3 .blog-item,
	.blog-items.columns-4 .blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.swiper-wrapper:not(.blog-items) .blog-item__image,
	.blog-items.columns-3 .blog-item__image,
	.blog-items.columns-4 .blog-item__image {
		flex: 0 0 calc(var(--container) / 1.769);
		max-height: calc(var(--container) / 1.769);
	}
	.footer-logo img {
		width: 100%;
		max-width: 360px;
	}
}




@media (max-width: 399px) {
	.form-fields {
		margin: 0 calc(var(--gap) / -6) calc(var(--gap) * -1);
	}
	.form-field {
		padding: 0 calc(var(--gap) / 6);
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		padding-left: 8px;
		padding-right: 8px;
	}
}