:root{
    --colorRed: #E31E24;
    --Title: #393185;
    --banner-form-card: #E5F6FE;
    --Bg-website: #CDE2ED;
    --Footer: #AEC5DB;
    --Form: #F8F8F8;
    --Text-body: #141414;
    --Text-form: #585858;
    --Border: #B2B2B2;
	--Bg-card:#E5F6FE;
	--hover: #5C52BC;
}
@font-face {
    font-family: 'Cambria';
    src: url('../fonts/Cambria-Bold.eot');
    src: local('Cambria Bold'), local('Cambria-Bold'),
        url('../fonts/Cambria-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Cambria-Bold.woff2') format('woff2'),
        url('../fonts/Cambria-Bold.woff') format('woff'),
        url('../fonts/Cambria-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cambria';
    src: url('../fonts/Cambria-Italic.eot');
    src: local('Cambria Italic'), local('Cambria-Italic'),
        url('../fonts/Cambria-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Cambria-Italic.woff2') format('woff2'),
        url('../fonts/Cambria-Italic.woff') format('woff'),
        url('../fonts/Cambria-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cambria';
    src: url('../fonts/Cambria.eot');
    src: local('Cambria'),
        url('../fonts/Cambria.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Cambria.woff2') format('woff2'),
        url('../fonts/Cambria.woff') format('woff'),
        url('../fonts/Cambria.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: Arial, sans-serif;
	font-weight: 400;
	color:var(--Text-body);
	font-size: 18px;
	line-height: 1.8; 
    background-color: var(--Bg-website);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:var(--Title);
	text-decoration:none;
}
a:hover {
	color:#5C52BC;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.hidden{
	display: none;
}
/* wrapper */
.container{
	width: 1632px;
	max-width: 100%;
	padding: 0 16px;
	margin-right: auto;
	margin-left: auto;
}
.wrapper {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
.d-flex{
	display:flex;
}
.a-center{
	align-items: center;
}
.j-between{
	justify-content: space-between;
}
.j-center{
	justify-content: flex-end;
}
.f-wrap{
	flex-wrap: wrap;
}
body.no-scroll{
	overflow-y: hidden;
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 60px;
    height: 52px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    transition: all .3s ease;
    text-decoration: none;
}
.btn-fill{
    color: var(--Bg-website);
    background-color: var(--Title);
}
.btn-fill:hover{
    color: var(--Bg-website);
    background-color: #5C52BC;
}
.btn-fill:active{
    color: var(--Bg-website);
    background-color: #221D50;
}
.btn-border{
    border: 3px solid var(--Title);
    color: var(--Title)
}
.btn-border:hover{
    border-color: #5C52BC;
    color: #5C52BC;
}
.btn-border:active{
    border-color: #221D50;
    color: #221D50;
}
.btn-border.white{
	border-color: var(--Form);
	color: var(--Form);
}
.btn-border.white:hover{
	border-color: var(--Bg-website);
	background-color: var(--Bg-website);
	color: var(--Text-body);
}
.btn-border.white:active{
	color: var(--Text-body);
	background-color: var(--Footer);
	border-color: var(--Footer);
}

.menu-toggle{
	border: none;
	padding: 0;
	background: none;
}
.menu-toggle {
  width: 32px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--Text-body);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

.menu-toggle.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.open span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header{
    padding: 24px 0;
	position: sticky;
	top: 0;
	background-color: var(--Bg-website);
	z-index: 10;
}
.menu-toggle,
.header .logo img:last-child{
	display: none;
}
.nav ul{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.nav ul li{
    margin: 0 20px;
}
.nav ul li ul{
	display: none;
}
.header a{
	color: var(--Text-body);
}
.header a:hover{
	color: var(--Title);
}
.header .btn-fill:hover,
.header .btn-fill{
	color: var(--Bg-website);
}
.header .phones{
    display: flex;
    flex-flow: column;
	padding-left: 40px;
	background-image: url(../img/solar_phone-outline.svg);
	background-repeat: no-repeat;
	background-position: left center;
}
.languages{
	font-size: 20px;
	font-weight: 700;
}
.dropdown-wrap{
	position: relative;
}
.dropdown-toggle{
	display: flex;
	align-items: center;
}
.dropdown-toggle.active svg{
	transform: rotate(180deg);
}
.dropdown{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
}
.dropdown ul{
	list-style-type: none;
	margin: 0;
	padding: 0;

}
.dropdown li{
	/* padding: 0 15px; */
}
.social{
	display: flex;
	align-items: center;
	font-size: 0;
}

.footer{
	margin-top: auto;
	background-color: var(--Footer);
	color: var(--Title);
	padding: 68px 0 46px;
	background-image: url(../img/footer-bg.png);
	background-repeat: no-repeat;
	background-size:auto 100%;
	background-position: 0 0;
}
.copyright{
	margin-top: 120px;
}
.copyright svg{
	vertical-align: text-bottom;
}
.footer .logo{
	margin-right: auto;
}
.footer .col{
	margin-left: 140px;
}
.footer .col-title{
	font-size: 32px;
	margin-bottom: 32px;
	font-weight: bold;
}
.footer .social svg{
	width: 40px;
	height: 40px;
}
.footer .nav ul{
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 180px;
}
.footer .nav ul li{
	width: 50%;
	margin: 0 0 8px;
	font-weight: bold;
}
.footer .phone-link{
	display: flex;
	padding-left: 30px;
	background-image: url(../img/solar_phone-outline2.svg);
	background-repeat: no-repeat;
	background-position: left center;
}
h1,h2,h3{
	color: var(--Title);
	font-weight: bold;
	font-family: 'Cambria';
}
h1{
	font-size: 100px;
}
h2{
	font-size: 72px;
}
h3{
	font-size: 48px;
}
h4{
	font-size: 40px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
.more-text-block .inner{
	width: 100%;
	padding-top: 1px;
}
.section{
	padding: 68px 0;
}
.section-title{
	color: var(--Title);
	font-weight: bold;
	font-family: 'Cambria';
	font-size: 72px;
	margin: 0 0 80px;
	line-height: 1.2;
}

.first-slider .item .inner{
	position: relative;
	z-index: 1;
	height: calc(100vh - 100px);
	min-height: 600px;
	background-color: var(--banner-form-card);
	display: flex;
	align-items: center;
}
.first-slider .item .inner img{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	object-fit: cover;
	max-width: 70%;
	z-index: -1;
}
.first-slider .item .inner .title{
	font-size: 100px;
	line-height: 1.15;
	font-family: 'Cambria';
	margin: 0 0 40px;
	max-width: 820px;
	color: var(--Title);
	font-weight: bold;
}
.first-slider .item .inner .text{
	max-width: 820px;
	margin: 0 0 40px;
}
.slick-dots{
	list-style-type: none;
	padding: 0;
	margin: 32px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.first-slider .slick-dots{
	position: absolute;
	left: 50%;
	transform: translateX(-50%); 
	bottom: 68px;
}
.slick-dots li{
	margin-left: 8px;
	margin-right: 8px;
}
.slick-dots li button{
	display: flex;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	font-size: 0;
	border: none;
	background-color: var(--banner-form-card);
}
.first-slider .slick-dots li button{
	background-color: var(--Bg-website);
}
.slick-dots li.slick-active button{
	background-color: var(--Title);
}

.section-about .col:first-child{
	position: relative;
	width: 670px;
	font-size: 0;
	padding-bottom: 170px;
}
.about-content p{
	margin: 0 0 24px;
}
.about-content p:last-child{
	margin-bottom: 0;
}
.section-about .col:first-child img:last-child{
	position: absolute;
	top: 170px;
	left: 212px;
}
.section-about .col:last-child{
	position: relative;
	width: 650px;
}


.services-list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 56px;
	padding: 0 52px;
}
.services-list .item{
	position: relative;
	border-radius: 24px;
	background: var(--banner-form-card);
	padding: 32px 24px;
	min-height: 416px;
	min-width:100%;
}
.services-list .item img{
	position: absolute;
	bottom: 32px;
	right: 24px;
}
.services-list .item .title{
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	margin: 0 0 28px;
}
.services-list .item[data-term-id="106"] .title,
.services-list .item[data-term-id="42"] .title{
	max-width: 100%;
	width: 400px;
}
.services-list .item .text{
	color: var(--Title);
	font-size: 20px;
	line-height: 36px;
	max-width: 50%;
}
.services-list .item .text p{
	margin: 0 0 4px;
}
.services-list .item .text p a:hover{
	color:#5C52BC;
}
.services-list .item .text p:last-child{
	margin: 0;
}
.section-why .items-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-image: url(../img/logo-vertical.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: -32px;
}
.section-why .items-list .item{
	text-align: center;
	width: 450px;
	margin-left: 120px;
	margin-right: 120px;
	margin-bottom: 32px;
}
.section-why .items-list .item:before{
	content: '';
	display: block;
	background-image: url(../img/cristal.svg);
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 40px;
	margin: 0 0 8px;
}
.section-why .items-list .item .title{
	font-size: 40px;
	line-height: 1.3;
	margin-bottom: 24px;
}
.section-why .items-list .item p{
	margin: 0;
}
.section-why .items-list .item:nth-child(4){
	margin-left: 0;
	margin-right: auto;
}
.section-why .items-list .item:nth-child(5){
	margin-right: 0;
	margin-left: auto;
}
.divider{
	width: 100%;
}
.section-form{
	background-image: url(../img/section-form-bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center right;
	background-color: var(--banner-form-card);
}
.section-form .section-title{
	margin-bottom: 40px;
}
.section-form p{
	max-width: 836px;
	margin: 0 0 40px;
}
.section-form .form-wrap{
	max-width: 836px;
}
.input-wrap{
	width: calc(50% - 8px);
}
.input-wrap.full{
	width: 100%;
}
.input-wrap textarea,
.input-wrap input{
	display: block;
	width: 100%;
	border-radius: 12px;
	border: 1px solid var(--Border);
	background: var(--Form);
	font-size: 16px;
	height: 52px;
	padding: 10px;
}
.input-wrap textarea{
	resize: none;
	height: 96px;
	outline: none;
}
.acceptance .wpcf7-list-item{
	margin: 0;
}
.acceptance{
	margin-top: 16px;
	margin-bottom: 40px;
	font-size: 16px;
}
.acceptance label{
	position: relative;
	cursor: pointer;
}
.acceptance label input{
	position: absolute;
	visibility: hidden;
	opacity: 0;
}
.acceptance label span{
	padding-left: 50px;
	display: block;
	position: relative;
}
.acceptance label span:before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid var(--Border);
	background-color: var(--Form);
}
.acceptance label input:checked+span:before{
	background-image: url(../img/dashicons_yes.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.all-link-wrap{
	margin-top: 80px;
}
.slick-track {
  display: flex;
}
.slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.team-slider{
	margin-right: -16px;
	margin-left: -16px;
}
.team-slider .item{
	display: none;
	padding: 0 16px;
	text-align: center;
}
.team-slider .item.slick-slide{
	display: block;
}
.team-slider .item .inner{
	position: relative;
}
.team-slider .item .inner a{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.team-slider .item .inner img{
	border-radius: 24px;
	display: block;
	margin-right: auto;
	margin-left: auto;
	height: 410px;
	width: auto;
	object-fit: contain;
}
.team-slider .item .inner .name{
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	margin: 16px 50px;
}
.team-slider .item .inner:hover .name{
	color: var(--Title);
}
.team-slider .item .inner p{
	margin: 0 30px;
}

.section-team .section-subtitle{
	margin: 80px 0 40px;
}
.section-subtitle{
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px;
	color: var(--Title);
	margin: 0 0 80px;
}
.reviews-slider{
	margin-right: -12px;
	margin-left: -12px;
}
.reviews-slider .item{
	padding: 0 12px;
}
.reviews-slider .item .inner{
	border-radius: 24px;
	background: var(--Bg-card);
	padding: 76px 24px;
	text-align: center;
}
.reviews-slider .item .inner img{
	display: inline-block;
	width: 134px;
	height: 134px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 0 40px;
}
.reviews-slider .item .inner p{
	max-width: 100%;
	width: 568px;
	margin: 0 auto 40px;
}
.reviews-slider .item .inner .name{
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
}
.gallery-grid .row{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 32px;
}
.gallery-grid .row+.row{
	margin-top: 32px;
}
.gallery-grid .row a:first-child{
	grid-column: span 2;
	grid-row:span 2;
}
.gallery-grid .row a:nth-child(8){
	grid-column: span 2;
	grid-row:span 2;
}
.gallery-grid .row a{
	display: block;
	font-size: 0;
	aspect-ratio:1;
	min-width: 100%;
}
.gallery-grid .row a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.section-callback{
	background-color: var(--banner-form-card);
	background-image: url(../img/callback-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}
.section-callback>.container>*{
	width: 950px;
	max-width: 100%;
}
.section-callback>.container>.section-title{
	margin-bottom: 40px;
}
.section-callback>.container>p{
	margin: 0 0 40px;
}
.section-form .input-wrap.full,
.section-callback .input-wrap.full{
	margin-top: 16px;
}

.breadcrumbs{
	position: absolute;
	left: 0;
	width: 100%;
	top: 100%;
	padding: 16px 0;
	font-family: Arial;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.breadcrumbs a{
	color: var(--Title);
}
.breadcrumbs a:hover{
	color: var(--hover)
}
.section-contacts{
	margin-top: 56px;
}
.section-contacts .col:first-child{
	width: 610px;
}
.section-contacts .col:last-child{
	width: 828px;
}
.contacts-list .item{
	display: flex;
	margin-bottom: 56px;
}
.contacts-list .item .key{
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	width: 50%;
}
.contacts-list .item .val{
	font-size: 20px;
	width: 50%;
}
.contacts-list .item .phone-link{
	display: block;
	position: relative;
	padding-left: 38px;
	background-image: url(../img/solar_phone-outline.svg);
	background-size: 28px;
	background-repeat: no-repeat;
	background-position: center left;
	color: var(--Text-body);
}
.contacts-list .item .phone-link:hover{
	color: var(--hover);
}
.contacts-list .item .social{
	gap:16px
}
.section-contacts .col .section-title{
	margin-bottom: 40px;
}
.section-contacts .col > p{
	margin: 0 0 40px;
}
.section-contacts .col .input-wrap.full{
	margin-top: 16px;
}
.acf-map{
	overflow: hidden;
	border-radius: 24px;
	height: 763px;
	width: 100%;
}


/*page services*/

.service-item{
	background-color: var(--Bg-card);
	border-radius: 24px;
	padding: 32px 64px;
	min-height:636px;
	margin-bottom: 80px;
	position: relative;
}
.service-item:last-child{
	margin-bottom: 0;
}
.service-item .col{
	max-width: 100%;
	width: 800px;
}
.service-item .image-1{
	width: 594px;
	height: 388px;
	border-radius: 24px;
	object-fit: cover;
	position: absolute;
	top: 32px;
	right: 64px;
}
.service-item .image-2{
	width: 460px;
	height: 300px;
	border-radius: 24px;
	object-fit: cover;
	position: absolute;
	top: 296px;
	right: 376px;
}
.service-item .title{
	margin: 0 0 16px;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	color: var(--Title); 
}
.service-item p{
	margin: 0 0 32px;
}
.service-item ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	color:var(--Title);
	max-width: 450px;
}
.service-item ul li+li{
	margin-top: 24px;
}

.box{
	border-radius: 24px;
	background: var(--banner-form-card);
	box-shadow: 9px 9px 30px 0px rgba(0, 0, 0, 0.25);
	margin: 0 0 40px;
}
.box:last-child{
	margin: 0;
}

.service-first-section .inner{
	height: calc(100vh - 113px);
	min-height: 600px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: relative;
	color: var(--Form);
	background-color: #2A3047;
}
.doctors-first-section .inner{
	/* height: calc(100vh - 113px); */
	height: auto;
	padding: 50px 0;
	/* min-height: 600px; */
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: relative;
	background-color: var(--Bg-card);
}
.doctors-first-section .inner img,
.service-first-section .inner img{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
.doctors-first-section .inner img{
	height: auto;
	top: auto;
	bottom: 0;
}
.doctors-single .doctors-first-section .inner img{
	height: 100%;
}
.doctors-first-section .inner .title,
.service-first-section .inner .title{
	font-family: 'Cambria';
	font-size: 72px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	margin: 0 0 40px;
	max-width: 663px;
}
.doctors-first-section .inner .text,
.service-first-section .inner .text{
	margin: 0 0 40px;
	max-width: 663px;
}
.single-service .breadcrumbs{
	color: var(--Form);
}
.single-service .breadcrumbs a{
	color: var(--Footer);
}
.section-about-service .col:first-child{
	width: 724px;
	font-size: 0;
}
.section-about-service .col:last-child{
	width: 788px;
}
.single-service .section-subtitle{
	margin: 0 0 80px;
}
.section-about-service .col:last-child p{
	position: relative;
	padding: 5px 0 5px 0;
	margin: 0 0 24px;
	/* background-image: url(../img/cristal-blue.svg);
	background-repeat: no-repeat;
	background-position: center left; */
}
.section-about-service li::before {
  content: "";
  background-image: url(../img/cristal-blue.svg);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  left: -50px;
}
.section-about-service li {
  position: relative;
  margin-bottom: 20px;
}
.section-about-service .col ul {
  list-style: none;
  padding-left: 50px;
}
.section-about-service-second .col:first-child{
	width: 715px;
}
.section-about-service-second .col:first-child p{
	margin: 0 0 24px;
}
.section-about-service-second .col:first-child p:last-child{
	margin: 0;
}
.section-about-service-second .col:last-child{
	width: 789px;
	font-size: 0;
}
.section-about-service-second .col:last-child img,
.section-about-service .col:first-child img{
	border-radius: 24px;
}

.section-service-price .box .d-flex{
	padding: 32px;
}

.section-service-price .box .d-flex .col:last-child{
	margin-left: auto;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.section-service-price .price-val{
	font-size: 40px;
	line-height: 52px;
	color: var(--Title);
	text-align: center;
}
.section-service-price .title{
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	margin: 0 0 16px;
	color: var(--Title);
}
.section-service-price p{
	margin: 0 30px 0 0;
}
.section-service-price .box .d-flex img{
	width: 120px;
	min-width: 120px;
	margin-right: 32px;
	align-self: center
}

.specialist-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -16px;
	margin-right: -16px;
	margin-bottom: -32px;
}
.specialist-list .item{
	text-align: center;
	margin: 0 16px 32px;
	width: calc(33.333% - 32px);
	position: relative;
}
.specialist-list .item img{
	display: block;
	border-radius: 24px;
	/* background: var(--Bg-card); */
	margin: 0 auto 24px;
	width: auto;
	height: 500px;
	object-fit: contain;
}
.specialist-list .item .name{
	color: var(--Title);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	margin: 0 0 16px;
}
.specialist-list .item p{
	margin: 0 0 8px;
}
.specialist-list .item a:before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.doctors-first-section .inner .title{
	color: var(--Title); 
}
.doctors-first-section .inner .desc{
	font-weight: bold;
	font-size: 24px;
	margin: 0 0 16px;
}
.section-about-doctor .col:first-child{
	font-size: 0;
	width: 694px;
}
.section-about-doctor .col:first-child img{
	border-radius: 24px;
}
.section-about-doctor .col:last-child{
	width: 786px;
}
.section-about-doctor .col:last-child p{
	margin: 0 0 24px;
}
.section-about-doctor .specs .item:last-child,
.section-about-doctor .col:last-child p:last-child{
	margin-bottom: 0;
}
.section-about-doctor .specs{
	margin-bottom: 40px;
}
.section-about-doctor .specs .item{
	display: flex;
	margin-bottom: 16px;
}
.section-about-doctor .specs .item span:first-child{
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	width: 200px;
	min-width:200px;
}


.diplom-slider .slick-current img{
	margin-right: auto;
	margin-left: auto;
}
.diplom-slider .slick-current+.slick-active img{
	margin-left: auto;
}
.diplom-slider .slick-track {
  display: flex;
}
.diplom-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}


.section-directions .box .d-flex{
	padding: 44px 96px;
}
.section-directions .box .title{
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	color: var(--Title);
}


.section-404{
	padding-top: 80px;
}
.section-404 .section-title{
	margin: 40px 0 40px;
}
.section-404 img{
	width:700px;
}
.page-content{
	margin-top: 56px;
}

.content h1,
.content h2,
.content h3{
	margin: 80px 0 40px;
	line-height: 1.2;
}
.content h1:first-child{
	margin-top: 0;
}
.content ul,
.content ol{
	padding-left: 20px;
}
.content table{
	border: 1px solid var(--Text-body);
}
.content table th,
.content table td{
	border: 1px solid var(--Text-body);
	padding: 5px;
}



.posts-list{
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(3,1fr);
}
.posts-list .empty{
	grid-column: span 3;
	text-align: center;
	opacity: 0.6;
	font-size: 20px;
}
.posts-list .post{
	width: 100%;
}
.posts-list .post img{
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.posts-list .post h3{
	font-size: 36px;
	margin: 15px 0;
}
.posts-list .post p{
	margin: 0;
}

.mob-menu{
	position: fixed;
	width: 100%;
	left: 0;
	top: 76px;
	height: calc(100% - 76px);
	z-index: 22;
	background-color: var(--Bg-card);
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform .5s ease;
	will-change: transform;
}
.mob-menu.open{
	transform: translateX(0);
}
.mob-menu .inner{
	padding: 16px;
}
.mob-menu .inner .btn{
	padding: 0;
	width: 100%;
}
.mob-menu .inner ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.mob-menu .inner > div{
	margin: 72px 0;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.mob-menu .inner>ul>li>a{
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	display: inline-block;
	padding-top: 4px;
	padding-bottom: 4px;
}
.mob-menu .inner ul>li>ul{
	display: none;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	padding-left: 24px;
}
.mob-menu .inner ul>li>ul li+li{
	margin-top: 4px;
}
.mob-menu .inner>ul>li.menu-item-has-children>a{
	position: relative;
	padding-right: 34px;
}
.mob-menu .inner>ul>li.menu-item-has-children>a span{
	display: inline-block;
	width: 30px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/expand-more.svg);
	position: absolute;
	top: 50%;
	margin-top: -16px;
	right: 0;
}
.mob-menu .inner>ul>li.menu-item-has-children>a.active span{
	transform: rotate(180deg);
}
.mob-menu .dropdown{
	top: auto;
	bottom: 100%;
}
.main-contacts .section-form{
	display: none;
}
#upBtn{
	cursor: pointer;
	font-size: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 10;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	bottom: 60px;
	right: 60px;
	background-color: var(--Bg-card);
}
.legal-info{
	gap:24px;
	margin-top: 60px;
}
.legal-info .col{
	font-size: 12px;
	flex: 1 0 0;
	margin: 0 !important;
}
.legal-info .col:last-child{
	flex: 2 0 0;
}
/*------------------------------------*\
    MODAL
\*------------------------------------*/
.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.7);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 992px;
  max-width: 95%;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}
.modal-body {
  background-color: var(--Footer);
  background-image: url(../img/modal-bg.png);
  background-repeat: no-repeat;
  background-position: center left;
  padding: 24px 135px 80px;
  position: relative;
  border-radius: 24px;
}
.modal-body .title{
	font-family: 'Cambria';
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px;
	margin-bottom: 88px;
	text-align: center;
	color: var(--Title);
}
.modal-body .text{
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 100px;
}
#modalThanks .modal-body .text{
	width: 450px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
#modalThanks .modal-box{
	width: 754px;
}
.modal-body .form-wrap{
	width: 406px;
	max-width: 100%;
	margin-left: auto;
}
.modal-body .form-wrap .input-wrap+.input-wrap{
	margin-top: 24px;
}
.modal-body .form-wrap .acceptance{
	margin-bottom: 64px;
}
.modal-body .form-wrap .btn{
	padding: 0 30px;
	width: 100%;
}
/* Close Button */
.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0;
  cursor: pointer;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

.service-first-section{
	overflow: hidden;	
}

.visible-mob{
	display: none;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 50px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 50px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

.wpcf7 form .wpcf7-response-output,
.wpcf7-not-valid-tip{
	display: none;
}
.wpcf7-not-valid{
	outline: 1px solid red;
}
.service-table-style table td:nth-child(2) { width: 12%; text-align: center; }
.s-style-text h2 {font-size:40px; margin: 40px 0 20px;}
.s-style-text h3 {font-size:28px; margin: 40px 0 20px;}
.s-style-text table td {padding:10px;}
.blog-images {float:right; margin-left:20px; width: 35%; border-radius: 25px;}