@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-Bold.eot');
    src: url('../assets/fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-Bold.woff2') format('woff2'),
        url('../assets/fonts/Manrope-Bold.woff') format('woff'),
        url('../assets/fonts/Manrope-Bold.ttf') format('truetype'),
        url('../assets/fonts/Manrope-Bold.svg#../assets/fonts/Manrope-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-ExtraLight.eot');
    src: url('../assets/fonts/Manrope-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-ExtraLight.woff2') format('woff2'),
        url('../assets/fonts/Manrope-ExtraLight.woff') format('woff'),
        url('../assets/fonts/Manrope-ExtraLight.ttf') format('truetype'),
        url('../assets/fonts/Manrope-ExtraLight.svg#../assets/fonts/Manrope-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-ExtraBold.eot');
    src: url('../assets/fonts/Manrope-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-ExtraBold.woff2') format('woff2'),
        url('../assets/fonts/Manrope-ExtraBold.woff') format('woff'),
        url('../assets/fonts/Manrope-ExtraBold.ttf') format('truetype'),
        url('../assets/fonts/Manrope-ExtraBold.svg#../assets/fonts/Manrope-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-Light.eot');
    src: url('../assets/fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-Light.woff2') format('woff2'),
        url('../assets/fonts/Manrope-Light.woff') format('woff'),
        url('../assets/fonts/Manrope-Light.ttf') format('truetype'),
        url('../assets/fonts/Manrope-Light.svg#../assets/fonts/Manrope-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-Medium.eot');
    src: url('../assets/fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-Medium.woff2') format('woff2'),
        url('../assets/fonts/Manrope-Medium.woff') format('woff'),
        url('../assets/fonts/Manrope-Medium.ttf') format('truetype'),
        url('../assets/fonts/Manrope-Medium.svg#../assets/fonts/Manrope-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Manrope';
    src: url('../assets/fonts/Manrope-SemiBold.eot');
    src: url('../assets/fonts/Manrope-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Manrope-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/Manrope-SemiBold.woff') format('woff'),
        url('../assets/fonts/Manrope-SemiBold.ttf') format('truetype'),
        url('../assets/fonts/Manrope-SemiBold.svg#../assets/fonts/Manrope-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


 #preloader {
      position: fixed;
	 max-width: none;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #ffffff; /* Фон preloader'а */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease-out;
    }

    #preloader img {
      width: 200px;
      height: 200px;
      animation: spin 4s linear infinite; /* Вращение 360° бесконечно */
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    /* Скрытие preloader'а */
    .loaded #preloader {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease-out;
    }

    /* Контент сайта */
    body.loaded {
      overflow: visible;
    }

    /* Пример контента */
    body > main {
      display: none;
    }
    .loaded main {
      display: block;
    }
body, html{
	padding: 0;
	margin: 0;
	overflow-x:hidden; 
}
body{
	background:#F2F1EE;	
}
section, div{
	box-sizing: content-box;
	max-width: 1660px;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, a, p, div, ul, li, span{
	font-family: Manrope;
	text-decoration: none;
	color:#5C5C5C;
}
h1{
	color: rgb(9, 154, 141);
	text-transform: uppercase;
	font-weight:500;
	text-align: center;
	
}
/* header{
	background: #024750;
	background-size: cover!important;
	box-sizing: border-box;
	
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	z-index: 30;
	padding: 0 30px;
	align-items: center;
	justify-content: space-between;
	transition-duration: 0.5s;
}
header a{
	text-decoration: none;
	color: white;
} */

header{
	background: #F2F1EE;
	background-size: cover!important;
	box-sizing: border-box;
	
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	z-index: 30;
	
	align-items: center;
	justify-content: space-between;
	transition-duration: 0.5s;
}
header a{
	text-decoration: none;
	color: white;
}
.headerheader{
	    display: flex;
    width: 100%;
    color: #8a8a8a;
    justify-content: space-between;
	align-items: center;
}
.headerheader p{
	 color: #8a8a8a!important;
}
.headerheader a{
	color: #5c5c5c;
}
.menumenu{
	max-width: 100%;
	width: 100%;
	    background: #04968f;
    background-image: -moz-linear-gradient(-90deg, rgb(0, 152, 139) 0, rgb(34, 132, 170) 80%, rgb(68, 111, 200) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(0, 152, 139) 0, rgb(34, 132, 170) 80%, rgb(68, 111, 200) 100%);
	display: flex;
	justify-content: center;
}

.logo{
	align-items: center;
	width: 20%;
	display: flex;
	text-decoration: none;
	gap: 10px;
}
.logo img{
	width: 100%;
	max-width: 80px;
	height: auto;
	object-fit: contain;
}

.logo p:nth-child(1){
	font-size: 15px;
	color: white;
	margin: 0;
	white-space: nowrap;
}
.logo p:nth-child(2){
	font-size: 22px;
	color: white;
	margin: 0;
	white-space: nowrap
}
/* .menu{
	width: 50%;
} */
.menu{
	display: flex;
	gap: 15px;
	margin: 0;

}
.menu ul li{
	list-style: none;
	
}
.menu ul li a{
	display: block;
	padding: 15px 0;
	width: max-content;
	text-transform: uppercase;
}
.sub-menu{
	display: none;
	position: absolute;
	background: #04968f;
    background-image: -moz-linear-gradient(-90deg, rgb(0, 152, 139) 0, rgb(34, 132, 170) 80%, rgb(68, 111, 200) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(0, 152, 139) 0, rgb(34, 132, 170) 80%, rgb(68, 111, 200) 100%);
	top: 50px;
	left: 0;
	padding: 15px;
	list-style: none;
	flex-direction: column;
	gap: 0px;
	z-index: 555;
}
.menu-item{
	position: relative;
}
.menu-item:hover .sub-menu{
	display: flex;
}
.sub-menu{
	width: max-content;
}
.menu-item:hover {
		border-bottom: 1px solid white;
	}
.sub-menu li{
	
	font-size: 14px;
}
.sub-menu li a{
	padding: 5px 0!important;
	display: block!important;
	width: 100%!important;
	font-size: 14px;
}
.sub-menu .menu-item:hover {
		border-bottom: 1px solid white;
	}
.svyaz{
	width: 30%;
	text-align: end;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 30px;
	justify-content: end;
}
.svyaz div:nth-child(2){
	display: flex;
	flex-direction: column;
	color: #5c5c5c;
}
.svyaz div:nth-child(2) a{
	color: #5c5c5c;
}
.svyaz div:nth-child(1){
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
}
.svyaz div:nth-child(1) img{
	max-width: 45px;
	width: 40px;
	height: 40px;
}
/* @media(max-width: 1450px){
	.svyaz div:nth-child(1){
		display: none;
	}
} */
footer{
	background: #018978;
    background-image: -moz-linear-gradient(-40deg, rgb(68, 111, 200) 0, rgb(0, 137, 119) 100%);
    background-image: -webkit-linear-gradient(-40deg, rgb(68, 111, 200) 0, rgb(0, 137, 119) 100%);
	padding: 30px 20px;
}
footer h3{
	color:white;
}
.top_foot{
	max-width: 1660px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.foot_child{
	width: 30%;
	padding: 20px 0;
}
 .foot_child:nth-child(1){
	width: 40%;
	padding: 20px 0;
}
/*.foot_child:nth-child(2){
	width: 35%;
	padding: 20px 0;
}
.foot_child:nth-child(2) h3{
	text-align: center;
} */
.foot_child ul{
	width: 100%;
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
}
.foot_child a{
	color: white;
	text-transform: uppercase;  
}
.foot_child p{
	color: white;
	margin: 0;
}
.foot_menu{
	display: flex;
	gap: 45px;
	
}
.dividerrr{
	box-sizing: border-box;
	height: 1px;
	border: #10C0C6;
	background: #10C0C6;
	margin: 0;
	width: 100%;
}
.bot_foot{
	max-width: 1660px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bot_foot a, .bot_foot p{
	color: white;
	display: block;
}
.form_footer{
	background: url('https://vekzdorovia.ru/wp-content/uploads/2025/11/1763670376-1.png');
	max-width: none;
	padding: 50px 20px;
	margin: 0 auto;
	background-size: cover;
}
.form_footer_child{
	position: relative;
	z-index: 10;
	display: flex;
	max-width: 1660px;
	margin: 0 auto
}
.form_footer_child div{
	
}
.form_footer_child h2{
	color: white;
	font-size: 32px;
}
.form_footer_child p{
	font-size: 20px;
	color: white;
}
.form_footer_child a{
	color: white;
	font-size: 32px;
}
.child_foot{
	width: 50%;
}
.serificate_footer{
	width: 50%;
	position: relative;
	padding: 40px;
}
.serificate_footer img{
	width: 100%;
}
.serificate_footer .swiper-slide{
	transform: scale(0.8)!important;
	transition: 1s;
}
.serificate_footer .swiper-slide-active{
	transform: scale(1)!important;
	transition: 1s;
}
.serificate_footer p{
	color: white;
	font-size: 20px;
}
.breadcumbs{
	margin: 120px auto 0;
	padding: 0 10px;
}
.breadcumbsss{
	margin: 90px auto 0;
	padding: 0 10px;
}
.breadcumbs a{
	color: #5C5C5C;
}
.header-mobile{
		display: none;
	}
.wpcf7-form.init p{
	width: 100%;
}
.wpcf7-form.init input{
	padding: 10px;
    background: transparent;
    border: 1px solid white;
    border-radius: 12px;
    color: white;
    font-size: 16px;
	  font-family: 'Manrope';
	width: 100%;
}
.wpcf7-form.init textarea{
	padding: 10px;
    background: transparent;
    border: 1px solid white;
    border-radius: 12px;
    color: white;
    font-size: 16px;
	  font-family: 'Manrope';
	width: 100%;
}
.wpcf7-form.init textarea::placeholder {
  color: white;
}
.wpcf7-form.init input::placeholder {
  color: white;
}

@media(max-width:1160px){
/* 	header{
		display: none!important;
	} */
	.menumenu{
		display: none;
	}
	.serificate_footer{
		padding: 0;
	}
	.headerheader{
		flex-direction: column;
		margin-bottom: 15px;
	}
	.logo{
		width: 100%;
		justify-content: center;
	}
/* 	.header-mobile{
		display: flex;
		background: #024750;
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	z-index: 30;
	padding: 0 30px;
	align-items: center;
	justify-content: space-between;
	}
	.header-mobile a{
		text-decoration: none;
		color: white;
	}
	.header-mobile .menu img{
		width: 50px;
		height: auto;
	} */
	.header-mobile{
		display: flex;
		background: #018978;
    background-image: -moz-linear-gradient(-40deg, rgb(68, 111, 200) 0, rgb(0, 137, 119) 100%);
    background-image: -webkit-linear-gradient(-40deg, rgb(68, 111, 200) 0, rgb(0, 137, 119) 100%);
	box-sizing: border-box;
	width: 100%;
	display: flex;
	z-index: 30;
	padding: 5px 30px;
	align-items: center;
	justify-content: space-between;
	}
	.header-mobile a{
		text-decoration: none;
		color: white;
	}
	.header-mobile .menu img{
		width: 50px;
		height: auto;
	}
	.black-bkg{
		background: rgba(0,0,0,.4);
		z-index: 40;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		display: none;
	}
	.menu-mobile{
		position: fixed;
		z-index: 50;
		background: #024750;
		left: 0;
		top: 0;
		width: 80vw;
		height: 100vh;
		padding: 50px 10px;
		display: none;
		overflow: auto;
	}
	.menu-mobile ul{
		flex-direction: column;
	}
	.menu-mobile img{
		width: 50px;
		height: auto;
		position: absolute;
		right: 10px;
		top: 10px;
	}
	.menu ul li{
		padding: 5px 0;
	}
	.menu ul li a{
		padding: 0px 0;
		font-size: 20px;
	}
	.sub-menu li a {
		padding: 2px 0 !important;
		display: block !important;
		width: max-content !important;
		font-size: 18px;
	}
	.active{
		display: block;
	}
	.menu{
		width: 10%;
	}
	.svyaz{
		width: 70%;
		text-align: center;
		flex-direction: column;
		gap: 10px;
	}
	.sub-menu{
	display: flex;
	position: static;
	background: #024750;
	top: 50px;
	left: 0;
	padding: 15px;
	list-style: none;
	flex-direction: column;
	gap: 0px;
	}
	.menu-item{
		position: relative;
	}
	.menu-item:hover .sub-menu{
		display: flex;
	}
	
	.sub-menu li{
		padding: 5px 0;
		font-size: 18px;
	}
}
@media(max-width:767px){
	.menu ul li a{
		font-size: 16px;
	}
	.sub-menu li{
		padding: 5px 0;
		font-size: 14px;
	}
	.sub-menu li a {
		padding: 2px 0 !important;
		display: block !important;
		width: min-content !important;
		font-size: 12px;
	}
	.top_foot{
		flex-direction: column;
		gap: 5px;
	}
	.foot_child{
		width: 100%;
	}
	.foot_child:nth-child(1){
	width: 100%;
	
}
.foot_child:nth-child(2){
	width: 100%;
	
}
	.bot_foot{
		flex-direction: column;
	}
}

/* Главная */

.square-animation {
  animation: wipe-enter 2s 1;
}
@keyframes wipe-enter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.video-slider{
	max-width: none;
	
	height: 100vh;
	position: relative;
}
.swiperVideo{
	max-width: none;
	height: 100vh;
}
.swiperVideo .swiper-slide{
	max-width: none;
	height: 100vh;
}
.swiperVideo .swiper-slide .h1{
	font-weight: 600;
	font-size: 40px;
	width: 43vw;
	color: white
}
.swiperVideo .swiper-slide p{
	font-weight: 400;
	font-size: 30px;
	max-width: 45vw;
}
.swiperVideo .swiper-slide video{
	height: 100vh;
	width: 100vw;
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 2;
}

.swiperVideo .swiper-slide .text-video{
	max-width: 1660px;
	margin: 0 auto;
	position: relative;
	z-index: 15;
	padding: 90px 50px;
	color: white;
}

.swiperVideo .swiper-slide .text-video p{
	font-size: 25px;
	color: white;
}
.swiperVideo .swiper-slide .text-video a{
	text-decoration: none;
	color: #caf0f8;
	border: 1px solid #caf0f8;
	padding: 10px 30px;
	border-radius: 10px;
	margin-top: 20px;
	font-size: 25px;
	display: block;
	width: max-content;
}
.swiperVideo .swiper-slide .text-video a:hover{
	background: #caf0f8;
	color: #5C5C5C;
}
.thumbSlider{
	max-width: none;
	position: absolute!important;
	width: 50vw;
	bottom: 10%;
	right: 3%;
	z-index: 20!important;
}
.thumbSlider .swiper-wrapper{
	align-items: end;
}
.swiper-wrapper{
	max-width: none;
}
.thumbSlider .swiper-slide{
	min-height: 300px;
	display: flex;
	flex-direction: column;
	padding: 15px;
	justify-content: space-around;
}
.thumbSlider .swiper-slide:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  z-index: 3;
}
.thumbSlider .swiper-slide p{
	position: relative;
	z-index: 5;
	color: white;
}
.thumbSlider .swiper-slide a{
	color: #caf0f8;
	font-size: 18px;
	position: relative;
	z-index: 5;
}
.thumbSlider .swiper-slide.swiper-slide-thumb-active{
	min-height: 350px;
}
.bkg-video{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(0,0,0,.5);
	max-width:none;
	z-index: 5;
}




.home_about{
	margin: 80px auto;
	padding: 0 20px;
}

.home_about p{
	text-align: center;
	font-size: 22px;
	max-width: 1000px;
	margin: 0px auto;
}

.two_block{
	justify-content: center;
	display: flex;
	gap: 30px;
	margin-top: 30px;
}
.two_block .two_block_child{
	width: 50%;
	min-height: 150px;
	text-align: center;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	background-size: cover;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	position: relative;
}
.two_block .two_block_child:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  z-index: 3;

}
.two_block .h3{
	font-size: 20px;
	font-weight: 700;
}
.two_block p{
	color: white;
	position: relative;
	z-index: 5;
	font-size: 20px;
	font-weight: 700;
}
.two_block p:nth-child(2n){
	font-size: 16px;
	font-weight: 400;
}
.two_block_child div{
	position: relative;
	z-index: 5;
}
.two_block a{
	color: white;
	font-size: 16px;
	text-transform: uppercase;
}
.two_block_child div a{
	border-right: 1px solid white;
	padding: 0 10px;
}
.two_block_child div a:last-child{
	border-right: 0px solid white;
}
.home_about_bot h2{
	text-align: center;
	font-size: 22px;
	font-weight: 600;
}
.home_about_bot p{
	text-align: center;
	font-size: 16px;
	max-width: 1000px;
	margin: 0px auto;
}

.home_about_bot a{
	color: #446fc8;
	text-align: center;
	font-size: 16px;
	display: block;
	margin: 30px auto 0;
}

.green_block{
	max-width: none;
	margin: 0 auto;
	text-align: center;
	color: white;
	background: url('https://vekzdorovia.ru/wp-content/uploads/2025/11/1763670376-1.png');
  	background-size: cover;
	position: relative;
	padding: 40px 10px;
	background-position: bottom;
}
.green_block .backdrop{
	display: none;
	position: absolute;
	object-fit: cover;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index:0;
	filter: blur(5px);
/* 	background: rgba(0,0,0,.3); */
}
.green_block h2{
	position: relative;
	z-index: 5;
	color: white;
}
.swiperPopular{
	max-width: 1660px;
	margin: 0 auto;
	
}
.swiperPopular .swiper-slide{
	height: 450px;
	background-size: cover!important;
	background-position: center!important;
	text-align: start;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	    box-sizing: border-box;
}
.swiperPopular .swiper-slide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  z-index: 3;
}
.swiperPopular .swiper-slide p{
	font-size: 32px;
	position: relative;
	z-index: 4;
	color: white;
}
.swiperPopular .swiper-slide a{
	font-size: 24px;
	color: white;
	position: relative;
	z-index: 4;
}
.gallery{
	margin: 80px auto;
	text-align: center;
	padding: 0 20px;
}
.tekst_nad_uslugami{
    height: 100%;
    width: 80%;
	margin: 0 auto;
    background: white;
    padding: 15px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	text-align: start;
}	
.tekst_nad_uslugami h2{
	text-align: center;
	color: rgb(9, 154, 141);
}
.tekst_nad_uslugami p{
	font-size: 22px;
	text-align: center;
}
.swiperGallery {
	margin-top: 40px;
}
.swiperGallery .swiper-slide{
	max-height: 600px;
}
.swiperGallery .swiper-slide:nth-child(2n){
	margin-top: 80px;
	text-align: center;
}
.swiperGallery .swiper-slide:nth-child(2n) img{
	width: 90%;
	
}
.swiperGallery .swiper-slide img{
	width: 100%;
	object-fit: contain;
}

.doctors-slider{
	margin: 80px auto;
	text-align: center;
	padding: 0 20px;
}
.swiperTeam{
	padding-bottom: 30px;
}
.swiperTeam .swiper-slide{
	max-height: 700px;
	background: white;
	height: auto;
	margin-bottom: 30px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.divider{
	margin: 20px auto;
	display: flex;
	text-align: center;
	width: 100%;
	max-width: 300px;
}
.swiperTeam .swiper-slide img{
	object-fit: cover;
	object-position: top;
	width: 100%;
	height: 500px;
}
.swiperTeam .swiper-slide a{
	text-align: start;
	text-decoration: none;
	color: #5C5C5C;
}
.swiperTeam .swiper-slide p{
	text-align: center;
}
.card_doctors{
	padding: 20px;
}
@media(max-width: 1160px){
	.swiperVideo .swiper-slide .text-video{
		padding: 100px 50px;
	}
}
@media(max-width: 767px){
	.tekst_nad_uslugami{
    height: 100%;
		width: 100%;
	}
	.tekst_nad_uslugami p{
		font-size: 16px;
	}
	.video-slider, .swiperVideo, .swiperVideo .swiper-slide, .swiperVideo .swiper-slide video{
		height: 700px;
	}
	.thumbSlider{
		width: 100%;
		left: 10px;
		right: auto;
	}
	.swiperVideo .swiper-slide .text-video p{
	font-size: 17px;
	color: white;
}
	.thumbSlider .swiper-slide{
		min-height: 150px;
	}
	.thumbSlider .swiper-slide.swiper-slide-thumb-active{
		min-height: 170px;
	}
	.swiperVideo .swiper-slide .text-video{
		padding: 100px 25px;
	}
	.swiperVideo .swiper-slide .h1{
		font-size: 25px;
	}
	.swiperVideo .swiper-slide p{
		font-size: 18px;
		max-width: none;
	}
	.swiperVideo .swiper-slide .text-video a{
		font-size: 16px;
	}
	.home_about{
		padding: 0 10px;
	}
	.home_about p{
		font-size: 18px;
	}
	.two_block{
		flex-direction: column;
	}
	.two_block .two_block_child{
		width: 100%;
	}
	.home_about_bot h2{
		font-size: 18px;
	}
	.home_about_bot p{
		font-size: 16px;
	}
	.swiperPopular .swiper-slide{
		height: 350px;
	}
	.swiperPopular .swiper-slide p{
		font-size: 25px;
	}
	.swiperPopular .swiper-slide a{
		font-size: 20px;
	}
	.gallery{
		padding: 0 10px;
	}
	.doctors-slider{
		padding: 0 10px;
	}
	.swiperTeam .swiper-slide img{
		height: 250px;
	}
	.thumbSlider .swiper-slide p{
		font-size: 12px;
	}
	.two_block_child{
		width: 100%;
	}
	.form_footer{
	background: url('https://vekzdorovia.ru/wp-content/uploads/2025/11/1763670376-1.png');
	max-width: none;
	padding: 20px;
	margin: 0 auto;
	background-size: cover;
}
.form_footer_child{
	flex-direction: column;
}
.form_footer_child div{
	width: 100%;
}
.form_footer_child h2{
	color: white;
	font-size: 25px;
}
.form_footer_child p{
	font-size: 16px;
	color: white;
}
.form_footer_child a{
	color: white;
	font-size: 22px;
}
}



/* Single doctor */

.doctor_single{
	display: flex;
	margin: 50px auto;
	gap: 40px;
	padding: 0 20px;
	position: relative;
}
.img_doct{
	width: 50%;
	top: 30px;
	height: fit-content;
	position: sticky;
}
.img_doct img{
	width: 100%;
	
}
.doct_info{
	width: 50%;
}
.doct_info h1{
	color: rgb(2, 71, 80);
}
.doct_info a{
	color: #446fc8;
}
.mobilka.h1{
	display: none;
}
.price-btn{
	border: 1px solid #00988b;
	padding: 10px 25px;
	border-radius: 8px;
	font-size: 20px;
	color: #00988b;
	display: block;
	text-align: center;
    align-items: center;
    width: max-content;
    box-sizing: border-box;
	margin: 30px auto;
}
.price-btn:hover{
	color: white;
	background: #00988b;
}
.price-btn.hover{
		color: white;
	background: #00988b;
}
@media(max-width: 767px){
	.price-btn{
		    padding: 10px 15px;
	}
	.breadcumbs{
	margin: 30px auto 0;
	padding: 0 10px;
}
	
	.breadcumbsss{
		margin: 0;
		padding: 0 10px;
	}
	.doctor_single{
		flex-direction: column;
		padding: 0 10px;
		margin: 10px auto;
	}
	.doct_info, .img_doct{
		width: 100%;
		position: relative;
		top: 0;
	}
	.doct_info h1{
		font-size: 25px;
		display: none;
	}
	.mobilka.h1{
		display: block;
		font-size: 25px;
		color: rgb(2, 71, 80);
	}
}


/* Single Service */

.single_service{
	min-height: 70vh;
	background-size: cover!important;
	background-position: center!important;
	background-repeat: no-repeat;
	max-width: none;
	backdrop-filter: blur(10px);
}
.single_service::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: center cover no-repeat;
	backdrop-filter: blur(10px); /* блюр фона */
	-webkit-backdrop-filter: blur(10px);
	z-index: 1;
}

/* Затемнение поверх размытого фона */
.single_service::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3); /* затемнение */
	z-index: 3;
}
.single_service_fon{
	height: 100%;
	background-size: contain!important;
	background-repeat: no-repeat!important;
	background-position: center!important;
	width: 100vw;
	min-height: 70vh;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: end;
	position: relative;
	margin: 0 auto;
	z-index: 4;
	max-width: none;
	
}
.back_black{
	 background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	min-height: 70vh;
	width: 100vw;
	max-width: none;
}

.serv_info{
	position: relative;
	z-index: 15;
}
.serv_info h1{
	color: white;
}
.servic_cont{
	margin: 0 auto 40px;
	padding: 0 20px;
}
.servic_cont p{
	font-size: 20px;
}
.servic_cont p a{
	color: #446fc8;
}
.price_block{
	background: rgb(2, 71, 80, 0.5);
	display: flex;
	
	gap: 15px;
	padding: 40px 20px 20px;
	border-radius: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}
.text_nad_price{
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translatex(-50%);
	color: white;
	width:100%;
}
.czena_single{
	align-items: center;
	color: white;
	display: flex;
	gap: 5px;
}
.czena_single p{
	color: white;
}
@media(max-width: 767px){
	.price_block{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
/* 		bottom: -100px; */
		gap: 0px;
	}
	.single_service{
/* 		padding-top: 50px; */
	}
	.servic_cont{
		margin-top: 30px;
		padding: 0 10px;
	}
	.servic_cont p{
	font-size: 16px;
}
	.serv_info h1{
	font-size: 25px;
}
}

/* Contacts */

.contacts{
	margin: 50px auto;
	display: flex;
	gap: 40px;
	padding: 0 20px;
}
.contacts .dannie{
	width: 50%;
}
.contacts .map{

	width: 50%;
}
.contacts div{
	margin-top: 30px;
}
.contacts .dannie img{
	width: 40px;
	height: auto;
}
.contacts .dannie .cont a{
	font-size: 32px;
}
.contacts .messeng{
	display: flex;
	gap: 20px;
}
.contacts .messeng img{
	width: 160px;
	height: auto;
}
.vazno_cont{
	background: white;
	padding: 15px;
	text-align: center;
}
.contacts a{
	text-decoration: none;
}
.contacts h3{
	color: #024750;
}
@media(max-width:767px){
	.contacts{
		padding: 0 20px;
		flex-direction: column;
	}
	.contacts .dannie{
	width: 100%;
}
	.contacts .dannie .cont a{
	font-size: 24px;
}
.contacts .map{
	width: 100%;
}
	.messeng{
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Архив услуг */
.uslugi-sect{
	margin: 50px auto;
	padding: 0 20px;
}

.grid-uslugi{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
}
.usluga-card img{
	object-position: top;
	width: 100%;
	height: 500px;
	object-fit: cover;
}


.uslugi-sect .usluga-card{
	max-height: 700px;
	background: white;
	height: auto;
	margin-bottom: 30px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.usluga-card.page_usluga img{
	object-position: top;
	width: 100%;
	height: 330px;
	object-fit: cover;
}
.usluga-card.page_usluga{
		max-height: 600px;
	background: white;
	height: auto;
	margin-bottom: 30px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.uslugi-sect .usluga-card a{
	text-align: start;
	text-decoration: none;
	color: #5C5C5C;
}
.uslugi-sect .usluga-card p{
	text-align: center;
}
.little-card_usluga{
	padding: 20px;
}

@media(max-width:767px){
	.usluga-card img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}
	.usluga-card.page_usluga img{
		height: 150px;
	}
	.uslugi-sect{
	margin: 50px auto;
	padding: 0 10px;
}
	.grid-uslugi{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
}


/* Прайс лист */

.accordion {
  max-width: 1200px;
  margin: 40px auto;
/*   background: white; */
  border-radius: 8px;
  overflow: hidden;
/*   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.accordion-item {
/*   border-bottom: 1px solid #ddd; */
	border-radius: 8px;
	border: 1px solid #024750;
	margin: 30px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.accordion-header {
	position: relative;
	height: 60px;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
	z-index: 5;
}
.name_btn{
	position: absolute;
	font-weight: 600;
	left: 50px;
	top: -20px;
	background: #F2F1EE;
	padding: 10px;
	font-size: 20px;
}
/* .accordion-header:hover {
  background-color: #e9e9e9;
} */

.accordion-header .icon {
 
  width: 20px;
	height: 20px;
  text-align: center;
	position: absolute;
	right: 30px;
	top: -20px;
	background: #F2F1EE;
	padding: 12px;
  background-image: url('https://vekzdorovia.ru/wp-content/uploads/2025/11/plus-1.png');
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
	border-radius: 100px;
}

/* Повёрнутая стрелка вверх */
.accordion-header.active .icon {
  transform: rotate(-405deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 20px;
	position: relative;
	top: -40px;
	font-size: 18px;
	
	
}

.accordion-body p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  line-height: 1.5;
	
}

.price_table{
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.table_stroka{
	display: flex;
	margin-bottom: 8px;
	border-bottom: 1px solid #5C5C5C;
}
.table_name{
	width: 70%;
}
.table_cena{
	width: 15%;
}
.table_cena_lgot{
	width: 15%;
}
.price_table .table_stroka:nth-child(1){
	border-bottom: 1px solid #024750;
	margin-bottom: 15px;
}

@media(max-width:767px){
	.accordion-body {
		font-size: 14px;
		padding: 0 10px;
		top: 0px;
	}
	.name_btn{
		left: 10px;
		font-size: 16px;
	}
	.accordion-header .icon {
  		width: 12px;
		height: 12px;
	}
	.price_table{
		padding: 10px;
	}
	.table_name{
	width: 60%;
	}
	.table_cena{
		width: 20%;
	}
	.table_cena_lgot{
		width: 20%;
	}
}


/* Отзывы */

.grid-otzivi{
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
}
.otzivi-card{
	padding: 10px;
	width: 30%;
	text-align: center;
	background: white;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.otzivi-card img{
	height: 400px;
	width: auto;
	object-fit: contain;
	
}
.otzivi-card a{
	text-decoration: underline;
	color: #5C5C5C;
}
.yan_otzivi{
	margin-top: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
}

@media(max-width: 767px){
	.grid-otzivi{
		flex-wrap: wrap;
	}
	.otzivi-card{
		width: 45%;
	}
	.otzivi-card img{
		height: auto;
		width: 100%;
	}
}

/* Сингл отзывы */

.otzivi_single{
	margin: 20px auto;
	
}
.masonry_otz{
	column-count: 3;
    column-gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.single_otz_block{
	break-inside: avoid;
    margin-bottom: 16px;
    display: block;
	background: white;
	padding: 10px;
	border-radius: 5px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	height: auto;
	  box-sizing: border-box;
}
.otz_name{
	font-size: 22px;
	font-weight: 600;
}
.otz_text{
	font-size: 16px;
}
/* Адаптивность */
@media (max-width: 768px) {
    .masonry_otz {
        column-count: 2;
    }
	.otz_name{
	font-size: 18px;
	font-weight: 600;
}
.otz_text{
	font-size: 14px;
}
}

@media (max-width: 480px) {
    .masonry_otz {
        column-count: 1;
    }
}
/* Правила посещения */
.pravila{
	text-align: center;
	margin: 20px auto;
	padding: 0 20px;
}
.pravila_child{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	align-items: stretch;
}
.pravila_block_big{
	height: 100%;
	width: calc( 100% - 60px);
	background: white;
	padding: 15px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.pravila_block_small{
	height: auto;
	width: calc( 33% - 40px);
	background: white;
	padding: 15px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
@media(max-width: 767px){
	.pravila{
		padding: 0 10px;
	}
	.pravila h1{
		font-size: 25px;
	}
	.pravila_child{
		gap: 20px;
		flex-direction: column;
	}
	.pravila_block_small{
		width: 100%;
	}
	.pravila_block_big{
		width: 100%;
	}
}


/* Лицензии */
.licenzii{
	text-align: center;
	margin: 20px auto;
	padding: 0 20px;
}

.licenzii_child{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 30px;
	justify-content: center;
	align-items: stretch;
}
.card_licenz{
	height: auto;
	width: calc( 33% - 40px);
	background: white;
	padding: 25px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.card_licenz a{
	display: block;
	width: auto;
	height: auto;
}
.card_licenz img{
	max-width: 400px;
	width: 100%;
	max-height: 600px;
	height: 100%;
	object-fit: cover;
}
@media(max-width: 767px){
	.licenzii h1{
		font-size: 25px;
	}
	.licenzii{ padding: 0 10px;}
	.licenzii_child{gap: 15px;}
	.card_licenz{width: 100%; padding: 10px;}
}



/* Галерея */

.video{
	text-align: center;
	margin: 20px auto;
	padding: 0 20px;
}

.video_child{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 30px;
	justify-content: center;
	align-items: stretch;
}
.card_video{
	max-height: 450px;
	width: calc( 50% - 15px);
	background: white;
	padding: 25px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.card_video video{
	max-height: 400px;
	object-fit: cover;
	width: auto;
    max-width: 100%;
}


@media(max-width: 767px){
	.video h1{
		font-size: 25px;
	}
	.video{ padding: 0 10px;}
	.card_video video{
	max-width: 300px;
	object-fit: cover;
}
	.video_child{gap: 15px;}
	.card_video{width: 100%; padding: 10px;}
}



/* Архив публикаций */
.publicate-sect{
	margin: 50px auto;
	padding: 0 20px;
}

.grid-publicate{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}


.publicate-sect .publicate-card{
	
	background: white;
	height: auto;
	margin-bottom: 30px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.publicate-sect .publicate-card a{
	text-align: start;
	text-decoration: none;
	color: #5C5C5C;
}
.publicate-sect .publicate-card p{
	text-align: start;
}
.little-card_publicate{
	padding: 20px;
}
.little-card_publicate .publ_title{
	font-weight: 700;
	font-size: 22px;
}
.little-card_publicate .publ_excert{
	font-size: 18px;
}
.little-card_publicate .podrobnee{
	display: block;
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	text-align: end !important;
}

@media(max-width:767px){
	
	.publicate-sect{
	margin: 50px auto;
	padding: 0 10px;
}
	.grid-publicate{
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
	.little-card_publicate .publ_title{
	font-weight: 700;
	font-size: 18px;
}
.little-card_publicate .publ_excert{
	font-size: 14px;
}
.little-card_publicate .podrobnee{
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	text-align: end !important;
}
}



/* Сингл Публикации */

.single_publicate{
	max-width: 1660px;
	margin: 30px auto;
	padding: 0 20px;
}
@media(max-width: 767px){
	.single_publicate{
	margin: 10px auto;
	padding: 0 10px;
}
}