/*!
Theme Name: Modern Veterinary Clinic
Author: Stray
Author URI: https://www.weblancer.net/users/demin_ch/
Description: Template for Modern Veterinary Clinic
Version: 1.0.0
License: GNU General Public License v2 or later
*/

/* Указываем box sizing */
*,
*::before,
*::after {
	box-sizing: border-box;
}

*, *:focus, *:hover {
	outline: none;
}

.js-focus-visible :focus:not(.focus-visible) {
	outline: none;
}

.js-focus-visible .focus-visible {
	outline: none;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
	padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
	list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
	max-width: 100%;
	display: block;
	height: auto;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
	margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
	font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

a {
	color: #2c8599;
	text-decoration: none;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	position: relative;
}

svg {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

a:hover {
	color: #3db0ca;
}

.rulang {
	font-family: 'Montserrat', sans-serif !important;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: #252354;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	font-size: 1rem;
	line-height: 24px;
}

input,
textarea {
	background: #f6f7fa;
	border: 1px solid #cccdd5;
	border-radius: 3px;
	padding: 0 10px;
}

form input {
	height: 40px;
}

form textarea {
	padding: 10px;
}

input[type='submit'] {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	line-height: 1;
	color: #FBE9DE;
	text-transform: uppercase;
	background: #75B09A;
	font-weight: 600;
	border-radius: 3px;
	border: none;
	transition: all 0.3s ease-out;
	cursor: pointer;
	height: 50px;
}

input[type='submit']:hover {
	background: #41836a;
}
.container {
	max-width: 1400px;
	min-width: 360px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.site-header {
	background: #FBE9DE;
	padding: 10px 0;
 /*	height: 72px;  */
    height: 122px; 
	display: flex;
	align-items: center;
	position: sticky;
	z-index: 1000;
	top: 0;
}
.site-header.fixed-head {
	box-shadow: 0 2px 4px 0 #28255240;
}
.site-header .container {
	display: flex;
	align-items: center;
	max-width: 1700px;
	flex: 1 1 100%;
}
.logo-area {
	width: 120px;
	flex-shrink: 0;
/*	margin-bottom: 15px; */
}
.logo-area img {
	width: 100%;
	height: auto;
}
.header-menu {
	margin-left: auto;
}
.header-menu ul {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
.header-menu > ul > li {
 /* padding: 23px 0; */
	padding: 48px 0;
	margin-left: 32px;
	position: relative;
}
.header-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	color: #282552;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	position: relative;
}
.header-menu ul li a:hover {
	border-color: #282552;
}

.header-menu ul ul {
	position: absolute;
	display: block;
	left: -110px;
	top: 150%;
	opacity: 0;
	background: rgba(250, 199, 159, 0.8);
	text-align: center;
	padding: 15px 20px;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	width: 280px;
}
.header-menu ul ul li {
	padding: 5px 0;
	margin: 0;
}
.header-menu li:hover > ul {
	opacity: 1;
	z-index: 20;
	top: 100%;
	visibility: visible;
}
.header-menu li.menu-item-has-children > a:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
	background: transparent url("/wp-content/themes/vetmodern/assets/img/menu-hover.svg") no-repeat center center / contain;
	width: 12px;
	height: 10px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.header-menu li.menu-item-has-children:hover > a:after {
	opacity: 1;
}

.header-buttons {
	display: flex;
	align-items: center;
}
.header-buttons a {
	background: #282552;
	border-radius: 10px;
	color: #FBE9DE;
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px 14px;
	margin-left: 20px;
	font-size: 18px;
	letter-spacing: 2px;
}
.header-buttons a.btn-phone {
	display: flex;
	align-items: center;
}
.header-buttons a.btn-phone .icon-wrapper {
	width: 9px;
	margin-right: 10px;
	display: flex;
}
.header-buttons a.btn-phone svg {
	fill: currentColor;
	width: 9px;
	margin-right: 10px;
	flex-shrink: 0;
	height: 100%;
}

.header-buttons a.btn-location, .btn-location,
.header-buttons a.btn-book,
.header-buttons a.btn-phone {
	padding: 2px 14px;
	margin-left: 20px;
	font-size: 16px;
	letter-spacing: 0;
	position: relative;
	border: 4px solid transparent;
}
.header-buttons a.btn-location, .btn-location {
	background: #75B09A;
	box-shadow: 0 0 0 #75B09A;
	margin-left: 28px;
}
.header-buttons a.btn-book {
	background: #A71D17;
	box-shadow: 0 0 0 #A71D17;
}
.header-buttons a.btn-phone {
	background: #282552;
	box-shadow: 0 0 0 #282552;
	font-size: 18px;
}
.header-buttons a.btn-book,
.header-buttons a.btn-location {
	font-weight: 600;
}

.header-buttons a.btn-location::before,
.header-buttons a.btn-book::before,
.header-buttons a.btn-phone::before {
	content: '';
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	opacity: 0;
	position: absolute;
	left: -4px;
	top: -4px;
	transition: all .3s ease-out;
	border-radius: 10px;
}
.header-buttons a.btn-location::before {
	border: 2px solid #75B09A;
}
.header-buttons a.btn-book::before {
	border: 2px solid #A71D17;
}
.header-buttons a.btn-phone::before {
	border: 2px solid #282552;
}
.header-buttons a.btn-location:hover,
.header-buttons a.btn-book:hover,
.header-buttons a.btn-phone:hover {
	border: 4px solid #fbe9de;
}
.header-buttons a.btn-location:hover::before,
.header-buttons a.btn-book:hover::before,
.header-buttons a.btn-phone:hover::before {
	opacity: 1;
	z-index: 10;
}

.header-socials {
	display: flex;
	align-items: center;
}
.header-socials a {
	display: flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #282552;
	align-items: center;
	justify-content: center;
	color: #FBE9DE;
	margin-left: 16px;
}
.header-socials a:last-child i {
	font-size: 20px;
}
.header-socials a:hover {
	background: #FAC79F;
	color: #282552;
}

/* MOBILE MENU */
/*#mmenu {*/
/*	display: none;*/
/*}*/
.hamburger-wrapper {
	display: none;
	align-items: center;
	justify-content: flex-end;
	margin-left: 30px;
}
#hamburger-icon {
	width: 30px;
	height: 16px;
	position: relative;
	z-index: 50;
	display: block;
}
#hamburger-icon .line {
	display: block;
	background: #252354;
	width: 30px;
	height: 3px;
	position: absolute;
	left: 0;
	border-radius: 4px;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#hamburger-icon .line.line-1 {
	top: 0;
}
#hamburger-icon .line.line-2 {
	top: 50%;
}
#hamburger-icon .line.line-3 {
	top: 100%;
}
#hamburger-icon.active .line-1 {
	-ms-transform: translateY(9px) translateX(-2px) rotate(45deg);
	transform: translateY(9px) translateX(-2px) rotate(45deg);
	-webkit-transform: translateY(9px) translateX(-2px) rotate(45deg);
	-moz-transform: translateY(9px) translateX(-2px) rotate(45deg);
}
#hamburger-icon.active .line-2 {
	opacity: 0;
}
#hamburger-icon.active .line-3 {
	-ms-transform: translateY(-7px) translateX(-2px) rotate(-45deg);
	transform: translateY(-7px) translateX(-2px) rotate(-45deg);
	-webkit-transform: translateY(-7px) translateX(-2px) rotate(-45deg);
	-moz-transform: translateY(-7px) translateX(-2px) rotate(-45deg);
}
.mobile-menu-burger {
	display: flex;
	align-items: center;
}

.mm-wrapper__blocker {
	background: rgba(0, 0, 0, 0.8);
}
.mm-wrapper__blocker a {
	background: transparent url("/wp-content/themes/vetmodern/assets/img/icons/x-mark.svg") no-repeat center center / contain;
	width: 20px;
	height: 20px;
	display: block;
	margin: 10px;
}
.mm-panels,
.mm-panel,
.mm-navbar {
	background: #252354;
}
.mm-navbar {
	border-color: #fbe9de;
	color: #fbe9de;
}
.mm-navbar a,
.mm-navbar a:hover,
.mm-navbar a:visited,
.mm-navbar__title {
	color: #fbe9de;
}
.mm-listitem {
	color: #fbe9de;
}
.mm-btn::after, .mm-btn::before {
	border-color: #fbe9de;
}
.mm-listitem::after {
	border-color: #fbe9de;
	right: 20px;
}
.mm-navbars_bottom .mm-navbar:first-child {
	border-color: #fbe9de;
}
html.mmenu-opened {
	overflow: hidden;
}
#mobile-menu {
	display: none;
}
.mm-menu a {
	text-transform: uppercase;
}

.home-slider-item {
	padding: 50px 0;
}
.home-slider-item .container {
	position: relative;
	max-width: 1700px;
}
.inner-slider-content {
	height: 650px;
	display: flex;
}
.inner-slider-content img {
	width: 100%;
	object-fit: cover;
}
#slider-arrows {
	display: flex;
	justify-content: space-between;
	position: absolute;
	z-index: 10;
	width: calc(100% - 20px);
	top: 400px;
}
.slick-arrow {
	cursor: pointer;
	background: transparent;
	padding: 30px;
	border-radius: 50%;
	width: 170px;
	height: 170px;
	display: flex;
	justify-content: center;
	transition: all .5s ease-out;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	left: calc(50% - 810px);
}
.slick-arrow:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
.slick-next.slick-arrow {
	left: auto;
	right: calc(50% - 810px);
}

.home-slider-item:last-child {
	background: transparent no-repeat center center / cover;
}
.slider-link-wrapper {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: -37px;
}
.slider-link-wrapper a {
	font-weight: 500;
	color: #FFEFBD;
	font-size: 22px;
	border-bottom: 1px solid #FFEFBD
}
.slider-link-wrapper a:hover {
	color: #fff;
	border-color: transparent;
}
.trusted-header {
	padding: 58px 0;
	background: #FBE9DE;
}
.trusted h2 {
	font-size: 100px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	letter-spacing: 12px;
}
.trusted h2 span {
	font-weight: 700;
}
.trusted-title-description {
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
	line-height: 1;
	text-align: center;
	margin-top: 38px;
	letter-spacing: 5px;
}
.trusted-title-description span {
	display: inline-block;
	background-color: #FBE9DE;
	position: relative;
	z-index: 10;
	padding: 0 20px;
}
.trusted-title-description:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #252354;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 5;
}
.trusted .container {
	max-width: 1690px;
}
.trusted-list {
	display: flex;
	align-items: stretch;
	margin: 10px -5px;
}
.trusted-item {
	flex: 1 1 calc(33.333% - 10px);
	margin: 0 5px;
	position: relative;
}
.trusted-item-thumb {
	display: flex;
	max-height: 510px;
	position: relative;
}
.trusted-item-thumb::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	background: #2f2f2f3d;
}
.trusted-item-thumb img {
	object-fit: cover;
	width: 100%;
}
.trusted-item-text {
	color: #FBE9DE;
	font-weight: 600;
	font-size: 32px;
	text-align: center;
	line-height: 1;
	position: absolute;
	z-index: 10;
	width: 100%;
	text-transform: uppercase;
	top: 230px;
	padding: 0 10px;
}
.trusted-item-text span {
	font-weight: 500;
	font-size: 18px;
	display: block;
	margin-top: 16px;
	text-transform: inherit;
}

.hour {
	margin-top: 95px;
}
.hour-wrapper {
	padding: 65px;
	background-color: #FCD8C0;
	max-width: 1100px;
	margin: 0 auto;
}
.hour-inner-wrapper {
	border: 3px solid #252354;
	text-align: center;
	font-size: 60px;
	font-weight: 500;
	position: relative;
	line-height: 1.2;
	padding: 80px 40px 65px;
	letter-spacing: 5px;
}
.hour-inner-wrapper span {
	font-weight: 700;
}
.hour-book {
	position: absolute;
	background-color: #A71D17;
	color: #FAC79F;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 25px;
	border-radius: 20px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -29px;
	font-size: 24px;
	z-index: 10;
	letter-spacing: 0;
}
.hour-book:hover {
	color: #fff;
	background-color: #cd251d;
}
.hour-inner-wrapper::after {
	content: '';
	position: absolute;
	background-color: #FCD8C0;
	height: 5px;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	width: 280px;
}
.banner-icon {
	position: absolute;
	width: 160px;
	height: 100px;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
}
.services {
	line-height: 1;
	margin-top: 105px;
}
.services .container {
	max-width: 1500px;
}
.services-title, .touch-title, .reviews-title, .map-title, .team-title {
	text-align: center;
	font-weight: 700;
	font-size: 38px;
	text-transform: uppercase;
	letter-spacing: 10px;
}
.services-title a,
.team-title a {
	color: #252354;
	border-bottom: 2px solid transparent;
}
.services-title a:hover,
.team-title a:hover {
	border-color: #252354;
}
.services-wrapper {
	display: flex;
	margin: 100px -40px 0;
}
.services-wrapper .slick-track {
	display: flex;
	padding-top: 40px;
}
.services-wrapper .slick-track .slick-slide {
	display: flex;
	height: auto;
	flex-direction: column;
}
.services-wrapper .slick-arrow {
	width: 70px;
	height: 70px;
	padding: 0;
	left: -60px;
}
.services-wrapper .slick-arrow.slick-next {
	left: auto;
	right: -60px;
}
.services-item {
	margin: 20px;
	background-color: rgba(255, 239, 189, 0.80);
	position: relative;
	text-align: center;
	padding: 190px 20px 55px;
}

.service-item-icon {
	position: absolute;
	width: 215px;
	height: 215px;
	left: 50%;
	transform: translateX(-50%);
	top: -60px;
	border-radius: 50%;
}
.services-item h3 {
	font-weight: 500;
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1.5;
}
.services-item h3 a {
	color: #252354;
	border-bottom: 1px solid transparent;
}
.services-item h3 a:hover {
	border-color: #252354;
}
.services-item p {
	margin: 25px 0 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
}

.other-services .services-item h3 {
    font-size: 21px;
    letter-spacing: 0px;
}

.team {
	line-height: 1;
	margin-top: 110px;
}
.team-slider-wrapper .container {
	max-width: 1400px;
	z-index: 10;
}
.team-photo {
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #252354;
}
.team-slider-wrapper {
	margin-top: 75px;
	position: relative;
}
.team-slider-wrapper::before {
	content: '';
	width: 100%;
	height: 180px;
	background: #FBE9DE;
	z-index: 5;
	position: absolute;
	left: 0;
	top: 80px;
}
.team-item {
	padding: 0 60px;
	text-align: center;
}
.team-item .team-photo {
	max-width: 380px;
	margin: 0 auto;
}
.team-item-title {
	font-weight: 500;
	font-size: 33px;
	text-transform: uppercase;
	margin: 38px 0 32px;
	padding: 0 50px;
	line-height: 1.1;
	letter-spacing: 2px;
}
.team-descr {
	font-weight: 500;
	font-size: 18px;
	padding: 0 40px;
	line-height: 1.2;
}
#team-slider .slick-arrow {
	position: absolute;
	top: 170px;
	left: -120px;
	z-index: 15;
}
#team-slider .slick-arrow.slick-next {
	left: auto;
	right: -120px;
}
#team-slider .slick-arrow:hover {
	background: none;
}

.button {
	background: #282552;
	border-radius: 20px;
	color: #FBE9DE;
	font-weight: 600;
	text-transform: uppercase;
	padding: 15px 32px;
	margin-left: 35px;
	font-size: 28px;
	display: inline-block;
}
.button.green-button {
	background: #75B09A;
}

.news {
	line-height: 1;
	margin-top: 185px;
}
.news-foto .container img {
	width: 100%;
}
.news-content-wrapper {
	text-align: center;
	background: #252354;
	color: #FBE9DE;
	line-height: 1;
	margin-top: -165px;
	padding-top: 230px;
	padding-bottom: 60px;
}
.news-content-wrapper h2 {
	font-weight: 700;
	font-size: 42px;
	text-transform: uppercase;
	letter-spacing: 8px;
	margin-bottom: 25px;
}
.news-content-text {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 35px;
}

.touch {
	line-height: 1;
	margin-top: 115px;
}
.touch .container {
	max-width: 1450px;
}
.touch-title {
	font-size: 40px;
}
.touch-phone-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.touch-phone-wrapper a {
	font-weight: 700;
	font-size: 80px;
	background: #FBE9DE;
	padding: 35px 75px;
	color: #252354;
	border-radius: 60px;
	letter-spacing: 10px;
}
.touch-phone-wrapper a i {
	font-size: 80px;
	margin-right: 25px;
}
.touch-phone-wrapper a:hover {
	color: #fff;
	background: #282552;
}
.touch-socials {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 100px;
	justify-content: center;
}
.touch-socials a {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #FAC79F;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #252354;
	position: relative;
	z-index: 20;
	margin: 0 30px;
	font-size: 50px;
}
.touch-socials a:hover {
	color: #fff;
	background: #252354;
}
.touch-socials::before {
	content: '';
	width: 730px;
	height: 10px;
	background: #fff;
	z-index: 10;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}
.touch-socials:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #FAC79F;
	top: 50%;
	left: 0;
	position: absolute;
	z-index: 5;
	transform: translateY(-50%);
}

.insta-feed-wrapper {
	margin-top: 45px;
}
#insta-slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -80px;
	z-index: 15;
	width: auto;
	height: auto;
}
#insta-slider .slick-arrow.slick-next {
	left: auto;
	right: -80px;
}
#insta-slider .slick-arrow:hover {
	background: none;
}
#insta-slider .slick-arrow img {
	height: 70px;
	width: auto;
}
.insta-link-wrapper {
	text-align: center;
	font-size: 32px;
	margin-top: 75px;
	letter-spacing: 4px;
}
.insta-link-wrapper a {
	font-weight: 700;
	color: #252354;
	border-bottom: 2px solid transparent;
}
.insta-link-wrapper a:hover {
	border-color: #252354;
}
.insta-slider-item a {
	display: flex;
	justify-content: center;
}
.insta-slider-item img {
	width: 240px;
}

.reviews,
.careers-form {
	background: #FAC79F;
	position: relative;
	line-height: 1;
	margin-top: 160px;
	padding: 68px 0 85px;
}
.careers-form {
	background: rgba(250, 199, 159, 0.71);
}
.reviews::before, .reviews::after,
.careers-form::before, .careers-form::after {
	content: '';
	position: absolute;
	background: transparent url("/wp-content/themes/vetmodern/assets/img/rev-l-decor.svg") no-repeat center center / contain;
	width: 230px;
	height: 230px;
	top: -80px;
	left: 60px;
}
.reviews::after,
.careers-form::after {
	background-image: url("/wp-content/themes/vetmodern/assets/img/rev-r-decor.svg");
	left: auto;
	right: 0;
	width: 145px;
	height: 825px;
	top: auto;
	bottom: -200px;
}
.reviews-slider-wrapper {
	max-width: 980px;
	margin: 90px auto 0;
	position: relative;
	background: #FBE9DE;
	padding: 48px;
}
.review-item {
	text-align: center;
	text-transform: uppercase;
	padding: 45px 35px;
	letter-spacing: 3px;
	line-height: 1.2;
	height: 100%;
	z-index: 15;
	position: relative;
}
.review-text {
	font-weight: 700;
	font-style: italic;
	font-size: 35px;
}
.review-author {
	font-size: 20px;
	margin-top: 25px;
	letter-spacing: 2px;
}
#reviews-slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -220px;
	z-index: 15;
}
#reviews-slider .slick-arrow.slick-next {
	left: auto;
	right: -220px;
}
#reviews-slider .slick-arrow svg {
	fill: #cd9d95;
}
.reviews h3 {
	font-weight: 500;
	font-size: 75px;
	text-align: center;
	margin-top: 45px;
	letter-spacing: 10px;
}
.reviews h3 span {
	font-weight: 700;
}
#reviews-slider .slick-track {
	display: flex !important;
	align-items: center;
	z-index: 15;
}
#reviews-slider .slick-list {
	z-index: 15;
}
#reviews-slider:before {
	content: '';
	position: absolute;
	background: transparent url("/wp-content/themes/vetmodern/assets/img/icons/reviews.svg") no-repeat center center / contain;
	top: -125px;
	left: 50%;
	transform: translateX(-50%);
	width: 190px;
	height: 185px;
	z-index: 10;
}
#reviews-slider:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 4px solid #FAC79F;
	z-index: 5;
}
.map {
	line-height: 1;
	padding-top: 90px;
	padding-bottom: 160px;
}
.map-wrapper {
	margin-top: 80px;
	position: relative;
	border: 2px solid #252354;
}
.map-wrapper img {
	width: 100%;
}

.site-footer {
	background: #252354;
	line-height: 1;
	padding: 50px 0 40px;
}
.site-footer .container {
	max-width: 1700px;
}
.footer-widget-area {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 -10px;
}
.footer-widget-col {
	flex: 1 1 calc(16.666% - 20px);
	margin: 0 10px;
}
.footer-widget-col:first-child {
	max-width: 170px;
}
.footer-widget-col:first-child img {
	max-width: 110px;
}
.footer-widget-col ul {
	list-style: none;
	margin: 0;
}
.footer-widget-col ul li {
	margin-bottom: 18px;
}
.footer-widget-col ul li.strong-list-item {
	margin-bottom: 25px;
}
.footer-widget-col ul a {
	color: #FAC79F;
	font-size: 18px;
	text-transform: uppercase;
}

.footer-widget-col ul li.strong-list-item a {
	font-weight: 700;
}
.footer-nav-area {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 40px;
}
.footer-menu ul {
	list-style: none;
	display: flex;
}
.footer-nav-area a {
	color: #FAC79F;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
}
.footer-menu ul li {
	padding: 0 16px;
}
.footer-socials {
	display: flex;
	align-items: center;
}
.footer-socials a {
	margin: 0 15px;
}
.footer-phone {
	margin: 0 25px;
}
.footer-phone i {
	margin-right: 10px;
}
.footer-copy-area {
	text-align: center;
	color: #FAC79F;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
}
.site-footer a:hover {
	color: #fff;
}

.site-main {
	padding: 110px 0;
}
.archive .page-header,
.cb-header,
.single .page-header {
	text-transform: uppercase;
	text-align: center;
}
.archive .page-header .page-title,
.cb-header .page-title,
.single .page-header .page-title {
	min-width: 260px;
	border: 2px solid #252354;
	display: inline-block;
	padding: 30px 25px;
	box-shadow: 12px 12px 0 0 #252354;
	letter-spacing: 10px;
	font-size: 35px;
	font-weight: 700;
}
.archive-post-list {
	display: flex;
	flex-flow: row wrap;
	margin: 40px -15px 0;
}
.archive-item {
	flex: 1 1 calc(33.333% - 30px);
	max-width: calc(33.333% - 30px);
	margin: 15px;
	background: #FFEFBD6B;
}
.post-thumb a {
	display: flex;
}
.post-meta {
	background: #ffefbd;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 28px;
}
.post-info {
	display: flex;
	align-items: center;
	font-size: 11px;
	line-height: 1;
}
.post-info .post-author span {
	font-weight: 700;
}
.post-meta svg {
	fill: #252354;
}
.post-btns {
	display: flex;
	align-items: center;
}
.post-btns-item {
	border-left: 1px solid #252354;
	padding-left: 20px;
	margin-left: 20px;
}
.post-bookmark svg {
	width: 14px;
}
.post-favorite svg {
	width: 18px;
}
.archive-post-content h2 {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 10px;
}
.archive-post-content p {
	font-size: 14px;
	line-height: 1.3;
}
.post-more {
	display: inline-block;
	font-weight: 700;
	font-size: 10px;
	color: #252354;
	border-bottom: 1px solid #252354;
	line-height: 1.4;
	margin-top: 30px;
}
.post-more:hover {
	border-color: transparent;
	color: #252354;
}
.post-date {
	padding-right: 12px;
	margin-right: 12px;
}
.archive-post-content {
	padding: 28px;
}
#archive-more {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
#archive-more a {
	border-bottom: 1px solid #252354;
	line-height: 1.4;
	color: #252354;
	font-weight: 700;
	font-size: 22px;
}
#archive-more a:hover {
	border-color: transparent;
}
.site-main .hour {
	margin-top: 185px;
	margin-bottom: 80px;
}
.site-main .hour .container {
	padding: 0;
}
.single .page-wrapper {
	margin-top: 125px;
}
.page-content-wrapper {
	background: rgba(255, 239, 189, 0.45);
	padding: 40px;
}
.single-thumb img {
	width: 100%;
	height: auto;
}
h1.post-title {
	color: #252354;
	font-weight: 700;
	font-size: 80px;
	margin-bottom: 50px;
	line-height: 1.1;
	margin-top: 60px;
	text-transform: uppercase;
	letter-spacing: 5px;
}
.page-content-wrapper .post-meta {
	background: transparent;
	justify-content: flex-start;
	padding: 15px 0;
	align-items: flex-start;
}
.page-content-wrapper .post-info {
	flex-direction: column-reverse;
	font-size: 30px;
	align-items: flex-start;
	letter-spacing: 2px;
}
.page-content-wrapper .post-date {
	border: none;
	margin-top: 6px;
	letter-spacing: 5px;
}
.page-content-wrapper .post-bookmark svg {
	width: 25px;
}
.page-content-wrapper .post-favorite svg {
	width: 33px;
}
.page-content-wrapper .post-btns-item {
	border-left: 1px solid #252354;
	padding-left: 35px;
	margin-left: 35px;
}
.page-content-wrapper .entry-content {
	margin-top: 30px;
	font-size: 20px;
	line-height: 1.4;
}
.page-content-wrapper .entry-content p {
	margin-bottom: 30px;
}
.category-news .archive-item,
.news .page-content-wrapper {
	background: rgba(251, 233, 222, 0.63);
}
.category-news .post-meta {
	background: #fcd8c0;
}
.category-news .post-btns-item,
.news .page-content-wrapper .post-btns-item  {
	border-left: 1px solid #a71d17;
}
.category-news .post-btns svg,
.news .page-content-wrapper .post-btns svg {
	fill: #a71d17;
}

.archive-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	margin-top: 180px;
}
.archive-filter > * {
	margin: 0 24px;
}
.archive-filter span {
	font-weight: 700;
	font-size: 20px;
}
.archive-filter a {
	color: #252354;
	border-bottom: 1px solid transparent;
	position: relative;
	padding-left: 26px;
	font-size: 20px;
}
.archive-filter a:hover {
	border-color: #252354;
}
.archive-filter a::before {
	content: '';
	width: 14px;
	height: 14px;
	border: 2px solid #252354;
	position: absolute;
	left: 0;
	top: 5px;
}

.video-list {
	display: flex;
	flex-flow: row wrap;
	margin: 150px -30px 0;
}
.video-item {
	background: rgba(251, 233, 222, 0.63);
	flex: 1 1 calc(50% - 60px);
	max-width: calc(50% - 60px);
	margin: 30px 30px 70px;
}
.video-item:nth-child(2n) {
	padding-left: 0;
}

.video-thumb a {
	display: flex;
	position: relative;
}
.video-thumb a:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: transparent url("/wp-content/themes/vetmodern/assets/img/icons/play-button.svg") no-repeat center center / contain;
	width: 120px;
	height: 120px;
	opacity: 0.3;
	transition: all .3s ease-out;
}
.video-thumb:hover a:before {
	opacity: 1;
}
.video-thumb a img {
	width: 100%;
	height: auto;
}
.video-item .archive-post-content {
	padding: 20px;
	text-align: center;
}

.video-item .archive-post-content h2 {
	font-size: 30px;
	margin-bottom: 40px;
}
.archive-post-content p {
	font-size: 18px;
	line-height: 1.4;
}
.single-videos .page-header .page-title {
	width: auto;
	padding: 40px;
}
.single-videos .page-content-wrapper {
	background: transparent;
	padding: 0;
}

.gallery-list {
	display: flex;
	margin: 120px -10px 0;
	flex-flow: row wrap;
}
.gallery-item {
	flex: 1 1 calc(33.333% - 20px);
	max-width: calc(33.333% - 20px);
	margin: 10px;
}
.gallery-item a {
	display: block;
}
.gallery-item a img {
	max-width: 100%;
	width: 100%;
	height: auto;
}
.about-video {
	position: relative;
	height: calc(100vh - 122px);
	background: transparent url("/wp-content/themes/vetmodern/assets/img/about-video-overlay.jpg") no-repeat center center / cover;
}
.about-video-wrapper {
	height: calc(100vh - 122px);
	position: relative;
	max-width: 1375px;
	margin: 0 auto;
}
.admin-bar .about-video,
.admin-bar .about-video-wrapper {
	height: calc(100vh - 122px - 33px);
}
#video-prev {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: transparent url("/wp-content/themes/vetmodern/assets/img/icons/play-button.svg") no-repeat center center / contain;
	width: 160px;
	height: 160px;
	opacity: 0.5;
	transition: all .3s ease-out;
	z-index: 10;
	cursor: pointer;
}
#video-prev:hover {
	opacity: 1;
}
.page-template-about .trusted-header {
	background: #252354;
	color: #fac79f;
}
.page-template-about .trusted-title-description::before {
	background-color: #fac79f;
}
.page-template-about .trusted-title-description span {
	background-color: #252354;
}
.about-story,
.about-mission,
.about-vision {
	padding-top: 60px;
}
.about-touch {
	padding-top: 110px;
	margin-top: 0;
}
.about-story,
.about-vision {
	margin-bottom: 130px;
}
.about-header {
	margin-bottom: 80px;
}
.about-content {
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 2px;
}
.about-content p {
	margin-bottom: 35px;
}
.about-content img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 35px 0;
}
.video-container {
	width: 100%;
	height: 100%;
}
#video {
	display: none;
}

.services-main-image {
	margin-top: 130px;
}
h2.subtitle {
	text-align: center;
	color: #1d1a55;
	font-weight: 700;
	font-size: 30px;
	margin-top: 90px;
}
.services-archive-list {
	display: flex;
	flex-flow: row wrap;
	margin: 130px -6px 0;
}
.sa-item {
	flex: 1 1 calc(33.333% - 12px);
	max-width: calc(33.333% - 12px);
	margin: 25px 6px 5px;
}
.sa-item-title {
	color: #252354;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	background: #fbe9de;
	border-radius: 15px;
	padding: 10px;
	cursor: pointer;
	transition: all .3s ease-out;
	margin-bottom: 20px;
	position: relative;
}
.sa-item-title:hover {
	background: #fac79f;
}
.sa-item-title::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 15px solid #252354;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	z-index: 10;
}
.services-archive-item {
	background: #fef3f0;
	border: 1px solid #fac79f;
	padding: 0 35px 35px;
	box-shadow: 12px 12px 0 0 #fcd8c0;
	display: none;
	margin: 0 20px;
	height: calc(100% - 70px);
}
.services-post-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -40px;
	position: relative;
	z-index: 10;
}
.services-archive-thumb img {
	width: 100%;
	height: auto;
}
.services-post-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.services-post-icon img {
	width: 120px;
	height: 120px;
}
.services-post-content a {
	color: #252354;
	border-bottom: 2px solid transparent;
	line-height: 1.4;
}
.services-post-content a:hover {
	border-color: #252354;
}
.services-post-content h2 {
	font-size: 30px;
	letter-spacing: 1px;
	margin-top: 30px;
}
.services-post-content p {
	font-size: 16px;
	margin-top: 20px;
}
.services-post-content a.read-more {
	margin-top: 20px;
	display: block;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
}
.site-main .hour.green-promo .hour-inner-wrapper span {
	display: inline;
}
.single-our-services .page-content-wrapper {
	background: rgba(251, 233, 222, 0.63);
}
.single-our-services .single-thumb {
	position: relative;
	z-index: 10;
}
.services-icon {
	position: absolute;
	z-index: 20;
	width: 180px;
	bottom: -90px;
	left: 50%;
	transform: translateX(-50%);
}
.single-our-services h1.post-title {
	margin: 130px 0 50px;
	font-size: 60px;
	text-align: center;
}

.prices-list {
	display: flex;
	flex-flow: row wrap;
	margin: 130px -50px 0;
}
.prices-item {
	flex: 1 1 calc(50% - 100px);
	max-width: calc(50% - 100px);
	margin: 50px 50px 90px;
	padding: 0 35px 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 20;
}
.prices-item * {
	position: relative;
	z-index: 20;
}
.prices-item:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	border: 4px solid #252255;
	top: 20px;
	left: 18px;
}
.prices-item:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	background: #fef3f0;
	top: 0;
	left: 0;
}
.services-price-icon {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -70px 0 40px;
}

.prices-item h2 {
	margin-bottom: 30px;
	letter-spacing: 2px;
	font-size: 34px;
}
.prices-item p {
	letter-spacing: 2px;
}
.prices-item ul {
	list-style: none;
	margin: 25px 0 0;
	padding: 0;
}
.prices-item ul li {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 5px 0;
}

.frontend-index ul {
	list-style: none;
	padding: 0 0 0 20px;
}
.frontend-index ul li {
	margin: 10px 0;
}
.frontend-index ul li a {
	color: #252354;
	font-size: 20px;
}

.team-form-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-top: 120px;
}
.team-form-title,
.mobile-team-filter {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background: #252354;
	border-radius: 10px;
	padding: 7px 15px;
	margin-right: 40px;
}
.mobile-team-filter {
	display: none;
}
#clear-team-filter {
	cursor: pointer;
}
.form-filter {
	display: flex;
	align-items: center;
}
.team-filter-item {
	margin: 0 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.team-filter-item label {
	font-size: 17px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.team-filter-item select {
	border: none;
	border-radius: 10px;
	background: #fbe9de;
	color: #252354;
	padding: 6px 15px;
	cursor: pointer;
	font-size: 18px;
}
.team-list {
	display: flex;
	flex-flow: row wrap;
	margin: 70px auto 0;
	max-width: 1200px;
	justify-content: center;
}
.team-list-item {
	flex: 1 1 calc(33.333% - 80px);
	max-width: calc(33.333% - 80px);
	margin: 60px 40px 30px;
}
.team-item-thumb {
	display: flex;
	border-radius: 50%;
	border: 2px solid #252354;
	overflow: hidden;
}
.team-item-thumb img {
	object-fit: cover;
	width: 100%;
}
.team-item-header {
	margin-top: 40px;
	padding: 30px 30px 15px;
	background: #fcd8c0;
	text-align: center;
	min-height: 125px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.team-item-header a {
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 700;
	color: #252354;
}
.team-item-header .descr {
	text-transform: uppercase;
	font-size: 24px;
	margin-top: auto;
}
.team-item-content {
	background: rgba(251, 233, 222, 0.63);
	padding: 30px;
	text-align: center;
}
.team-item-content p {
	font-size: 14px;
}
.team-read-more {
	font-weight: 700;
	border-bottom: 1px solid #252354;
	font-size: 10px;
	color: #252354;
	margin-top: 20px;
	display: inline-block;
}
.team-read-more:hover {
	border-color: transparent;
	color: #252354;
}
.bottom-static-button {
	width: 400px;
	margin: 40px auto;
}
.bottom-static-button a {
	display: flex;
}
.bottom-static-button a:hover {
	opacity: 0.7;
}
.site-main .hour.yellow-promo {
	margin-top: 120px;
}
.page-default .cb-header .page-title {
	width: auto;
	padding: 30px;
	line-height: 1;
}
.page-default .page-wrapper {
	margin-top: 95px;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 1.5px;
}
.page-default .page-wrapper p {
	margin-bottom: 25px;
}

.single-team-info {
	display: flex;
	background: #fbe9de;
	border: 3px solid #252354;
	box-shadow: 12px 12px 0 0px #252354;
	margin-bottom: 12px;
}
.st-foto {
	flex: 1 1 40%;
	max-width: 40%;
	background: #fff;
	display: flex;
}
.st-foto img {
	width: 100%;
	object-fit: cover;
}
.st-info {
	flex: 1 1 60%;
	max-width: 60%;
	line-height: 1.2;
	color: #252354;
	padding: 45px 50px;
}
.st-name {
	font-size: 54px;
	font-weight: 700;
	text-transform: uppercase;
}
.st-position {
	font-size: 46px;
	margin-top: 20px;
}
.st-info ul {
	list-style: none;
	padding: 0 0 0 15px;
	margin: 0;
}
.st-info ul li {
	display: flex;
	align-items: flex-start;
	margin: 25px 0;
}
.st-info ul li:last-child {
	margin-bottom: 0;
}
.st-spec-thumb {
	flex-shrink: 0;
	width: 30px;
}
.st-spec {
	font-size: 24px;
	text-transform: uppercase;
	padding-left: 30px;
	font-weight: 500;
	letter-spacing: 2px;
}
.single-team-bio,
.single-team-publ,
.single-team-gallery {
	margin-top: 120px;
}
h2.st-subheader {
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 42px;
	letter-spacing: 2px;
	position: relative;
	z-index: 30;
	margin-bottom: 70px;
	line-height: 1;
}
h2.st-subheader:before {
	content: '';
	position: absolute;
	top: 19px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #252354;
	z-index: -2;
}
h2.st-subheader:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 19px;
	transform: translateX(-50%);
	background: #fff;
	z-index: -1;
	width: 400px;
	height: 4px;
}
.single-team-gallery h2.st-subheader:after {
	width: 270px;
}
.single-team-bio p {
	font-size: 30px;
	line-height: 1.4;
	margin-bottom: 30px;
}
.single-team-video {
	margin-top: 120px;
}
.st-video-descr {
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 45px;
}
.st-video-descr span {
	font-weight: 500;
}
.single-team-gallery .insta-feed-wrapper {
	padding: 0 50px;
}
.st-publ-wrapper {
	background: #fef3f0;
	border: 1px solid #fac79f;
	box-shadow: 12px 12px 0 0 #fac79f;
	margin-bottom: 12px;
	padding: 55px 65px;
}
.st-publ-item {
	display: flex;
	margin-bottom: 75px;
	align-items: center;
}
.st-publ-item:last-child {
	margin-bottom: 0;
}
.st-publ-item-thumb {
	flex-shrink: 0;
	width: 150px;
	height: 150px;
	display: flex;
}
.st-publ-item-thumb img {
	width: 100%;
	object-fit: cover;
}
.st-publ-item-content {
	padding-left: 45px;
	line-height: 1;
	letter-spacing: 2px;
}
.st-publ-title {
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 15px;
}
.st-publ-title a {
	color: #252354;
	border-bottom: 1px solid transparent;
	line-height: 1.3;
}
.st-publ-title a:hover {
	border-color: #252354;
}
.st-publ-item-content p {
	font-size: 22px;
}

.careers-form {
	padding-bottom: 175px;
}
.careers-form .container {
	max-width: 1130px;
}
.form-title {
	text-align: center;
	font-weight: 700;
	font-size: 38px;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-style: italic;
}
.careers-form .wpforms-container,
.careers-form .wpcf7 {
	margin-top: 90px;
}
.wpforms-field,
.form-row {
	margin-bottom: 40px;
}
.wpforms-container,
.form-row {
	clear: both;
}
.wpforms-container label,
.form-row label {
	color: #252354;
	font-weight: 500 !important;
	font-size: 28px;
	letter-spacing: 2px;
}
.wpforms-container input,
.wpforms-container textarea,
.form-row input,
.form-row textarea,
.form-row select {
	background: #fbe9de;
	border: none;
	height: 88px;
	border-radius: 30px;
	font-size: 24px;
	padding: 0 20px;
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
}
.wpforms-field-textarea {
	clear: both;
}
.wpforms-container textarea,
.form-row textarea {
	border-radius: 0;
	height: 300px !important;
}
.wpforms-container textarea,
.form-row textarea {
	width: calc(100% - 50px) !important;
	border: 4px solid #fac79f;
	box-shadow: 0 0 0 25px #fbe9de;
	margin: 50px auto 0;
	padding: 20px;
	display: block;
}
.wpforms-container button[type="submit"], .form-row input[type="submit"] {
	background: #252354;
	border: none;
	height: 88px;
	color: #fac79f;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 40px;
	border-radius: 30px;
	cursor: pointer;
	transition: all .3s ease-out;
	max-width: 500px;
	margin: 0 auto;
	display: block;
}
.form-row.submit-row {
	margin-top: 60px;
}
.wpforms-container button[type="submit"]:hover,
.form-row input[type="submit"]:hover {
	color: #fff;
	background: #cd9d95;
}
.form-two-col {
	display: flex;
	margin: 0 -20px 40px;
}
.form-two-col > * {
	flex: 1 1 calc(50% - 40px);
	max-width: calc(50% - 40px);
	margin: 0 20px;
}
.wpcf7-form-control-wrap {
	display: block;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
	position: absolute;
	bottom: 10px;
	left: 21px;
	color: #a71d17;
}
.form-row input.wpcf7-not-valid,
.form-row textarea.wpcf7-not-valid {
	border: 1px solid #a71d17;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	border: none;
	color: #a71d17;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #252354;
}
.wpforms-field-file-upload {
	margin-top: 35px;
}
.wpforms-field-file-upload label {
	font-weight: 400 !important;
}
.wpforms-field-file-upload input {
	margin: 0;
	padding: 0;
	height: auto;
	width: auto;
	max-width: 100%;
}
.wpforms-field-file-upload .jq-file {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
	margin-top: 24px;
}
.jq-file__browse {
	color: #252354;
	font-weight: 700;
	text-transform: uppercase;
	background: #fac79f;
	border: 1px solid #252354;
	border-radius: 20px;
	padding: 5px 15px;
	flex-shrink: 0;
}
.jq-file__name {
	font-weight: 300;
	color: #252354;
	margin-left: 20px;
	font-size: 22px;
}

.wpforms-container label.wpforms-error {
	padding: 0 24px;
	margin-top: 5px;
}

.page-locations > .container {
	max-width: 1700px;
}
.location-open-hours {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 1.2;
	margin-bottom: 15px;
	text-align: center;
}
.locations {
	display: flex;
	margin: 0 -30px;
}
.locations > * {
	flex: 1 1 calc(50% - 60px);
	max-width: calc(50% - 60px);
	margin: 0 30px;
}
.locations-item {
	background: #fbe9de;
	padding: 30px 80px 50px;
	text-align: center;
	line-height: 1.2;
}
.locations-list {
	display: flex;
	flex-flow: row wrap;
	margin: 0 -30px;
}
.locations-list .locations-item {
	flex: 1 1 calc(50% - 60px);
	max-width: calc(50% - 60px);
	margin: 30px;
	background: rgba(251, 233, 222, 0.36);
}
.clinic-thumb a {
	display: flex;
	width: 100%;
	max-height: 350px;
}
.clinic-thumb a img {
	width: 100%;
	object-fit: cover;
}
.clinic-name {
	margin-top: 20px;
}
.clinic-name h2 {
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
}
.clinic-name h2 a {
	color: #252354;
	border-bottom: 2px solid transparent;
}
.clinic-name h2 a:hover {
	border-color: #252354;
}
.clinic-descr {
	font-size: 16px;
	letter-spacing: 2px;
	margin-top: 15px;
	color: #252354;
}
.clinic-contact {
	font-weight: 700;
	font-size: 16px;
	margin-top: 15px;
	color: #252354;
}
.clinic-contact a {
	color: #252354;
	border-bottom: 1px solid transparent;
}
.clinic-contact a:hover {
	border-color: #252354;
}
.clinic-btns {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.clinic-btns a,
.clinic-location-area a {
	padding: 4px 14px;
	margin: 0 10px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	border: 4px solid transparent;
	color: #FBE9DE;
	border-radius: 10px;
}
.clinic-btns a.clinic-btn-book,
.clinic-location-area a {
	background: #A71D17;
	box-shadow: 0 0 0 #A71D17;
}
.clinic-btns a.clinic-btn-location {
	background: #75B09A;
	box-shadow: 0 0 0 #75B09A;
}
.clinic-btns a:hover,
.clinic-location-area a:hover {
	border: 4px solid #fbe9de;
}
.clinic-btns a::before,
.clinic-location-area a::before {
	content: '';
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	opacity: 0;
	position: absolute;
	left: -4px;
	top: -4px;
	transition: all .3s ease-out;
	border-radius: 10px;
}
.clinic-btns a.clinic-btn-book:before,
.clinic-location-area a:before {
	border: 2px solid #A71D17;
}
.clinic-btns a.clinic-btn-location:before {
	border: 2px solid #75B09A;
}
.clinic-btns a:hover::before,
.clinic-location-area a:hover::before {
	opacity: 1;
	z-index: 10;
}
.clinic-btn-mobile {
	display: none;
}
.location-banner {
	position: relative;
	width: 100%;
	height: 520px;
	background: #75b09a url("/wp-content/themes/vetmodern/assets/img/banner-locations.jpg") no-repeat center center / cover;
	box-shadow: 12px 12px 0 0 #75b09a;
	max-width: 1200px;
	margin: 130px auto 12px;
}
.location-banner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(0,0,0,0.46) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,0,0,0.46) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(0,0,0,0.46) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	z-index: 10;
}
.location-banner-text {
	position: absolute;
	z-index: 20;
	color: #ffefbd;
	text-transform: uppercase;
	font-size: 54px;
	letter-spacing: 2px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 60px;
	line-height: 1.4;
	text-align: center;
	font-weight: 300;
	width: 100%;
}
.location-banner-text span {
	font-weight: 600;
}
.clinics-map-wrapper {
	position: relative;
}
.clinics-map,
.single-clinic-map {
	box-shadow: 12px 12px 0 0 #252354;
	margin-bottom: 12px;
	position: relative;
}
.clinics-map {
	display: flex;
}
.clinics-map img {
	object-fit: contain;
	width: 100%;
	object-position:top left;
}
.clinics-map #map-balloon-1 {
	left: 0px;
	top: 330px;
}
.clinics-map #map-balloon-2 {
	right: auto;
	top: 360px;
	left: 127px;
}
.clinics-map #map-balloon-3 {
	top: 150px;
    right: auto;
    left: 148px;
}
.clinics-map #map-balloon-4 {
	top: 102px;
    bottom: auto;
    left: 249px;
    right: auto;
}
}
.clinics-map #map-balloon-5 {
	left: 17px;
    top: 252px;
}

.clinics-map #map-balloon-6 {
	    left: auto;
    top: 5px;
    right: -3px;
}

.locations-mobile {
	display: none;
}

.page-clinic-descr {
	background: rgba(251, 233, 222, 0.63);
	padding: 40px;
}
.page-clinic-descr .entry-content {
	margin-top: 50px;
}
.clinic-meta,
.clinic-meta a {
	font-weight: 700;
	font-size: 16px;
	color: #252354;
}
.clinic-meta a {
	border-bottom: 1px solid transparent;
}
.clinic-meta a:hover {
	border-color: #252354;
}
.clinic-location-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.clinic-contact-area {
	display: flex;
	align-items: center;
}
.clinic-address, .clinic-contact-area > * {
	display: flex;
	align-items: center;
	flex: 1;
}
.clinic-contact-area > * {
	max-width: 350px;
}
.clinic-meta svg,
.clinic-meta img {
	max-width: 23px;
	max-height: 20px;
	fill: #a71d17;
	margin-right: 20px;
}
.clinic-meta .clinic-location-area a {
	color: #fbe9de;
	border: 4px solid #a71d17;
}
.clinic-meta .clinic-location-area a:hover {
	border-color: #fbe9de;
}

.page-clinic-banner,
.button-animation,
.page-clinic-video,
.page-clinic-gallery,
.page-clinic-team,
.page-clinic-map {
	margin-top: 100px;
}
.single-clinic-map img {
	width: 100%;
}
.locations-btn-wrapper {
	display: flex;
	justify-content: center;
	margin: 70px 0;
}
#all-clinics {
	color: #fbe9de;
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 600;
	background: #252354;
	border-radius: 15px;
	padding: 12px 45px;
}
#all-clinics:hover {
	background: #FAC79F;
	color: #282552;
}
.checked-map {
	display: none;
}
.checked-map.active-map {
	display: block;
}
.clinics-map button {
	background: none;
	border: none;
	cursor: pointer;
}
.all-locations {
	margin-top: 100px;
}

.animation-wrapper {
	max-width: 530px;
	margin: 0 auto;
}
.animation-text {
	-webkit-animation-name: rotate;
	animation-name: rotate;
	-webkit-animation-duration: 40s;
	animation-duration: 40s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-transform-origin:center;
	-ms-transform-origin:center;
	transform-origin:center;
}
@-webkit-keyframes rotate {
	from {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
@keyframes rotate {
	from {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

.page-clinic h2 {
	font-weight: 700;
}
.page-clinic-video h2.st-subheader::after {
	width: 685px;
}

.page-clinic-team .team-list {
	margin-top: 0;
}
.page-clinic-team .team-list-item {
	margin: 0 40px 60px;
	line-height: 24px;
	letter-spacing: 1px;
}
.map-balloon {
	width: 66px;
	height: auto;
	cursor: pointer;
	position: absolute;
	z-index: 30;
	top: 0;
	left: 0;
}
#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
.map-balloon .balloon-bg {
	fill: #242353;
	transition: all .3s ease-out;
}
.map-balloon .balloon-logo {
	fill: #fcc198;
	transition: all .3s ease-out;
}
.map-balloon:hover .balloon-bg {
	fill: #fac79f;
}
.map-balloon:hover .balloon-logo {
	fill: #242353;
}
.map-tooltip-content,
.share-tooltip-content {
	display: none;
}
.tooltipster-sidetip .tooltipster-content {
	padding: 0;
}
.tooltipster-content {
	pointer-events: auto;
}
.tooltipster-content .locations-item {
	max-width: 500px;
	padding: 30px 40px;
}
.clinic-btns a.clinic-btn-direction {
	background: #252354;
	box-shadow: 0 0 0 #252354;
}
.clinic-btns a.clinic-btn-direction:before {
	border: 2px solid #252354;
}
.clinic-btns .clinic-btn-direction.clinic-btn-mobile {
	background: #b67b6d;
	box-shadow: 0 0 0 #b67b6d;
}
.clinic-btns a.clinic-btn-direction.clinic-btn-mobile:before {
	border: 2px solid #b67b6d;
}
.tooltipster-content .clinic-btns a {
	padding: 4px 10px;
	font-size: 14px;
}
.tooltipster-content .clinic-btns a:first-child {
	margin-left: 0;
}
.tooltipster-content .clinic-btns a:last-child {
	margin-right: 0;
}

#share-tooltip-wrapper {
	width: 250px;
}
.share-list {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 20px;
}
.share-list a {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #686868;
	font-weight: 300;
	margin-bottom: 10px;
}
.share-list a span {
	border-bottom: 1px solid #fff;
	transition: all .3s ease-out;
}
.share-list a:last-child {
	margin-bottom: 0;
}
.share-list a i {
	width: 25px;
	display: flex;
	justify-content: center;
	height: 25px;
	align-items: center;
	background: #282552;
	border-radius: 50%;
	color: #fff;
	flex-shrink: 0;
	margin-right: 10px;
	transition: all .3s ease-out;
}
.share-list a:hover i {
	background: #FAC79F;
	color: #282552;
}
.share-list a:hover span {
	border-color: #686868;
}
.button,
.hour-book {
	box-shadow: 0 0 0 #A71D17;
	border: 4px solid transparent;
}
.hour-book:before,
.button:before {
	content: '';
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s ease-out;
	border-radius: 15px;
}
.hour-book::before {
	border: 3px solid #fcd8c0;
}
.hour-book:hover::before,
.button:hover::before {
	opacity: 1;
	z-index: 10;
}
.yellow-promo .hour-book:hover {
	color: #ffefbd;
}
.yellow-promo .hour-book::before {
	border: 3px solid #ffefbd;
}

.button.green-button {
	box-shadow: 0 0 0 #75B09A;
}
.button.green-button:hover {
	color: #fff;
	background: #6dbea0;
}
.button::before {
	border: 3px solid #252354;
}
.always-promo .hour-inner-wrapper::after {
	width: 320px;
}

.videos-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videos-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-content {
	padding-top: 30px;
}
.wa-float-btn,
.phone-float-btn {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#282552;
	color:#FBE9DE;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
}
.wa-float-btn:hover,
.phone-float-btn:hover {
	background: #FAC79F;
	color: #282552;
}
.phone-float-btn {
	right: auto;
	left: 40px;
}
.wa-float {
	margin-top:16px;
}

.mm-navbar > span {
	flex-direction: column;
}
.mm-navbars_bottom .mm-navbar:first-child {
	border: none;
}
.mm-navbar .mobile-menu-btns {
	display: flex;
	justify-content: center;
	border-bottom: 1px solid aliceblue;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 15px;
}
.mm-navbar .mobile-menu-btns a {
	padding: 0 8px;
	font-size: 16px;
	background: #FBE9DE;
	box-shadow: 0 0 0 #FBE9DE;
	letter-spacing: 0;
	position: relative;
	border: 4px solid transparent;
	display: flex;
	align-items: center;
	border-radius: 8px;
	color: #252354;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 10px;
}
.mm-navbar .mobile-menu-btns a::before {
	content: '';
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	opacity: 0;
	position: absolute;
	left: -4px;
	top: -4px;
	transition: all .3s ease-out;
	border-radius: 10px;
	border: 2px solid #FBE9DE;
}
.mm-navbar .mobile-menu-btns .icon-wrapper {
	width: 9px;
	margin-right: 10px;
	display: flex;
}
.mm-navbar .mobile-menu-btns a svg {
	fill: currentColor;
	width: 9px;
	margin-right: 10px;
	flex-shrink: 0;
	height: 100%;
}
.mobile-menu-socials {
	display: flex;
	width: 100%;
	padding: 15px 0;
}
.mobile-menu-socials > * {
	flex: 1 1 25%;
}



/* Medium Devices, Desktops */
@media only screen and (max-width: 1720px) {
	
	
	
.map-balloon {
	width: 4vw;
	
}
	.clinics-map #map-balloon-1 {
    left: 0.3%;
    top: 45.4%;
}
.clinics-map #map-balloon-2 {
    right: auto;
    top: 50%;
    left: 16%;
}
.clinics-map #map-balloon-3 {
    top: 21.6%;
    right: auto;
    left: 19%;
}
.clinics-map #map-balloon-4 {
    top: 15.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
}
.clinics-map #map-balloon-5 {
    left: 2.2%;
    top: 35.4%;
}
.clinics-map #map-balloon-6 {
    left: auto;
    top: 1.6%;
    right: 0.1%;
}
	.site-header .container,
	.home-slider-item .container,
	.locations {
		max-width: 1500px;
	}
	.locations {
		margin: 0 auto;
		justify-content: center;
		padding: 0 20px;
	}
	.checked-location {
		margin-left: 0;
	}
	.clinics-map-wrapper {
		margin-right: 0;
	}
	.slick-arrow {
		left: calc(50% - 710px);
	}
	.slick-next.slick-arrow {
		right: calc(50% - 710px);
	}
	#team-slider .slick-arrow {
		left: -50px;
		z-index: 15;
		width: 50px;
		height: auto;
		padding: 0;
	}
	#team-slider .slick-next.slick-arrow {
		right: -50px;
	}
	.touch .container {
		max-width: 1400px;
	}
	.services .container {
		max-width: 1250px;
	}
	.services-item {
		padding-top: 140px;
	}
	.service-item-icon {
		width: 170px;
		height: 170px;
		top: -80px;
	}
	.services-item h3 {
		font-size: 26px;
		letter-spacing: 1px;
	}
	.clinic-btns a {
		font-size: 14px;
	}
	.clinics-map-wrapper {
		display: flex;
		flex-direction: column;
	}
	.locations .clinics-map {
		display: flex;
		flex: 1;
	}
	.reviews-slider-wrapper {
		max-width: 880px;
	}
	.review-text {
		font-size: 30px;
	}
	.reviews h3 {
		font-size: 68px;
	}
	.services-wrapper .slick-track {
		padding-top: 60px;
	}
}
@media only screen and (max-width: 1520px) {
	.clinics-map #map-balloon-1 {
    left: 0.3%;
    top: 55.4%;
}
.clinics-map #map-balloon-2 {
       right: auto;
    top: 60%;
    left: 16.4%;
}
.clinics-map #map-balloon-3 {
       top: 25.6%;
    right: auto;
    left: 19%;
}
.clinics-map #map-balloon-4 {
   top: 18.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
}
.clinics-map #map-balloon-5 {
        left: 2.2%;
    top: 42.4%;
}
.clinics-map #map-balloon-6 {
   left: auto;
    top: 2.7%;
    right: -0.2%;
}

	.trusted-item-text {
		font-size: 26px;
		top: 52%;
	}
	.trusted-item-text span {
		font-size: 16px;
	}
	.site-header .container,
	.home-slider-item .container,
	.container,
	.locations {
		max-width: 1201px;
	}
	.logo-area {
     /* width: 90px; */
		width: 110px;
	}
	.header-menu {
		margin-right: 20px;
	}
	.header-menu > ul > li {
		margin-left: 18px;
	}
	.header-menu ul li a {
		font-size: 13px;
	}
	.header-buttons a.btn-location, .btn-location, .header-buttons a.btn-book, .header-buttons a.btn-phone {
		font-size: 12px;
		padding: 0 8px;
		margin-left: 16px;
	}
	.header-buttons a.btn-phone {
		font-size: 16px;
	}
	.header-socials {
		margin-left: 15px;
	}
	.header-socials a {
		margin-left: 8px;
	}
	.slick-arrow {
		left: calc(50% - 555px);
		width: 120px;
		height: 120px;
		padding: 17px;
	}
	.slick-next.slick-arrow {
		right: calc(50% - 555px);
	}
	.home-slider-item {
		padding: 50px 0;
	}
	.slider-link-wrapper {
		bottom: -37px;
	}
	.slider-link-wrapper a {
		font-size: 20px;
	}
	.trusted h2 {
		font-size: 85px;
	}
	.hour {
		margin-top: 70px;
	}
	.hour-inner-wrapper {
		font-size: 56px;
		padding: 80px;
	}
	.hour-book {
		bottom: -29px;
		font-size: 22px;
	}
	.services {
		margin-top: 85px;
	}
	.services-wrapper {
		margin: 100px -10px 0;
	}
	.services-item {
		flex: 1 1 calc(25% - 20px);
		margin: 10px;
		padding-top: 170px;
	}
	.service-item-icon {
		width: 180px;
		height: 180px;
		top: -75px;
	}
	.team {
		margin-top: 85px;
	}
	.team-slider-wrapper .container {
		max-width: 1100px;
	}
	.team-item {
		padding: 0 30px;
	}
	.team-slider-wrapper::before {
		height: 130px;
		top: 105px;
	}
	#team-slider .slick-arrow {
		width: 30px;
		height: auto;
		left: -45px;
	}
	#team-slider .slick-arrow.slick-next {
		left: auto;
		right: -45px;
	}
	.team-item-title {
		font-size: 26px;
		margin: 24px 0 18px;
	}
	.team-descr {
		font-size: 16px;
		padding: 0 20px;
	}
	.news {
		margin-top: 100px;
	}
	.touch {
		margin-top: 85px;
	}
	.touch-socials {
		margin-top: 75px;
	}
	.touch-socials a {
		width: 75px;
		height: 75px;
		margin: 0 30px;
		font-size: 42px;
	}
	.touch-socials::before {
		width: 670px;
	}
	.insta-feed-wrapper {
		max-width: 1000px;
		margin: 45px auto 0;
	}
	.reviews::after, .careers-form::after {
		width: 68px;
	}
	.reviews-slider-wrapper {
		max-width: 940px;
	}
	#reviews-slider::before {
		width: 250px;
	}
	.review-item {
		padding: 60px 40px 35px;
	}
	.review-text {
		font-size: 35px;
		letter-spacing: 5px;
	}
	.review-author {
		font-size: 25px;
		margin-top: 35px;
	}
	#reviews-slider .slick-arrow {
		left: -150px;
	}
	#reviews-slider .slick-arrow.slick-next {
		right: -150px;
	}
	.reviews h3 {
		font-size: 72px;
		margin-top: 50px;
	}
	.footer-widget-col ul {
		padding: 0;
	}
	.footer-widget-col ul li,
	.footer-widget-col ul li.strong-list-item {
		margin-bottom: 15px;
	}
	.footer-widget-col ul a {
		font-size: 16px;
	}
	.footer-nav-area {
		margin: 40px 0 30px;
	}
	.footer-menu ul {
		padding: 0;
	}
	.footer-nav-area a {
		font-size: 14px;
	}
	.footer-socials a {
		font-size: 18px;
		margin: 0 10px;
	}
	.footer-copy-area {
		font-size: 14px;
	}
	.services-post-icon {
		width: 100px;
		height: 100px;
	}
	.services-post-icon img {
		width: 100px;
		height: 100px;
	}
	.location-open-hours {
		font-size: 16px;
	}
	.locations-item {
		padding: 30px 40px 50px;
	}
	.locations .clinic-name h2 {
		font-size: 22px;
	}
	.locations .clinic-descr {
		font-size: 14px;
		letter-spacing: 1px;
		margin-top: 14px;
	}
	.locations .clinic-contact {
		font-size: 14px;
		margin-top: 14px;
	}
	.locations .clinic-btns a {
		align-items: center;
		display: flex;
	}
	.locations .clinic-thumb a {
		max-height: 135px;
	}
	.locations .map-balloon {
		width: 50px;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.services .container {
		max-width: 1100px;
	}
	.services-wrapper .slick-track {
		padding-top: 65px;
	}
}
@media only screen and (max-width: 1200px) {
	.map-balloon {
	width: 6vw;
	
}
	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}
	.container {
		max-width: 990px;
	}
	.trusted .container {
		max-width: 990px;
		margin: 0 auto;
	}
	.trusted-item-text span {
		display: none;
	}
	.trusted-item-text {
		font-size: 26px;
		top: 65%;
	}
	.site-header .container,
	.home-slider-item .container {
		max-width: 100%;
	}
	.header-socials {
		display: none;
	}
	.header-buttons a.btn-location, .btn-location, .header-buttons a.btn-book, .header-buttons a.btn-phone {
		padding: 0 8px;
	}
	.slick-arrow {
		left: 25px;
	}
	.slick-next.slick-arrow {
		right: 25px;
	}
	.trusted-header {
		padding: 50px 0;
	}
	.trusted h2 {
		font-size: 75px;
	}
	.trusted-title-description {
		font-size: 28px;
	}
	.trusted-item-text span {
		margin-top: 16px;
	}
	.hour-inner-wrapper {
		font-size: 44px;
		padding: 60px;
	}
	.hour-book {
		padding: 7px 23px;
		border-radius: 15px;
		bottom: -26px;
	}
	.hour-book::before, .button::before {
		border-radius: 12px;
	}
	.services-item {
		padding-top: 140px;
	}
	.service-item-icon {
		width: 140px;
		height: 140px;
		top: -55px;
		background-size: 80px;
	}
	.services-item h3 {
		font-size: 24px;
	}
	.services-item p {
		margin: 20px 0 0;
		font-size: 16px;
	}
	.team-slider-wrapper {
		margin-top: 45px;
	}
	.team-slider-wrapper::before {
		top: 60px;
	}
	.team-slider-wrapper .container {
		max-width: 890px;
	}
	.team-item {
		padding: 0 20px;
	}
	#team-slider .slick-arrow {
		top: 130px;
	}
	.team-item-title {
		font-size: 20px;
		margin: 24px 0 15px;
		padding: 0 20px;
	}
	.team-descr {
		font-size: 14px;
	}
	.news .button {
		margin: 0;
		font-size: 20px;
	}
	.news .button::before {
		border-radius: 15px;
	}
	.touch {
		margin-top: 70px;
	}
	.touch-phone-wrapper a {
		font-size: 60px;
		border-radius: 40px;
		padding: 35px 65px;
	}
	.touch-phone-wrapper a i {
		font-size: 55px;
		margin-right: 15px;
	}
	.touch-socials::before {
		width: 475px;
	}
	.touch-socials a {
		width: 60px;
		height: 60px;
		margin: 0 20px;
		font-size: 34px;
	}
	.insta-feed-wrapper {
		max-width: calc(100% - 200px);
	}
	#insta-slider .slick-arrow {
		padding: 0;
	}
	.insta-slider-item {
		padding: 0 5px;
	}
	.insta-link-wrapper {
		font-size: 28px;
		margin-top: 50px;
	}
	.reviews, .careers-form {
		margin-top: 110px;
	}
	.reviews::before, .careers-form::before  {
		width: 160px;
		height: 160px;
		top: -45px;
	}
	.reviews-slider-wrapper {
		max-width: calc(100% - 200px);
	}
	#reviews-slider::before {
		width: 175px;
	}
	.reviews-slider-wrapper {
		padding: 35px;
	}
	.review-text {
		font-size: 28px;
		letter-spacing: 5px;
	}
	.review-author {
		font-size: 20px;
		margin-top: 28px;
	}
	.reviews h3 {
		font-size: 55px;
		margin-top: 50px;
	}
	.footer-nav-area {
		flex-direction: column;
	}
	.footer-nav-area .footer-phone {
		font-size: 18px;
		margin: 10px 0 25px;
	}
	.home-slider-item {
		padding: 40px 0;
	}
	.inner-slider-content {
		height: 540px;
	}
	.slider-link-wrapper {
		bottom: -28px;
	}
	.slider-link-wrapper a {
		font-size: 16px;
	}
	.services-wrapper {
		flex-flow: row wrap;
		margin: 40px -10px 0;
	}
	.services-item {
		flex: 1 1 calc(50% - 20px);
		margin-top: 80px;
	}
	.about-story, .about-mission, .about-vision {
		padding-top: 120px;
	}
	.about-touch {
		padding-top: 60px;
	}
	.archive-filter > * {
		margin: 0 18px;
	}
	.archive-filter a,
	.archive-filter span {
		font-size: 18px;
	}
	h1.post-title {
		font-size: 45px;
		margin-bottom: 35px;
		margin-top: 45px;
		letter-spacing: 3px;
	}
	.page-content-wrapper .post-info {
		font-size: 22px;
	}
	.sa-item {
		flex: 1 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
	.team-form-title {
		padding: 7px 10px;
		margin-right: 20px;
	}
	.team-filter-item {
		margin: 0 20px;
	}
	.team-list {
		margin: 40px -30px 0;
	}
	.team-list-item {
		flex: 1 1 calc(33.333% - 60px);
		max-width: calc(33.333% - 60px);
		margin: 30px 30px 30px;
	}
	.team-item-header {
		padding: 30px 15px 15px;
	}
	.team-item-header a {
		font-size: 26px;
		line-height: 1.1;
	}
	.team-item-header .descr {
		font-size: 20px;
	}
	.team-item-content {
		padding: 15px;
	}
	.team-item-content p {
		font-size: 14px;
		line-height: 1.5;
	}
	.team-read-more {
		margin-top: 10px;
	}
	.st-name {
		font-size: 45px;
	}
	.st-position {
		font-size: 32px;
	}
	.st-spec {
		font-size: 20px;
		padding-left: 20px;
	}
	.st-spec-thumb {
		width: 24px;
	}
	.st-video-descr {
		font-size: 26px;
		margin-top: 35px;
	}
	.locations {
		display: none;
	}
	.locations-mobile {
		display: block;
	}
	.locations-mobile .map {
		padding: 0;
	}
	.locations-list {
		margin: 0 -15px;
	}
	.locations-list .locations-item {
		flex: 1 1 calc(50% - 30px);
		max-width: calc(50% - 30px);
		margin: 15px;
	}
	.clinic-btns a {
		padding: 4px 8px;
		margin: 0 5px;
	}
	.page-clinic-team .team-list {
		margin: 0 -15px;
	}
	.page-clinic-team .team-list-item {
		flex: 1 1 calc(33.333% - 30px);
		max-width: calc(33.333% - 30px);
		margin: 15px;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.services .container {
		max-width: 900px;
	}
	.services-wrapper .slick-track {
		padding-top: 0;
	}
}
@media only screen and (max-width: 991px) {

	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}

	#lang_choice_1 {
		right: 15px !important;
		top: 10px !important;
	}
	.hamburger-wrapper {
		margin-top: 15px;
	}
	.langflags #lang_choice_1 {
		display: block;
	}
	.langflags {
float: left;
min-width: 50px;
position: relative;
margin: 30px 5px 0 0px;
}
.langflags li {
float:left; 
margin-right:5px;
}
    section.other-services {
    padding-top: 40px;
}

	.container {
		max-width: 766px;
	}
	.hamburger-wrapper {
		display: flex;
	}
	.header-menu {
		display: none;
	}
	.header-buttons {
		margin-left: auto;
	}
	.inner-slider-content {
		height: 460px;
	}
	.trusted-header {
		padding: 35px 0;
	}
	.trusted h2 {
		font-size: 55px;
	}
	.trusted-title-description {
		font-size: 24px;
		margin-top: 20px;
	}
	.trusted-item-text {
		font-size: 30px;
		top: auto;
		bottom: 50px;
	}
	.trusted-item-text span {
		font-size: 16px;
		margin-top: 10px;
	}
	.hour-wrapper {
		padding: 53px;
	}
	.hour-inner-wrapper {
		font-size: 24px;
		padding: 55px 25px;
	}
	.banner-icon {
		width: 125px;
		height: 80px;
		top: -50px;
	}
	.hour-book {
		padding: 6px 19px;
		bottom: -22px;
	}
	.hour-inner-wrapper::after {
		width: 200px;
	}
	.services-title, .touch-title, .reviews-title, .map-title, .team-title {
		font-size: 32px;
		letter-spacing: 5px;
	}
	.services-wrapper {
		margin: 85px -10px 0;
	}
	.team-slider-wrapper .container {
		max-width: calc(100% - 150px);
	}
	.review-text {
		font-size: 20px;
	}
	.review-author {
		font-size: 16px;
	}
	.reviews h3 {
		font-size: 40px;
		letter-spacing: 5px;
	}
	.footer-widget-area {
		flex-flow: row wrap;
	}
	.footer-widget-col {
		flex: 1 1 calc(20% - 20px);
	}
	.footer-widget-col:first-child {
		flex: 1 1 100%;
		max-width: 100%;
		margin-bottom: 45px;
	}
	.footer-widget-col:first-child a {
		max-width: 200px;
	}
	.footer-widget-area > * {
		margin-bottom: 25px;
	}
	.map-balloon {
		width: 5vw;
	}
	#map-balloon-1 {
		left: 95px;
		top: 121px;
	}
	.archive-filter {
		margin-top: 110px;
	}
	.archive-filter {
		flex-flow: row wrap;
	}
	.archive-filter span {
		flex: 1 1 100%;
		text-align: center;
		margin-bottom: 12px;
	}
	.archive-filter > * {
		margin: 0 12px;
	}
	.gallery-list {
		margin-top: 40px;
	}
	.video-list {
		flex-direction: column;
	}
	.video-item {
		flex: 1 1 calc(100% - 60px);
		max-width: calc(100% - 60px);
	}
	#archive-more {
		margin-top: 0;
	}
	.single-videos .page-header .page-title {
		line-height: 1.2;
		letter-spacing: 5px;
	}
	.archive-post-list {
		margin-bottom: 40px;
	}
	.archive-item {
		flex: 1 1 calc(50% - 30px);
		max-width: calc(50% - 30px);
	}
	.archive .site-main .hour {
		margin-top: 135px;
	}
	.services-icon {
		width: 120px;
		height: auto;
		bottom: -60px;
	}
	.single-our-services h1.post-title {
		margin: 110px 0 40px;
		font-size: 50px;
	}
	.prices-item {
		flex: 1 1 calc(100% - 100px);
		max-width: calc(100% - 100px);
	}
	.team-form-title {
		display: none;
	}
	.team-list-item {
		flex: 1 1 calc(50% - 60px);
		max-width: calc(50% - 60px);
	}
	.single-team-bio p {
		font-size: 28px;
	}
	.st-video-descr {
		font-size: 24px;
		margin-top: 25px;
	}
	.st-publ-title {
		font-size: 26px;
	}
	.st-publ-item-content p {
		font-size: 18px;
	}
	.all-locations {
		margin-top: 70px;
	}
	.locations-list {
		flex-direction: column;
		align-items: center;
	}
	.locations-list .locations-item {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.clinic-thumb a {
		max-height: 350px;
	}
	.page-clinic-descr .entry-content {
		font-size: 20px;
	}
	.clinic-location-area {
		flex-direction: column;
		align-items: flex-start;
	}
	.clinic-meta .clinic-location-area a {
		margin: 25px 0 0;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.site-header {
		height: auto;
	 /* padding: 15px 0 0; */
	}
	.services .container {
		max-width: 100%;
		padding: 0 70px;
	}

    .other-services .container {
		max-width: 100%;
		padding: 0 60px !important;
	}
	
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}

	.container {
		max-width: 100%;
	}
	.trusted-item-text span {
		display: block;
	}
	.trusted h2 {
		font-size: 40px;
		letter-spacing: 5px;
	}
	.trusted-title-description {
		font-size: 20px;
	}
	.trusted-list {
		flex-direction: column;
	}
	.services,
	.team {
		margin-top: 70px;
	}

	.team-slider-wrapper .container,
	.insta-feed-wrapper {
		max-width: 100%;
	}
	#team-slider,
	#insta-slider{
		max-width: 340px;
		margin: 0 auto;
	}
	.news-content-text {
		font-size: 16px;
	}
	.touch-phone-wrapper a {
		font-size: 40px;
		border-radius: 30px;
		padding: 25px 50px;
	}
	.touch-phone-wrapper a i {
		font-size: 40px;
		margin-right: 10px;
	}
	.reviews-slider-wrapper {
		max-width: 100%;
		z-index: 50;
	}
	#reviews-slider .slick-arrow {
		left: -36px;
		padding: 0;
		width: auto;
		height: auto;
	}
	#reviews-slider .slick-arrow {
		left: -29px;
		padding: 0;
		width: 20px;
		height: auto;
	}
	#reviews-slider .slick-arrow.slick-next {
		right: -29px;
	}
	.map {
		padding-top: 70px;
	}
	.map-wrapper {
		margin-top: 30px;
	}
	.footer-widget-area {
		align-items: flex-start;
		text-align: center;
		justify-content: center;
	}
	.footer-widget-col {
		flex: 1 1 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
	.footer-widget-col:first-child, .footer-widget-col:nth-child(2) {
		flex: 1 1 calc(100% - 20px);
		max-width: calc(100% - 20px);
		justify-content: center;
		display: flex;
	}
	.footer-widget-col:first-child a {
		width: 190px;
		display: block;
	}
	.footer-widget-col:first-child img {
		 max-width: 100%;
	}
	.footer-widget-col:nth-child(2) {
		margin-bottom: 30px;
	}
	.footer-widget-col:nth-child(2) ul {
		display: flex;
	}
	.footer-widget-col:nth-child(2) ul li {
		margin: 0 10px;
	}
	.footer-nav-area {
		margin-top: 0;
	}
	.footer-menu ul {
		flex-direction: column;
		text-align: center;
	}
	.footer-menu ul li {
		margin-bottom: 18px;
	}
	.footer-nav-area a {
		font-size: 16px;
	}
	.inner-slider-content {
		height: auto;
	}
	.inner-slider-content img {
		object-fit: contain;
		max-width: 100%;
		height: auto;
	}
	.map-wrapper {
		max-width: 535px;
		margin: 30px auto 0;
	}
	.tooltipster-content .locations-item {
		max-width: 400px;
		padding: 20px 30px;
	}
	.clinic-name h2 {
		font-size: 24px;
	}
	.clinic-descr {
		font-size: 14px;
		letter-spacing: 0;
		margin-top: 12px;
	}
	.clinic-contact {
		font-size: 14px;
		margin-top: 18px;
	}
	.tooltipster-content .clinic-btns a {
		padding: 3px 4px;
		margin: 0 4px;
	}
	.services-main-image,
	.page-default .page-wrapper {
		margin-top: 70px;
	}
	.wpforms-field-container {
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;
	}
	.wpforms-field-container > * {
		flex: 1 1 100%;
		max-width: 100%;
		width: 100% !important;
		margin: 0 0 25px !important;
	}
	.wpforms-container button[type="submit"] {
		float: none;
		margin: 0;
		width: 100%;
		z-index: 20;
		position: relative;
	}
	.careers-form {
		padding-bottom: 70px;
	}
	.trusted-item {
		margin: 5px;
	}
	.trusted-item-thumb img {
		max-width: 100%;
		height: auto;
	}
	.archive-item {
		flex: 1 1 calc(100% - 30px);
		max-width: calc(100% - 30px);
	}
	.post-thumb a {
		max-height: 300px;
		overflow: hidden;
	}
	.post-thumb a img {
		width: 100%;
		object-fit: cover;
	}
	.single .page-wrapper {
		margin-top: 90px;
	}
	.page-content-wrapper .entry-content {
		font-size: 20px;
	}
	.sa-item {
		flex: 1 1 calc(100% - 12px);
		max-width: calc(100% - 12px);
	}
	.services-archive-list {
		margin-top: 70px;
	}
	.archive .site-main .hour {
		margin-top: 105px;
	}
	.team-form-wrapper {
		display: none;
	}
	.mobile-team-filter {
		display: block;
		cursor: pointer;
		margin: 70px auto 0;
		width: 150px;
		text-align: center;
	}
	.team-list {
		margin-top: 35px;
	}
	.team-form-wrapper {
		margin-top: 30px;
	}
	.form-filter {
		flex-direction: column;
	}
	.team-filter-item {
		margin-bottom: 15px;
	}
	.team-filter-item label {
		font-size: 14px;
		margin-bottom: 0;
	}
	.team-filter-item select {
		font-size: 16px;
	}
	.single-team-info {
		flex-direction: column;
	}
	.st-foto {
		flex: 1 1 100%;
		max-width: 100%;
		max-height: 420px;
	}
	.st-info {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.single-team-bio p {
		font-size: 24px;
	}
	h2.st-subheader {
		font-size: 38px;
		margin-bottom: 45px;
	}
	.st-video-descr {
		font-size: 18px;
		margin-top: 20px;
	}
	.single-team-bio, .single-team-publ, .single-team-gallery {
		margin-top: 70px;
	}
	.st-publ-wrapper {
		padding: 40px;
	}
	.st-publ-item-content {
		padding-left: 28px;
	}
	.st-publ-title {
		font-size: 22px;
	}
	.st-publ-item-content p {
		font-size: 16px;
	}
	.st-publ-item {
		margin-bottom: 50px;
	}
	.page-clinic-team .team-list-item {
		flex: 1 1 calc(50% - 30px);
		max-width: calc(50% - 30px);
	}
	.about-video {
		height: auto !important;
	}
	.locations-mobile .container {
		padding: 0;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.form-two-col {
		flex-direction: column;
	}
	.form-two-col > * {
		flex: 1 1 calc(100% - 40px);
		max-width: calc(100% - 40px);
		margin: 0 20px 40px;
	}
	.form-two-col > *:last-child {
		margin-bottom: 0;
	}

}
@media only screen and (max-width: 575px) {
	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}

	.mobile-phone-me {
		display: block !important;
	}
	.trusted-item-text span {
		display: none;
	}
	.trusted-item-text {
		top: auto;
		bottom: 30px;
	}
	.prices-item::before {
		display: none;
	}
	.container {
		max-width: 100%;
	}


.services .container {
    width: 100%;
}
	
.other-services .container {
    max-width: 100%;
    padding: 0 70px !important;
}

	.site-header {
		padding: 15px 0 0;
	}
	.logo-area {
		width: 85px;
		margin-bottom: 15px;
	}
	.header-buttons a.btn-location,
	.header-buttons a.btn-phone {
		display: none;
	}
	.slick-arrow {
		left: 2px;
		width: 16px;
		height: auto;
		padding: 0;
	}







	.slick-next.slick-arrow {
		right: 2px;
	}
	.slick-arrow:hover {
		background: none;
	}
	.home-slider-item {
		padding: 25px 0;
	}
	.slider-link-wrapper {
		bottom: -22px;
		left: 0;
	}
	.slider-link-wrapper a {
		font-size: 12px;
	}
	.trusted-header {
		padding: 20px 0;
	}
	.trusted h2 {
		font-size: 30px;
		letter-spacing: 2px;
	}
	.trusted-title-description {
		font-size: 14px;
		margin-top: 14px;
	}
	.hour-wrapper {
		padding: 35px 20px;
	}
	.banner-icon {
		width: 85px;
		height: 50px;
		top: -23px;
	}
	.hour-inner-wrapper {
		font-size: 20px;
		padding: 35px 10px 28px;
		letter-spacing: 2px;
	}
	.hour-book {
		padding: 3px 12px;
		bottom: -17px;
		font-size: 14px;
		border-radius: 10px;
	}
	.hour-inner-wrapper::after {
		width: 145px;
	}
	.hour,
	.services,
	.team {
		margin-top: 50px;
	}
	.services-title, .touch-title, .reviews-title, .map-title, .team-title {
		font-size: 28px;
		letter-spacing: 2px;
	}
	.services-wrapper {
		margin: 10px -10px 0;
	}
	.services-item {
		padding: 95px 20px 55px;
		margin-top: 60px;
	}
	.service-item-icon {
		width: 100px;
		height: 100px;
		top: -40px;
		background-size: 55px;
	}
	#team-slider, #insta-slider {
		max-width: calc(100% - 100px)
	}
	.news-content-wrapper {
		padding-top: -190px;
	}
	.news-content-wrapper h2 {
		font-size: 34px;
		letter-spacing: 4px;
	}
	.news-content-text {
		font-size: 14px;
		line-height: 1.4;
		font-weight: 400;
		padding: 0 20px;
	}
	.news .button {
		margin: 0;
		font-size: 15px;
		padding: 10px 15px;
	}
	.touch {
		margin-top: 50px;
	}
	.touch-phone-wrapper {
		margin-top: 30px;
	}
	.touch-phone-wrapper a {
		font-size: 28px;
		border-radius: 20px;
		padding: 20px 40px;
		letter-spacing: 5px;
	}
	.touch-phone-wrapper a i {
		font-size: 28px;
		margin-right: 10px;
	}
	.touch-socials {
		margin-top: 40px;
	}
	.touch-socials a {
		width: 40px;
		height: 40px;
		margin: 0 10px;
		font-size: 22px;
	}
	.touch-socials::before,
	.touch-socials::after {
		content: none;
	}
	.insta-link-wrapper {
		font-size: 16px;
		margin-top: 40px;
		letter-spacing: 1px;
	}
	#insta-slider .slick-arrow {
		left: -45px;
	}
	#insta-slider .slick-arrow img {
		width: 20px;
		height: auto;
	}
	#insta-slider .slick-next.slick-arrow {
		right: -45px;
	}
	.reviews, .careers-form {
		margin-top: 80px;
		padding-top: 35px;
		padding-bottom: 40px;
	}
	.reviews::before, .careers-form::before {
		width: 80px;
		height: 80px;
		top: -25px;
		left: 25px;
	}
	.reviews-slider-wrapper {
		padding: 20px;
		margin-top: 40px;
	}
	#reviews-slider::before {
		width: 90px;
		height: 60px;
		top: -38px;
	}
	.review-item {
		padding: 30px 20px 25px;
	}
	.review-text {
		font-size: 18px;
		letter-spacing: 2px;
	}
	.review-author {
		font-size: 14px;
		margin-top: 12px;
	}
	.reviews h3 {
		font-size: 28px;
		letter-spacing: 2px;
		margin-top: 30px;
	}
	.map {
		padding-top: 50px;
	}
	#reviews-slider .slick-arrow {
		left: -19px;
		width: 15px;
	}
	#reviews-slider .slick-arrow.slick-next {
		right: -19px;
	}
	.map-wrapper {
		max-width: 439px;
	}
	.map-balloon {
		width: 5vw;
	}
	#map-balloon-2 {
		right: 93px;
		top: 45px;
		left: auto;
	}
	#map-balloon-4 {
		top: auto;
		bottom: 57px;
		left: 372px;
	}
	.clinic-btns {
		flex-flow: row wrap;
		margin: 20px -5px;
	}
	.tooltipster-content .clinic-btns a.clinic-btn-location,
	.tooltipster-content .clinic-btns a.clinic-btn-book,
	.tooltipster-content .clinic-btns a.clinic-btn-direction {
		order: 3;
		flex: 1 1 100%;
		max-width: 100%;
		margin: 5px 5px 0;
	}
	.about-story, .about-mission, .about-vision {
		padding-top: 100px;
	}
	.archive .page-header .page-title, .cb-header .page-title, .single .page-header .page-title {
		min-width: 245px;
		padding: 25px 15px;
		box-shadow: 8px 8px 0 0 #252354;
		font-size: 22px;
	}
	.about-header {
		margin-bottom: 60px;
	}
	.about-story, .about-vision {
		margin-bottom: 85px;
	}
	.site-main {
		padding: 90px 0;
	}
	.page-default .page-wrapper {
		margin-top: 80px;
		font-size: 20px;
		letter-spacing: 1.5px;
	}
	.page-default .cb-header .page-title {
		letter-spacing: 2px;
		padding: 20px;
		line-height: 1.4;
	}
	.careers-form .wpforms-container {
		margin-top: 50px;
	}
	.wpforms-container label,
	.form-row label {
		font-size: 22px;
	}
	.wpforms-container input, .wpforms-container textarea,
	.form-row input, .form-row textarea, .form-row select {
		height: 60px;
		border-radius: 12px;
		font-size: 20px;
		margin-top: 15px;
	}
	.wpforms-container textarea,
	.form-row textarea {
		width: 100% !important;
		border: none;
		box-shadow: none;
	}
	.archive-filter {
		display: none;
	}
	.gallery-list {
		margin-top: 65px;
	}
	.gallery-item {
		flex: 1 1 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
	.site-main .hour {
		margin-top: 80px;
		margin-bottom: 15px;
	}
	.video-list {
		margin-top: 100px;
	}
	.video-item .archive-post-content h2 {
		font-size: 28px;
		margin-bottom: 28px;
	}
	.archive-post-content p {
		font-size: 16px;
	}
	h1.post-title {
		font-size: 30px;
		margin-bottom: 20px;
		margin-top: 35px;
	}
	.page-content-wrapper .post-info {
		font-size: 20px;
	}
	.page-content-wrapper .post-meta {
		flex-direction: column;
	}
	.page-content-wrapper .post-btns-item {
		padding-left: 20px;
		margin-left: 20px;
	}
	.page-content-wrapper .post-btns-item.post-bookmark {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
	.single .post-btns {
		margin-top: 12px;
	}
	.page-content-wrapper .post-bookmark svg {
		width: 15px;
	}
	.page-content-wrapper .post-favorite svg {
		width: 20px;
	}
	.single-our-services h1.post-title {
		font-size: 45px;
	}
	.team-list {
		margin: 40px 0 0;
	}
	.team-list-item {
		flex: 1 1 100%;
		max-width: 385px;
		margin: 30px auto 30px;
	}
	.team-list-item:last-child {
		margin-bottom: 0;
	}
	.team-item-header a {
		font-size: 20px;
	}
	.team-item-header .descr {
		font-size: 16px;
		margin-top: 10px;
	}
	.st-name {
		font-size: 35px;
	}
	.st-position {
		font-size: 26px;
	}
	.clinic-btns a.clinic-btn-book,
	.clinic-btns a.clinic-btn-location,
	.clinic-btns a.clinic-btn-direction {
		flex: 1 1 calc(100% - 10px);
		max-width: calc(100% - 10px);
		margin-top: 10px;
	}
	.locations-item {
		padding-bottom: 25px;
	}
	.location-banner {
		height: 320px;
	}
	.location-banner-text {
		font-size: 40px;
	}
	.page-clinic-descr .entry-content {
		font-size: 18px;
		margin-top: 25px;
	}
	.clinic-meta, .clinic-meta a {
		font-weight: 700;
		font-size: 14px;
	}
	.clinic-contact-area {
		flex-direction: column;
		align-items: flex-start;
	}
	.clinic-phone {
		margin-top: 15px;
	}
	.clinic-meta .clinic-phone svg {
		margin-right: 27px;
		margin-left: 6px;
	}
	.clinic-btn-mobile {
		display: block;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.reviews::after {
		bottom: -310px;
	}
	.about-content {
		font-size: 16px;
		letter-spacing: 0;
	}
	.page-template-about .container {
		padding: 0 30px;
	}
	.page-template-about header .container {
		padding: 0px 20px !important;
	}
	.header-buttons,
	.hamburger-wrapper {
		margin-bottom: 10px;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 479px) {
	.prices-list {
display: block !important;
margin: 0px !important;
  margin-top: 90px !important;
width: 100% !important;
}
.prices-item {
  width: 100% !important;
  margin: 0px 0px 90px !important;
      max-width: calc(100%) !important;
}

	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}

	.map-wrapper {
		max-width: 360px;
	}
	#map-balloon-4 {
		top: auto;
		bottom: 57px;
		left: 314px;
	}
	#map-balloon-1 {
		left: 95px;
		top: 10px;
	}
	.map {
		padding-bottom: 70px;
	}
	.yellow-promo .hour-book,
	.hour-book {
		white-space: nowrap;
	}
	.yellow-promo .hour-book::before,
	.hour-book::before {
		border: 2px solid #ffefbd;
	}
	.hour-book::before, .button::before {
		border-radius: 6px;
	}
	.yellow-promo .hour-inner-wrapper::after,
	.always-promo .hour-inner-wrapper::after {
		width: 200px;
	}
	.form-title {
		font-size: 28px;
		letter-spacing: 5px;
		margin-top: 25px;
	}
	.careers-form .wpforms-container {
		margin-top: 30px;
	}
	.wpforms-container button[type="submit"],
	.form-row button[type="submit"] {
		height: 60px;
		font-size: 30px;
		border-radius: 20px;
	}
	.video-item,
	.video-item:nth-child(2n) {
		padding: 0 20px;
	}
	.video-item .archive-post-content,
	.video-item:nth-child(2n) .archive-post-content {
		padding-right: 0;
		padding-left: 0;
	}
	.single .page-wrapper {
		margin-top: 85px;
	}
	.page-content-wrapper {
		padding: 20px;
	}
	.page-content-wrapper .entry-content {
		font-size: 16px;
	}
	h1.post-title {
		font-size: 22px;
		letter-spacing: 1px;
	}
	.page-content-wrapper .post-info {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.services-post-content h2 {
		font-size: 28px;
		letter-spacing: 1px;
	}
	.services-post-content p {
		font-size: 14px;
		line-height: 1.4;
		text-align: center;
	}
	.services-post-content a.read-more {
		font-size: 16px;
	}
	.services-archive-item {
		padding: 0 15px 15px;
	}
	.services-icon {
		width: 80px;
		height: auto;
		bottom: -40px;
	}
	.single-our-services h1.post-title {
		margin: 75px 0 25px;
		font-size: 30px;
		letter-spacing: 1px;
	}
	.prices-list {
		margin-top: 90px;
	}
	.prices-item h2 {
		font-size: 28px;
		line-height: 1.1;
	}
	.prices-item p {
		letter-spacing: 1px;
		font-size: 14px;
		line-height: 1.4;
	}
	.prices-item ul li {
		font-size: 16px;
		margin: 0;
	}
	.prices-item:last-child {
		margin-bottom: 35px;
	}
	.site-main .hour.yellow-promo {
		margin-top: 105px;
	}
	.bottom-static-button {
		width: 100%;
		margin: 105px auto;
	}
	.st-info {
		padding: 30px;
	}
	.st-publ-item {
		flex-direction: column;
	}
	.st-publ-item-thumb {
		flex-shrink: 0;
		width: 100%;
		max-height: 200px;
		display: flex;
	}
	.st-publ-item-content {
		padding-left: 0;
		margin-top: 15px;
		letter-spacing: 1px;
	}
	.single-team-gallery .insta-feed-wrapper {
		padding: 0;
	}
	.single-team-bio p {
		font-size: 20px;
	}
	.single-team-video {
		margin-top: 70px;
	}
	.locations-item {
		padding: 20px 20px 50px;
	}
	.page-clinic-team .team-list-item {
		flex: 1 1 calc(100% - 30px);
		max-width: 380px;
		margin: 15px auto 40px;
	}
	.team-item-header {
		margin-top: 20px;
	}
	.page-clinic-descr {
		padding: 20px;
	}
	.about-video {
		height: auto !important;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
}
@media only screen and (max-width: 400px) {
	.page-id-75 .locations-mobile #map-balloon-1 {
		left: 1%;
    top: 54.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-2 {
		right: auto;
		top: 59%;
		left: 17%;
	}
	.page-id-75 .locations-mobile #map-balloon-3 {
		    top: 24.6%;
    right: auto;
    left: 19%;
	}
	.page-id-75 .locations-mobile #map-balloon-4 {
		top: 17.1%;
    bottom: auto;
    left: 31.3%;
    right: auto;
	}
	.page-id-75 .locations-mobile #map-balloon-5{
		 left: 2.5%;
    top: 42.4%;
	}
	.page-id-75 .locations-mobile #map-balloon-6{
		left: auto;
		top: 1.6%;
		right: 0.1%;
	}

	.hamburger-wrapper {
		margin-left: 0;
	}

	.header-buttons a.btn-location, .btn-location {
		margin-left: 0;
	}
	.map-wrapper {
		max-width: 335px;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.logo-area {
		align-self: center;
	}
	.post-meta {
		padding: 15px 10px;
	}
	.post-date {
		white-space: nowrap;
	}
	.st-name {
		font-size: 30px;
	}
	.st-position {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.st-spec {
		font-size: 16px;
		padding-left: 15px;
	}
	.st-info ul {
		padding: 0;
	}
	.st-info ul li {
		margin: 20px 0;
	}
	.st-spec-thumb {
		width: 20px;
	}
	.location-banner {
		height: 200px;
	}
	.location-banner-text {
		font-size: 24px;
		letter-spacing: 1px;
		bottom: 15px;
	}
	.page-clinic-banner, .button-animation, .page-clinic-video, .page-clinic-gallery, .page-clinic-team, .page-clinic-map {
		margin-top: 70px;
	}
	.map .container {
		padding: 0;
	}
	#map-balloon-1 {
    left: 2.3%;
    top: 70.4%;
}

#map-balloon-2 {
   right: auto;
    top: 75.6%;
    left: 18.6%
}

#map-balloon-3 {
   top: 37.3%;
    right: auto;
    left: 21%;
}

#map-balloon-4 {
        top: 29%;
    bottom: auto;
    left: 33%;
    right: auto;
}

#map-balloon-5 {
        left: 4.5%;
    top: 56.3%;
}

#map-balloon-6 {
    left: auto;
    top: 11.6%;
    right: 1.2%;
}
	.reviews::after {
		width: 45px;
		bottom: -330px;
	}
	.services .container {
		max-width: 100%;
		padding: 0 40px;
	}
	.services-wrapper .slick-arrow {
		width: 40px;
		height: 40px;
		left: -30px;
	}
	.services-wrapper .slick-arrow.slick-next {
		right: -30px;
	}
}

.wp-pagenavi {
	margin: 30px auto 0px auto;
	width: 100%;
	text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
	    padding: 7px 15px;
}
.archive-post-content a {
	color: #252354;
}
.phone-me {
	width: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.phone-me-black {
	display: none;
}
.phone-float-btn:hover .phone-me-black{
	display: block;
}
.header_phone:hover .phone-me-black {
	display: block;
}
.header_phone img {
	width: 21px;
}
.mobile-phone-me {
	background: transparent !important;
	display: none;
}
.mobile-phone-me img {
	width: 40px;
}

.header-menu ul li a.active{
	color: #75B09A;
}

@media only screen and (min-width: 1201px) and (max-width: 1730px) {

}


@media only screen and (min-width: 1201px) and (max-width: 1525px) {
	.header-menu > ul > li {
		margin-left: 15px;
	}
}

#lang_choice_1 {
	font-size: 14px;
	text-align: center;
	max-width: 50px;
	text-transform:uppercase;
	background-color: transparent;
	border: 0px;
	position: fixed;
   right: 25px;
   top: 15px;
}
.rtl .header-buttons .icon-wrapper {
	width: 28px !important;
	margin: 0px !important;
}
.rtl .logo-area {
	margin-left: 20px;
}
.rtl .header-menu {
    margin-left: 0px !important;
}
.rtl .header-menu {
    margin-right: auto !important;
}
.rtl .mm-navbar .mobile-menu-btns .icon-wrapper {
	margin-right: 0px !important;
	margin-left: 10px !important;
	justify-content: center !important;
}
.rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6, .rtl p, .rtl div, .rtl span {
	letter-spacing: 0px !important;
}

@media screen and (max-width: 480px) {
	.trusted {
		height: 832.15px!important;
	}
	.trusted .trusted-header {
		height: 98px!important;
	}
	.trusted .container {
		height: 724.15px!important;
	}
	.home-slider {
		height: 198.333px!important;
	}
	.logo-area img {
		height: 44.8833px!important;
	}
}
.search-box {
	margin-top: 50px;
}
.rtl #lang_choice_1{
	right: auto !important;
	left: 43px !important;
}
@media screen and (max-width: 480px) {
	.page-id-42 #mm-0 .trusted {
		height:110px !important;
	}
	.page-id-1818 #mm-0 .trusted {
		height:110px !important;
	}
	.page-id-1820 #mm-0 .trusted {
		height:110px !important;
	}
}
@media screen and (max-width: 800px) {
	section.about-video {
		height: calc(100vh - 200px) !important;
	}
	.video-container {
		height: 570px!important;
	}
}
@media screen and (max-width: 630px) {
	section.about-video {
		height: calc(100vh - 420px) !important;
	}
	.video-container {
		height: 360px!important;
	}
}
@media screen and (max-width: 460px) {
	section.about-video {
		height: calc(100vh - 460px) !important;
	}
	.video-container {
		height: 260px!important;
	}
}
@media only screen and (max-width: 1520px) {
	.container .locations {
		max-width: none!important;
	}
	.container .locations .clinics-map {
		max-height: 100%;
	}
	.clinic-btns a {
		font-size: 10px;
	}
	.all-doctors .team-item-content p {
		height: 168px;
	}
	.team-item-header a{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1530px) {
	.clinic-btns a {
		padding: 4px 12px!important;
	}
}
@media only screen and (max-width: 1505px) {
	.clinic-btns a {
		padding: 4px 4px !important;
	}
}
@media only screen and (max-width: 1285px) {
	.clinic-btns a {
		margin: 0 4px;
	}
}
@media only screen and (max-width: 575px) {
	.all-doctors .team-item-content p {
		height: auto;
	}
}
@media only screen and (max-width: 1350px) {
 #masthead .header-menu li, #masthead .header-buttons a{
	 font-size: 10px;
 }
	section img.himg {
		height: 722px;
	}
	.about-story {
		height: 2370px;
	}
}
@media only screen and (max-width: 1349px) {
	section img.himg {
		height: auto;
	}
	.about-story {
		height: auto;
	}
}
@media only screen and (max-width: 360px) {
	section img.himg {
		height: 193px;
	}
	#masthead {
		height: 75px;
	}
}
@media only screen and (max-width: 359px) {
	section img.himg {
		height: auto;
	}
}
@media screen and (max-width: 480px) {
	#mm-0 #masthead {
		height: 75px !important;
		overflow: hidden!important;
	}
	#mm-0 #masthead .container {
		height: 60px !important;
	}
	#mm-0 #masthead .container .logo-area {
		height: 45px !important;
	}
	#mm-0 #masthead .container .header-buttons {
		height: 50px !important;
	}
	#mm-0 #masthead .container .hamburger-wrapper {
		height: 16px !important;
	}
	#mm-0 #masthead .container .btn-book {
		height: 32px !important;
	}
}




summary.wd-faq {
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #fff;
padding-left: 25px !important;
  padding: 1rem;

  outline: none;
  border-radius: 0.25rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.wd-faq-block summary, slot[name="internal-main-summary"]::slotted(summary) {
  list-style: unset !important; 
}
details.wd-faq > summary.wd-faq::before {
  position: absolute;
  content: "+";
  left: 0px;
background: #333;
border-radius: 45%;
color: #fff;
width: 15px;
height: 15px;
text-align: center;
font-size: 16px;
line-height: 16px;
bottom: 22px;
font-family: sans-serif !important;
}
details.wd-faq[open] > summary.wd-faq::before {
  position: absolute;
  content: "-";
  left: 0px;
background: #333;
border-radius: 45%;
color: #fff;
width: 15px;
height: 15px;
text-align: center;
font-size: 16px;
line-height: 14px;
font-family: sans-serif !important;
bottom: 22px;
}
details.wd-faq > summary::-webkit-details-marker {
  display: none;
}
details.wd-faq[open] summary.wd-faq ~ * {
  animation: sweep .5s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0; margin-top: -10px}
  100%  {opacity: 1; margin-top: 0px}
}
.wd-faq-block{
	  margin-top: 110px;
}
.wd-faq-block .container{
	  list-style: none !important;
}
.faq__content{
	margin-left: 20px;
	color:#333;
}
.wd-faq-block .map-title{
	line-height: 50px;
	margin-bottom: 40px;
}

#wd-rtl{
	direction: ltr!important;
    text-align: right;
}
#wd-rtl details.wd-faq > summary{
  text-align: right !important;
}
#wd-rtl details.wd-faq[open] > summary.wd-faq::before {
	display:none;
}
#wd-rtl details.wd-faq > summary.wd-faq::before {
		display:none;
}
	
#wd-rtl details.wd-faq[open] > summary.wd-faq::after {
  position: absolute;
  content: "-";
  right: 0px;
background: #333;
border-radius: 45%;
color: #fff;
width: 15px;
height: 15px;
text-align: center;
font-size: 12px;
line-height: 10px;
font-family: sans-serif !important;
bottom: 22px;
}
#wd-rtl details.wd-faq > summary.wd-faq::after {
  position: absolute;
  content: "+";
  right: 0px;
background: #333;
border-radius: 45%;
color: #fff;
width: 15px;
height: 15px;
text-align: center;
font-size: 16px;
line-height: 12px;
bottom: 22px;
font-family: sans-serif !important;
}
@media screen and (max-width: 480px) {
	.about_h2_ru{
		font-size: 20px !important;
		letter-spacing: 0px !important;
	}
}