/*!
Theme Name: Bidzilya
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bidzilya
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.

Bidzilya 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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--container: 1316px;

	--text-size: 18px;
	--text-size-sm: 16px;
	--h1-size: 48px;
	--h2-size: 40px;
	--h3-size: 36px;
	--h4-size: 30px;
	--h5-size: 24px;
	--h6-size: 20px;

	--radius: 30px;

	--blue: #52B0CD;
	--blue-dark: #031B4E;
	--white: #FFFFFF;
	--grey: #616263;
	--bg-blue-dark: #001543;
	--bg-light: #F5F9FC;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: #D9D9D9;
}
::-webkit-scrollbar-thumb {
	background: var(--blue);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.3888;
	color: var(--blue-dark);
	background: var(--white);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
.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: 'Open Sans', sans-serif;
	font-weight: 700;
	margin: 30px 0 15px;
	line-height: 1.1;
}
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 15px;
}
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 -10px -20px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size-sm);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid #D2D2D2;
	color: var(--blue-dark);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	padding: 18px 30px;
	height: 55px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 110px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.w-100 {
	width: 100%;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size-sm);
	text-align: center;
	background: var(--white);
}


.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	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;
	}
}
.bg-blue-dark {
	background: var(--bg-blue-dark);
}
.bg-light {
	background: var(--bg-light);
}


.heading {
	position: relative;
	margin-bottom: 45px;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading p:first-child {
	text-transform: uppercase;
	margin-bottom: 10px;
}
.heading.white p:first-child {
	color: var(--blue);
}
.heading h1,
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 600;
	margin-top: 0;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size-sm);
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 14px 34px;
	-moz-border-radius: 28px;
	-webkit-border-radius: 28px;
	border-radius: 28px;
	outline: none;
	min-width: 220px;
	min-height: 55px;
	text-decoration: none;
	cursor: pointer;
	transition: .5s;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}


.swiper-navigation {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 30px;
	z-index: 9;
}
.swiper-navigation button {
	position: relative;
	flex: 0 0 63px;
	max-width: 63px;
	width: 63px;
	height: 24px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    background-color: var(--blue-dark);
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
	transition: .5s;
}
.swiper-navigation.white button {
	background-color: var(--white);
}
.swiper-navigation button.swiper-navigation-prev {
	transform: scale(-1, 1);
}
.swiper-navigation button:hover,
.swiper-navigation.white button:hover {
	background: var(--blue);
}



.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
}
.soc-links li.soc-desktop {
	display: none;
}
@media (min-width: 992px) {
	.soc-links li.soc-desktop {
		display: block;
	}
	.soc-links li.soc-mobile {
		display: none;
	}
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}
.soc-links li a svg {
	max-width: 100%;
	flex: 0 0 100%;
	height: 100%;
}
.soc-links li a path {
	fill: var(--blue-dark);
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--blue);
}
.soc-links.blue li a path {
	fill: var(--blue);
}
.soc-links.blue li a:hover path {
	fill: var(--white);
}



.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-color: rgba(255, 255, 255, .6);
	backdrop-filter: blur(12px);
	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(--bg-blue-dark);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px 20px 20px;
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	width: 36px;
	height: 36px;
	border: none;
	padding: 0;
	outline: none !important;
	cursor: pointer;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
}
.mobile-menu li a {
	font-size: var(--h6-size);
	font-weight: 500;
	display: block;
	color: var(--white);
	text-decoration: none;
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}



.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: 460px;
	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(--bg-blue-dark);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background-clip: padding-box;
	outline: 0;
	padding: 40px 30px 30px;
	-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: rgba(255, 255, 255, .6);
	backdrop-filter: blur(12px);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: 1;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	font-weight: 600;
	text-align: center;
	color: var(--white);
	margin-bottom: 30px;
}
.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(--white);
	width: 34px;
	height: 34px;
	top: 15px;
	right: 15px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--blue);
}


.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: 26px -12px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -24px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item * {
	height: 100%;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 50px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 50px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

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

.header {
	position: sticky;
	top: 0;
	background: var(--bg-blue-dark);
	color: var(--white);
	padding: 10px 0;
	border-bottom: 1px solid #D9D9D9;
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
	gap: 30px;
}
.header-logo img {
	max-height: 84px;
}
.main-menu {
	display: flex;
	align-items: center;
	margin: 0 0 0 55px;
	padding: 0;
	list-style: none;
	gap: 40px;
	font-size: var(--text-size-sm);
	font-weight: 600;
}
.main-menu li a {
	color: var(--white);
	text-decoration: none;
}
.main-menu li a:hover {
	color: var(--blue);
}
.header-phone {
	flex: 0 0 auto;
}
.header-phone a {
	display: inline-flex;
	align-items: center;
	font-size: var(--h5-size);
	color: var(--white);
	text-decoration: none;
}
.header-phone a:hover {
	color: var(--blue);
}
.header-phone a:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-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(--blue);
	margin-right: 10px;
	transition: .5s;
}
.header-phone a:hover:before {
	background-color: var(--white);
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	-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);
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: .5s;
}
.header-toggle button:hover {
	background: var(--blue);
}





.footer {
	position: relative;
	z-index: 1;
}
.footer-main {
	position: relative;
	background: var(--bg-light);
	padding: 60px 0;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 -15px -30px;
}
.footer-widget {
	max-width: 25%;
	padding: 0 15px;
	margin: 0 0 30px;
	display: flex;
	flex-direction: column;
}
.footer-widget-title {
	font-size: var(--text-size);
	font-weight: 600;
	margin-bottom: 30px;
	text-decoration: underline;
	text-decoration-color: var(--blue);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}
.footer-logo {
	margin-bottom: 20px;
}
.footer-logo img {
	max-height: 84px;
}
.footer-company {
	font-size: var(--text-size-sm);
	margin-bottom: 30px;
}
.footer-button {
	margin-bottom: 30px;
}
.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding-left: 20px;
	font-size: var(--text-size-sm);
}
.footer-menu li a {
	color: var(--blue-dark);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--blue);
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.footer-contacts p {
	position: relative;
	padding-left: 35px;
	display: flex;
	flex-direction: column;
	font-size: var(--text-size-sm);
	gap: 5px;
	margin-bottom: 0;
	z-index: 1;
}
.footer-contacts p:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue-dark);
	transition: .5s;
}
.footer-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts p.e-mail:before {
	-webkit-mask-image: url(imagesemail.svg);
	mask-image: url(images/email.svg);
}
.footer-contacts p.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.footer-contacts-label {
	font-weight: 600;
}
.footer-contacts-value a {
	color: var(--blue-dark);
	text-decoration: none;
}
.footer-contacts-value a:hover {
	color: var(--blue);
}
.footer-map {
	flex: auto;
}
.footer-map iframe {
	width: 100%;
	height: 100%;
	min-height: 294px;
	border: 1px solid var(--blue-dark);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.footer-bottom {
	position: relative;
	background: var(--blue);
	color: var(--white);
	padding: 10px 0;
	font-size: var(--text-size-sm);
	font-weight: 300;
	text-align: center;
	z-index: 1;
}
.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--blue-dark);
}



.page-header {
	position: relative;
	background: var(--bg-light);
	padding: 40px 0;
	z-index: 1;
}
.page-breadcrumbs {
	font-size: var(--text-size-sm);
}
.page-breadcrumbs a {
	text-decoration: none;
}
.page-title {
	margin: 0;
	font-weight: 600;
}

.page-content.content-lg {
	font-size: var(--h5-size);
}
.page-content ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.page-content ul li {
	position: relative;
	padding-left: 42px;
	z-index: 1;
}
.page-content ul li:before {
	content: '';
	background: url(images/check-blue.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 23px;
	height: 23px;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-content.content-lg ul li:before {
	top: 4px;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	font-weight: 800;
	color: var(--bg-light);
	text-align: center;
	line-height: 1;
	margin-bottom: 30px;
}
.error-404-button {
	text-align: center;
}




.hero-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px 30px;
}
.hero-heading {
	flex: 0 0 100%;
	max-width: 100%;
	color: var(--blue);
	margin: 0;
}
.hero-heading span {
	color: var(--white);
	font-size: calc(var(--h1-size) * 1.3333);
}
.hero-content {
	flex: auto;
	max-width: calc(100% - 278px - 30px);
	color: var(--white);
}
.hero-button {
	flex: 0 0 278px;
	max-width: 278px;
}
.hero-button .btn {
	width: 100%;
}
.hero-image-mobile {
	display: none;
}
.hero-phone {
	flex: 0 0 100%;
	max-width: 100%;
}
.hero-phone a {
	display: inline-flex;
	align-items: center;
	font-size: var(--h5-size);
	color: var(--white);
	text-decoration: none;
}
.hero-phone a:hover {
	color: var(--blue);
}
.hero-phone a:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-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(--blue);
	margin-right: 10px;
	transition: .5s;
}
.hero-phone a:hover:before {
	background-color: var(--white);
}



.about-section {
	z-index: 2;
}
.about-wrap {
	display: flex;
	justify-content: space-between;
}
.about-left,
.about-right {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
}
.about-left.section {
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.about-image {
	height: 100%;
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}



.treatment-section:before {
	content: '';
	background: url(images/treatment-before.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 424px;
	height: 424px;
	top: -230px;
	left: calc((100% - var(--container)) / 2 - 280px);
	z-index: -1;
}
.treatment-content-1 {
	margin-bottom: 45px;
}
.treatment-content-2 {
	margin-top: 45px;
}
.treatment-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -15px -30px;
}
.treatment-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 30px;
	padding: 0 15px;
}
.treatment-item__wrap {
	position: relative;
	background: var(--white);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: flex-start;
	padding: 30px;
	z-index: 1;
}
.treatment-item__image {
	flex: 0 0 70px;
	max-width: 70px;
	margin-right: 20px;
	margin-bottom: 20px;
}
.treatment-item__title {
	flex: auto;
	max-width: calc(100% - 70px - 20px);
	margin-top: 0;
	margin-bottom: 20px;
	font-size: var(--h5-size);
	font-weight: 600;
}
.treatment-item__title span {
	display: inline-block;
	border-bottom: 2px solid var(--blue);
	padding-bottom: 5px;
}
.treatment-item__text {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--text-size-sm);
}



.services-content {
	margin-bottom: 45px;
	color: var(--white);
}
.services-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -15px -30px;
}
.services-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 30px;
	padding: 0 15px;
	perspective: 1400px;
}
.services-item__inner {
	position: relative;
	width: 100%;
	height: 440px;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}
.services-item.flipped .services-item__inner {
	transform: rotateY(180deg);
}
.services-item__wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: var(--white);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
	overflow: hidden;
	z-index: 1;
}
.services-item__front {
	z-index: 2;
}
.services-item__back {
	transform: rotateY(180deg);
	z-index: 1;
}
.services-item__image {
	flex: 0 0 62%;
	max-height: 62%;
}
.services-item__title {
	margin: 0 20px;
	font-size: var(--h5-size);
	text-align: center;
}
.services-item__button {
	margin: 0 20px 15px;
	text-align: center;
}
.services-item__title-2 {
	margin: 30px 20px 0;
	text-align: center;
	font-size: var(--text-size);
	font-weight: 600;
}
.services-item__content {
	flex: auto;
	margin: 0 10px;
	padding: 0 10px;
	overflow: auto;
	font-size: var(--text-size-sm);
}
.services-button {
	margin-top: 45px;
	text-align: center;
}




.photogallery-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.photogallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 30px;
	padding: 0 15px;
}
.photogallery-item__image {
	height: calc((var(--container) - 30px * 2) / 3 / 1.5);
	overflow: hidden;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.photogallery-item__image img {
	transition: .5s;
}
.photogallery-item__image a:hover img {
	transform: scale(1.1);
	cursor: zoom-in;
}
.photogallery-button {
	margin-top: 45px;
	text-align: center;
}



.activity-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.activity-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #F5F9FC 42%, rgba(245, 249, 252, 0) 100%);
	z-index: 1;
}
.activity-content {
	text-align: center;
	margin-bottom: 45px;
}
.activity-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -15px -30px;
}
.activity-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
	margin: 0 0 30px;
	padding: 0 15px;
}
.activity-item__wrap {
	position: relative;
	background: var(--blue);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	height: 100%;
	min-height: 296px;
	padding: 30px;
	z-index: 1;
}
.activity-item__title {
	position: relative;
	padding-left: 42px;
	margin-bottom: 20px;
	font-size: var(--h5-size);
	font-weight: 700;
	color: var(--white);
	z-index: 1;
}
.activity-item__title:before {
	content: '';
	background: url(images/check-white.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 23px;
	height: 23px;
	top: 4px;
	left: 0;
	z-index: 1;
}
.activity-item__content strong {
	font-weight: 600;
}


.certificates-section {
	overflow: hidden;
}
.certificates-content {
	margin-bottom: 45px;
}
.certificates-item.swiper-slide {
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.certificates-item__image {
	overflow: hidden;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
}
.certificates-item__image img {
	transition: .5s;
}
.certificates-item__image a:hover img {
	transform: scale(1.1);
}




.reviews-section {
	overflow: hidden;
}
.reviews-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--bg-blue-dark);
	opacity: .8;
	z-index: 1;
}
.reviews-item.swiper-slide {
	height: auto;
}
.reviews-item {
	position: relative;
	padding: 20px 0 0 20px;
	z-index: 1;
}
.reviews-item:before {
	content: '';
	position: absolute;
	width: 114px;
	height: 114px;
	top: 0;
	left: 0;
	background: var(--blue);
	-moz-border-radius: calc(var(--radius) / 1.5);
	-webkit-border-radius: calc(var(--radius) / 1.5);
	border-radius: calc(var(--radius) / 1.5);
	z-index: -1;
}
.reviews-item__wrap {
	position: relative;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	height: 100%;
	background: var(--white);
	padding: 30px 20px;
	z-index: 1;
}
.reviews-item__head {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.reviews-item__image {
	flex: 0 0 60px;
	max-width: 60px;
	height: 60px;
	margin-right: 20px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.reviews-item__name {
	font-size: var(--text-size);
	font-weight: 600;
	color: var(--blue);
}
.reviews-item__text {
	font-size: var(--text-size-sm);
	text-align: center;
}



.steps-content {
	margin-bottom: 45px;
}
.steps-wrap {
	display: flex;
	justify-content: space-between;
}
.steps-left {
	flex: 0 0 calc(59% - 15px);
	max-width: calc(59% - 15px);
}
.steps-right {
	flex: 0 0 calc(41% - 15px);
	max-width: calc(41% - 15px);
}
.steps-image {
	height: 100%;
	-moz-border-radius: var(--radius);
	-webkit-border-radius: var(--radius);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.steps-item {
	position: relative;
	margin-bottom: 20px;
	padding-top: 10px;
	padding-left: 90px;
	z-index: 1;
}
.steps-item:last-child {
	margin-bottom: 0;
}
.steps-item:before {
	content: '';
	position: absolute;
	width: 1px;
	height: calc(100% - 60px);
	background: #C8C7C7;
	bottom: -10px;
	left: 30px;
	z-index: 1;
}
.steps-item:last-child:before {
	display: none;
}
.steps-item__number {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	left: 0;
	background: var(--blue);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: 32px;
	font-weight: 600;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 1;
}
.steps-item__title {
	font-size: var(--text-size);
	font-weight: 600;
	margin-bottom: 10px;
}
.steps-item__content {
	color: var(--grey);
	font-size: var(--text-size-sm);
}
.steps-item__content > * {
	margin-bottom: 5px;
}
.steps-item__content > *:last-child {
	margin-bottom: 0;
}



.feedback-section:before {
	content: '';
	position: absolute;
	background: url(images/feedback-before.svg) no-repeat center;
	background-size: contain;
	width: 600px;
	height: 328px;
	bottom: 0;
	left: calc((100% - var(--container)) / 2 + 20px);
	z-index: -1;
}
.feedback-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.feedback-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--bg-blue-dark);
	opacity: .9;
	z-index: 1;
}
.feedback-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.feedback-left {
	flex: 0 0 calc(59% - 15px);
	max-width: calc(59% - 15px);
}
.feedback-right {
	flex: 0 0 calc(41% - 15px);
	max-width: calc(41% - 15px);
}
.feedback-content {
	color: var(--white);
	font-size: var(--text-size-sm);
	margin-bottom: 30px;
}
.feedback-form {
	max-width: 450px;
	margin: auto;
}


@media (max-width: 1399px) {
	:root {
		--container: 1116px;

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

		--radius: 24px;
	}
	.btn,
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	select,
	textarea {
		font-size: var(--text-size);
	}
	.page-content ul li {
		padding-left: 36px;
	}
	.page-content ul li:before {
		top: -1px;
	}
	.page-content.content-lg ul li:before {
		top: 2px;
	}
	.soc-links {
		gap: 24px;
	}
	.header-wrap {
		gap: 24px;
		height: 70px;
	}
	.header-logo img {
		max-height: 70px;
	}
	.main-menu {
		margin-left: 30px;
		gap: 24px;
	}
	.treatment-section:before {
		width: 340px;
		height: 340px;
		top: -165px;
		left: calc((100% - var(--container)) / 2 - 210px);
	}
	.treatment-item__wrap,
	.activity-item__wrap {
		padding: 24px;
	}
	.treatment-item__image {
		flex: 0 0 60px;
		max-width: 60px;
		margin-right: 16px;
	}
	.services-item__inner {
		height: 390px;
	}
	.reviews-item__wrap {
		padding: 20px;
	}
	.reviews-item__image {
		flex: 0 0 48px;
		max-width: 48px;
		height: 48px;
		margin-right: 16px;
	}
	.footer-logo img {
		max-height: 70px;
	}
}


@media (max-width: 1199px) {
	:root {
		--container: 916px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;

		--radius: 24px;
	}
	.soc-links {
		gap: 16px;
	}
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.heading {
		margin-bottom: 35px;
	}
	.page-content.content-lg,
	.treatment-item__title,
	.services-item__title,
	.activity-item__title {
		font-size: var(--h6-size);
	}
	.page-content.content-lg ul li:before,
	.activity-item__title:before {
		top: 0px;
	}
	.header-phone a {
		font-size: var(--text-size);
	}
	.main-menu {
		margin-left: 0;
		gap: 16px;
	}
	.hero-wrap {
		gap: 30px 20px;
	}
	.hero-content {
		max-width: calc(100% - 278px - 20px);
	}
	.about-left.section {
		padding-top: 2px;
		gap: 24px;
	}
	.treatment-content-1,
	.services-content,
	.activity-content,
	.certificates-content {
		margin-bottom: 35px;
	}
	.treatment-item__image {
		flex: 0 0 48px;
		max-width: 48px;
		margin-right: 12px;
	}
	.treatment-content-2,
	.services-button,
	.photogallery-button {
		margin-top: 35px;
	}
	.services-item__inner {
        height: 360px;
    }
    .services-item__image {
    	flex: 0 0 60%;
    	max-height: 60%;
    }

    .swiper-navigation {
    	gap: 20px;
    }
    .swiper-navigation button {
    	flex: 0 0 42px;
    	max-width: 42px;
    	width: 42px;
    	height: 20px;
    }
    .steps-item {
    	padding-left: 70px;
    }
    .steps-item__number {
    	width: 50px;
    	height: 50px;
    	font-size: 28px;
    }
    .steps-item:before {
    	height: calc(100% - 50px);
    	left: 25px;
    }
}






@media (max-width: 991px) {
	:root {
		--container: 696px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;

		--radius: 24px;
	}
	.header {
		padding: 6px 0;
	}
	.header-wrap {
		height: 56px;
	}
	.header-logo {
		flex: auto;
	}
	.header-logo img {
		max-height: 56px;
	}
	.main-menu {
		display: none;
	}
	.hero-content {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.hero-heading span {
		font-size: calc(var(--h1-size) * 1.2);
	}
	.hero-image-mobile {
		display: block;
	}
	.hero-image {
		display: none;
	}
	.about-wrap {
		flex-direction: column-reverse;
		gap: 30px;
	}
	.about-left, .about-right {
		flex: auto;
		max-width: 100%;
	}
	.treatment-section:before {
		width: 300px;
		height: 300px;
		top: -135px;
		left: calc((100% - var(--container)) / 2 - 190px);
	}
	.treatment-item,
	.activity-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.services-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.photogallery-item {
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.photogallery-item__image {
		height: calc((var(--container) - 30px) / 2 / 1.5);;
	}
	.activity-item__wrap {
		min-height: inherit;
	}
	.steps-wrap,
	.feedback-wrap {
		flex-direction: column;
		gap: 30px;
	}
	.steps-left,
	.feedback-left,
	.feedback-right {
		flex: auto;
		max-width: 100%;
	}
	.steps-right {
		display: none;
	}
	.feedback-left {
		text-align: center;
	}
	.feedback-soc {
		justify-content: center;
	}
	.feedback-content {
		margin-bottom: 16px;
	}
	.footer-wrap {
		flex-direction: column;
		margin: 0;
		gap: 30px;
	}
	.footer-widget {
		padding: 0;
		max-width: 100%;
		margin: 0;
	}
	.footer-logo {
		margin-bottom: 16px;
	}
	.footer-company,
	.footer-button {
		margin-bottom: 20px;
	}
	.footer-widget-title {
		margin-bottom: 20px;
	}
	.footer-menu {
		gap: 12px;
	}

	.page-header {
		padding: 24px 0 30px;
	}
	.page-breadcrumbs {
		margin-bottom: 10px;
	}
	.error-404-number {
	    font-size: calc(var(--h1-size) * 7);
	}
	.feedback-section:before {
		width: 100%;
		left: 0;
	}
	.modal-title {
		font-size: var(--h4-size);
	}
}






@media (max-width: 767px) {
	:root {
		--container: 516px;

		--text-size: 16px;
		--text-size-sm: 15px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;

		--radius: 24px;
	}
	.heading {
		margin-bottom: 30px;
	}
	.services-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.treatment-content-1, .services-content, .activity-content, .certificates-content {
		margin-bottom: 30px;
	}
	.treatment-content-2, .services-button, .photogallery-button {
		margin-top: 30px;
	}
}


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

		--text-size: 16px;
		--text-size-sm: 15px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;

		--radius: 24px;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		height: 50px;
		padding: 12px 24px;
	}
	textarea {
		height: 110px;
	}
	.btn {
		min-height: 50px;
		padding: 10px 24px;
		min-width: 180px;
	}
	.header-phone a {
		font-size: 0;
	}
	.header-phone a:before {
		flex: 0 0 30px;
		max-width: 30px;
		width: 30px;
		height: 30px;
		margin-right: 0;
	}
	.treatment-section:before {
		width: 120px;
		height: 120px;
		top: -60px;
		left: calc((100% - var(--container)) / 2 - 0px);
	}
	.modal-dialog {
		max-width: calc(100vw - 30px);
	}
	.photogallery-items {
		margin: 0 -8px -16px;
	}
	.photogallery-item {
		margin: 0 0 16px;
		padding: 0 8px;
	}
	.photogallery-item__image {
		height: calc((var(--container) - 16px) / 2 / 1.5);
	}
}