/*!
Theme Name: Kardan Services
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
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: kardan-services
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.

Kardan Services 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:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--container: 1140px;
	--gap: 20px;
	--radius: 10px;
	--admin-bar: 32px;

	--text-size: 14px;
	--text-size-md: 16px;
	--h1-size: 42px;
	--h2-size: 36px;
	--h3-size: 30px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;

	--text-color: #5B5B5B;
	--heading-color: #343434;
	--main-color: #00A7C3;
	--second-color: #0098B2;
	--white: #FFFFFF;
	--light: #F4F4F4;
}
*, ::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', sans-serif;
	line-height: 1.21;
	color: var(--text-color);
	background: var(--white);
}
a {
	color: var(--main-color);
	transition: .3s ease-out;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	margin: calc(var(--gap) * 2) 0 calc(var(--gap) / 1.25);
	line-height: 1.21;
	color: #343434;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
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: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%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) * 1);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	display: block;
	width: 100%;
	font-size: var(--text-size-md);
	font-weight: 500;
	line-height: 1.2;
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 3.333);
}
::-webkit-input-placeholder {
	color: var(--text-color);
}
::-moz-placeholder {
	color: var(--text-color);
}
:-ms-input-placeholder {
	color: var(--text-color);
}
:-moz-placeholder {
	color: var(--text-color);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--text-color);
	color: var(--heading-color);
	border-radius: calc(var(--radius) / 2);
	padding: calc(var(--gap) / 2.5) calc(var(--gap) / 2);
	height: 40px;
	outline: none;
	transition: .5s;
}
.form-field.icon input {
	padding-left: calc(var(--gap) / 2 + 28px + var(--gap) / 2);
	background-position: calc(var(--gap) / 2) 5px;
	background-repeat: no-repeat;
	background-size: 28px;
}
.form-field.icon-user input {
	background-image: url(images/input-user.svg);
}
.form-field.icon-phone input {
	background-image: url(images/input-phone.svg);
}
.form-field.icon-car input {
	background-image: url(images/input-car.svg);
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
}
.wpcf7 form .wpcf7-response-output {
	margin: var(--gap) 0 0;
	padding: calc(var(--gap) / 2) var(--gap);
}
.wpcf7 form.sent .wpcf7-response-output {
	display: none !important;
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: calc(var(--gap) * 6);
	padding-bottom: calc(var(--gap) * 6);
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: calc(var(--gap) * 3);
	padding-bottom: calc(var(--gap) * 3);
	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;
	}
}
.w-100 {
	width: 100%;
}
.bg-light {
	background: var(--light);
}



.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
	font-size: var(--h6-size);
	font-weight: 500;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading p:first-child {
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--main-color);
	text-transform: uppercase;
	margin-bottom: var(--gap);
}
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 500;
	margin: 0 0 var(--gap);
}
.heading.white h2 {
	color: var(--white);
}
.heading h2:last-child {
	margin-bottom: 0;
}
.heading p span {
	color: var(--main-color);
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 1.667);
	text-align: center;
	font-size: var(--text-size-md);
	font-family: 'Inter', serif;
	font-weight: 500;
	line-height: 1.21;
	border: 1px solid transparent;
	padding: calc(var(--gap) / 2) var(--gap);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	outline: none;
	min-height: 43px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .3s ease-out;
}
.btn-primary {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--second-color);
	border-color: var(--second-color);
	color: var(--white);
}
.btn-outline-primary {
	background-color: transparent;
	border-color: var(--main-color);
	color: var(--main-color);
}
.btn-outline-primary:hover {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: var(--white);
}
.btn-link {
	min-height: auto;
	padding: 1px 0;
	color: var(--heading-color);
}
.btn-link:hover {
	font-weight: 600;
}
.btn-link:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--heading-color);
	transition: .3s ease-out;
	z-index: -1;
}


.swiper-pagination {
	position: relative !important;
	width: auto !important;
	flex: 0 0 auto;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: calc(var(--gap) / 2.5);
}
.swiper-pagination-bullet {
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px !important;
	height: 10px !important;
	background: #E7E7E7 !important;
	margin: 0 !important;
	opacity: 1 !important;
	border-radius: 50% !important;
}
.swiper-pagination-bullet-active {
	background: var(--main-color) !important;
}

button.swiper-navigation {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	background: var(--white);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .3s ease-out;
	z-index: 3;
}
button.swiper-navigation:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/chevron-swiper.svg);
    mask-image: url(images/chevron-swiper.svg);
    background-color: var(--heading-color);
    flex: 0 0 12px;
    max-width: 12px;
    width: 12px;
    height: 12px;
    transition: .3s ease-out;
}
button.swiper-navigation.prev:before {
	transform: scale(-1, 1);
}
button.swiper-navigation:hover:before {
	background-color: var(--main-color);
}



.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%;
	max-width: 340px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 80px var(--gap) calc(var(--gap) * 3);
	border-radius: var(--radius) 0 0 var(--radius);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: var(--gap);
	right: var(--gap);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--main-color);
	width: 42px;
	height: 42px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--heading-color);
}
.mobile-menu {
	margin: 0 0 calc(var(--gap) * 1.5);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
	font-size: var(--h6-size);
	font-weight: 500;
}
.mobile-menu li a {
	color: var(--heading-color);
	text-decoration: none;
}
.mobile-menu li:hover > a {
	color: var(--main-color);
}
.mobile-menu ul {
	display: none;
}
.mobile-menu .menu-item-44,
.mobile-menu .menu-item-246 {
	display: none;
}

.mobile-contacts {
	margin-bottom: calc(var(--gap) * 1.5);
}
.mobile-contacts-title {
	font-size: var(--h4-size);
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 1.667);
}
.mobile-contacts-info {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
}
.mobile-contacts-info li {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 4);
	padding-left: 32px;
	z-index: 1;
}
.mobile-contacts-info li:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--heading-color);
	z-index: 1;
}
.mobile-contacts-info li.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.mobile-contacts-info li.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.mobile-contacts-info li.schedule:before {
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
}
.mobile-contacts-info li.e-mail:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.mobile-contacts-info .label {
	font-size: var(--h6-size);
	font-weight: 500;
}
.mobile-contacts-info li.phone .value {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: calc(var(--gap) / 3.333);
}
.mobile-contacts-info li a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--heading-color);
	text-decoration: none;
	z-index: 1;
}
.mobile-contacts-info li a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--heading-color);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.mobile-contacts-info li a:hover:before {
	opacity: 1;	
}




.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	margin-bottom: calc(var(--gap) * 1.5);
	text-align: center;
	text-transform: uppercase;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--main-color);
	width: 42px;
	height: 42px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--heading-color);
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: calc(var(--gap) + 2px) calc(var(--gap) / -2) 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: calc(var(--gap) * -1);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 var(--gap);
	padding: 0 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.5);
}
.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.5);
}
.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.5);
}
.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.5);
}
.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.5);
}
.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.5);
}
.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.5);
}
.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.5);
}
.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: calc(var(--gap) * 2);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: calc(var(--gap) * 2);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}


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

.header {
	position: sticky;
	top: 0;
	background: var(--text-color);
	padding: calc(var(--gap) / 2) 0;
	z-index: 92;
}
.admin-bar .header {
	top: var(--admin-bar);
}
.header-wrap {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.5);
}
.header-logo img {
	max-height: 70px;
}
.header-logo {
	display: flex;
	align-items: center;
	gap: var(--gap);
	font-size: var(--h6-size);
	font-style: italic;
	font-weight: 500;
}
.header-logo a {
	color: var(--white);
	text-decoration: none;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.5);
	font-size: var(--text-size-md);
	font-weight: 500;
}
.main-menu li a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.main-menu li a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--white);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.main-menu li a:hover:before {
	opacity: 1;
}
.header-right {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.5);
}
.header-contacts {
	flex: 0 0 auto;
	font-size: var(--text-size-md);
	font-weight: 500;
	margin: 0;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 3.333);
}
.header-contacts:before {
	content: '';
	flex: 0 0 19px;
	max-width: 19px;
	width: 19px;
	height: 19px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--main-color);
}
.header-contacts.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.header-contacts.email:before {
	display: none;
}
.header-contacts a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.header-contacts a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--white);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.header-contacts a:hover:before {
	opacity: 1;
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-md);
	font-weight: 500;
	text-transform: uppercase;
}
.lang-menu li a {
	color: var(--main-color);
	text-decoration: none;
}
.lang-menu li a:hover {
	color: var(--white);
}

.header-toggle,
.headerMob-phone {
	position: relative;
	display: flex;
	z-index: 1;
}
.header-toggle button,
.headerMob-phone button {
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .3s ease-out;
}
.header-toggle button:hover,
.headerMob-phone button:hover {
	background: var(--second-color);
}
.header-toggle button:before,
.headerMob-phone button:before {
	content: '';
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: 0 0 18px;
	max-width: 18px;
	height: 18px;
}
.header-toggle button:before {
	background-image: url(images/menu.svg);
}
.headerMob-phone button:before {
	background-image: url(images/phone-mob.svg);
	z-index: 2;
}
.headerMob-phone-sub {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 21px;
	width: max-content;
	font-weight: 500;
	background: var(--main-color);
	display: none;
	flex-direction: column;
	align-items: flex-start;
	gap: calc(var(--gap) / 2);
	padding: calc(var(--gap) / 1.667) calc(var(--gap) * 2) calc(var(--gap) / 1.667) calc(var(--gap) / 1.667);
	z-index: 1;
}
.headerMob-phone-sub.active {
	display: flex;
}
.headerMob-phone-sub a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.headerMob-phone-sub a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--white);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.headerMob-phone-sub a:hover:before {
	opacity: 1;
}







.infoLine-section {
	position: relative;
	padding: calc(var(--gap) / 1.667) 0;
	background: var(--light);
	z-index: 1;
}
.infoLine-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
}
.infoLine-image {
	flex: 0 0 27px;
	max-width: 27px;
	width: 27px;
}
.infoLine-content {
	color: var(--heading-color);
	font-size: var(--h6-size);
}
.infoLine-content strong {
	font-weight: 600;
}


.footer {
	position: relative;
	padding: calc(var(--gap) * 2.5) 0 var(--gap);
	color: var(--white);
	z-index: 1;
}
.footer-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.footer-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: .7;
	z-index: 1;
}
.footer a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--white);
	text-decoration: none;
	z-index: 1;
}
.footer a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--white);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.footer a:hover:before {
	opacity: 1;	
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.footer-widget {
	flex: auto;
	max-width: 314px;
}
.footer-widget-title {
	font-size: var(--h6-size);
	font-weight: 600;
}
.footer-logo {
	margin-bottom: calc(var(--gap) * 1.5);
	display: flex;
	align-items: center;
	gap: var(--gap);
	font-size: var(--h6-size);
	font-style: italic;
	font-weight: 500;
}
.footer-logo a {
	color: var(--white);
	text-decoration: none;
}
.footer-logo img {
	max-height: 100px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	font-size: var(--text-size-md);
}
.footer-menu ul {
	display: none;
}
.footer-contacts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.667);
}
.footer-contacts li {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 4);
	padding-left: 32px;
	z-index: 1;
}
.footer-contacts li:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	z-index: 1;
}
.footer-contacts li.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts li.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.footer-contacts li.schedule:before {
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
}
.footer-contacts li.e-mail:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.footer-contacts .label {
	font-size: var(--text-size-md);
	font-weight: 500;
}
.footer-contacts li.phone .value {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 1.5);
}
.footer-bottom {
	margin-top: calc(var(--gap) * 1.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.copyright,
.developer {
	flex: auto;
	max-width: 314px;
	margin: 0;
}
.footer-bottom:after {
	content: '';
	flex: auto;
	max-width: 314px;
}



.page-wrapper.section {
	padding-top: calc(var(--gap) * 3.5);
}
.page-header {
	padding-bottom: calc(var(--gap) * 2);
}
.page-title {
	font-size: var(--h1-size);
	font-size: 500;
}


.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	font-weight: 600;
	text-align: center;
	line-height: 1;
}
.error-404-button {
	text-align: center;
}



.hero-section.section {
	min-height: 648px;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-wrap {
	max-width: 670px;
}
.hero-content {
	font-size: var(--h5-size);
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) * 2);
}
.hero-content h1 {
	font-size: calc(var(--h1-size) * 1.4285);
	font-weight: 600;
	line-height: 1.0833;
}
.heroAdvantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / 2 / -2) calc(var(--gap) / -2);
}
.heroAdvantages-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap) / 2);
	padding: 0 calc(var(--gap) / 2 / 2);
}
.heroAdvantages-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
	padding: calc(var(--gap) / 2);
	z-index: 1;
}
.heroAdvantages-item__wrap span {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
}
.heroAdvantages-item__wrap p {
	color: var(--heading-color);
}
.hero-footer {
	margin-top: calc(var(--gap) * 2);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 3);
}
.hero-footer .btn {
	flex: 0 0 auto;
}
.hero-phone {
	color: var(--heading-color);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.hero-phone p {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	font-size: var(--text-size-md);
	font-weight: 500;
}
.hero-phone p:before {
	content: '';
	flex: 0 0 19px;
	max-width: 19px;
	width: 19px;
	height: 19px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
	background-color: var(--heading-color);
}
.hero-phone p a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--heading-color);
	text-decoration: none;
	margin-right: var(--gap);
	z-index: 1;
}
.hero-phone p a:last-child {
	margin-right: 0;
}
.hero-phone p a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--heading-color);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.hero-phone p a:hover:before {
	opacity: 1;
}



.counters-items {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.counters-item {
	flex: 0 0 calc(100% / 3);
	max-width: 314px;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.counters-item__wrap {
	text-align: center;
}
.counters-item__value {
	margin-bottom: calc(var(--gap) / 2);
	font-size: calc(var(--h1-size) * 1.4285);
	font-weight: 600;
	letter-spacing: -.03em;
	color: var(--heading-color);
}
.counters-item__label {
	position: relative;
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 2);
	z-index: 1;
}
.counters-item__label:after {
	content: '';
	width: 100%;
	height: 2px;
	max-width: 240px;
	margin: calc(var(--gap) / 2) auto 0;
	display: block;
	background: var(--main-color);
}


.services-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.services-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.services-item__wrap {
	position: relative;
	padding: var(--gap);
	background: var(--light);
	border-radius: var(--radius);
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: calc(var(--gap) * 1.2);
	z-index: 1;
}
.services-item__image {
	position: relative;
	flex: 0 0 192px;
	max-width: 192px;
	z-index: 1;
}
.services-item__image.mobile {
	display: none;
}
.services-item__image:after {
	content: '';
	background: linear-gradient(90deg, rgba(244, 244, 244, 0) 75.48%, #F4F4F4 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.services-item__info {
	flex: auto;
	max-width: calc(100% - 192px - var(--gap) * 1.2);
}
.services-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 1.25);
}
.services-item__content {
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 1.25);
}
.services-item__content ul {
	color: var(--text-color);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.services-item__content ul li {
	position: relative;
	padding-left: 24px;
	z-index: 1;
}
.services-item__content ul li:before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	background: url(images/list-check.svg) no-repeat center;
	background-size: contain;
	top: 0;
	left: 0;
	z-index: 1;
}
.services-item__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.services-item__price {
	margin: 0;
	font-size: var(--text-size-md);
	font-weight: 500;
	color: var(--heading-color);
}
.services-item__price span {
	font-size: var(--h5-size);
	font-weight: 700;
}


.banner-wrap {
	position: relative;
	background: #EBEBEB;
	margin-top: var(--gap);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	z-index: 1;
}
.banner-left {
	flex: 0 0 50%;
	max-width: 50%;
	padding: calc(var(--gap) * 2) var(--gap);
}
.banner-right {
	flex: 0 0 50%;
	max-width: 50%;
	padding: calc(var(--gap) * 2) 0;
}
.banner-image {
	width: calc(100% + var(--gap));
}
.banner-lbl {
	margin-bottom: var(--gap);
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--main-color);
	text-transform: uppercase;
}
.banner-content {
	font-size: var(--h6-size);
	font-weight: 500;
	margin-bottom: calc(var(--gap) * 1.5);
}
.banner-content h2 {
	font-size: var(--h1-size);
	font-weight: 500;
}
.banner-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2) var(--gap);
	font-size: var(--text-size);
	font-weight: 400;
}
.banner-content ul li {
	flex: calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	position: relative;
	padding-left: 24px;
	z-index: 1;
}
.banner-content ul li:before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	background: url(images/list-check.svg) no-repeat center;
	background-size: contain;
	top: 0;
	left: 0;
	z-index: 1;
}
.banner-meta {
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.banner-meta p {
	color: var(--heading-color);
	margin: 0;
}
.banner-meta .btn {
	flex: 0 0 auto;
}



.steps-section {
	overflow: hidden;
}
.steps-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 calc(var(--gap) * -1.8) calc(var(--gap) * -2);
}
.steps-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 calc(var(--gap) * 2);
	padding: 0 calc(var(--gap) * 1.8);
}
.steps-item__wrap {
	position: relative;
	padding-top: 13px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}
.steps-item__wrap:after {
	content: '';
	position: absolute;
	width: 32px;
	height: 32px;
	background: url(images/steps-arrow.svg) no-repeat center;
	background-size: contain;
	top: 50%;
	left: calc(100% + 20px);
	transform: translateY(-50%);
	z-index: 1;
}
.steps-item:nth-child(3n) .steps-item__wrap:after,
.steps-item:last-child .steps-item__wrap:after {
	display: none;
}
.steps-item__image {
	position: relative;
	flex: 0 0 120px;
	max-height: 120px;
	width: 120px;
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--gap);
	z-index: 1;
}
.steps-item__image img {
	max-width: 60px;
	max-height: 60px;
}
.steps-item__image span {
	position: absolute;
	top: -13px;
	left: -5px;
	width: 42px;
	height: 42px;
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--main-color);
	z-index: 1;
}
.steps-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--heading-color);
	margin-bottom: calc(var(--gap) / 2);
}


.price-blocks {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
}
.price-heading {
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: var(--gap);
	text-transform: uppercase;
}
.price-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.price-item {
	position: relative;
	background: var(--white);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
	border-radius: var(--radius);
	padding: calc(var(--gap) / 2) var(--gap);
	display: flex;
	align-items: center;
	min-height: 44px;
	justify-content: space-between;
	gap: var(--gap);
	color: var(--heading-color);
	font-size: var(--text-size-md);
	z-index: 1;
}
.price-item strong {
	flex: 0 0 auto;
	font-size: var(--text-size);
	font-weight: 500;
}



.quiz-section {
	overflow: hidden;
}
.quiz-wrap {
	display: flex;
	gap: calc(var(--gap) * 2);
}
.quiz-left {
	flex: 0 0 calc(61% - var(--gap));
	max-width: calc(61% - var(--gap));
}
.quiz-right {
	flex: 0 0 calc(39% - var(--gap));
	max-width: calc(39% - var(--gap));
}
.quiz-image {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.667);
	z-index: 1;
}
.quiz-image:after {
	content: '';
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 57.45%, #FFFFFF 109.37%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.quizAdvantages-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.quizAdvantages-item {
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.quizAdvantages-item__image {
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quizAdvantages-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.quizAdvantages-item p {
	flex: auto;
	max-width: calc(100% - 42px - var(--gap));
}
.quizAdvantages-item p span {
	display: block;
	margin-bottom: calc(var(--gap) / 4);
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--heading-color);
}






.quiz-block {
	display: none;
}
.quiz-block.active {
	display: block;
}
.quiz-block__wrap {
	position: relative;
	z-index: 1;
}
.quiz-block__progress {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: calc(var(--gap) * 2);
	z-index: 1;
}
.quiz-block__progress:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	background: #E7E7E7;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
	z-index: -1;
}
.quiz-block__progress span {
	position: relative;
	flex: 0 0 42px;
	max-width: 42px;
	height: 42px;
	background: #E7E7E7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
	z-index: 1;
}
.quiz-block__progress span:nth-child(1) {
	z-index: 4;
}
.quiz-block__progress span:nth-child(2) {
	z-index: 3;
}
.quiz-block__progress span:nth-child(3) {
	z-index: 2;
}
.quiz-block__progress span:nth-child(4) {
	z-index: 1;
}
.quiz-block__progress span.active {
	background: var(--main-color);
	color: var(--white);
}
.quiz-block__progress span.active:before {
	content: '';
	position: absolute;
	width: var(--container);
	height: 2px;
	background: var(--main-color);
	right: 100%;
	z-index: -1;
}
.quiz-block__info {
	margin-bottom: var(--gap);
}
.quiz-block__heading {
	margin-bottom: var(--gap);
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
	text-transform: uppercase;
}
.quiz-block__heading:last-child {
	margin-bottom: 0;
}

.quiz-block__items {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 2.5);
}
.quiz-block__item {
	position: relative;
	background: var(--light);
	border: 2px solid var(--light);
	border-radius: var(--radius);
	outline: none;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.1);
	font-size: var(--text-size-md);
	font-weight: 500;
	color: var(--heading-color);
	cursor: pointer;
	transition: .3s ease-out;
	z-index: 1;
}
.quiz-block__item.active {
	border-color: var(--main-color);
	color: var(--main-color);
}
.quiz-block__inputField {
	margin-bottom: var(--gap);
}

.quiz-block__form .form-field-button {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.quiz-block__nav {
	margin-top: calc(var(--gap) * 2);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 2);
}
.quiz-block__nav .btn:after {
	content: '';
	background: url(images/arrow-right.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 13px;
	max-width: 13px;
	width: 13px;
	height: 13px;
}













.photogallery-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.photogallery-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.photogallery-item__image {
	border-radius: calc(var(--radius) / 2);
	overflow: hidden;
	height: calc((var(--container) - var(--gap) * 3) / 4 / .77);
}
.photogallery-item__image a:hover img {
	transform: scale(1.1);
}
.photogallery-nav {
	display: none;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
	margin-top: calc(var(--gap) * 1.5);
}



.process-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.process-left {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.process-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: 432px;
}
.process-wrap .heading {
	max-width: 520px;
}
.process-description {
	font-size: var(--h6-size);
	font-weight: 500;
	margin-bottom: var(--gap);
}
.process-items {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.process-item {
	display: flex;
	align-items: center;
	gap: var(--gap);
	padding-bottom: var(--gap);
	border-bottom: 1px solid #E7E7E7;
}
.process-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.process-item__image {
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.process-item__image img {
	max-width: 18px;
	max-height: 18px;
}
.process-item p {
	flex: auto;
	max-width: calc(100% - 42px - var(--gap));
}
.process-item p span {
	display: block;
	margin-bottom: calc(var(--gap) / 4);
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--heading-color);
}
.process-button {
	margin-top: calc(var(--gap) * 3);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) * 1.5);
}




.processVideo-item__video {
	height: calc(432px / .6956);
	overflow: hidden;
	border-radius: var(--radius);
}
.processVideo-item__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.processVideo-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
	margin-top: calc(var(--gap));
}


.ti-widget.ti-goog .ti-widget-container {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}
.ti-widget.ti-goog .ti-controls .ti-prev {
	left: -20px !important;
}
.ti-widget.ti-goog .ti-controls .ti-next {
	right: -20px !important;
}


.feedback-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.feedback-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.feedback-left {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.feedback-wrap .heading {
	max-width: 437px;
}
.feedbackAdvantages-items {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 2) var(--gap);
}
.feedbackAdvantages-item {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.feedbackAdvantages-item__image {
	flex: 0 0 56px;
	max-width: 56px;
	width: 56px;
	text-align: center;
}
.feedbackAdvantages-item p {
	flex: auto;
	max-width: calc(100% - 56px - var(--gap));
	color: var(--white);
}
.feedbackAdvantages-item p span {
	display: block;
	margin-bottom: calc(var(--gap) / 3.333);
	font-size: var(--text-size-md);
	font-weight: 500;
}
.feedback-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: 432px;
}
.feedback-form {
	position: relative;
	padding: calc(var(--gap) * 1.5);
	background: var(--white);
	border-radius: var(--radius);
	z-index: 1;
}
.feedback-form-heading {
	margin-bottom: calc(var(--gap) * 1.5);
	text-align: center;
	text-transform: uppercase;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--heading-color);
}





.contacts-wrap {
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}
.contacts-left {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.contacts-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: 432px;
}
.contacts-info {
	margin: 0 0 calc(var(--gap) * 1.5);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
}
.contacts-info li {
	position: relative;
	margin-bottom: var(--gap);
	padding-bottom: var(--gap);
	border-bottom: 1px solid #E7E7E7;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 4);
	padding-left: 62px;
	z-index: 1;
}
.contacts-info li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.contacts-info li .icon {
	position: absolute;
	width: 42px;
	height: 42px;
	top: 0;
	left: 0;
	border: 1px solid var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	z-index: 1;
}
.contacts-info li .icon:before {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--main-color);
}
.contacts-info li.phone .icon:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.contacts-info li.address .icon:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.contacts-info li.schedule .icon::before {
	-webkit-mask-image: url(images/calendar.svg);
	mask-image: url(images/calendar.svg);
}
.contacts-info li.e-mail .icon::before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.contacts-info .label {
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--heading-color);
}
.contacts-info a {
	position: relative;
	display: inline-block;
	padding: 1px 0;
	color: var(--text-color);
	text-decoration: none;
	z-index: 1;
}
.contacts-info a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: var(--text-color);
	opacity: 0;
	transition: .3s ease-out;
	z-index: -1;
}
.contacts-info a:hover:before {
	opacity: 1;	
}
.contacts-info li.phone .value {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) * 1.5);
}
.contacts-map {
	height: 100%;
}
.contacts-map iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--radius);
}




.page-template-page-thanks .page-title {
	text-align: center;
}
.page-template-page-thanks .page-content {
	text-align: center;
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--heading-color);
	margin: 0 auto calc(var(--gap) * 2);
	max-width: 560px;
}




@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 20px;
		--radius: 10px;
		--admin-bar: 32px;

		--text-size: 14px;
		--text-size-md: 15px;
		--h1-size: 36px;
		--h2-size: 30px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.header-wrap,
	.main-menu,
	.header-right {
		gap: var(--gap);
	}
	.hero-section.section {
		min-height: 600px;
	}
	.hero-footer {
		flex-direction: column;
		gap: var(--gap);
		align-items: flex-start;
	}
	.services-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}




@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 20px;
		--radius: 10px;
		--admin-bar: 32px;

		--text-size: 14px;
		--text-size-md: 15px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 16px;
	}
	h1, h2, h3, h4, h5, h6 {
		margin-top: calc(var(--gap) * 1.5);
	}
	.page-content h1,
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6,
	.page-content p,
	.page-content ul,
	.page-content ol,
	.page-content blockquote {
		margin-bottom: calc(var(--gap) / 2);
	}
	.section {
		padding-top: calc(var(--gap) * 4);
		padding-bottom: calc(var(--gap) * 4);
	}
	.section-sm {
		padding-top: calc(var(--gap) * 3);
		padding-bottom: calc(var(--gap) * 3);
	}
	.header {
		padding: calc(var(--gap) / 1.25) 0;
	}
	.header-wrap {
		height: 42px;
		gap: calc(var(--gap) / 1.667);
	}
	.header-logo {
		flex: auto;
		font-size: var(--text-size);
		gap: calc(var(--gap) / 2);
	}
	.header-logo img {
		max-height: 42px;
	}
	.main-menu,
	.header-right {
		display: none;
	}
	.infoLine-section {
		padding: calc(var(--gap) / 2) 0;
	}
	.infoLine-content {
		font-size: 12px;
	}
	.hero-section.section {
		padding: calc(var(--gap) * 2) 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 800px;
		overflow: hidden;
	}
	.hero-bg {
		width: 170%;
	}
	.hero-bg img {
		object-position: 0 center;
		width: ;
	}
	.hero-image {
		position: relative;
		flex: 0 0 calc(100vw / 1.21);
		max-height: calc(100vw / 1.21);
		margin-top: -25%;
		z-index: -1;
	}
	.hero-wrap {
		max-width: 100%;
	}
	.hero-content {
		margin-bottom: var(--gap);
		color: #371111;
	}
	.hero-content h1 {
		color: #371111;
		margin-bottom: var(--gap);
		font-size: calc(var(--h1-size) * 1.5);
	}
	.hero-content p br {
		display: none;
	}
	.heroAdvantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.hero-footer {
		margin-top: var(--gap);
		align-items: normal;
	}
	.hero-phone {
		color: #371111;
	}
	.hero-phone p {
		font-size: var(--h6-size);
	}
	.hero-phone p a {
		color: #371111;
	}
	.hero-phone p:before {
		background-color: #371111;
	}
	.counters-items {
		flex-direction: column;
		align-items: center;
		margin: 0;
		gap: calc(var(--gap) * 1.5);
	}
	.counters-item {
		flex: auto;
		margin: 0;
		padding: 0;
	}
	.counters-item__value {
		font-size: calc(var(--h1-size) * 2.08333);
	}
	.heading {
		margin-bottom: var(--gap);
	}
	.heading.center {
		text-align: left;
	}
	.services-item__image.mobile {
		display: block;
	}
	.services-item__image.desktop {
		display: none;
	}
	.services-item__wrap {
		flex-direction: column;
	}
	.services-item__image {
		flex: 0 0 auto;
		max-height: inherit;
		max-width: 100%;
	}
	.services-item__image:after {
		background: linear-gradient(0deg, rgba(244, 244, 244, 0) 75.48%, #F4F4F4 100%);
	}
	.services-item__info {
		max-width: 100%;
	}
	.services-item__title {
		font-size: var(--text-size);
	}
	.services-item__price {
		font-size: var(--h5-size);
	}
	.services-item__price span {
		font-size: var(--h4-size);
	}
	.banner-wrap {
		flex-direction: column;
		padding: var(--gap);
	}
	.banner-left,
	.banner-right {
		flex: auto;
		max-width: 100%;
		padding: 0;
	}
	.banner-lbl {
		font-size: var(--text-size);
	}
	.banner-content {
		margin-bottom: var(--gap);
	}
	.banner-meta {
		flex-direction: column;
		align-items: normal;
		gap: calc(var(--gap) / 2);
	}
	.banner-image {
		text-align: center;
	}
	.steps-items {
		flex-direction: column;
		margin: 0;
		gap: calc(var(--gap) * 3.6);
	}
	.steps-item {
		margin: 0;
		padding: 0;
		flex: auto;
		max-width: 100%;
	}
	.steps-item__wrap {
		padding-top: 11px;
	}
	.steps-item__image {
		flex: 0 0 100px;
		max-height: 100px;
		width: 100px;
	}
	.steps-item__image img {
		max-width: 42px;
		max-height: 42px;
	}
	.steps-item__image span {
		top: -11px;
		width: 34px;
		height: 34px;
		font-size: var(--h4-size);
	}
	.steps-item__title {
		font-size: var(--text-size);
	}
	.steps-item__wrap:after {
		top: calc(100% + 20px);
		left: 50%;
		transform: translate(-50%, 0) rotate(90deg);
	}
	.steps-item:nth-child(3n) .steps-item__wrap:after {
		display: block;
	}
	.price-section .heading.center {
		text-align: center;
	}
	.price-heading {
		font-size: var(--text-size);
	}
	.price-item {
		font-size: var(--h6-size);
	}
	.quiz-wrap {
		flex-direction: column;
	}
	.quiz-left {
		flex: auto;
		max-width: 100%;
	}
	.quiz-right {
		flex: auto;
		max-width: 100%;
	}
	.quiz-image {
		display: none;
	}
	.heading p:first-child {
		font-size: var(--text-size);
		margin-bottom: calc(var(--gap) / 1.25);
	}
	.heading h2 {
		margin-bottom: calc(var(--gap) / 1.25);
	}
	.quiz-block__progress {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.quiz-block__progress span {
		font-size: var(--h3-size);
	}
	.quiz-block__info,
	.quiz-block__heading,
	.quiz-block__inputField {
		margin-bottom: calc(var(--gap) / 1.25);
	}
	.quiz-block__heading {
		font-size: var(--text-size);
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
		height: 48px;
	}
	.quiz-block__nav {
		margin-top: var(--gap);
		gap: calc(var(--gap) / 2);
		flex-direction: column-reverse;
		align-items: normal;
	}
	.quizAdvantages-items {
		background: var(--light);
		border-radius: var(--radius);
		padding: calc(var(--gap) / 2);
	}
	.process-wrap,
	.feedback-wrap,
	.contacts-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 2);
	}
	.process-left,
	.process-right,
	.feedback-left,
	.feedback-right,
	.contacts-left,
	.contacts-right {
		flex: auto;
		max-width: 100%;
	}
	.process-button {
		margin-top: calc(var(--gap) * 1.5);
		flex-direction: column;
		align-items: center;
		gap: var(--gap);
	}
	.process-button .btn-primary {
		width: 100%;
	}
	.processVideo-item__video {
		height: calc(var(--container) / .6956);
	}
	.processVideo-nav {
		margin-top: var(--gap);
	}
	button.swiper-navigation {
		display: none;
	}
	.feedback-wrap .heading {
		max-width: 100%;
	}
	.feedbackAdvantages-items {
		flex-direction: column;
		gap: calc(var(--gap) / 1.25);
	}
	.feedbackAdvantages-item {
		flex: auto;
		max-width: 100%;
	}
	.feedbackAdvantages-item p span {
		font-size: var(--h6-size);
	}
	.form-field.icon input {
		background-position: calc(var(--gap) / 2) 9px;
	}
	.contacts-info {
		margin-bottom: var(--gap);
	}
	.contacts-info li {
		margin-bottom: calc(var(--gap) / 1.25);
		padding-bottom: calc(var(--gap) / 1.25);
	}
	.contacts-map {
		height: 360px;
	}
	.footer {
		padding: calc(var(--gap) * 1.75) 0;
	}
	.footer-wrap {
		flex-direction: column;
		gap: calc(var(--gap) * 1.5);
	}
	.footer-widget {
		max-width: 100%;
	}
	.footer-logo {
		margin-bottom: var(--gap);
		gap: calc(var(--gap) / 2);
		font-size: var(--text-size);
	}
	.footer-logo img {
		max-height: 70px;
	}
	.footer-widget-title {
		font-size: var(--h4-size);
		margin-bottom: calc(var(--gap) / 2);
	}
	.footer-menu,
	.footer-contacts .label {
		font-size: var(--h6-size);
	}
	.footer-bottom {
		flex-direction: column-reverse;
		gap: calc(var(--gap) / 1.667);
		align-items: normal;
	}
	.page-wrapper.section {
		padding-top: calc(var(--gap) * 3);
	}
	.page-header {
		padding-bottom: calc(var(--gap) * 1.5);
	}
	.error-404-number {
		font-size: calc(var(--h1-size) * 7);
	}
	body.page-template-page-thanks .page-wrapper.section {
		padding: calc(var(--gap) * 6) 0;
	}
	.page-template-page-thanks .page-content {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.lang-menu {
		font-size: var(--h6-size);
		margin-bottom: calc(var(--gap) * 1.25);
	}
	.lang-menu li a:hover {
		color: var(--heading-color);
	}
	.quiz-block__form .form-field-button {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
		align-items: normal;
	}
}






@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 20px;
		--radius: 10px;
		--admin-bar: 46px;

		--text-size: 14px;
		--text-size-md: 15px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 16px;
	}
	.photogallery-items {
		margin: 0;
		flex-wrap: nowrap;
	}
	.photogallery-item {
		margin: 0;
		padding: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.photogallery-item__image {
		height: calc(var(--container) / .6542);
	}
	.photogallery-nav {
		display: flex;
	}
}






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

		--text-size: 14px;
		--text-size-md: 15px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 16px;
		--h6-size: 16px;
	}
	.modal-dialog {
		max-width: var(--container);
	}
}