/*!
Theme Name: Starlikarnia
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: starlikarnia
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.

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

:root {
	--container: 1316px;

	--text-size: 16px;
	--text-size-lg: 18px;
	--text-size-sm: 14px;
	--text-size-esm: 12px;
	--h1-size: 36px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 22px;
	--h6-size: 20px;

	--black: #383838;
	--white: #FFFFFF;
	--brown: #7B5F43;
	--grey: #D5D5D5;
	--grey-2: #E2E2E2;
}

*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body::-webkit-scrollbar {
	width: 10px;
}
body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
	background-color: var(--brown);
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Montserrat', serif;
	line-height: 1.4;
	color: var(--black);
	background: var(--white);
}
a {
	text-decoration: underline;
	color: var(--brown);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', serif;
	font-weight: 500;
	margin: 0 0 16px;
	line-height: 1.25;
}
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 16px;
}
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;
}
.customStyleContent h1,
.customStyleContent h2,
.customStyleContent h3,
.customStyleContent h4,
.customStyleContent h5,
.customStyleContent h6 {
	margin-top: 32px;
}
.customStyleContent h1:first-child,
.customStyleContent h2:first-child,
.customStyleContent h3:first-child,
.customStyleContent h4:first-child,
.customStyleContent h5:first-child,
.customStyleContent h6:first-child {
	margin-top: 0px;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px -16px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 8px;
	margin-bottom: 16px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	font-weight: 500;
	width: 100%;
	line-height: 1.2;
	display: block;
	margin-bottom: 8px;
}
::-webkit-input-placeholder {
	color: #757575;
}
::-moz-placeholder {
	color: #757575;
}
:-ms-input-placeholder {
	color: #757575;
}
:-moz-placeholder {
	color: #757575;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Montserrat', serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--grey);
	color: var(--black);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: 11px 24px;
	min-height: 48px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 136px;
	resize: vertical;
}
select {
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	border-color: var(--brown);
}
.form-field-button {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size-sm);
	text-align: center;
}

.wpcf7-radio {
	display: block;
	cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item {
	margin-left: 0;
	display: block;
	margin-bottom: 4px;
}
.wpcf7-radio .wpcf7-list-item:last-child {
	margin-bottom: 0;
}
.wpcf7-radio .wpcf7-list-item-label {
	display: block;
	padding-left: 29px;
	cursor: pointer;
}
.wpcf7-radio label {
	position: relative;
	display: inline-block;
}
.wpcf7-radio input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid var(--grey);
	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-radio input[type="radio"]:checked {
	border-color: var(--brown);
}
.wpcf7-radio input[type="radio"]: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);
}


.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;
}
.bg-grey {
	background: #F4F4F4;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}

.heading {
	position: relative;
	margin-bottom: 45px;
}
.heading.center {
	text-align: center;
}
.heading.white {
	color: var(--white);
}
.heading h2 {
	font-size: var(--h1-size);
	margin-bottom: 0;
}
.heading h2:after {
	content: '';
	display: block;
	width: 100px;
	height: 2px;
	background: var(--brown);
	margin-top: 10px;
}
.heading.center h2:after {
	margin-left: auto;
	margin-right: auto;
}
.heading p {
	max-width: 760px;
	margin-top: 12px;
}
.heading.center p {
	margin-left: auto;
	margin-right: auto;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Montserrat', serif;
	font-weight: 500;
	line-height: 1.5;
	border: 2px solid transparent;
	padding: 9px 40px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	outline: none;
	text-decoration: none;
	text-transform: uppercase;
	min-height: 54px;
	min-width: 320px;
	cursor: pointer;
	transition: .5s;
}
.btn-sm {
	font-weight: 400;
	min-height: 48px;
	min-width: 240px;
}
.btn-w100 {
	width: 100%;
	min-width: auto !important;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    margin-top: -2px;
    transition: .5s;
}
.btn-icon-left:before {
	margin-right: 8px;
}
.btn-icon-right:after {
	margin-left: 8px;
}
.btn-primary {
	background-color: var(--brown);
	border-color: var(--brown);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-primary:before,
.btn-primary:after {
	background-color: var(--white);
}
.btn-outline-primary {
	background-color: transparent;
	border-color: var(--brown);
	color: var(--brown);
}
.btn-outline-primary:hover {
	background-color: var(--brown);
	border-color: var(--brown);
	color: var(--white);
}
.btn-outline-primary:before,
.btn-outline-primary:after {
	background-color: var(--brown);
}
.btn-outline-primary:hover:before,
.btn-outline-primary:hover:after {
	background-color: var(--white);
}
.btn-outline-secondary {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--brown);
}
.btn-outline-secondary:before,
.btn-outline-secondary:after {
	background-color: var(--white);
}
.btn-outline-secondary:hover:before,
.btn-outline-secondary:hover:after {
	background-color: var(--brown);
}
.btn-icon-calendar:before,
.btn-icon-calendar:after {
    -webkit-mask-image: url(images/date-range.svg);
    mask-image: url(images/date-range.svg);
}


.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 16px;
	z-index: 9;
}
.owl-dots button {
	position: relative;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid var(--grey) !important;
	margin-right: 7px;
	margin-bottom: 2px;
	z-index: 1;
	transition: .5s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button.active,
.owl-dots button:hover {
	border-color: var(--brown) !important;
}
.owl-dots button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--grey);
	transform: translate(-50%, -50%);
	transition: .5s;
	z-index: 1;
}
.owl-dots button.active:before,
.owl-dots button:hover:before {
	background: var(--brown);
}

.owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 32px);
	opacity: 0;
	transition: .5s;
	z-index: 9;
}
.owl-carousel:hover .owl-nav {
	opacity: 1;
}
.owl-nav button {
	position: absolute;
	width: 64px;
	height: 64px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	background: var(--white) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.owl-nav button.disabled {
	display: none !important;
}
.owl-nav button:hover {
	background: var(--brown) !important;
}
.owl-nav button.owl-prev {
	left: -32px;
}
.owl-nav button.owl-next {
	right: -32px;
}
.owl-nav button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-right.svg);
    mask-image: url(images/expand-right.svg);
    background-color: var(--black);
    flex: 0 0 52px;
    max-width: 52px;
    width: 52px;
    height: 52px;
    transition: .5s;
    z-index: 1;
}
.owl-nav button.owl-prev:before {
	transform: rotate(-180deg);
}
.owl-nav button:hover:before {
	background-color: var(--white);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 12px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path {
	fill: var(--brown);
	transition: .5s;
}
.soc-links li a:hover path {
	fill: var(--black);
}



.modal-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}
.modal-mobile.show {
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
}
.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: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 48px 16px 0px;
	transition: .5s;
	display: flex;
	flex-direction: column;
	overflow: auto;
	overflow-x: hidden;
	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: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--grey);
	width: 32px;
	height: 32px;
	cursor: pointer;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--black);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: auto;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu > li {
	border-bottom: 1px solid #D5D5D5;
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--brown);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 24px;
	-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(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--brown);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--brown);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 8px !important;
	padding: 0 10px;
	list-style: none;
	z-index: 9;
}
.mobile-menu ul li a {
	padding: 8px 0;
	display: flex;
	align-items: center;
}
.mobile-menu ul li a:before {
	content: '';
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-right.svg);
    mask-image: url(images/expand-right.svg);
    background-color: var(--black);
}

.mobile-contacts {
	position: relative;
	margin-top: 30px;
	padding: 0 10px;
}
.mobile-contacts-item {
	position: relative;
	padding-left: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 16px;
	z-index: 1;
}
.mobile-contacts-item:last-child {
	margin-bottom: 0;
}
.mobile-contacts-item.soc {
	padding-left: 0;
}
.mobile-contacts-item:before {
	content: '';
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--brown);
	position: absolute;
	width: 24px;
	height: 24px;
	top: -4px;
	left: 0;
	z-index: 1;
}
.mobile-contacts-item.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
    mask-image: url(images/clock.svg);
}
.mobile-contacts-item.address:before {
	-webkit-mask-image: url(images/location.svg);
    mask-image: url(images/location.svg);
}
.mobile-contacts-item.phone:before {
	-webkit-mask-image: url(images/phone.svg);
    mask-image: url(images/phone.svg);
}
.mobile-contacts-item.soc:before {
	display: none;
}
.mobile-contacts-item p {
	line-height: 1.33;
	margin-bottom: 0;
}
.mobile-contacts-item p.mobile-contacts-item__label {
	margin-bottom: 4px;
	font-weight: 500;
}
.mobile-contacts-item p a {
	color: var(--black);
	text-decoration: none;
}
.mobile-contacts-item p a:hover {
	color: var(--brown);
}

.mobile-button {
	position: relative;
	margin-top: 20px;
	background: var(--brown);
	padding: 26px;
	width: calc(100% + 32px);
	margin-left: -16px;
	z-index: 1;
}
.mobile-button .btn {
	min-width: auto !important;
	width: 100%;
}







/*
.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: 618px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-md {
	max-width: 570px;
}
.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: 40px 50px;
	-moz-border-radius: 50px 0;
	-webkit-border-radius: 50px 0;
	border-radius: 50px 0;
	overflow: hidden;
	z-index: 1;
}
.modalInfo .modal-content {
	padding-top: 64px;
	padding-bottom: 0;
}
.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 {
	font-size: var(--h4-size);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
	text-align: center;
}
.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(--grey);
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}
.modalInfo-button {
	text-align: center;
	margin-top: 30px;
}
.modalInfo .modal-content:after {
	content: '';
	background: url(images/modalInfo-after.png) no-repeat center;
	background-size: contain;
	width: 201px;
	height: 186px;
	margin: 38px auto -1px;
	display: block;
}
*/

.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: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	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: 24px;
	margin-bottom: 24px;
}
.alignright {
	float: right;
	margin-left: 24px;
	margin-bottom: 24px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 24px;
}

.wrapper {
	position: relative;
	z-index: 1;
}
.header {
	position: relative;
	background: var(--white);
	z-index: 92;
}
.header-wrap {
	display: flex;
}
.header-logo {
	padding: 20px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header-logo img {
	width: 100%;
	max-width: 300px;
	max-height: 50px;
}
.header-info {
	flex: auto;
	padding: 20px 40px 20px 0;
	display: flex;
	justify-content: flex-end;
}
.header-contacts {
	display: flex;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--grey);
}
.header-contacts-item {
	position: relative;
	max-width: 316px;
	padding-left: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 16px;
	padding-right: 16px;
	border-right: 1px solid #D5D5D5;
	z-index: 1;
}
.header-contacts-item:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.header-contacts-item.soc {
	padding-left: 0;
}
.header-contacts-item.phone {
	min-width: 174px;
}
.header-contacts-item:before {
	content: '';
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--brown);
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.header-contacts-item.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
    mask-image: url(images/clock.svg);
}
.header-contacts-item.address:before {
	-webkit-mask-image: url(images/location.svg);
    mask-image: url(images/location.svg);
}
.header-contacts-item.phone:before {
	-webkit-mask-image: url(images/phone.svg);
    mask-image: url(images/phone.svg);
}
.header-contacts-item.soc:before {
	display: none;
}
.header-contacts-item p {
	font-size: var(--text-size-esm);
	line-height: 1.33;
	margin-bottom: 0;
}
.header-contacts-item p a {
	color: var(--black);
	text-decoration: none;
}
.header-contacts-item p a:hover {
	color: var(--brown);
}
.main-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-menu > li {
	position: relative;
	margin-right: 12px;
	z-index: 1;
}
.main-menu > li:last-child {
	margin-right: 0;
}
.main-menu > li > a {
	display: flex;
	align-items: center;
	font-weight: 500;
	color: var(--black);
	text-decoration: none;
}
.main-menu > li:hover > a,
.main-menu > li.current-menu-item > a {
	color: var(--brown);
}
.main-menu > li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-left: 2px;
	margin-top: 1px;
	transition: .25s;
}
.main-menu > li.menu-item-has-children:hover > a:after,
.main-menu > li.current-menu-item > a:after {
	background-color: var(--brown);
}
.main-menu > li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 30px 0px 10px;
	width: 280px;
	list-style: none;
	z-index: 1;
}
.main-menu > li > ul:before {
	content: '';
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	position: absolute;
	width: 100%;
	height: calc(100% - 20px);
	bottom: 0;
	left: 0;
	z-index: -1;
}
.main-menu > li > ul > li {
	padding: 0 24px;
}
.main-menu > li > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--black);
	font-weight: 500;
	text-decoration: none;
	padding: 8px 0;
}
.main-menu > li > ul > li:hover > a {
	color: var(--brown);
}
.main-menu > li > ul > li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand_down.svg);
	mask-image: url(images/expand_down.svg);
	background-color: var(--black);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-left: 2px;
	margin-top: 1px;
	transform: rotate(-90deg);
	transition: .25s;
}
.main-menu > li > ul > li.menu-item-has-children:hover > a:after {
	background-color: var(--brown);
}
.main-menu ul ul {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	margin: 0;
	padding: 30px 0 20px;
	list-style: none;
	width: 280px;
	z-index: 1;
}
.main-menu ul ul:before {
	content: '';
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	position: absolute;
	width: 100%;
	height: calc(100% - 20px);
	bottom: 0;
	left: 0;
	z-index: -1;
}
.main-menu ul ul li a {
	display: flex;
	align-items: center;
	padding: 8px 24px;
	color: var(--black);
}
.main-menu ul ul li a:hover {
	color: var(--brown);
}
.main-menu li:hover > ul {
	display: block;
}

.header-button {
	max-width: 300px;
	background: var(--brown);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 40px;
}
.header-button .btn {
	width: 100%;
	text-transform: inherit;
	padding-left: 15px;
	padding-right: 15px;
	min-width: auto !important;
}
.header-toggle {
	display: none;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 34px;
	max-width: 34px;
	width: 34px;
	height: 34px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/menu.svg);
    mask-image: url(images/menu.svg);
    background-color: var(--black);
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--brown);
}







.slider-section,
.mainSlider-item {
	max-height: 860px;
	height: calc(100vw / 2.23);
}
.mainSlider-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.mainSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.mainSlider-item__bg:after {
	content: '';
	background: #FAFAFA;
	opacity: .5;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.mainSlider-item__wrap {
	max-width: 860px;
}
.mainSlider-item__text-before-heading {
	font-weight: 500;
	text-transform: uppercase;
	color: var(--brown);
}
.mainSlider-item__heading {
	margin-bottom: 0;
	font-size: calc(var(--h1-size) * 1.444);
}
.mainSlider-item__button {
	margin-top: 60px;
}
.owl-mainSlider .owl-nav button.owl-prev {
	left: 40px;
}
.owl-mainSlider .owl-nav button.owl-next {
	right: 40px;
}



.about-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 15px);
}
.about-image {
	position: relative;
	height: 100%;
	z-index: 1;
}
.about-image span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.about-right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
	padding: 24px 8% 24px 0;
}
.about-heading {
	font-size: var(--h1-size);
}
.about-button {
	margin-top: 34px;
}




.departments-items.off {
	display: flex !important;
	flex-wrap: wrap;
	margin: 0 -12px -28px;
	width: auto;
}

.departments-item {
	padding: 0 12px;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 28px;
}

.departments-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--grey-2);
	border-radius: 8px;
	padding: 12px;
	background: #fff;
	transition: box-shadow 0.3s;
}

.departments-item__wrap:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Фіксована висота картинки */
.departments-item__image {
	width: 100%;
	height: 220px; /* однакова висота для всіх */
	margin-bottom: 12px;
	overflow: hidden;
	border-radius: 6px;
}

.departments-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* щоб не тягнуло картинку */
	display: block;
}

.departments-item__title {
	font-size: var(--text-size-lg);
	color: var(--black);
	margin-bottom: 8px;
}

.departments-item__title a {
	color: var(--black);
	text-decoration: none;
}

.departments-item__title a:hover {
	color: var(--brown);
}

/* Контент рівний, кнопка завжди знизу */
.departments-item__excerpt {
	flex-grow: 1;
	margin-bottom: 15px;
}

.departments-item__button {
	margin-top: auto;
}

.departments-button {
	text-align: center;
	margin-top: 45px;
}



.services-items {
	position: relative;
	z-index: 1;
}
.services-item {
	position: relative;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	background: var(--white);
	margin-bottom: 24px;
	z-index: 1;
}
.services-item:last-child {
	margin-bottom: 0;
}
.services-item__head {
	padding: 24px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .5s;
}
.services-item__head:hover {
	color: var(--brown);
}
.services-item__toggle {
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	background: url(images/add-ring.svg) no-repeat center;
	background-size: contain;
	margin-right: 8px;
	transition: .5s;
}
.services-item.active .services-item__toggle {
	transform: rotate(45deg);
}
.services-item__title {
	flex: auto;
	font-size: var(--h6-size);
}
.services-item__body {
	display: none;
	padding: 0 24px 24px;
}
.services-item__body table {
	width: 100%;
}
.services-item__body table td {
	padding: 12px 24px;
}
.services-item__body table tr:nth-child(2n) td {
	background: rgba(214, 214, 214, 0.2);
}
.services-subitems {
	margin-left: 48px;
}
.services-subitem {
	margin-bottom: 24px;
}
.services-subitem:last-child {
	margin-bottom: 0;
}
.services-subitem__head {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .5s;
}
.services-subitem__head:hover {
	color: var(--brown);
}
.services-subitem__toggle {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	background: url(images/add-ring.svg) no-repeat center;
	background-size: contain;
	margin-right: 8px;
	transition: .5s;
}
.services-subitem.active .services-subitem__toggle {
	transform: rotate(45deg);
}
.services-subitem__title {
	flex: auto;
	font-size: var(--text-size-lg);
}
.services-subitem__body {
	display: none;
	margin-top: 16px;
}

.services-button {
	position: relative;
	text-align: center;
	margin-top: 45px;
	z-index: 1;
}


.charity-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.charity-left {
	flex: 0 0 400px;
	max-width: 400px;
}
.charity-description {
	font-size: var(--h6-size);
	font-weight: 500;
	margin-bottom: 34px;
}
.charity-button .btn {
	width: 100%;
}
.charity-right {
	flex: auto;
	max-width: calc(100% - 400px - 48px);
}
.charity-content {
	border-bottom: 1px solid var(--grey);
	padding-bottom: 24px;
	margin-bottom: 24px;
}
.charity-links {
	margin: 0;
	padding: 0;
	list-style: none;
}
.charity-links li {
	margin-bottom: 10px;
}
.charity-links li:last-child {
	margin-bottom: 0;
}
.charity-links li a {
	color: var(--black);
}
.charity-links li a:hover {
	color: var(--brown);
}



.doctors-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -28px;
}
.doctors-item {
	position: relative;
	padding: 0 12px;
	margin: 0 0 28px;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.owl-carousel .doctors-item {
	padding: 0;
	margin: 0;
	flex: 0 0 100%;
	max-width: 100%;
}
.doctors-item__wrap {
	position: relative;
	z-index: 1;
}
.doctors-item__image {
	height: calc((var(--container) - 24px * 2) / 3 / .866);
	margin-bottom: 16px;
}
.doctors-item__name {
	font-size: var(--text-size-lg);
	text-align: center;
	margin-bottom: 8px;
}
.doctors-item__name a {
	color: var(--black);
	text-decoration: none;
}
.doctors-item__name a:hover {
	color: var(--brown);
}
.doctors-item__profession {
	text-align: center;
	color: var(--brown);
	text-transform: uppercase;
}
.doctors-button {
	position: relative;
	text-align: center;
	margin-top: 45px;
	z-index: 2;
}



.reviews-section {
	overflow: hidden;
}
.reviews-slider {
	margin: -12px;
}
.reviews-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.reviews-item {
	position: relative;
	margin: 0 0 24px;
	padding: 0 12px;
}
.reviews-items.columns-3 .reviews-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.owl-carousel .reviews-item {
	padding: 12px;
	margin: 0;
}
.reviews-item__wrap {
	position: relative;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.11);
	padding: 50px 40px;
	height: 100%;
	z-index: 1;
}
.reviews-item__image {
	width: 86px;
	height: 86px;
	margin: 0 auto 6px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.reviews-item__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.reviews-item__rating span {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	margin-right: 6px;
	background: url(images/star-line.svg) no-repeat center;
	background-size: contain;
}
.reviews-item__rating span:last-child {
	margin-right: 0;
}
.reviews-item__rating span.active {
	background-image: url(images/star.svg);
}
.reviews-item__name {
	text-align: center;
	font-size: var(--text-size-lg);
	margin-bottom: 6px;
}
.reviews-item__content {
	height: 224px;
	overflow: auto;
}

.reviews-buttons {
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 45px;
	z-index: 2;
}
.reviews-buttons .btn {
	margin-right: 16px;
}
.reviews-buttons .btn:last-child {
	margin-right: 0;
}


.pageReviews-button {
	position: relative;
	margin-bottom: 45px;
	text-align: center;
	z-index: 1;
}






.footer {
	position: relative;
	z-index: 1;
}
.footer-main {
	position: relative;
	background: #EAEAEA;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-left {
	flex: 0 0 40%;
	max-width: 40%;
}
.footer-map {
	height: 100%;
	width: calc((100vw - var(--container)) / 2 + 100%);
	margin-left: calc((100vw - var(--container)) / -2);
}
.footer-map iframe {
	width: 100%;
	height: 100%;
}
.footer-right {
	flex: 0 0 calc(60% - 24px);
	max-width: calc(60% - 24px);
	padding: 45px 0;
}
.footer-logo {
	text-align: center;
	margin-bottom: 45px;
}
.footer-logo img {
	max-height: 64px;
}

.footer-feedback {
	position: relative;
	background: var(--white);
	padding: 45px 30px;
	margin-bottom: 30px;
	z-index: 1;
}
.footer-feedback-before-heading {
	font-weight: 500;
	text-align: center;
	margin-bottom: 6px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--brown);
}
.footer-feedback-heading {
	text-align: center;
	font-size: var(--h2-size);
	margin-bottom: 20px;
}



.footer-bottom {
	position: relative;
	background-color: var(--black);
	color: var(--white);
	padding: 10px 0;
	text-align: center;
	z-index: 1;
}
.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}
.footer-bottom a:hover {
	opacity: .8;
}



.contacts-items {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 24px;
	-webkit-column-gap: 24px;
	column-gap: 24px;
}
.contacts-items.columns-1 {
	-moz-column-count: 1;
	-webkit-column-count: 1;
	column-count: 1;
}
.contacts-items.columns-3 {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}
.contacts-item {
	position: relative;
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 24px;
	padding-left: 42px;
	padding-top: 6px;
	z-index: 1;
}
.contacts-item:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--brown);
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    z-index: 1;
}
.contacts-item.address:before {
	-webkit-mask-image: url(images/location.svg);
    mask-image: url(images/location.svg);
}
.contacts-item.phone:before {
	-webkit-mask-image: url(images/phone.svg);
    mask-image: url(images/phone.svg);
}
.contacts-item.schedule:before {
	-webkit-mask-image: url(images/clock.svg);
    mask-image: url(images/clock.svg);
}
.contacts-item.e-mail:before {
	-webkit-mask-image: url(images/message.svg);
    mask-image: url(images/message.svg);
}
.contacts-item.none:before {
	display: none;
}
.contacts-item__content {
	color: #434343;
	line-height: 1.25;
}
.contacts-item__content p {
	margin-bottom: 6px;
}
.contacts-item__content p:last-child {
	margin-bottom: 0;
}
.contacts-item__content strong {
	font-weight: 500;
	color: var(--black);
}


.page-header {
	position: relative;
	padding: 65px 0;
	z-index: 1;
}
.page-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-header-bg:after {
	content: '';
	background: #FAFAFA;
	opacity: .68;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 10px;
}
.page-breadcrumbs {
	font-size: var(--text-size-esm);
}
.breadcrumbs-sep {
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/expand-right.svg);
    mask-image: url(images/expand-right.svg);
    background-color: var(--black);
    width: 20px;
    height: 20px;
    margin: 0 5px -6px;
    display: inline-block;
}
.page-breadcrumbs a {
	color: var(--black);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--brown);
}

.error-404-number {
	font-size: calc(var(--h1-size) * 8);
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: var(--grey);
}
.error-404-button {
	text-align: center;
	margin-top: 24px;
}






.tabs {
	position: relative;
	z-index: 1;
}
.tabs-nav {
	position: relative;
	border-bottom: 1px solid var(--grey);
	margin-bottom: 20px;
}
.tabs-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	overflow-x: auto;
	overflow-y: inherit;
}
.tabs-nav ul::-webkit-scrollbar {
	height: 4px;
}
.tabs-nav ul::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.tabs-nav ul::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
.tabs-nav ul li {
	flex: 0 0 auto;
	position: relative;
	margin-bottom: 4px;
	z-index: 1;
}
.tabs-nav ul li:last-child {
	margin-right: 40px;
}
.tabs-nav ul li a {
	display: flex;
	align-items: center;
	height: 48px;
	padding: 12px 24px;
	font-weight: 500;
	text-decoration: none;
	color: var(--black);
}
.tabs-nav ul li a:hover {
	color: var(--brown);
}
.tabs-nav ul li.active a {
	background: var(--brown);
	color: var(--white);
}
.tabs-btn {
    display: none;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255,255,255,.65) 0%, rgba(255,255,255,.95) 80%, rgba(255,255,255,1) 100%);
    border: none;
    cursor: pointer;
    transition: .5s;
}
.tabs-btn-prev {
    left: 0;
    transform: scale(-1, 1);
}
.tabs-btn-next {
    right: 0;
}
.tabs-btn:before {
	content: '';
	-webkit-mask-size: 28px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right center;
    -webkit-mask-image: url(images/expand-right.svg);
    mask-image: url(images/expand-right.svg);
    background-color: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 1;
}
.tabs-block {
	display: none;
}
.tabs-block.active {
	display: block;
}





.servicesCat-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -28px;
}
.servicesCat-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 28px;
	padding: 0 12px;
}
.servicesCat-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--grey-2);
	background: var(--white);
	display: flex;
	flex-direction: column;
	padding: 12px;
	z-index: 1;
}
.servicesCat-item__image {
	flex: 0 0 calc(((var(--container) - 24px * 2) / 3 - 24px) / 1.75);
	max-height: calc(((var(--container) - 24px * 2) / 3 - 24px) / 1.75);
	margin-bottom: 12px;
}
.servicesCat-item__title {
	font-size: var(--h4-size);
	margin-bottom: 12px;
}
.servicesCat-item__title a {
	text-decoration: none;
}
.servicesCat-item__title a:hover {
	color: var(--black);
}
.servicesCat-item__title:after {
	content: '';
	display: block;
	width: 100px;
	height: 2px;
	background: var(--brown);
	margin-top: 10px;
}
.servicesCat-item__desc {
	margin-bottom: 20px;
}
.servicesCat-item__button {
	flex: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}





.navigation.pagination {
	position: relative;
	margin-top: 45px;
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	margin-right: 8px;
}
.nav-links .page-numbers:last-child {
	margin-right: 0;
}
.nav-links .page-numbers {
	min-width: 44px;
	height: 44px;
	padding: 4px 10px;
	font-size: var(--text-size-lg);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--brown);
	color: var(--white);
}






.singleServices-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.singleServices-left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.singleServices-right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.singleServices-title {
	margin-bottom: 24px;
}
.singleServices-excerpt {
	margin-bottom: 24px;
}
.singleServices-price {
	font-size: var(--h4-size);
	font-weight: 500;
	color: var(--brown);
	margin-bottom: 20px;
}
.singleServices-time {
	margin-bottom: 24px;
	font-weight: 500;
}
.singleServices-cats {
	margin-bottom: 24px;
	font-weight: 500;
}
.singleServices-bottom {
	margin-top: 45px;
	flex: 0 0 100%;
	max-width: 100%;
}
.singleServices-content {
	position: relative;
	padding: 30px;
	border: 1px solid var(--brown);
	z-index: 1;
}




.page-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.page-sidebar {
	position: relative;
	flex: 0 0 calc(100% / 3 - 12px);
	max-width: calc(100% / 3 - 12px);
	z-index: 1;
}
.sidebar-sticky {
	position: sticky;
	top: 0;
	z-index: 1;
}
.page-body {
	flex: 0 0 calc(100% / 3 * 2 - 12px);
	max-width: calc(100% / 3 * 2 - 12px);
}


.widget {
	position: relative;
	margin-bottom: 24px;
	z-index: 1;
}
.widget:last-child {
	margin-bottom: 0;
}
.widget-bg {
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	padding: 16px 24px;
}
.widget-title {
	font-size: var(--h6-size);
	font-weight: 500;
}


.singleDepartments-image {
	height: calc((var(--container) * .66 - 12px) / 1.55);
	margin-bottom: 34px;
}
.singleDepartments-title {
	font-size: var(--h2-size);
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 24px;
}


.departmentsHierarchy-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.departmentsHierarchy-list > li {
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--grey-2);
}
.departmentsHierarchy-list > li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.departmentsHierarchy-list > li > a {
	font-size: var(--text-size-lg);
	font-weight: 500;
	text-decoration: none;
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
}
.departmentsHierarchy-list > li > a:hover,
.departmentsHierarchy-list > li.active > a {
	color: var(--brown);
}
.departmentsHierarchy-list > li > a:after {
	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(--black);
    flex: 0 0 32px;
    max-width: 32px;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    transition: .5s;
}
.departmentsHierarchy-list > li > a:hover:after,
.departmentsHierarchy-list > li.active > a:after {
	background-color: var(--brown);
}
.departmentsHierarchy-list > li.active > a:after {
	-webkit-mask-image: url(images/minus.svg);
    mask-image: url(images/minus.svg);
}
.departmentsHierarchy-list ul {
	display: none;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.departmentsHierarchy-list > li:last-child > ul {
	margin-bottom: 0;
}
.departmentsHierarchy-list ul li {
	margin-bottom: 2px;
}
.departmentsHierarchy-list ul li:last-child {
	margin-bottom: 0;
}
.departmentsHierarchy-list ul li a {
	display: block;
	background: rgba(214, 214, 214, 0.2);
	color: var(--black);
	text-decoration: none;
	padding: 14px 17px;
	border-left: 3px solid transparent;
}
.departmentsHierarchy-list ul li.active a {
	border-left-color: var(--brown);
	background: #F1F0F0;
}


.widget-bannerBlock {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 60px 40px;
	z-index: 1;
}
.widget-bannerBlock-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.widget-bannerBlock-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: .65;
	z-index: 1;
}
.widget-bannerBlock-text {
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 10px;
}




.owl-news .owl-stage {
	display: flex;
}


.news-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px -24px;
}
.news-item {
	margin: 0 0 24px;
	padding: 0 12px;
}
.news-items.columns-1 .news-item {
	flex: 0 0 100%;
	max-width: 100%;
}
.owl-carousel .news-item {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 1px;
	height: 100%;
	margin: 0;
}
.news-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	border: 1px solid var(--grey-2);
	padding: 12px;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.news-items.columns-1 .news-item__wrap {
	padding: 24px;
}
.news-item__image {
	position: relative;
}
.news-items.columns-1 .news-item__image {
	flex: 0 0 calc(((var(--container) * .67 - 12px) - 48px) / 1.75);
	max-height: calc(((var(--container) * .67 - 12px) - 48px) / 1.75);
	margin-bottom: 24px;
}
.owl-carousel .news-item__image {
	flex: 0 0 calc(((var(--container) - 24px * 2) - 24px) / 3 / 1.75);
	max-height: calc(((var(--container) - 24px * 2) - 24px) / 3 / 1.75);
	margin-bottom: 16px;
}
.news-item__date {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: var(--text-size-sm);
}
.news-item__date:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/date-range.svg);
    mask-image: url(images/date-range.svg);
    background-color: var(--brown);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-top: -2px;
}
.news-item__title {
	margin-bottom: 12px;
}
.news-items.columns-1 .news-item__title {
	font-size: var(--h5-size);
}
.owl-carousel .news-item__title {
	font-size: var(--text-size-lg);
}
.news-item__title a {
	color: var(--black);
	text-decoration: none;
}
.news-item__title a:hover {
	color: var(--brown);
}
.news-item__excerpt {
	margin-bottom: 24px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-item__button {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}
.news-item__button .btn {
	min-width: auto !important;
	width: 100%;
	max-width: 200px;
}

.news-button {
	position: relative;
	text-align: center;
	margin-top: 45px;
	z-index: 1;
}


.sidebarNews {
	position: relative;
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	padding: 24px;
	z-index: 1;
}
.sidebarNews .widget {
	margin-bottom: 34px;
}
.sidebarNews .widget:last-child {
	margin-bottom: 0;
}
.widget_search form {
	display: flex;
}
.widget_search input[type="search"] {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Montserrat', serif;
	line-height: 1.5;
	width: 100%;
	background: #F6F7F8;
	border: none;
	color: var(--black);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: 11px 24px;
	min-height: 48px;
	outline: none;
	transition: .5s;
}
.widget_search button {
	flex: 0 0 48px;
	max-width: 48px;
	background: var(--brown);
	outline: none;
	padding: 0;
	border: none;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
}
.widget_search button:hover {
	background: var(--black);
}
.widget_search button:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/search.svg);
    mask-image: url(images/search.svg);
    background-color: var(--white);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
}


.recentNews-items {
	position: relative;
	z-index: 1;
}
.recentNews-item {
	position: relative;
	margin-bottom: 16px;
	z-index: 1;
}
.recentNews-item:last-child {
	margin-bottom: 0;
}
.recentNews-item__wrap {
	display: flex;
	align-items: center;
}
.recentNews-item__image {
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 12px;
}
.recentNews-item__info {
	flex: auto;
}
.recentNews-item__title {
	font-weight: 500;
	line-height: 1.2;
	font-size: var(--text-size);
	margin-bottom: 6px;
}
.recentNews-item__title a {
	color: var(--black);
	text-decoration: none;
}
.recentNews-item__title a:hover {
	color: var(--brown);
}
.recentNews-item__date {
	font-size: var(--text-size-esm);
	color: #8F8F8F;
}

.tagcloud {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
.tagcloud a {
	display: block;
    margin: 0 10px 10px 0;
    border: 1px solid var(--grey-2);
    padding: 5px 14px;
    font-size: var(--text-size-sm) !important;
    color: var(--black);
    text-decoration: none;
    line-height: 1.5;
}
.tagcloud a:last-child {
	margin-right: 0;
}
.tagcloud a:hover {
	color: var(--white);
	background: var(--brown);
}



.sidebarNews-image {
	margin-bottom: 24px;
}
.sidebarNews-date {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}
.sidebarNews-date:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/date-range.svg);
    mask-image: url(images/date-range.svg);
    background-color: var(--brown);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    margin-top: -2px;
}
.sidebarNews-tags {
	position: relative;
	margin: 24px 0 -10px;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.sidebarNews-tags li {
    margin: 0 10px 10px 0;
}
.sidebarNews-tags li:last-child {
	margin-right: 0;
}
.sidebarNews-tags li.label {
	font-size: var(--text-size-sm);
}
.sidebarNews-tags li a {
	display: block;
    border: 1px solid var(--grey-2);
    padding: 5px 14px;
    font-size: var(--text-size-sm) !important;
    color: var(--black);
    text-decoration: none;
    line-height: 1.5;
}
.sidebarNews-tags li a:hover {
	color: var(--white);
	background: var(--brown);
}


.doctorsRow-items {
	position: relative;
}
.doctorsRow-item {
	position: relative;
	margin-bottom: 24px;
	z-index: 1;
}
.doctorsRow-item:last-child {
	margin-bottom: 0;
}
.doctorsRow-item__wrap {
	position: relative;
	background: #FBFBFB;
	border: 1px solid var(--grey-2);
	padding: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.doctorsRow-item__left {
	flex: 0 0 26%;
	max-width: 26%;
}
.doctorsRow-item__image {
	height: calc(((var(--container) * .67 - 12px) - 24px) * .26 / .9375);
}
.doctorsRow-item__right {
	flex: 0 0 calc(74% - 24px);
	max-width: calc(74% - 24px);
}
.doctorsRow-item__name {
	font-size: var(--text-size-lg);
	margin-bottom: 12px;
}
.doctorsRow-item__name a {
	text-decoration: none;
}
.doctorsRow-item__excerpt {
	margin-bottom: 24px;
}
.doctorsRow-item__buttons {
	display: flex;
}
.doctorsRow-item__buttons .btn {
	margin-right: 12px;
	padding-left: 22px;
	padding-right: 22px;
}
.doctorsRow-item__buttons .btn:last-child {
	margin-right: 0;
}




.singleDoctors-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.singleDoctors-left {
	flex: 0 0 calc(100% / 3 * 2 - 12px);
	max-width: calc(100% / 3 * 2 - 12px);
}
.singleDoctors-image {
	margin-bottom: 24px;
}
.singleDoctors-info {
	border: 1px solid var(--brown);
	padding: 24px;
}
.singleDoctors-button {
	margin-top: 24px;
}
.singleDoctors-right {
    position: relative;
    flex: 0 0 calc(100% / 3 - 12px);
    max-width: calc(100% / 3 - 12px);
    z-index: 1;
}


.pageQuestionnaire-wrap,
.pageReviewsAdd-wrap {
	position: relative;
	padding: 34px;
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	z-index: 1;
}
.pageQuestionnaire-wrap form {
	margin-top: 34px;
}
.pageQuestionnaire-wrap .form-fields,
.pageReviewsAdd-wrap .form-fields {
	margin-bottom: -24px;
}
.pageQuestionnaire-wrap .form-field,
.pageReviewsAdd-wrap .form-field {
	margin-bottom: 24px;
}
.pageQuestionnaire-wrap .form-field > label,
.pageReviewsAdd-wrap .form-field > label {
	margin-bottom: 12px;
}



.formReviews-field-rating .wpcf7-form-control.wpcf7-radio {
	display: flex;
	align-items: center;
}
.formReviews-field-rating .wpcf7-list-item {
	margin: 0 5px 0 0;
}
.formReviews-field-rating .wpcf7-list-item:last-child {
	margin-right: 0;
}
.formReviews-field-rating .wpcf7-list-item label {
	display: block;
}
.formReviews-field-rating .wpcf7-list-item span.wpcf7-list-item-label {
	position: relative;
	cursor: pointer;
	font-size: 0;
	width: 24px;
	height: 24px;
	display: block;
}
.formReviews-field-rating .wpcf7-list-item span.wpcf7-list-item-label::before {
  content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/star-line.svg);
	mask-image: url(images/star-line.svg);
	background-color: #F3EF08;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.formReviews-field-rating .wpcf7-list-item input[type="radio"] {
  	display: none;
}
.formReviews-field-rating .wpcf7-list-item span.wpcf7-list-item-label.active:before,
.formReviews-field-rating .wpcf7-list-item input[type="radio"]:checked + span.active::before,
.formReviews-field-rating .wpcf7-list-item input[type="radio"]:checked ~ span.active::before {
	-webkit-mask-image: url(images/star.svg);
	mask-image: url(images/star.svg);
	background-color: #F3EF08;
}





.pageContactsBottom-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pageContactsBottom-left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.pageContactsBottom-map {
	height: 100%;
	width: calc((100vw - var(--container)) / 2 + 100%);
	margin-left: calc((100vw - var(--container)) / -2);
}
.pageContactsBottom-map iframe {
	width: 100%;
	height: 100%;
}
.pageContactsBottom-right {
	flex: 0 0 calc(50% - 24px);
	max-width: calc(50% - 24px);
}

.pageContactsBottom-feedback {
	position: relative;
	width: calc(100% + 100px);
	margin-left: -100px;
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
	padding: 45px 30px;
	z-index: 1;
}
.pageContactsBottom-feedback-before-heading {
	font-weight: 500;
	text-align: center;
	margin-bottom: 6px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--brown);
}
.pageContactsBottom-feedback-heading {
	text-align: center;
	font-size: var(--h2-size);
	margin-bottom: 20px;
}




.pageAboutInfo-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pageAboutInfo-left {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.pageAboutInfo-right {
	flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
.pageAboutInfo-heading {
	font-size: var(--h1-size);
	margin-bottom: 24px;
}


.pageContacts-content {
	position: relative;
	margin-top: 60px;
	z-index: 1;
}


.iframe-site {
	width: 100%;
	height: 720px;
}



@media (max-width: 1599px) {
	.header-logo {
		flex: auto;
		padding: 20px 24px;
	}
	.header-info {
		flex: 0 0 auto;
		padding: 20px 24px 20px 0;
	}
	.header-button {
		padding: 20px 24px;
	}
}



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

		--text-size: 16px;
		--text-size-lg: 18px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.btn {
		min-width: 280px;
	}
	.btn-sm {
		min-width: 240px;
	}
	.header-info {
		flex: auto;
	}
	.main-menu {
		font-size: var(--text-size-sm);
	}
	.header-logo img {
		max-width: 250px;
	}
	.header-contacts-item {
		margin-right: 8px;
		padding-right: 8px;
		padding-left: 0;
	}
	.header-contacts-item:before {
		display: none;
	}
	.header-contacts-item.phone {
		min-width: 130px;
	}
	.header-button .btn {
		padding-left: 8px !important;
		padding-right: 8px !important;
	}
	.header-button .btn:before {
		display: none !important;
	}
	.owl-mainSlider .owl-nav button.owl-prev {
		left: 16px;
	}
	.owl-mainSlider .owl-nav button.owl-next {
		right: 16px;
	}
	.mainSlider-item__heading {
		font-size: calc(var(--h1-size) * 1.25);
	}
	.reviews-item__wrap {
		padding: 30px 24px;
	}
	.error-404-number {
    	font-size: calc(var(--h1-size)* 6);
	}
	.page-header {
		padding: 48px 0;
	}
}



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

		--text-size: 15px;
		--text-size-lg: 17px;
		--text-size-sm: 14px;
		--text-size-esm: 12px;
		--h1-size: 30px;
		--h2-size: 26px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.owl-nav {
		top: calc(50% - 24px);
		opacity: 1;
	}
	.owl-nav button {
		width: 48px;
		height: 48px;
	}
	.owl-nav button.owl-prev {
		left: -24px;
	}
	.owl-nav button.owl-next {
		right: -24px;
	}
	.owl-nav button:before {
	    flex: 0 0 36px;
	    max-width: 36px;
	    width: 36px;
	    height: 36px;
	}

	.header {
		position: sticky;
		padding: 16px 0;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
		top: 0;
	}
	.header-wrap {
		max-width: var(--container);
		margin: 0 auto;
		align-items: center;
	}
	.header-logo {
		padding: 0;
		max-width: calc(var(--container) - 34px - 24px);
		margin-right: 24px;
	}
	.header-info,
	.header-button {
		display: none;
	}
	.header-toggle {
		display: flex;
	}
	.slider-section, .mainSlider-item {
		min-height: 550px;
	}
	.mainSlider-item {
		padding: 60px 0;
	}
	.owl-mainSlider .owl-dots {
		position: absolute;
		bottom: 24px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
	}
	.owl-mainSlider .owl-dots button {
		border-color: var(--grey) !important;
	}
	.owl-mainSlider .owl-dots button:before {
		background: var(--grey);
	}
	.owl-mainSlider .owl-dots button.active,
	.owl-mainSlider .owl-dots button:hover {
		border-color: var(--brown) !important;
	}
	.owl-mainSlider .owl-dots button.active:before,
	.owl-mainSlider .owl-dots button:hover:before {
		background: var(--brown);
	}
	.about-right {
		padding-right: 0;
	}
	
	
	.doctorsRow-item__buttons {
		display: block;;
	}
	.doctorsRow-item__buttons .btn {
		margin-right: 0px;
		margin-bottom: 12px;
	}
	.doctorsRow-item__buttons .btn:last-child {
		margin-bottom: 0;
	}
}



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

		--text-size: 14px;
		--text-size-lg: 16px;
		--text-size-sm: 13px;
		--text-size-esm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 17px;
	}
	.section {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.heading {
		margin-bottom: 24px;
	}
	.heading h2 {
		font-size: var(--h2-size);
	}
	.mainSlider-item__button {
		margin-top: 34px;
	}
	.about-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}
	.about-right {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}
	.about-image {
		height: calc(var(--container) / 1.3);
	}
	.about-heading {
		font-size: var(--h2-size);
	}
	.about-button {
		margin-top: 24px;
	}
	.departments-item__image {
		flex: 0 0 calc(((var(--container) - 24px) / 2 - 24px) / 1.75);
		max-height: calc(((var(--container) - 24px) / 2 - 24px) / 1.75);
	}
	.departments-button {
		margin-top: 24px;
	}
	.services-item {
		margin-bottom: 16px;
	}
	.services-item__head {
		padding: 16px;
	}
	.services-item__body {
		padding: 0 16px 16px;
	}
	.services-button {
		margin-top: 24px;
	}
	.services-subitem {
		margin-bottom: 16px;
	}
	.services-subitem__body {
		margin-top: 12px;
	}
	.charity-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}
	.charity-description {
		margin-bottom: 24px;
	}
	.charity-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.doctors-item__image {
		height: calc((var(--container) - 24px) / 2 / .866);
	}
	.doctors-button {
		margin-top: 24px;
	}
	.reviews-items.columns-3 .reviews-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.reviews-buttons {
		margin-top: 24px;
	}
	.reviews-item__content {
		height: 200px;
	}
	.footer {
		overflow: hidden;
	}
	.footer-left {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}
	.footer-right {
		padding: 40px 0;
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.footer-logo {
		margin-bottom: 24px;
	}
	.footer-logo img {
		max-height: 45px;
	}
	.footer-feedback {
		padding: 24px;
		margin-bottom: 24px;
	}
	.footer-map {
		width: 100vw;
		height: calc(100vw / 1.75);
		min-height: 360px;
	}

	.pageAboutInfo-wrap {
		flex-direction: column-reverse;
	}
	.pageAboutInfo-left, {
		flex: auto;
		max-width: 100%;
	}
	.pageAboutInfo-right {
		flex: auto;
		max-width: 100%;
		margin-bottom: 24px;
	}
	.departments-items.off {
		margin-bottom: -24px;
	}
	.departments-items.off .departments-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 24px;
	}

	.page-header {
		padding: 30px 0;
	}
	.page-title {
		font-size: var(--h2-size);
	}
	.page-wrap.mobile-reverse {
		flex-direction: column-reverse;
	}
	.page-body {
		flex: auto;
		max-width: 100%;
	}
	.page-wrap.mobile-reverse .page-body {
		margin-bottom: 45px;
	}
	.singleDepartments-image {
		height: calc(var(--container) / 1.55);
		margin-bottom: 24px;
	}
	.page-sidebar {
		flex: auto;
		max-width: 100%;
	}

	.customStyleContent h1, .customStyleContent h2, .customStyleContent h3, .customStyleContent h4, .customStyleContent h5, .customStyleContent h6 {
		margin-top: 24px;
	}

	.owl-carousel .news-item__image {
		flex: 0 0 calc(((var(--container) - 24px) - 24px) / 2 / 1.75);
		max-height: calc(((var(--container) - 24px) - 24px) / 2 / 1.75);
	}
	.news-items.columns-1 .news-item__image {
		flex: 0 0 calc(((var(--container) - 12px) - 48px) / 1.75);
		max-height: calc(((var(--container) - 12px) - 48px) / 1.75);
		margin-bottom: 20px;
	}
	.news-button {
		margin-top: 24px;
	}

	.contacts-items.columns-3 {
    	-moz-column-count: 2;
    	-webkit-column-count: 2;
    	column-count: 2;
	}
	.pageContactsBottom-section {
		overflow: hidden;
	}
	.pageContactsBottom-wrap {
		flex-direction: column-reverse;
	}
	.pageContactsBottom-right {
		flex: auto;
		max-width: 100%;
		padding: 0 !important;
	}
	.pageContactsBottom-feedback {
		width: 100%;
		margin-left: 0;
		padding: 24px;
	}
	.pageContactsBottom-left {
	    flex: auto;
	    max-width: 100%;
	}
	.pageContactsBottom-map {
		width: 100vw;
		height: calc(100vw / 1.75);
		min-height: 360px;
		margin-top: -100px;
	}
	.pageContacts-content {
		margin-top: 40px;
	}

	.doctorsRow-item__image {
	    height: calc((var(--container) - 24px) * .26 / .9375);
	}

	.singleDoctors-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}
	.singleDoctors-image {
		max-width: 420px;
	}
	.singleDoctors-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


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

		--text-size: 14px;
		--text-size-lg: 15px;
		--text-size-sm: 13px;
		--text-size-esm: 12px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 17px;
		--h6-size: 16px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.departments-item__button .btn {
		width: 100%;
		min-width: auto;
	}
	.reviews-buttons {
		flex-direction: column;
		align-items: center;
	}
	.reviews-buttons .btn {
		margin: 0 0 8px;
	}
	.reviews-buttons:last-child {
		margin-bottom: 0;
	}
}


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

		--text-size: 14px;
		--text-size-lg: 15px;
		--text-size-sm: 13px;
		--text-size-esm: 12px;
		--h1-size: 24px;
		--h2-size: 22px;
		--h3-size: 20px;
		--h4-size: 18px;
		--h5-size: 17px;
		--h6-size: 16px;
	}
	.owl-nav button.owl-prev {
        left: -12px;
    }
	.owl-nav button.owl-next {
		right: -12px;
	}
	.mainSlider-item__heading {
		font-size: 6vw;
	}
	.departments-item__image {
		flex: 0 0 calc((var(--container) - 24px) / 1.75);
		max-height: calc((var(--container) - 24px) / 1.75);
	}
	.services-item__head {
		padding: 12px;
	}
	.services-item__toggle {
	    flex: 0 0 28px;
	    max-width: 28px;
	    width: 28px;
	    height: 28px;
	}
	.services-item__body {
		padding: 0 12px 12px;
	}
	.services-subitems {
		margin-left: 32px;
	}
	.services-subitem {
		margin-bottom: 10px;
	}
	.services-subitem__toggle {
	    flex: 0 0 24px;
	    max-width: 24px;
	    width: 24px;
	    height: 24px;
	}
	.charity-content {
		margin-bottom: 16px;
		padding-bottom: 16px;
	}
	.doctors-item__image {
        height: calc(var(--container) / .866);
    }
    .contacts-items {
	    -moz-column-count: 1;
	    -webkit-column-count: 1;
	    column-count: 1;
	}
	.formReviews-field-rating .wpcf7-list-item {
		margin-right: 0;
	}
	.reviews-items.columns-3 .reviews-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.reviews-item__content {
		height: auto;
	}
	.owl-carousel .reviews-item__content {
		height: 180px;
	}
	.reviews-item__rating span {
		margin-right: 0;
	}

	.departments-items.off .departments-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.tabs-nav ul li a {
		padding: 10px 16px;
		height: 42px;
	}
	.services-item__body table td {
    	padding: 8px 16px;
	}
	.owl-carousel .news-item__image {
		flex: 0 0 calc((var(--container) - 24px)  / 1.75);
		max-height: calc((var(--container) - 24px) / 1.75);
	}
	.pageQuestionnaire-wrap, .pageReviewsAdd-wrap {
		padding: 24px;
	}
	.news-items.columns-1 .news-item__wrap {
    	padding: 12px;
	}
	.contacts-items.columns-3 {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .contacts-item {
    	margin-bottom: 16px;
    }


    .doctorsRow-item__left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 12px;
	}
	.doctorsRow-item__image {
		height: calc((var(--container) - 24px) / .9375);
	}
	.doctorsRow-item__right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.doctorsRow-item__buttons .btn {
		width: 100%;
	}


	.iframe-site {
		width: 100%;
		height: 480px;
	}
}
.fullwidth {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}