/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;700&display=swap');*/

:root {
	--font: 'Montserrat', sans-serif;
	--font-poppins: 'Open Sans', sans-serif;
	--white: #fff;
	--bg: #F4F4F4;
	--black: #000;
	--grey: #C9C9C9;
	--grey2: #9F9F9F;
	--grey3: #898989;
	--grey4: #B8B8B8;
	--grey5: #FAFAFA;
	--light-grey: #ECECEC;
	--text: #0E4068;
	--menu-arrow: #336699;
	--seablue: #03B8D6;
	--seablue-light: #A2E5F0;
	--seablue2: #1F84C5;
	--light-hover: #E6F8FB;
	--but-10: rgba(64, 188, 138, 0.10);
	--but: #40BC8A;
	--but-hover: #277264;
	--input-border: #D3D3D3;
	--input-bg: #FAFAFA;
	--input-text: #121212;
	--box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
	--box-shadow2: 8px 4px 20px 0px rgba(0, 0, 0, 0.25);
	--box-shadow-slider: 8px 12px 20px rgba(0, 0, 0, 0.15);
	--box-shadow-slider2: 8px 12px 14px rgba(0, 0, 0, 0.12);
	--all-in: all 0.25s ease-in;
	--all-out: all 0.25s ease-out;
	--all-inout: all 0.25s ease-in-out;
}

html, body {
	padding: 0px;
	margin: 0px;
	font-family: var(--font);
	line-height: 1.5;
	position: relative;
	color: var(--text);
	background: var(--bg);
}

*, ::before, ::after {
	box-sizing: border-box;
}

input, textarea, select, button, option {
	font-family: var(--font);
	color: var(--text);
	outline: none;
}

textarea {
	resize: none;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0px;
	margin: 0px;
	font-family: var(--font-poppins);
	position: relative;
	z-index: 2;
	font-weight: bold;
    line-height: 1.25;
	color: var(--text);
}

h1, .h1 {
	font-size: 48px;
	font-weight: 700;
}

h2, .h2 {
	font-size: 48px;
	font-weight: 700;
}

h3, .h3 {
	font-size: 32px;
	font-weight: 700;
}

h4, .h4 {
	font-size: 22px;
	font-weight: 700;
}

h5, .h5 {
	font-size: 20px;
	font-weight: 700;
}

h6, .h6 {
	font-size: 18px;
	font-weight: 700;
}

p {
	margin: 0px;
}

ul, ol {
	margin: 0px;
	font-family: var(--font);
}

img {
	max-width: 100%;
	height: auto;
}

p {
	line-height: 1.5;
	color: var(--text);
	font-weight: 400;
}

p a {
	color: var(--text);
	text-decoration: underline;
}

.bold {
	font-weight: bold;
}

.uppercase {
	text-transform: uppercase;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.gap-4 {
	gap: 4px;
}

.gap-8 {
	gap: 8px;
}

.gap-12 {
	gap: 12px;
}

.gap-16 {
	gap: 16px;
}

.gap-18 {
	gap: 18px;
}

.gap-20 {
	gap: 20px;
}

.gap-24 {
	gap: 24px;
}

.gap-32 {
	gap: 32px;
}

.gap-40 {
	gap: 40px;
}

.gap-60 {
	gap: 60px;
}

.gap-80 {
	gap: 80px;
}

.container {
	width: 100%;
	max-width: 1230px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

section.center > .container > p, section.center > .container > h1, section.center > .container > h2, section.center > .container > h3 {
	text-align: center;
}

.img-cover, .img-contain {
	overflow: hidden;
}

.img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: top;
}

.img-contain img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: top;
}

a, button, input[type="submit"], input[type="button"] {
	transition: var(--all-out);
	outline: none;
	cursor: pointer;
}

a:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	transition: var(--all-in);
}

.clear {
	width: 0px;
	height: 0px;
	float: none !important;
	clear: both !important;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

.but a, .but button, input[type="submit"] {
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	border-radius: 20px;
	padding: 0 40px;
	font-weight: bold;
	font-size: 18px;
	color: var(--white);
	background: var(--but);
	letter-spacing: -0.47px;
	border: 0;
}

.but a:hover, .but button:hover, input[type="submit"]:hover {
	background: var(--but-hover);
}

.mobile {
	display: none;
}

.form-group {
	position: relative;
}

/*--------*/

/*custom-select*/

.custom-select {
	position: relative;
}

.custom-select select {
	display: none;
}

.custom-select .select-selected::after {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	top: 6px;
	right: 12px;
	background: url('../images/arr-down.svg') center center no-repeat;
	z-index: 3;
}

.custom-select .select-selected {
	padding: 0 12px;
	border-radius: 8px;
	transition: var(--all-out);
	cursor: pointer;
	color: var(--text);
	font-family: var(--font-poppins);
	font-size: 12px;
	font-weight: 700;
	line-height: 32px;
}

.custom-select .select-selected:hover {
	transition: var(--all-in);
	background: var(--light-hover);
}

.custom-select .select-selected span {
	padding-right: 32px;
	display: flex;
	gap: 4px;
	align-items: center;
}

.custom-select .select-list {
	transition: var(--all-out);
	border-radius: 8px;
	overflow: hidden;
	border: 0;
	max-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: var(--white);
}

.custom-select .select-list.show {
	border: 1px solid var(--seablue);
	box-shadow: var(--box-shadow2);	
	transition: var(--all-in);
	max-height: 400px;
}

.custom-select .select-list div {
	cursor: pointer;
	color: var(--text);
	font-family: var(--font-poppins);
	font-size: 12px;
	font-weight: 700;
	line-height: 32px;
	transition: var(--all-out);
	padding: 0 12px;
}

.custom-select .select-list div:hover {
	transition: var(--all-in);
	background: var(--light-hover);
}

.custom-select .select-list div span {
	padding-right: 32px;
	display: flex;
	gap: 4px;
	align-items: center;
}

/*--------*/

/*header*/

header {
	background: var(--white);
	border-bottom: 1px solid var(--grey);
	box-shadow: var(--box-shadow);
	position: relative;
	z-index: 5;
}

header .top {
	padding: 14px 0;
	display: flex;
	align-items: center;
}

header .top .logo {
	width: 100%;
	max-width: 141px;
}

header .top .logo a {
	text-decoration: none;
}

header .top .logo img {
	max-width: 141px;
	max-height: 28px;
}

header .top .controls {
	margin-left: auto;
	display: flex;
}

header .top .controls .phone, header .top .controls .email {
	margin-left: 24px;
	display: flex;
	align-items: center;
}

header .top .controls .phone a, header .top .controls .email a {
	display: flex;
	gap: 8px;
	align-items: center;
	line-height: 24px;
	text-decoration: none;
	color: var(--text);
	font-size: 12px;
	padding-left: 24px;
	border-left: 1px solid var(--light-grey);
}

header .top .controls .phone a:hover, header .top .controls .email a:hover {
	text-decoration: underline;
}

header .top .controls .phone a::before, header .top .controls .email a::before {
	content: "";
	width: 20px;
	height: 20px;
	background: url('../images/head-phone.svg') center center no-repeat;
}

header .top .controls .email a::before {
	background: url('../images/head-email.svg') center center no-repeat;
}

header .top .controls .addr {
	max-width: 244px;
	padding-right: 20px;
  	border-right: 1px solid var(--light-grey);
	margin-right: 24px;
}

header .top .controls .addr ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	color: var(--text);
  	font-size: 12px;
	gap: 4px;
	line-height: 14px;
}

header .box {
	padding: 0px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .box .header-but:not(.mobile) {
	display: flex;
	gap: 12px;
}
header .box .header-but a {
	height: 48px;
}

.header-but button.search-but {
	width: 48px;
	height: 48px;
	padding: 0;
	background-color: var(--white);
	border: 1px solid var(--but);
	background-image: url('../images/header-search.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 70% auto;
}

.header-but .search-box .search-block {
	position: absolute;
  	background: var(--white);
  	width: 100vw;
  	left: 50%;
  	top: 124px;
  	z-index: 1;
  	transform: translateX(-50%);
  	display: flex;
  	justify-content: space-between;
  	padding: 0 calc((100vw - 1200px) / 2);
	opacity: 0;
	max-height: 0;
	transition: all 0.25s ease-in-out;
	border-top: 1px solid var(--white);
	overflow: hidden;
}

.header-but .search-box .search-block.show {
	opacity: 1;
	max-height: 100px;
	border-color: var(--grey);
	padding-top: 12px;
	padding-bottom: 12px;
}

.header-but .search-box .search-block button.close {
	margin-left: 36px;
	width: 48px;
	height: 48px;
	padding: 0;
	background: url('../images/header-close.svg') center center / 24px auto no-repeat, var(--white);
	border: 1px solid var(--grey);
	flex-shrink: 0;
}

.search form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.search form label {
	display: flex;
	width: 100%;
}

.search .screen-reader-text {
	display: none;
}

.search form .search-submit {
    height: 48px;
}

.search input[type="text"], .search input[type="search"] {
	width: 100%;
  	border-radius: 10px;
  	border: 1px solid var(--input-border);
  	background: var(--input-bg);
  	height: 48px;
  	padding: 0 16px;
  	color: var(--input-text);
  	font-size: 15px;
  	background: var(--grey5);
  	transition: var(--all-out);
}

#header-menu {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

#header-menu > li {
	height: 64px;
	display: flex;
	align-items: center;
	position: relative;
}

#header-menu * {
	font-family: var(--font-poppins);
}

#header-menu > li > a {
	display: flex;
	gap: 4px;
	align-items: center;
	line-height: 32px;
	padding: 0 10px;
	text-decoration: none;
	font-size: 14px;
	color: var(--text);
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid var(--white);
}

#header-menu > li.current-menu-item > a {
	border-color: var(--seablue);
}

#header-menu > li > a:hover {
	background: var(--light-hover);
	border-color: var(--light-hover);
}

#header-menu > li.menu-item-has-children > a::after {
	border-top: 6px solid var(--menu-arrow);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	content: "";
	translate: 0 1px;
}

#header-menu > li > .sub-menu {
	max-height: 0;
	overflow: hidden;
	translate: 0 -10px;
	transition: var(--all-out);
	position: absolute;
	left: 0;
	top: 100%;
	border-radius: 8px;
	background: var(--white);
	min-width: 165px;
	padding: 0;
	list-style: none;
	opacity: 0;
}

#header-menu > li.services > .sub-menu {
	min-width: 240px; 
}

#header-menu > li > .sub-menu li:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

#header-menu > li > .sub-menu li:last-child {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

#header-menu > li.child > .sub-menu {
	min-width: 260px; 
}
@media (min-width: 1229px) {
	#header-menu > li:hover > .sub-menu {
		max-height: 500px;
		translate: 0 0;	
		opacity: 1;
		overflow: initial;
	}
}

#header-menu > li > .sub-menu > li {
	width: 100%;
	text-align: left;
	transition: var(--all-out);
	position: relative;
}

#header-menu > li > .sub-menu > li > a {
	font-size: 14px;
	color: var(--text);
	text-decoration: none;
	padding: 12px;
	padding-right: 24px;
	display: flex;
}

#header-menu > li > .sub-menu > li:hover {
	background: var(--light-hover);
	transition: var(--all-in);
}

#header-menu > li > .sub-menu > li.menu-item-has-children::after {
	border-left: 6px solid var(--menu-arrow);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	translate: 0 -50%;
}

#header-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu {
	max-height: 0;
	opacity: 0;
	translate: -50px 0;
	overflow: hidden;
	position: absolute;
	width: 0%;
	top: 0;
	left: 100%;
	transition: var(--all-out);
	background: var(--light-hover);
	border-radius: 8px;
	padding: 0;
	list-style: none;
}

@media (min-width: 1229px) {
	#header-menu > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu {
		transition: var(--all-in);
		left: 100%;
		width: 100%;
		max-height: 500px;
		translate: 4px 0;
		opacity: 1;
	}
}

#header-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu > li > a {
	padding: 12px;
	padding-right: 24px;
	display: flex;
	font-size: 14px;
  	color: var(--text);
  	text-decoration: none;
}

#header-menu > li > .sub-menu > li.menu-item-has-children > .sub-menu > li > a:hover {
	background: var(--seablue-light);
}

/*--------*/

/*slider*/

.slider {
	padding-top: 40px;
}

.slider .box {
	width: 100%;
	max-width: 1056px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.slider .slider-box .item {
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	height: 410px;
}

.slider .slider-box .item::before {
	opacity: 0.3;
	background: var(--black);
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.only-image.slider .slider-box .item::before {
	display: none;
}

.slider .slider-box .item img {
	z-index: 1;
	position: relative;
}

.slider .slider-box .item .slide-content {
	padding: 54px;
	max-width: 512px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	justify-content: center;
}

.slider.service-first .slider-box .item .slide-content {
	max-width: 685px;
}

.slider.service-first .slider-box .item .slide-content .but {
	max-width: 360px;
}

.slider .slider-box .item .slide-content .title {
	font-size: 56px;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--white);
	line-height: 68px;
}

.slider.service-first .slider-box .item .slide-content .title {
	font-size: 48px;
	line-height: 60px;
}

.slider .slider-box .item .slide-content .title span {
	font-weight: 400;
	display: block;
}

.slider .slider-box .item .slide-content .title img, .slider .slider-box .item .slide-content .title picture {
	max-width: 54px;
	max-height: 54px;
	display: inline;
	translate: 0 7px;
}

.slider .slider-box .slick-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 0.5;
	background: var(--seablue);
	padding: 0;
	border: 0;
	font-size: 0;
	position: absolute;
	top: 205px;
	translate: 0 -50%;
}

.slider .slider-box .slick-arrow.slick-prev {
	left: -72px;
}

.slider .slider-box .slick-arrow.slick-next {
	right: -72px;
}

.slider .slider-box .slick-arrow::before {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url('../images/slider-arrow.svg') center center / 20px auto no-repeat;
}

.slider .slider-box .slick-arrow.slick-prev::before {
	rotate: 180deg;
}

.slider .slider-box .slick-arrow:hover {
	opacity: 1;
	box-shadow: var(--box-shadow-slider);
}

.slider .slider-box .slick-dots {
	margin-top: 16px;
	width: 100%;
	display: flex !important;
	padding: 0;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 16px;
}

.slider .slider-box .slick-dots li {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider .slider-box .slick-dots li button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 0.5;
	background: var(--seablue);
	border: 0;
	padding: 0;
	font-size: 0;
}

.slider .slider-box .slick-dots li:hover button, .slider .slider-box .slick-dots li.slick-active button {
	width: 16px;
	height: 16px;
	opacity: 1;
}

/*--------*/

/*home-services*/

section.center .container > h2 {
	text-align: center;
}

section.center .container > h2 + .box, section.center .container > h1 + .box {
	margin-top: 60px;
}

.home-services {
	padding: 60px 0;
	background: url('../images/smile-bg.svg') 50% calc(100% - 23px) / calc(100% + 300px) auto no-repeat;
}

.home-services .home-services-list {
	display: flex;
	gap: 40px;
}

.home-services .home-services-list .tabs-info {
	width: 100%;
	max-width: 578px;
	flex-shrink: 0;
}

.home-services .home-services-list .tabs-info .tabcontent {
	display: none;
	padding: 32px;
	border-radius: 32px;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	flex-direction: column;
	gap: 12px;
	-webkit-animation: fadeEffect 1s;
  	animation: fadeEffect 1s;
}

.home-services .home-services-list .tabs-info .tabcontent .title {
	gap: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--seablue);
}

.home-services .home-services-list .tabs-info .tabcontent .title::after {
	content: "";
	width: 60px;
	height: 60px;
	border-radius: 50%;
	flex-shrink: 0;
	background: url('../images/home-service-arrow.svg') center center no-repeat, var(--seablue);
	display: flex;
}

.home-services .home-services-list .tabs-info .tabcontent .title h3 {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 32px;
}

.home-services .home-services-list .tabs-info .tabcontent .content {
	display: grid;
	grid-template-columns: 1fr 202px;
	gap: 24px;
}

.home-services .home-services-list .tabs-info .tabcontent .content .but {
	grid-column-start: 1;
	grid-column-end: 3;
}

.home-services .home-services-list .tabs-info .tabcontent .content .image {
	overflow: hidden;
	border-radius: 20px;
	min-height: 295px;
}

.home-services .home-services-list .tabs-info .tabcontent .content .links ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.home-services .home-services-list .tabs-info .tabcontent .content .links ul li {
	padding-left: 32px;
	position: relative;
}

.home-services .home-services-list .tabs-info .tabcontent .content .links ul li::before {
	width: 20px;
	height: 9px;
	top: 9px;
	left: 0;
	position: absolute;
	content: "";
	background: url('../images/ul-mark.svg') center center no-repeat;

}

.home-services .home-services-list .tabs-info .tabcontent .content .links ul li a {
	line-height: 27px;
	font-size: 18px;
	color: var(--text);
	text-decoration: none;
	position: relative;
	font-family: var(--font-poppins);
}

.home-services .home-services-list .tabs-info .tabcontent .content .links ul li a:hover {
	text-decoration: underline;
}

.home-services .home-services-list .tabs-buts {
	width: 100%;
	max-width: 582px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.home-services .home-services-list .tabs-buts button {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	border: 0;
	padding: 24px;
	display: flex;
	align-items: center;
	text-align: left;
	box-shadow: var(--box-shadow-slider);
	background: var(--white);
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
}

.home-services .home-services-list .tabs-buts button:hover, .home-services .home-services-list .tabs-buts button.active {
	color: var(--white);
	font-weight: 700;
}

.home-services .home-services-list .tabs-buts button::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	background: linear-gradient(90deg, #03B8D6 0%, #1F84C5 100%);
	transition: var(--all-out);
	content: "";
}

.home-services .home-services-list .tabs-buts button:hover::before, .home-services .home-services-list .tabs-buts button.active::before{
	transition: var(--all-in);
	opacity: 1;
}

.home-services .home-services-list .tabs-buts button span {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 54px;
	align-items: center;
}

@keyframes fadeEffect {
	from {opacity: 0;}
	to {opacity: 1;}
}

.form-block {
	width: 100%;
	padding: 32px;
	border-radius: 32px;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.form-block .text {
	width: 100%;
	max-width: 505px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.form-block .text p {
	font-size: 18px;
}

.form-block .form {
	width: 100%;
	max-width: 360px;
	flex-shrink: 0;
}

.form-block .form form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-block .form form .form-group.but {
	margin-top: 14px;
}


.form-block .form form .form-group.but input {
	width: 100%;
}

form .form-group input[type="text"], form .form-group input[type="tel"], form .form-group textarea, form .form-group select {
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--input-border);
	background: var(--input-bg);
	height: 48px;
	padding: 0 16px;
	color: var(--input-text);
	font-size: 15px;
	background: var(--grey5);
	transition: var(--all-out);
}

form .form-group input[type="text"].wpcf7-not-valid, form .form-group input[type="tel"].wpcf7-not-valid, form .form-group textarea.wpcf7-not-valid, form .form-group select.wpcf7-not-valid {
	transition: var(--all-in);
	border-color: red;
}

form .form-group textarea {
	padding: 16px;
	height: 190px;
}

form .form-group select {
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
	padding-right: 32px;
	background: url('../images/select-arrow.svg') calc(100% - 15px) 50% no-repeat, var(--grey5);
	color: var(--grey3);
}

/*--------*/

/*home-about-clinic*/

.home-about-clinic {
	padding: 60px 0;
}

.home-about-clinic .box {
	display: flex;
	gap: 64px;
}

.home-about-clinic .box .video {
	width: 100%;
	max-width: 588px;
	height: 369px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}

.home-about-clinic .box .video .poster {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home-about-clinic .box .video .poster::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url('../images/play.svg') center center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

.home-about-clinic .box .text {
	min-height: 369px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
}

.home-about-clinic .box .text p, .home-about-clinic .box .text ul, .home-about-clinic .box .text ol {
	font-size: 18px;
	font-family: var(--font-poppins);
}

.home-about-clinic .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.home-about-clinic .but a {
	width: 100%;
	max-width: 360px;
}

/*--------*/

/*home-advantages*/

.home-advantages {
	padding: 60px 0;
}

.home-advantages .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.home-advantages .but a {
	width: 100%;
	max-width: 360px;
}

.home-advantages .box .item {
	display: grid;
	grid-template-columns: 512px auto;
	border-radius: 32px;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	overflow: hidden;
	grid-auto-rows: 1fr;
}

.home-advantages .box .item:nth-child(2n+1) {
	grid-template-columns: auto 512px;
}

.home-advantages .box .item:nth-child(2n+1) .image {
	order: 2;
}

.home-advantages .box .item:nth-child(2n+1) .text {
	order: 1;
}

.home-advantages .box .item .image {
	width: 100%;
	max-width: 512px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.home-advantages .box .item .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.home-advantages .box .item .image img {
	vertical-align: top;
}

.home-advantages .box .item .text {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-height: 390px;
	justify-content: center;
}

.home-advantages .box .item .text p, .home-advantages .box .item .text ul, .home-advantages .box .item .text ol {
	font-size: 18px;
	font-family: var(--font-poppins);
}

/*--------*/

/*home-numbers*/

.home-numbers {
	padding: 180px 0 120px;
	background: url('../images/figure-up-bg.svg') 50% 20px / cover no-repeat;
}

.home-numbers .form-block {
	margin-top: 80px;
}

.home-numbers .box {
	width: 100%;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 32px;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	padding: 60px 40px;
}

.home-numbers .box h2 {
	text-align: center;
}

.box .num-items {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.num-items .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	width: 100%;
}

.num-items .item .number {
	color: var(--seablue);
	font-size: 66px;
	font-weight: 700;
	text-transform: uppercase;
}

.num-items .item p {
	color: var(--text);
	font-size: 24px;
	font-weight: 600;
}

/*--------*/

/*home-doctors*/

.home-doctors {
	padding: 120px 0 60px;
}

.home-doctors .box {
	margin-top: 60px;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.home-doctors .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.home-doctors .but a {
	width: 100%;
	max-width: 360px;
}

.home-doctors .box.doctors-slider:not(.slick-slider) {
	display: flex;
	justify-content: space-between;
}

.home-doctors .box.doctors-slider .item {
	margin: 0 20px;
	border-radius: 32px;
	box-shadow: var(--box-shadow-slider2);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--white);
}

.home-doctors .box.doctors-slider.slick-slider .item {
	margin-bottom: 60px;
}

.home-doctors .box.doctors-slider .item .photo {
	height: 340px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.home-doctors .box.doctors-slider .item .photo img {
	object-position: 50% 0%;
}

.home-doctors .box.doctors-slider .item .name {
	margin-top: 16px;
	padding: 0 32px;
	min-height: 58px;
}

.home-doctors .box.doctors-slider .item .name a {
	font-size: 22px;
	font-weight: bold;
	text-decoration: none;
	color: var(--text);
	line-height: 29px;
	text-align: center;
}

.home-doctors .box.doctors-slider .item:hover .name a {
	color: var(--but);
}

.home-doctors .box.doctors-slider .item p {
	padding: 0 32px;
	min-height: 48px;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

.home-doctors .box.doctors-slider .item .doctor-but {
	padding: 0 32px 32px 32px;
}

.home-doctors .box.doctors-slider .item .doctor-but a {
	border: 1px solid var(--but);
	height: 56px;
	border-radius: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--but);
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -0.47px;
}

.home-doctors .box.doctors-slider .item .doctor-but a:hover {
	background: var(--but);
	color: var(--white);
}

.home-doctors .box.doctors-slider .slick-arrow {
	position: absolute;
	top: calc(50% - 38px);
	translate: 0 -50%;
	padding: 0;
	border: 0;
	width: 40px;
  	height: 40px;
  	border-radius: 50%;
  	opacity: 0.5;
  	background: var(--seablue);
    font-size: 0;
}

.home-doctors .box.doctors-slider .slick-arrow:hover {
	opacity: 1;
	box-shadow: var(--box-shadow-slider);
}

.home-doctors .box.doctors-slider .slick-arrow::before {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url('../images/slider-arrow.svg') center center / 20px auto no-repeat;
}

.home-doctors .box.doctors-slider .slick-arrow.slick-prev::before {
	rotate: 180deg;
}

.home-doctors .box.doctors-slider .slick-arrow.slick-prev {
	left: -60px;
}

.home-doctors .box.doctors-slider .slick-arrow.slick-next {
	right: -60px;
}

.home-doctors .box.doctors-slider .slick-dots {
	margin-top: 16px;
	width: 100%;
	display: flex !important;
	padding: 0;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 16px;
}

.home-doctors .box.doctors-slider .slick-dots li {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-doctors .box.doctors-slider .slick-dots li button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 0.5;
	background: var(--seablue);
	border: 0;
	padding: 0;
	font-size: 0;
}

.home-doctors .box.doctors-slider .slick-dots li:hover button, .home-doctors .box.doctors-slider .slick-dots li.slick-active button {
	width: 16px;
	height: 16px;
	opacity: 1;
}

/*--------*/

/*home-about-us*/

.home-about-us {
	padding: 60px 0 120px;
}

.home-about-us .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.home-about-us .but a {
	width: 100%;
	max-width: 360px;
}

.home-about-us .box {
	display: grid;
	grid-template-columns: auto 600px;
	gap: 40px;
}

.home-about-us .box .image {
	order: 2;
	width: 100%;
	max-width: 600px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.home-about-us .box .image .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.home-about-us .box .text {
	order: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.home-about-us .box .text p, .home-about-us .box .text ol, .home-about-us .box .text ul {
	font-size: 18px;
	font-family: var(--font-poppins);
	
}


/*--------*/

/*home-reviews*/

.home-reviews {
	padding: 60px 0 100px;
	background: url('../images/figure-down-bg.svg') bottom center / cover no-repeat;
}

.home-reviews .container > h2 {
	color: var(--white);
}

.home-reviews .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.home-reviews .but a {
	width: 100%;
	max-width: 360px;
	background: var(--white);
	color: var(--color);
}

.home-reviews .but a:hover {
	color: var(--white);
	background: var(--but);
}

.home-reviews .box.reviews-slider {
	width: 100%;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

.home-reviews .box.reviews-slider:not(.slick-slider) {
	display: flex;
	justify-content: space-between;
}

.home-reviews .box.reviews-slider .item {
	margin: 0 20px;
	border-radius: 32px;
	box-shadow: var(--box-shadow-slider2);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px;
	background: var(--white);
	max-width: 320px;
}

.home-reviews .box.reviews-slider.slick-slider .item {
	margin-bottom: 60px;
}

.home-reviews .box.reviews-slider .item .name {
	font-size: 24px;
	font-weight: 700;
}

.home-reviews .box.reviews-slider .item .service {
	color: var(--seablue2);
	font-family: var(--font-poppins);
	font-size: 15px;
	font-weight: 700;
}

.home-reviews .box.reviews-slider .item .city {
	color: var(--grey2);
	font-family: var(--font-poppins);
	font-size: 15px;
	font-weight: 400;
}

.home-reviews .box.reviews-slider .item .city span {
	font-weight: 700;
}

.home-reviews .box.reviews-slider .item .rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.home-reviews .box.reviews-slider .item .rating span {
	display: flex;
	width: 24px;
	height: 24px;
	background: url('../images/star.svg') center center no-repeat;
}

.home-reviews .box.reviews-slider .item .text {
	width: 100%;
	overflow: hidden;
}

.home-reviews .box.reviews-slider .item .text * {
	font-family: var(--font-poppins);
	font-size: 16px;
}

.home-reviews .box.reviews-slider .item .text img {
	max-width: 16px;
	max-height: 16px;
	display: inline !important;
}

.home-reviews .box.reviews-slider .slick-arrow {
	position: absolute;
	top: calc(50% - 38px);
	translate: 0 -50%;
	padding: 0;
	border: 0;
	width: 40px;
  	height: 40px;
  	border-radius: 50%;
  	opacity: 0.5;
  	background: var(--white);
    font-size: 0;
}

.home-reviews .box.reviews-slider .slick-arrow:hover {
	opacity: 1;
	box-shadow: var(--box-shadow-slider);
}

.home-reviews .box.reviews-slider .slick-arrow::before {
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url('../images/slider-arrow-green.svg') center center / 20px auto no-repeat;
}

.home-reviews .box.reviews-slider .slick-arrow.slick-prev::before {
	rotate: 180deg;
}

.home-reviews .box.reviews-slider .slick-arrow.slick-prev {
	left: -60px;
}

.home-reviews .box.reviews-slider .slick-arrow.slick-next {
	right: -60px;
}

.home-reviews .box.reviews-slider .slick-dots {
	margin-top: 16px;
	width: 100%;
	display: flex !important;
	padding: 0;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 16px;
}

.home-reviews .box.reviews-slider .slick-dots li {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-reviews .box.reviews-slider .slick-dots li button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 0.5;
	background: var(--white);
	border: 0;
	padding: 0;
	font-size: 0;
}

.home-reviews .box.reviews-slider .slick-dots li:hover button, .home-reviews .box.reviews-slider .slick-dots li.slick-active button {
	width: 16px;
	height: 16px;
	opacity: 1;
}


/*--------*/

/*home-text*/

.home-text {
	padding: 80px 0 60px;
}

.home-text .box .more-but {
	width: 100%;
}

.home-text .box .more-but a {
	width: 100%;
	border-radius: 20px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--but);
	color: var(--but);
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.469px;
}

.home-text .box .more-but a:hover {
	background: var(--but);
	color: var(--white);
}

.home-text .box {
	border-radius: 32px;
	padding: 32px;
	background: var(--white);
}

.home-text .box .box-wr {
	display: flex;
	flex-direction: column;
	gap: 32px;
	/*max-height: 215px;*/
	overflow: hidden;
	transition: var(--all-inout);
}

.home-text .box.text-content h1, .home-text .box.text-content h2 {
	font-size: 32px;
	text-align: center;
}

.home-text .box.text-content p, .home-text .box.text-content ul, .home-text .box.text-content ol {
	font-family: var(--font-poppins);
	font-size: 18px;
	font-weight: 400;
}

/*--------*/

/*articles-widget*/

.articles-widget {
	padding: 60px 0;
}

.articles-widget .but {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.articles-widget .but a {
	width: 100%;
	max-width: 360px;
}

.articles-widget .box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.articles-widget .box .item {
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--box-shadow-slider);
	display: flex;
	flex-direction: column;
	padding-bottom: 32px;
}

.articles-widget .box .item .image {
	width: 100%;
	height: 370px;/*250px*/
	border-radius: 32px;
	position: relative;
}

.articles-widget .box .item .image .counter {
	position: absolute;
	right: 20px;
	bottom: 20px;
	border-radius: 20px;
	padding: 4px 12px 4px 48px;
	color: var(--text);
  	font-family: var(--font-poppins);
  	font-size: 14px;
  	font-weight: 700;
  	line-height: 24px;
	background: url('../images/eye.svg') 12px 50% / 24px auto no-repeat, var(--white);
}

.articles-widget .box .item .title {
	padding: 0 24px;
	font-size: 24px;
	font-weight: 700;
}

.articles-widget .box .item .title a {
	color: var(--text);
	text-decoration: none;
}

.articles-widget .box .item .title a:hover {
	color: var(--but);
}

.articles-widget .box .item .short {
	padding: 0 24px;
	max-height: 162px;
	overflow: hidden;
}

.articles-widget .box .item .short * {
	font-size: 18px;
}

.articles-widget .box .item .short b, .articles-widget .box .item .short strong {
	font-weight: 400 !important;
}

.articles-widget .box .item .short img, .articles-widget .box .item .short picture, .articles-widget .box .item .short iframe {
	display: none !important;
}

.articles-widget .box .item .short h1, .articles-widget .box .item .short h2, .articles-widget .box .item .short h3, .articles-widget .box .item .short h4 {
	display: none !important
}

/*--------*/

/*form-section*/

.form-section {
	padding: 60px 0 120px;
}

.form-section.bg {
	padding: 175px 0 120px;
	background: url('../images/figure-up-bg.svg') top center / cover no-repeat;
}

/*--------*/

/*footer*/

footer {
	background: var(--white);
}

footer .box.copyright {
	padding: 32px 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--grey3);
	font-size: 15px;
	border-top: 1px solid var(--input-border);
}

footer .box.top {
	padding: 60px 0 24px;
	display: flex;
	justify-content: space-between;
}

footer .box.top .col {
	width: 100%;
}

footer .box.top .col.logo {
	max-width: 272px;
}

footer .box.top .col.logo img {
	max-width: 161px;
}

footer .box.top .col.logo p {
	font-size: 14px;
	font-family: var(--font-poppins);
}

footer .box.top .col.links {
	max-width: 220px;
}

footer .box.top .col.links ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

footer .box.top .col.links ul li a {
	color: var(--text);
	opacity: 0.5;
	font-size: 14px;
	font-family: var(--font-poppins);
	text-decoration: none;
}

footer .box.top .col.links ul li a:hover {
	opacity: 1;
}

footer .box.top .col.contacts {
	max-width: 182px;
}

footer .box.top .col .title {
	font-size: 20px;
	font-weight: bold;
}


footer .box.top .col.contacts .title {
	text-align: center;
}

footer .box.top .col.contacts .phone {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 24px;
}

footer .box.top .col.contacts .phone.next {
	margin-top: 4px;
}

footer .box.top .col.contacts .phone a {
	display: flex;
	gap: 8px;
	align-items: center;
	line-height: 24px;
	text-decoration: none;
	color: var(--text);
	font-size: 12px;
}

footer .box.top .col.contacts .phone a:hover {
	text-decoration: underline;
}

footer .box.top .col.contacts .phone a::before {
	content: "";
	width: 20px;
	height: 20px;
	background: url('../images/head-phone.svg') center center no-repeat;
}

footer .box.top .col.contacts .addr {
	margin-top: 16px;
}

footer .box.top .col.contacts .addr ul {
	list-style: none;
	padding: 0;
	font-size: 13px;
	text-align: right;
}

footer .box.top .col.contacts .lang {
	margin-top: 32px;
	margin-left: auto;
}

footer .box.top .col.contacts .city {
	margin-top: 24px;
	margin-left: auto;
}

footer .box.top .col.contacts .custom-select .select-selected {
	color: var(--input-text);
}

footer .box.top .col.contacts .social, .mobile-contacts-home .social {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
	margin-top: 62px;
}

.mobile-contacts-home .social {
	margin-top: 0;
	gap: 8px;
}

footer .box.top .col.contacts .social a, .mobile-contacts-home .social a {
	display: flex;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	background-color: var(--but);
	background-position: center center;
	background-repeat: no-repeat;
}

.mobile-contacts-home .social a {
	width: 42px;
	height: 42px;
}

footer .box.top .col.contacts .social a:hover, .mobile-contacts-home .social a:hover {
	background-color: var(--but-hover);
}

footer .box.top .col.contacts .social a.ph, .mobile-contacts-home .social a.ph {
	background-image: url('../images/tg.svg');
}

footer .box.top .col.contacts .social a.fb, .mobile-contacts-home .social a.fb {
	background-image: url('../images/social-facebook.svg');
}

footer .box.top .col.contacts .social a.yt, .mobile-contacts-home .social a.yt {
	background-image: url('../images/social-youtube.svg');
}

footer .box.top .col.contacts .social a.inst, .mobile-contacts-home .social a.inst {
	background-image: url('../images/social-instagram.svg');
}

/*--------*/

/*breadcrumbs*/

.breadcrumbs {
	padding: 32px 0;
}

.breadcrumbs .box {
	display: flex;
	align-items: center;
	gap: 16px;
}

.breadcrumbs .box a {
	font-size: 14px;
	font-family: var(--font-poppins);
	color: var(--text);
	text-decoration: none;
	position: relative;
}

.breadcrumbs .box a:not(:last-child) {
	opacity: 0.85;
	display: flex;
	align-items: center;
	gap: 16px;
}

.breadcrumbs .box a:hover {
	color: var(--but);
	opacity: 1;
}

.breadcrumbs .box a:not(:last-child)::after {
	width: 10px;
	height: 10px;
	content: "";
	display: flex;
	background: url('../images/slider-arrow-green.svg') center center / contain no-repeat;
	transition: var(--all-out);
}

.breadcrumbs .box a:not(:last-child):hover::after {
	transition: var(--all-in);
	opacity: 0.5;
}

/*--------*/

/*services-block*/

.services-block {
	padding: 40px 0 60px;
	background: url('../images/figure-middle-bg.svg') 50% 550px / 100% auto no-repeat;
}

.services-block.new {
	background: url('../images/smile-bg.svg') 50% calc(100% - 23px) / calc(100% + 300px) auto no-repeat;
}

.services-block.new .form-block {
	margin-top: 80px;
}

.services-block .box {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px 40px;
}

.services-block .box .item {
	padding-bottom: 32px;
	border-radius: 32px;
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.services-block .box.new .item {
	gap: 12px;
	padding: 32px;
}

.services-block .box .item .image {
	height: 300px;
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.services-block .box .item .title {
	width: 100%;
	min-height: 83px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
	text-align: center;
}

.services-block .box .item .title a {
	text-decoration: none;
	font-size: 28px;
	color: var(--text);
	font-weight: bold;
}

.services-block .box.new .item .title {
	font-size: 32px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	border-bottom: 1px solid #03B8D6;
	justify-content: flex-start;
  	align-items: center;
  	padding: 0;
	padding-bottom: 12px;
	flex-shrink: 0;
}

.services-block .box.new .item .title h3 {
	font-weight: 500;
	text-align: left;
}

.services-block .box.new .item .title a {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
  	text-transform: uppercase;
	font-size: 32px;
}

/*---------*/

.services-block .box.new .content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
	height: 100%;
}

.services-block .box.new .content .but {
	padding: 0;
}

.services-block .box.new .content .links ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.services-block .box.new .content .links ul li {
	padding-left: 32px;
	position: relative;
}

.services-block .box.new .content .links ul li::before {
	width: 20px;
	height: 9px;
	top: 9px;
	left: 0;
	position: absolute;
	content: "";
	background: url('../images/ul-mark.svg') center center no-repeat;

}

.services-block .box.new .content .links ul li a {
	line-height: 27px;
	font-size: 18px;
	color: var(--text);
	text-decoration: none;
	position: relative;
	font-family: var(--font-poppins);
}

.services-block .box.new .content .links ul li a:hover {
	text-decoration: underline;
}


/*---------*/

.services-block .box .item .short {
	margin-top: 8px;
	padding: 0 24px;
}

.services-block .box .item .short img, .services-block .box .item .short h1, .services-block .box .item .short h2, .services-block .box .item .short h3, .services-block .box .item .short h4 {
	display: none !important;
}

.services-block .box .item .short p, .services-block .box .item .short ol, .services-block .box .item .short ul {
	font-family: var(--font-poppins);
	font-size: 18px;
}

.services-block .box .item .but {
	margin-top: auto;/*16px*/
	padding: 0 24px;
}

/*--------*/

/*info-page*/

.info-page.not-found {
	padding: 145px 0 135px;
	background: linear-gradient(90deg, #03B8D6 0%, #1F84C5 100%);
}

.info-page.thank-page {
	padding: 145px 0 135px;
	background: linear-gradient(90deg, #03B8D6 0%, #1F84C5 100%);
}

.info-page .box {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.info-page .box .h1 {
	color: var(--white);
	font-size: 64px;
	font-weight: 400;
}

.info-page.not-found .box .h1 {
	margin-top: -132px;
}

.info-page .box p {
	color: var(--white);
	font-family: var(--font-poppins);
	font-size: 20px;
}

.info-page .box .but {
	margin-top: 16px;
}

.info-page .box .but a {
	color: var(--text);
	background: var(--white);
	width: 100%;
	max-width: 372px;
	padding: 0 20px;
}

.info-page .box .but a:hover {
	background: var(--but);
	color: var(--white);
}

/*--------*/

/*prices-block*/

.prices-block {
	padding: 40px 0 60px;
}

.prices-block .box {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 60px;
}

.prices-block .box .item {
	background: var(--white);
	border-radius: 20px;
	padding: 0 24px;
}

.prices-block .box .item .title {
	width: 100%;
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.prices-block .box .item .title .name {
	font-size: 24px;
	font-weight: 700;
}

.prices-block .box .item .title .price {
	text-align: right;
	font-family: var(--font-poppins);
	font-size: 15px;
	display: flex;
	align-items: center;
}

.prices-block .box .item .title .price span span{
	color: var(--but);
	font-size: 20px;
	font-weight: 700;
}

.prices-block .box .item .title .price::after {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--but);
	margin-left: 24px;
	content: "";
	transition: var(--all-out);
	background-color: var(--white);
	background-image: url('../images/price-arrow-green.svg');
	background-position: center center;
	background-repeat: no-repeat;
}

.prices-block .box .item .title:hover .price::after {
	transition: var(--all-in);
	background-color: var(--but-10);
}

.prices-block .box .item .title.active .price::after {
	transition: var(--all-in);
	background-color: var(--but);
	background-image: url('../images/price-arrow-white.svg');
}

.prices-block .box .item .content {
	overflow: hidden;
	max-height: 0;
	transition: var(--all-inout);
	position: relative;
}

.prices-block .box .item .content::after {
	content: "";
	display: flex;
	width: 100%;
	height: 24px;
}

.price-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--but);
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price-item:first-child {
	border-top: 1px solid var(--but);
}

.price-item .name {
	font-size: 20px;
	font-family: var(--font-poppins);
}

.price-item .price {
	text-align: right;
	font-family: var(--font-poppins);
	font-size: 15px;
	display: flex;
	align-items: center;
}

.price-item .price span:not(.old), .prices-block .box .item .title .price span:not(.old) {
	color: var(--but);
	font-size: 20px;
	font-weight: 700;
}

.price-item .price span.old, .prices-block .box .item .title .price span.old {
	font-family: var(--font-poppins);
	font-size: 15px;
	text-decoration: line-through;
	opacity: 0.6;
}

/*--------*/

/*service-first*/

.service-first {
	padding: 0;
}

.service-first .box {
	max-width: 100%;
}


/*--------*/

/*text-main-block*/

.text-main-block.text-block1 {
	margin-top: 80px;
}

.text-main-block.text-block2, .text-main-block.text-block3, .text-main-block.text-block4 {
	margin-top: 120px;
}

.text-main-block.text-block1 .box {
	border-radius: 32px;
	padding: 32px;
	background: var(--white);
}

img.alignright, span.alignright {
	float: right;
	margin: 0 0 50px 64px;
}

img.alignleft, span.alignleft {
	float: left;
	margin: 0 54px 50px 0;
}

img.aligncenter, span.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

a img.alignright, a span.alignright {
	float: right;
	margin: 0 0 50px 64px;
}

a img.alignleft, a span.alignleft {
	float: left;
	margin: 0 54px 50px 0;
}

a img.aligncenter, a span.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.content-text p {
	font-size: 18px;
}

.content-text a {
	color: var(--but);
	text-decoration: underline;
}

.content-text a:hover {
	color: var(--text);
}

.contacts-block .content-text a {
	text-decoration: none;
	color: var(--text);
}

.contacts-block .content-text a:hover {
	color: var(--but);
	text-decoration: underline;
}

.content-text ol {
	font-size: 18px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.content-text ol li:not(:first-child) {
	margin-top: 16px;
}

.content-text ul {
	font-size: 18px;
	padding: 0;
	list-style: none;
}

.content-text ul li {
	padding-left: 32px;
	position: relative;
}

.content-text ul li:not(:first-child) {
	margin-top: 16px;
}

.content-text ul li::before {
	width: 20px;
	height: 27px;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url('../images/ul-mark.svg') center center no-repeat;
}

.text-main-block.text-block2 .box .video {
	width: 100%;
	max-width: 588px;
	height: 369px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	float: right;
	margin: 0 0 50px 64px;
}

.text-main-block.text-block2 .box .video .poster {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.text-main-block.text-block2 .box .video:not(.none-video) .poster::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url('../images/play.svg') center center no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

.text-main-block.text-block2 .box > *:not(.video):not(.image) {
	margin-bottom: 32px;
}

.text-main-block.text-block2 .box > *:last-child {
	margin-bottom: 0 !important;
}

.text-main-block .but {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.text-main-block .but a {
	width: 100%;
	max-width: 360px;
}

.text-main-block.text-block3 .box:not(.single) {
	display: grid;
	grid-template-columns: 512px auto;
	gap: 64px;
}

.text-main-block.text-block3 .box.single {
	grid-template-columns: 100%;
}

.text-main-block.text-block3 .box .image, .text-main-block.text-block4 .box .image {
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.text-main-block.text-block3 .box .image .image-wr, .text-main-block.text-block4 .box .image .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.text-main-block.text-block4 .box {
	display: grid;
	grid-template-columns: 512px auto;
	gap: 40px 64px;
}

.text-main-block.text-block4 .box .text:first-child {
	grid-column-start: 1;
	grid-column-end: 3;
}

.text-main-block.text-block1 .box-wr {
	overflow: hidden;
  	transition: var(--all-inout);
}

.text-main-block.text-block1 .box-wr h2 {
	text-align: center;
}

.text-main-block .box .more-but {
	width: 100%;
	justify-content: center;
	display: flex;
}

.text-main-block .box .more-but a {
	width: 100%;
	max-width: 360px;
	border-radius: 20px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--but);
	color: var(--text);
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.469px;
}

.text-main-block .box .more-but a:hover {
	background: var(--but);
	color: var(--white);
}

.text-main-block .box .more-but a::after {
	border-top: 6px solid var(--menu-arrow);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	content: "";
	translate: 0 1px;
	transition: var(--all-out);
}

.text-main-block .box .more-but a.close::after {
	transition: var(--all-in);
	border-top: 0px solid var(--menu-arrow);
	border-bottom: 6px solid var(--menu-arrow);
}

.text-main-block .box .more-but a:hover::after {
	border-top-color: var(--white);
	border-bottom-color: var(--white);
	transition: var(--all-in);
}

/*--------*/

/*results-block*/

.results-block {
	padding: 180px 0 120px;
	background: url('../images/figure-up-bg.svg') 50% 60px / cover no-repeat;
}

.results-block h2 {
	color: var(--white);
}

.results-block .box {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px 40px;
}

.results-block .box .item {
	padding-bottom: 32px;
	border-radius: 32px;
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.results-block .box .item .image {
	height: 460px;/*300*/
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.results-block .box .item .title {
	width: 100%;
	min-height: 83px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
	text-align: center;
}

.results-block .box .item .title a {
	text-decoration: none;
	font-size: 28px;
	color: var(--text);
	font-weight: bold;
}

.results-block .box .item .but {
	margin-top: 16px;
	padding: 0 24px;
}
	

/*--------*/

/*service-prices*/

.service-prices {
	padding: 120px 0 60px;
}

.service-prices .box {
	margin-top: 60px;
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.service-prices .box .price-box .title {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
}

.service-prices .form-block {
	margin-top: 60px;
}

/*--------*/

/*faq-block*/

.faq-block {
	padding: 80px 0 180px;
	background: url('../images/figure-down-bg.svg') bottom center / cover no-repeat;
}

.faq-block h2 {
	color: var(--white);
}

.faq-block .box .item {
	padding: 0 24px;
	border-radius: 20px;
	background: var(--white);
}

.faq-block .box .item .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
	padding: 24px 0;
}

.faq-block .box .item .title::after {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--but);
	margin-left: 24px;
	content: "";
	transition: var(--all-out);
	background-color: var(--white);
	background-image: url('../images/price-arrow-green.svg');
	background-position: center center;
	background-repeat: no-repeat;
}

.faq-block .box .item .title:hover::after {
	transition: var(--all-in);
	background-color: var(--but-10);
}

.faq-block .box .item .title.active::after {
	transition: var(--all-in);
	background-color: var(--but);
	background-image: url('../images/price-arrow-white.svg');
}

.faq-block .box .item .content {
	overflow: hidden;
  	max-height: 0;
  	transition: var(--all-inout);
  	position: relative;
}

.faq-block .box .item .content::before {
	content: "";
	display: flex;
	width: 100%;
	height: 24px;
	border-top: 1px solid var(--but);
}

.faq-block .box .item .content::after {
	content: "";
	display: flex;
	width: 100%;
	height: 24px;
}

.faq-block .box .item .content > *:not(:first-child), .faq-block .box .item .content .inner > *:not(:first-child) {
	margin-top: 24px;
}

/*--------*/

/*about-us-block*/

.about-us-block {
	padding: 40px 0 60px;
	background: url('../images/figure-up-bg.svg') 50% 980px / 100% 1055px no-repeat;
}

.about-us-block .box {
	display: grid;
	grid-template-columns: auto 512px;
	gap: 40px;
}

.about-us-block .box .image {
	order: 2;
	width: 100%;
	max-width: 600px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.about-us-block .box .image .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.about-us-block .box .text {
	order: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.about-us-block .box .text p, .about-us-block .box .text ol, .about-us-block .box .text ul {
	font-size: 18px;
	font-family: var(--font-poppins);	
}

.about-us-block .block {
	margin-top: 120px;
}

.about-us-block .block {
	border-radius: 32px;
}

.about-us-block .block.white {
	background: var(--white);
	padding: 32px;
}

.about-us-block .block.white h3:first-child {
	text-align: center;
}

.about-us-block .block h2 {
	text-align: center;
}

.about-us-block .block.numbers {
	box-shadow: var(--box-shadow-slider);
}

.about-us-block .block.numbers .num-items {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.about-us-block .block.numbers .num-items .item {
	gap: 8px;
}

.about-us-block .block.numbers .num-items .item p {
	font-size: 20px;
	font-weight: 500;
}

.about-us-block .block.with-image {
	display: grid;
  	grid-template-columns: 512px auto;
  	gap: 64px;
}

.about-us-block .block.with-image .image {
	order: 1;
	width: 100%;
	max-width: 600px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.about-us-block .block.with-image .image .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.about-us-block .block.with-image .text {
	order: 2;
}

.about-us-block .block.block-text-white .item {
	display: grid;
	grid-template-columns: 512px auto;
	border-radius: 32px;
	background: var(--white);
	overflow: hidden;
	grid-auto-rows: 1fr;
}

.about-us-block .block.block-text-white .item:nth-child(2n+1) {
	grid-template-columns: auto 512px;
}

.about-us-block .block.block-text-white .item:nth-child(2n+1) .image {
	order: 2;
}

.about-us-block .block.block-text-white .item:nth-child(2n+1) .text {
	order: 1;
}

.about-us-block .block.block-text-white .item .image {
	width: 100%;
	max-width: 512px;
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.about-us-block .block.block-text-white .item .image-wr {
	position: absolute;
	width: 100%;
	height: 100%;
}

.about-us-block .block.block-text-white .item .image img {
	vertical-align: top;
}

.about-us-block .block.block-text-white .item .text {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-height: 390px;
	justify-content: center;
}

.about-us-block .block.block-text-white .item .text p, .about-us-block .block.block-text-white .item .text ul, .about-us-block .block.block-text-white .item .text ol {
	font-size: 18px;
	font-family: var(--font-poppins);
}


/*--------*/

/*reviews-block*/

.reviews-block {
	padding: 40px 0 80px;
}

.reviews-block .buts {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
}

.reviews-block .buts button {
	border: 0;
	padding: 0;
	height: 56px;
	border-radius: 20px;
	padding: 0 32px;
	background: var(--white);
	color: #0E4068;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.469px;
}

.reviews-block .buts button:hover, .reviews-block .buts button.active {
	background: var(--seablue2);
	color: var(--white);
}

.reviews-block .box {
	margin-top: 60px;
	display: flex;
  	justify-content: space-between;
  	gap: 40px;
}

.reviews-block .box .list {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.reviews-block .box .list .review-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.reviews-block .box .list .review-list .item {
	border-radius: 32px;
	box-shadow: var(--box-shadow-slider2);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px;
	background: var(--white);
}

.reviews-block .box .list .review-list .item .name {
	font-size: 24px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.reviews-block .box .list .review-list .item .name .date {
	font-size: 15px;
	font-weight: 400;
	color: var(--grey4);
}

.reviews-block .box .list .review-list .item .service {
	color: var(--seablue2);
	font-family: var(--font-poppins);
	font-size: 15px;
	font-weight: 700;
}

.reviews-block .box .list .review-list .item .city {
	color: var(--grey2);
	font-family: var(--font-poppins);
	font-size: 15px;
	font-weight: 400;
}

.reviews-block .box .list .review-list .item .city span {
	font-weight: 700;
}

.reviews-block .box .list .review-list .item .rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.reviews-block .box .list .review-list .item .rating span {
	display: flex;
	width: 24px;
	height: 24px;
	background: url('../images/star.svg') center center no-repeat;
}

.reviews-block .box .list .review-list .item .text {
	width: 100%;
	overflow: hidden;
}

.reviews-block .box .list .review-list .item .text * {
	font-family: var(--font-poppins);
	font-size: 16px;
}

.reviews-block .box .sidebar {
	top: 20px;
	position: sticky;
	width: 100%;
	max-width: 424px;
	flex-shrink: 0;
}

.reviews-block .box .sidebar .review-form {
	top: 20px;
  	position: sticky;
	padding: 32px;
	border-radius: 32px;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
}

.reviews-block .box .sidebar .review-form .title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
}

.reviews-block .box .sidebar .review-form p {
	font-family: var(--font-poppins);
	font-size: 18px;
	font-weight: 400;
}

.reviews-block .box .sidebar .review-form form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.reviews-block .box .sidebar .review-form form .but {
	margin-top: 16px;
	width: 100%;
}

.reviews-block .box .sidebar .review-form form .but input {
	width: 100%;
}

.reviews-block .controls {
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.pagination {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.pagination, .pagination > div  {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.pagination a, .pagination span {
	display: flex;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: transparent;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: var(--grey3);
}

.pagination a:hover, .pagination span:not(.extend) {
	background: var(--seablue2);
	color: var(--white);
}

.pagination a.current {
	background: var(--seablue2);
	color: var(--white);
}

.pagination span.extend {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--dark);
}

.pagination a.prev, .pagination a.next {
	width: 80px;
	background: var(--seablue2);
	font-size: 0;
}

.pagination a.prev::before, .pagination a.next::before {
	display: flex;
	width: 10px;
	height: 22px;
	content: "";
	background: url('../images/pagination-arrow.svg') center center / contain no-repeat;
}

.pagination a.prev::before {
	rotate: 180deg;
}

.pagination a.last, .pagination a.first {
	display: none;
}

/*--------*/

/*doctors-block*/

.doctors-block {
	padding: 40px 0 80px;
}

.doctors-block .box {
	display: grid;
  	grid-template-columns: 1fr 1fr 1fr;
  	gap: 60px 40px;
}

.doctors-block .box .item {
	margin: 0 20px;
	border-radius: 32px;
	box-shadow: var(--box-shadow-slider2);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--white);
}

.doctors-block .box .item .photo {
	height: 340px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.doctors-block .box .item .photo img {
	object-position: 50% 0%;
}

.doctors-block .box .item .name {
	margin-top: 16px;
	padding: 0 32px;
	min-height: 58px;
	text-align: center;
}

.doctors-block .box .item .name a {
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: var(--text);
	line-height: 29px;
	text-align: center;
}

.doctors-block .box .item:hover .name a {
	color: var(--but);
}

.doctors-block .box .item p {
	padding: 0 32px;
	min-height: 48px;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

.doctors-block .box .item .doctor-but {
	padding: 0 32px 32px 32px;
}

.doctors-block .box .item .doctor-but a {
	border: 1px solid var(--but);
	height: 56px;
	border-radius: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--but);
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -0.47px;
}

.doctors-block .box .item .doctor-but a:hover {
	background: var(--but);
	color: var(--white);
}

/*--------*/

/**/

.doctor-block {
	padding: 40px 0 125px;
}

.doctor-block .box.about {
	display: grid;
	grid-template-columns: 512px auto;
	gap: 64px;
}

.doctor-block .box.about .photo {
	width: 100%;
	height: 567px;
	max-height: 567px;
	border-radius: 32px;
}

.doctor-block .box.about .photo img {
	object-position: top;
}

.doctor-block .box.about .text h1, .doctor-block .box.about .text h2, .doctor-block .box.about .text h3 {
	font-size: 32px;
}

.doctor-block .box.skills h2, .doctor-block .box.other h2, .doctor-block .box.serts h2 {
	font-size: 32px;
}

.doctor-block .box.serts {
	margin-top: 80px;
}

.doctor-block .box.serts .serts-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	margin-top: 60px;
}

.doctor-block .box.serts .item {
	height: 300px;
	border-radius: 32px;
}

.doctor-block .box.serts .item img {
	scale: 1;
	transition: var(--all-out);
}

.doctor-block .box.serts .item:hover img {
	scale: 1.05;
	transition: var(--all-in);
}

.doctor-block .box.skills {
	margin-top: 120px;
}

.doctor-block .box.skills .text {
	margin-top: 60px;
}

.doctor-block .box.skills .text ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 56px;
}

.doctor-block .box.skills .text ul li {
	margin-top: 0;
}

.doctor-block .box.other {
	margin-top: 120px;
}

.doctor-block .box.other .text {
	margin-top: 60px;
}

/*--------*/

/*contact-services*/

.home-services.contact-services {
	padding: 60px 0 120px;
	background: url('../images/smile-bg.svg') 50% calc(100% - 83px) / calc(100% + 300px) auto no-repeat;
}

/*--------*/

/*contacts-block*/

.contacts-block {
	padding: 40px 0 60px;
}

.contacts-block .box {
	display: grid;
	grid-template-columns: 764px auto;
	gap: 56px;
}

.contacts-block .box .image {
	border-radius: 32px;
	position: relative;
}

.contacts-block .box .image-wr {
	width: 100%;
	height: 100%;
	position: absolute;
}

.contacts-block .box .text .title {
	font-size: 32px;
	font-weight: 700;
}

/*--------*/

/*articles-block*/

.articles-block {
	padding: 40px 0 80px;
}

.articles-block.articles-widget .box {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px 40px;
}

.articles-widget .box .article-but {
	padding: 0 32px;
}

.articles-widget .box .article-but a {
	border: 1px solid var(--but);
	height: 56px;
	border-radius: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--but);
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -0.47px;
}

.articles-widget .box .article-but a:hover {
	background: var(--but);
	color: var(--white);
}

.articles-block .pagination > div {
	margin-top: 80px;
}


/*--------*/

/*article-text*/

.article-text {
	padding: 40px 0 80px;
}

.article-text .box {
	margin-top: 60px;
	border-top: 1px solid transparent;
}

.article-text .box .gallery {
	display: grid;
	gap: 32px;
}

.article-text .box .gallery.gallery-columns-1 {
	grid-template-columns: 100%;
}

.article-text .box .gallery.gallery-columns-2 {
	grid-template-columns: 1fr 1fr;
}

.article-text .box .gallery.gallery-columns-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.article-text .box .gallery .gallery-item {
	margin: 0;
}

.article-text .container > h1 {
	text-align: center;
}

.article-text .content-text p, .article-text .content-text ul, .article-text .content-text ol {
	font-family: var(--font-poppins);
}

.article-text .content-text .white-box {
	border-radius: 32px;
	padding: 32px;
	background: var(--white);
	margin-top: 60px;
	margin-bottom: 60px !important; 
	float: none;
  	clear: both;
}

.article-text .content-text .transparent-box {
	border-radius: 32px;
	margin-top: 60px;
	margin-bottom: 60px !important; 
	float: none;
  	clear: both;
}

.article-text .content-text .white-box::after, .article-text .content-text .transparent-box::after {
	content: "";
	width: 100%;
	clear: both; 
	float: none;
	display: block;
}

.article-text .content-text .white-box > *:not(:last-child), .article-text .content-text .transparent-box > *:not(:last-child) {
	margin-bottom: 32px;
}


.article-text .content-text > *:not(:last-child) {
	margin-bottom: 32px;
}

.article-text .content-text h1, .article-text .content-text h2, .article-text .content-text h3 {
	font-size: 32px;
}

.article-text .content-text h1:not(:first-child), .article-text .content-text h2:not(:first-child), .article-text .content-text h3:not(:first-child), .article-text .content-text h4:not(:first-child) {
	margin-top: 60px;
}

.article-text .content-text .white-box h1, .article-text .content-text .white-box h2, .article-text .content-text .white-box h3 {
	text-align: center;
	font-size: 32px;
}

.content-text .img-wr {
	display: flex;
	border-radius: 32px;
	overflow: hidden;
	width: 100%;
	max-width: 400px;/*512*/
}

.content-text .img-wr img {
	float: none !important;
	margin: 0 !important;
	width: 100%;
}

.article-text .content-text ol {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	counter-reset: section;
}

.article-text .content-text ol li {
	border-radius: 32px;
	background: var(--white);
	padding: 24px 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	box-shadow: var(--box-shadow-slider);
	margin-top: 0;
	text-align: center;
}

.article-text .content-text ol li::before {
	counter-increment: section;
  	content: counter(section);
	font-size: 66px;
	line-height: 80px;
	color: var(--seablue);
	text-align: center;
	font-weight: bold;
	font-style: normal;
}

/*--------*/

/**/

.wpcf7-not-valid-tip {
	display: none !important;
}

.wpcf7-response-output {
	display: none !important;
}

.wpcf7-spinner {
	position: absolute;
	right: 20px;
	top: 50%;
	translate: 0 -50%;
}

/*--------*/

/*results-block*/

.results-block.inner {
	padding: 40px 0 60px;
	background: url('../images/figure-middle-bg.svg') 50% 550px / 100% auto no-repeat;
}

.results-block .box {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px 40px;
}

.results-block .box .item {
	padding-bottom: 32px;
	border-radius: 32px;
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--box-shadow-slider);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.results-block .box .item .image {
	height: 460px;/*300*/
	width: 100%;
	border-radius: 32px;
	overflow: hidden;
}

.results-block .box .item .title {
	width: 100%;
	min-height: 83px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
	text-align: center;
}

.results-block .box .item .title a {
	text-decoration: none;
	font-size: 24px;
	color: var(--text);
	font-weight: bold;
}

.results-block .box .item .short {
	margin-top: 8px;
	padding: 0 24px;
}

.results-block .box .item .short img, .results-block .box .item .short h1, .results-block .box .item .short h2, .results-block .box .item .short h3, .results-block .box .item .short h4 {
	display: none !important;
}

.results-block .box .item .short p, .results-block .box .item .short ol, .results-block .box .item .short ul {
	font-family: var(--font-poppins);
	font-size: 18px;
}

.results-block .box .item .but {
	margin-top: 16px;
	padding: 0 24px;
}

/*--------*/

/**/

#form {
	padding: 0 !important;
	border-radius: 32px;
}

#form .modal-box {
	border-radius: 32px;
	overflow: hidden;
	display: flex;
}

#form .modal-box .image {
	width: 100%;
	max-width: 600px;
}

#form .modal-box .form {
	width: 100%;
	max-width: 600px;
	padding: 40px;
	border-radius: 32px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

#form .modal-box .form .title {
	font-size: 32px;
	font-weight: bold;
	color: var(--text);
}

#form .modal-box .form > p {
	font-size: 18px;
}

#form .modal-box .form > .modal-form {
	margin-top: 25px;
}

#form .modal-box .form > .modal-form form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#form .modal-box .form > .modal-form form .but {
	margin-top: 16px;
}

#form .modal-box .form > .modal-form form .but input {
	width: 100%;
}

#review {
	padding: 0 !important;
	border-radius: 32px;
}

#review .modal-box {
	border-radius: 32px;
	overflow: hidden;
}

#review .modal-box .form {
	width: 100%;
	max-width: 600px;
	padding: 40px;
	border-radius: 32px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

#review .modal-box .form .title {
	font-size: 32px;
	font-weight: bold;
	color: var(--text);
}

#review .modal-box .form > p {
	font-size: 18px;
}

#review .modal-box .form > .modal-form {
	margin-top: 25px;
}

#review .modal-box .form > .modal-form form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#review .modal-box .form > .modal-form form .but {
	margin-top: 16px;
}

#review .modal-box .form > .modal-form form .but input {
	width: 100%;
}

/*--------*/

/**/

.about-clinic-page .box .image.first, .about-us-page .box .image.first {
	min-height: 320px;
}

/*--------*/

/**/

.mobile-contacts-home .box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
}

.mobile-contacts-home .box p {
	font-size: 16px;
	font-weight: 600;
}

.mobile-contacts-home {
	padding: 35px 0 0;
}

.consultation-info {
	width: 100%;
  	padding: 16px 32px;
  	border-radius: 32px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
	font-size: 16px;
	margin-top: 32px;
	padding-left: 56px;
	background: url('../images/consultation.svg') 16px 50% / 24px auto no-repeat, #e1e8ea;
}

.consultation-info p {
	font-weight: 500;
}

.consultation-info p a {
	text-decoration: none;
}

/*--------*/

/**/

.article-text .box .publish-date {
	font-size: 13px;
	color: var(--dark);
}

.article-text .box .publish-date .counter {
	margin-left: 24px;
	border-radius: 20px;
	padding: 4px 12px 4px 42px;
	color: var(--text);
	font-family: var(--font-poppins);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	background: url('../images/eye.svg') 12px 50% / 18px auto no-repeat, var(--white);
}

.article-text .box .publish-date span {
	font-size: 14px;
	color: var(--links);
	font-family: var(--font-num);
}

.article-text .box .author-box .text p {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
}

.article-text .box .author-box .text .h2 {
	line-height: normal;
	font-size: 18px;
}

.article-text .box .author-box .text .h2 a {
	text-decoration: none;
	color: var(--dark)
}

.article-text .box .author-box .text .h2 a:hover {
	color: var(--links);
}

.article-text .box .author-box .text .position {
	margin-top: 0px;
  	font-size: 13px;
  	line-height: 10px;
	color: var(--text);
}

.article-text .box .author-box {
	margin-bottom: 32px;
}

.article-text .box .author-box {
	display: grid;
	gap: 24px;	
	grid-template-columns: 80px 1fr;
}

.article-text .box .author-box .photo {
	width: 80px;
  	height: 80px;
	border-radius: 20px;
	overflow: hidden;
}

.article-text .box .author-box .photo .img-wr {
	border-radius: 20px;
}

.article-text .box .author-box .photo img {
	width: 100%;
	height: auto;
	scale: 1;
	transition: var(--all-out);
}

.article-text .box .author-box .photo:hover img {
	scale: 1.05;
	transition: var(--all-in);
}

.article-text .box .author-box .text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/*--------*/

/**/

.search-results-block {
	padding: 40px 0;
}

.search-results-block .search {
	margin-bottom: 32px;
}

.search-results-block .box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.search-results-block .box .item {
	padding: 16px 24px;
	border-radius: 24px;
	background: var(--white);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.search-results-block .box .item .title a {
	color: var(--text);
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
}

.search-results-block .box .item .title a:hover {
	color: var(--but);
}

.search-results-block h1 span {
	color: var(--but);
}

/*--------*/

/**/

.sitemap-block {
	padding: 40px 0;
}

.sitemap-block .block {
	display: flex;
  	flex-direction: column;
  	gap: 24px;
  	margin-bottom: 32px;
}

.sitemap-block .block h2 {
  	padding-bottom: 24px;
  	border-bottom: 1px solid var(--grey);
	font-size: 32px;
}

.sitemap-block .block .items {
	display: flex;
  	flex-direction: column;
  	gap: 24px;
}

.sitemap-block .block .items .part {
	border-radius: 24px;
	background: var(--white);
	padding: 24px;
	display: flex;
  	flex-direction: column;
  	gap: 24px;
}

.sitemap-block .block .items .part h3 {
	font-size: 24px;
}

.sitemap-block .block .items .part h3 a {
	text-decoration: none;
	color: var(--title);
}

.sitemap-block .block .items .part h3 a:hover {
	text-decoration: underline;
}

.sitemap-block .block .items .part ul {
	display: grid;
  	padding-left: 0px;
  	list-style-type: none;
  	grid-template-columns: 1fr 1fr 1fr;
  	gap: 6px 16px;
}

.sitemap-block .block .items .part ul li {
  	line-height: 1.5;
  	font-size: 14px;
  	box-sizing: border-box;
}

.sitemap-block .block .items .part ul a {
  	padding-left: 15px;
  	position: relative;
  	display: inline-block;
  	vertical-align: top;
  	transition: all 0.25s;
	color: var(--text);
}

.sitemap-block .block .items .part ul a:hover {
	color: var(--but);
}

.sitemap-block .block .items .part ul a::before {
  	border-top: 1px solid var(--but);
  	border-right: 1px solid var(--but);
  	width: 5px;
  	height: 5px;
  	transform: rotate(45deg);
  	content: "";
  	position: absolute;
  	left: 0px;
  	top: 50%;
  	margin-top: -2px;
  	transition: all 0.25s;
}

/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/

/**/



/*--------*/