:root{
	font-size: 10px;
}

body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-size: 1.6rem;
	font-family: 'Roboto', sans-serif;
}

.scroll{
	overflow: hidden;
}

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

a, button, input, select, textarea{
	transition: .2s linear;
	font-size: 1.6rem;
	font-family: 'Roboto', sans-serif;
}

a{
	text-decoration: none;
	color: #000;
}

ul{
	margin: 0;
	padding: 0;
}

li{
	list-style-type: none;
}

h1, h2, h3, h4, h5, h5, p{
	margin: 0;
	font-weight: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
	appearance: none;
}

.button, .input{
	border: none;
	cursor: pointer;
	background: none;
	outline: none;
}

.input{
	cursor: text;
}

.input::placeholder{
	color: #101010;
}

.input:focus::placeholder{
	opacity: 0;	
}

.container{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

/* Шапка */
.header{
	padding: 1.5rem 0 0 0;
	border-bottom: 1px solid #e7e7e7;
}

.header__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.header__top{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__phone, .header__location, .header__work{
	display: flex;
	align-items: center;
}

.header__phone{
	justify-content: flex-end;
}

.header__phone:hover{
	color: #e33232;
}

.header__phone--icon, .header__location--icon, .header__work--icon{
	margin-right: 0.5rem;
	width: 19px;
}

.header__wrapper{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 250px;
}

.header__location, .header__work{
	font-weight: 600;
}

.header__work{
	margin-top: 1rem;
	color: #e33232;
}

.header__logo{
	font-weight: 700;
	font-size: 2rem;
}

.header__buttons{
	display: flex;
	align-items: center;
}

.header__button{
	padding: 1rem 1.5rem;
	border-radius: 7px;
	background: #e33232;
	color: #fff;
	margin-right: 1.5rem;
}

.header__button:hover{
	background: #bb2121;
}

.header__bottom{
	width: 100%;
	margin-top: 1.5rem;
	border-top: 1px solid #e7e7e7;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__bottom li a{
	padding: 1.5rem 0;
	display: inline-block;
}

.header__bottom li{
	position: relative;
}

.header__bottom li a:hover{
	color: #e33232;
}

.header__bottom li:hover .sub-menu{
	opacity: 1;
	pointer-events: all;
}

.header__bottom .sub-menu{
	width: 250px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.5rem;
	background: #fff;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: .3s ease-in-out;
	border-radius: 8px;
	border: 1px solid #e33232;
    margin-top: 0;
}

.header__bottom li:last-child .sub-menu{
	left: auto;
	right: 0;
	transform: translateX(0);
}

.header__bottom li:first-child .sub-menu{
	left: 0;
	transform: translateX(0);
}

.sub-menu li{
	margin-top: 1rem;
}

.sub-menu li a{
	font-size: 1.4rem;
	padding: 0;
}

.sub-menu li:first-child{
	margin-top: 0;
}

.header__phone--mobile{
    display: none;
}

/* Главный блок */
.main{
	padding: 4rem 0;
	min-height: 450px;
	position: relative;
	display: flex;
	align-items: center;
}

.main__video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
	filter: blur(5px);
}

.main__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main__img--inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 575px;
}

.main__img{
	width: 100%;
}

.main__button{
	color: #e33232;
	background: #fff;
	padding: 1.5rem 5rem;
	border-radius: 7px;
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 700;
}

.main__button:hover{
	background: #e33232;
	color: #fff;
}

.main__time{
	font-weight: 700;
	color: #e33232;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	border: 3px solid #e33232;
	position: absolute;
	top: 30px;
	left: 50px;
	background: #fff;
}

/* Услуги */
.point{
	padding: 4rem 0;
	background: #fff5f5;
}

.point__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.point__title{
	color: #101010;
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	margin-top: 3rem;
}

.point__title:first-child{
	margin-top: 0;
}

.point__content{
	width: 100%;
	display: grid;
	grid-gap: 20px;
	margin-top: 3rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.point__item{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 2rem 1.5rem;
	border-radius: 8px;
	background: #fff;
}

.point__img--inner{
	display: flex;
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
}

.point__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	transition: .2s ease-in-out;
}

.point__item:hover .point__img{
	transform: scale(1.1);
}

.point__item--title{
	width: 100%;
	text-align: center;
	margin-top: 1rem;
	font-size: 1.8rem;
	font-weight: 600;
}

.point__item--title:first-child{
	margin-top: 0;
}

.point__item--text{
	width: 100%;
	text-align: center;
	margin-top: .5rem;
    height: 40px;
    overflow-y: hidden;
}

.point__img--icon--inner{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.point__img--icon{
	max-width: 65%;
	max-height: 65%;
}

/* Преимущества */
.adv{
	padding: 4rem 0;
	background: #fff5f5;
}

.adv__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.adv__content{
	width: 100%;
	margin-top: 3rem;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.adv__item{
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 8px;
	transition: .3s ease-in-out;
}

.adv__item--num{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #e33232;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
}

.adv__item--title{
	font-weight: 600;
	font-size: 1.8rem;
}

.adv__item--text{
	margin-top: 0.5rem;
}

/* Price */
.price{
	padding: 4rem 0;
}

.price__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.price__content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 3rem;
	border: 2px solid #fff5f5;
	border-radius: 8px;
	box-shadow: 0 0 20px #fff5f5;
}

.price__item{
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 2px solid #fff5f5;
}

.price__item:first-child{
	border-radius: 8px 8px 0 0;
}

.price__item:last-child{
	border-radius: 0 0 8px 8px;
	border-bottom: none;
}

.price__item.titles{
	background: #fff5f5;
}

.price__item--title{
	width: 85%;
	font-weight: 500;
}

.price__item--text{
	width: 15%;
}

.price__item--way, .price__item--sanitar, .price__item--doctor, .price__item--text, .price__item--title{
	padding: 2rem 1.5rem;
}

.price__item--way{
	width: 60%;
}

.price__item--sanitar{
	width: 15%;
}

.price__item--doctor{
	width: 25%;
}

/* Call */
.call__content{
	width: 100%;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

.call__item{
	position: relative;
	padding-left: 1.5rem;
}

.call__item:before{
	content: "";
	display: block;
	width: 8px;
	height: 2px;
	background: #e33232;
	position: absolute;
	top: 9px;
	left: 0;
}

/* Подвал */
.footer{
	padding: 3rem 0;
	background: #1c1c1c;
}

.footer__inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__copy{
	color: #fff;
	font-size: 1.4rem;
}

/* Модалка */
.modal{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(0,0,0,.5);
    overflow-x: hidden;
    overflow-y: auto;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: .3s ease-in-out;
}

.modal.active{
	opacity: 1;
	pointer-events: all;
}

.modal__inner{
	width: 100%;
	max-width: 500px;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
	display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content{
	width: 100%;
	padding: 2rem;
	border-radius: 8px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	transition: .3s ease-in-out;
	transform: scale(0);
}

.modal.active .modal__content{
	transform: scale(1);
}

.modal__title{
	font-weight: 700;
	font-size: 2rem;
}

.modal__wrapper{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal__cross{
	cursor: pointer;
	width: 20px;
}

.modal__box{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 4rem;
}

.modal__input--inner{
	width: 100%;
	margin-top: 2rem;
}

.modal__input--inner:first-child{
	margin-top: 0;
}

.modal__input{
	width: 100%;
}

.modal__input{
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	padding: 1.3rem 2rem;
}

.modal__input:focus{
	border: 1px solid #e33232;
}

.modal__button{
	background: #e33232;
	color: #fff;
	width: 100%;
	text-align: center;
	margin-top: 2rem;
	padding: 1.3rem 2rem;
	border-radius: 8px;
}

.modal__button:hover{
	background: #c42929;
}

/* Single */
.single{
	padding: 4rem 0;
}

.single__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.single__wrapper{
	width: 100%;
	display: flex;
	align-items: flex-start;
	margin-top: 2rem;
}

.single__img--inner{
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-shrink: 0;
	margin-right: 2rem;
}

.single__img{
	width: 100%;
}

.single__text{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.single__text ul{
	padding-left: 40px;
    margin: 10px 0;
}

.single__text p, .single__text h2, .single__text h3, .single__text h4, .single__text h5, .single__text h6{
	margin: 10px 0;
}

.single__text h2:first-child{
	margin-top: 0;
}

.single__text li{
	list-style-type: unset;
}

.city__title{
	margin-bottom: 2rem;
}

.footer__nav{
	width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer__nav li{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
}

.footer__nav li a{
	color: #fff;
    font-weight: 700;
}

.sub-menu{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.sub-menu li{
	width: 100%;
    margin-top: .5rem;
    padding-right: 0;
}

.sub-menu li a{
	font-weight: 400;
}

.sub-menu li:first-child{
	margin-top: 0;
}

/* Reccomended */
.rec__content{
	width: 100%;
	margin-top: 3rem;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.rec__item{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.5rem 1.5rem 3rem 1.5rem;
}

.rec__item--title{
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-size: 2rem;
}

.rec__item--text{
	margin-top: 0.7rem;
	text-align: center;
	width: 100%;
}

/* Отзывы */
.review__content{
	width: 100%;
	margin-top: 3rem;
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

.review__item{
	padding: 1.5rem;
	border-radius: 8px;
	border: 2px solid #e33232;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0rem 1rem;
}

.review__item.review__item:first-child{
	margin-top: 0;
}

.review__item--name{
	font-weight: 600;
	font-size: 1.8rem;
}

.review__item--text{
	margin-top: 1rem;
}

/* Фотогалерея */
.photo__content{
	width: 100%;
	margin-top: 3rem;
}

.photo__item{
	display: flex;
	margin: 0rem 1rem;
	height: 180px!important;
}

.photo__item--img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo__arrows, .photo__arrows2{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
}

.photo__arrow{
	padding: 0.7rem 1.5rem;
	border-radius: 8px;
	color: #e33232;
	background: #fff;
	border: 1px solid #e33232;
	margin-right: 1rem;
}

.photo__arrow:last-child{
	margin-right: 0;
}

.photo__arrow:hover{
	background: #e33232;
	color: #fff;
}

/* Форма */
.form{
	padding: 3rem 0;
}

.form__inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	border-radius: 10px;
	background: #fff5f5;
	padding: 3rem;
}

.form__title{
	font-weight: 700;
	font-size: 3rem;
}

.form__text{
	font-size: 1.8rem;
	margin-top: 1.5rem;
}

.form__inputs{
	width: 100%;
	display: flex;
	margin-top: 3rem;
}

.form__input--inner{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 350px;
	margin-right: 3rem;
}

.form__input--inner:last-child{
	margin-right: 0;
}

.form__input--text{
	font-weight: 600;
}

.form__input{
	margin-top: 1rem;
	width: 100%;
	padding: 1.2rem 2rem;
	border-radius: 7px;
	background: #fff;
	color: #000;
}

.agree{
	font-size: 1.4rem;
	margin-top: 2rem;
}

.form__button{
	margin-top: 2rem;
	padding: 1.3rem 3rem;
	border-radius: 7px;
	color: #fff;
	background: #e33232;
}

.form__button:hover{
	background: #bb2121;
}

.form__img{
	position: absolute;
	bottom: 0;
	right: 0;
	max-height: 110%;
}

.menu{
	display: none;
	cursor: pointer;
}

/* Модальное меню */
.modal__menu{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	padding: 2rem;
	overflow-y: auto;
	background: #fff;
	opacity: 0;
	transform: translateX(-110%);
	transition: .3s ease-in-out;
}

.modal__menu.active{
	opacity: 1;
	transform: translateX(0%);
}

.modal__menu--content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.modal__cross--inner{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.modal__cross{
	width: 20px;
}

.modal__menu--nav{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 1rem;
}

.modal__menu--nav li{
	margin-top: 1.5rem;
}

.modal__menu--nav li:first-child{
	margin-top: 0;
}

.modal__menu--nav .sub-menu li{
	margin-top: 0.5rem;
	padding-left: 1.5rem;
}

/* Частые вопросы */
.faq__content{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
}

.faq__item{
    width: 100%;
	padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #e33232;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

.faq__item:first-child{
	margin-top: 0;
}

.faq__item--question{
	font-size: 1.8rem;
    font-weight: 600;
}

.faq__item--text{
	margin-top: 1rem;
}

/* Дисклеймер */
.dis{
	padding: 3rem 0;
}

.dis__inner{
	width: 100%;
    background: #fff8f8;
    border-left: 2px solid #ff1313;
    padding: 2rem 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dis__title{
	text-transform: uppercase;
    color: #f23f3f;
    font-size: 1.8rem;
}

.dis__text{
	margin-top: .5rem;
}

.links__inner{
    width: 100%;
	margin-top: 3rem;
    padding: 2rem;
    background: #E9F5EF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.links__title{
	margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.links__inner p:nth-child(2){
	margin-bottom: 1rem;
}

.doctor__content{
    width: 100%;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    max-width: 280px;
    background: #fff8f8;
}

.doctor__img--inner{
	width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor__img{
	max-width: 100%;
    max-height: 100%;
}

.doctor__text{
	width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.doctor__text.bold{
	font-weight: 500;
}

/* Блок доктора */
.doctor__block{
	padding: 1.5rem 0;
}

.doctor__block--inner{
	width: 100%;
    display: flex;
    position: relative;
    border-radius: 10px;
}

.doctor__block--bg{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    border-radius: 10px;
}

.doctor__block--content{
	padding: 30px 50px 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
}

.doctor__block--content--box{
	width: 100%;
    display: flex;
    align-items: center;
}

.doctor__block--content--text{
	margin-left: 5rem;
    font-size: 2rem;
    max-width: 220px;
    color: #002856;
}

.doctor__block--content--subtext{
	margin-left: 4rem;
    color: #F1832C;
    font-size: 2.6rem;
    font-weight: 700;
}

.doctor__block--form{
	background: #FFF;
    border-radius: 0px 10px 10px 40px;
    width: 100%;
    max-width: 330px;
    flex-shrink: 0;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.doctor__block--form--phone{
	font-weight: 700;
    font-size: 2.2rem;
    color: #002856;
}

.doctor__block--form--more{
	background: #F1842C;
    padding: 1.4rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    color: #fff;
    font-size: 1.6rem;
    width: 100%;
    justify-content: center;
}

.doctor__block--form--more--arrow{
	margin-left: .7rem;
}

.doctor__block--form--wrapper{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.5rem;
}

.doctor__block--form--item{
	width: 100%;
    margin-top: 1.3rem;
    display: flex;
    align-items: flex-start;
}

.doctor__block--form--item:first-child{
	margin-top: 0;
}

.doctor__block--form--item--icon{
	flex-shrink: 0;
    margin-right: .8rem;
    position: relative;
    top: 4px;
}

.doctor__block--form--item--box{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.doctor__block--form--item--title{
	color: rgba(0, 40, 86, 1);
    font-weight: 700;
    font-size: 1.8rem;
}

.doctor__block--form--item--text{
	margin-top: .5rem;
    color: rgba(141, 161, 185, 1);
    font-size: 1.4rem;
}

.doctor__block--content--tags{
	width: 100%;
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 4px;
}

.doctor__block--content--tag{
	font-size: 1.4rem;
    color: #002856;
    padding: .8rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.doctor__block--link{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.whatsapp__wrap {
	margin-top: 40px;
	display: flex;
	/* justify-content: center;  vas_dev*/
	justify-content: space-between;
	width: 100%;
}
.oferta-text {
	max-width: 25%;
	p {
		color: #fff;
		font-size: 14px;
		line-height: 1.1;
		margin-bottom: 15px;
	}

	a {
		color: #e33232;
		font-size: 14px;
		line-height: 1.1;
		text-decoration: underline;
	}
}
.empty {
	max-width: 25%;
}

.agree_wrapp {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 20px;
	label {
		font-size: 12px;
		a {
			font-size: 11px;
			text-decoration: underline;
			color: #e33232;
		}
	}
}

@media(max-width:991.98px){
	.whatsapp__wrap {
		flex-direction: column;
		row-gap: 20px;
	}
	.oferta-text {
	max-width: 100%;
	p {
		color: #fff;
		font-size: 14px;
		line-height: 1.1;
	}
}
.empty {
	max-width: 100%;
}
}

.whatsapp__link {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 20px;
  background: #F2F9F0;
  border: 1px solid #BADEAC;
  border-radius: 5px;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #5A5656;
  gap: 10px;
}

.whatsapp__link:hover {
  background: #e33232;
  border-color: #e33232;
  color: #fff;
}

/* Терапевт на дом */
.template{
	width: 100%;
    padding: 5rem 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
}

.template:before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .7);
    z-index: 0;
}

.template__bg{
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.template__inner{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.template__list{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.seo{
	width: 100%;
    padding: 3rem 0;
    background: #fff5f5;
}

.seo__more{
	font-size: 16px;
    display: inline-block;
    margin-top: 12px;
}

.seo__hide:not(.active){
	position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      border: 0;
      padding: 0;

      white-space: nowrap;

      clip-path: inset(100%);
      clip: rect(0 0 0 0);
      overflow: hidden;
}

.seo__hide.active{
	width: 100%;
}

.service__item, .doctor__link{
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7px 15px;
    border-radius: 6px;
    color: #fff;
    background: #e33232;
}

.service__item:hover, .doctor__link:hover{
	background: #bc1b1b;
}

.adv__item--img--inner{
	width: 40px;
    display: flex;
    margin-bottom: 10px;
}

.adv__item--img{
	width: 100%;
}

/* Адаптив */
@media(max-width: 1260px){
	.container{
		max-width: 1180px;
	}
}
@media(max-width: 1200px){
	.container{
		max-width: 978px;
	}

	.header__top{
		flex-wrap: wrap;
	}

	.header__buttons{
		margin-top: 1.5rem;
	}
    
    .doctor__block--content{
    	padding: 20px;
    }
}
@media(max-width: 998px){
	.container{
		max-width: 748px;
	}

	.point__title{
		font-size: 2.5rem;
	}

	.price__item--way{
		width: 40%;
	}

	.price__item--sanitar{
		width: 25%;
	}

	.price__item--doctor{
		width: 35%;
	}

	.header__bottom li a{
		font-size: 1.4rem;
	}

	.form__img{
		display: none;
	}

	.single__wrapper{
		flex-direction: column;
		align-items: flex-start;
	}

	.single__img--inner{
		margin: 0rem 0rem 2rem 0;
	}
    
    .doctor__block--inner{
    	flex-direction: column;
        align-items: flex-start;
    }
    
    .doctor__block--form{
    	border-radius: 10px;
        max-width: 100%;
    }
    
    .doctor__block--form--more{
    	width: auto;
    }
    
    .doctor__block--content--tags{
    	max-width: 450px;
    }
}
@media(max-width: 768px){
	.container{
		max-width: 460px;
	}

	.price__item--title{
		width: 75%;
		font-size: 1.6rem;
	}

	.price__item--text{
		width: 25%;
	}

	.header{
		padding: 1rem 0;
	}

	.header__inner{
		flex-direction: column;
	}

	.header__wrapper{
		max-width: 100%;
		align-items: center;
	}

	.header__logo, .header__phone{
		margin-top: 1rem;
	}

	.header__phone{
		max-width: 100%;
		justify-content: center;
	}

	.modal__inner{
		max-width: 90%;
	}

	.point__title{
		font-size: 2.3rem;
	}

	.adv__content{
		grid-gap: 10px;
	}

	.call__content{
		margin-top: 2rem;
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}

	.review__content{
		grid-template-columns: 1fr;
	}

	.price__content--wrap .price__item{
		flex-direction: column;
		align-items: center;
	}

	.price__item--way, .price__item--sanitar, .price__item--doctor{
		width: 100%;
		padding: 1rem;
	}

	.header__bottom, .header__buttons, .header__wrapper{
		display: none;
	}

	.header__logo{
		margin-top: 0;
	}

	.form__inputs{
		flex-direction: column;
		align-items: flex-start;
	}

	.form__title{
		font-size: 2.3rem;
	}

	.form__input--inner{
		margin: 0rem 0rem 1.5rem 0;
	}

	.form__input--inner:last-child{
		margin: 0;
	}

	.menu{
		display: block;
	}

	.modal__button{
		margin-top: 1rem;
	}

	.modal__menu--buttons{
		width: 100%;
		max-width: 50%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 1.5rem;
	}

	.header__location{
		margin-top: 2rem;
	}

	.main{
		align-items: flex-end;
	}
    
    .faq__item--question{
    	font-size: 1.6rem;
    }
    
    .faq__item--text{
    	font-size: 1.4rem;
    }
    
    .header__phone--mobile{
    	display: flex;
    }
    
    .doctor__block--bg{
    	object-position: left;
    }
    
    .doctor__block--content--box{
    	flex-direction: column;
        align-items: flex-start;
    }
    
    .doctor__block--content--text, .doctor__block--content--subtext{
    	margin: 1rem 0 0 0;
    }
}
@media(max-width: 480px){
	.container{
		max-width: 300px;
	}

	.main__time{
		width: 70px;
		height: 70px;
		font-size: 2.3rem;
		top: 15px;
		left: 20px;
	}

	.main__button{
		bottom: 15px;
		padding: 1.2rem 3rem;
		font-size: 1.8rem;
		border: 2px solid #e33232;
	}

	.modal__title{
		font-size: 1.8rem;
	}

	.price__item--title, .price__item--text, .price__item--way, .price__item--sanitar, .price__item--doctor{
		padding: 1rem;
		font-size: 1.4rem;
	}

	.price__item--title{
		width: 70%;
	}

	.price__item--text{
		width: 30%;
	}

	.rec__content{
		grid-template-columns: 1fr;
	}

	.point__title{
		font-size: 2.1rem;
	}

	.rec__item--title{
		font-size: 1.8rem;
	}

	.rec__item--text{
		font-size: 1.4rem;
	}

	.review__item{
		padding: 1rem;
	}

	.review__item--name{
		font-size: 1.6rem;
	}

	.review__item--text{
		font-size: 1.4rem;
	}

	.form__inner{
		padding: 1.5rem 2rem;
	}

	.form__title{
		font-size: 2.1rem;
	}

	.form__text, .form__input--text{
		font-size: 1.4rem;
	}

	.agree{
		font-size: 1.2rem;
	}

	.form__button{
		width: 100%;
	}

	.header__logo{
		font-size: 1.6rem;
	}

	.modal__menu--buttons{
		max-width: 100%;
	}

	.main{
		min-height: 300px;
	}
    
    .footer__nav li{
    	width: 100%;
        margin-top: 2.5rem;
    }
    
    .sub-menu li{
    	margin-top: .5rem;
    }
    
    .footer__nav li:first-child{
    	margin-top: 0;
    }
    
    .doctor__content{
    	max-width: 100%;
    }
}

.single__text a {
	text-decoration: underline;
	color: -webkit-link;
}

.specialist__content{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.specialist__item{
	width: calc(100% / 5 - 60px / 5);
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media(max-width: 1200px){
    .specialist__item{
		width: calc(100% / 3 - 30px / 3);
	}
}

@media(max-width: 998px){
    .specialist__item{
		width: calc(100% / 2 - 15px / 2);
	}
}

@media(max-width: 768px){
    .specialist__item{
		width: 100%;
	}
}


.gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.card-hover:hover { transform: translateY(-5px); transition: all 0.3s ease; }
.medical-blue { color: #e33232; }
.medical-green { color: #059669; }
.section-padding { padding: 80px 0; }
.text-sm {
font-size: 1.4rem;
 line-height: 2rem;
}
.text-lg {
  font-size: 1.6rem;
  line-height: 2rem;
}
.text-xl {
font-size: 2.25rem;
line-height: 2.75rem;
}
.text-2xl {
font-size: 2.1rem;
line-height: 2.4rem;
}
.max-w-4xl {
	max-width: 86rem;
}

#content-s {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;

  white-space: nowrap;

  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}