body {
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	color: #000;
	background: #fff;
	font-size: 16px;
}

ul, li{
	display: block;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 30px;
	line-height: 116%;
}

p {
	padding: 0;
	margin: 0;
	line-height: 116%;
}

button {
	border: none;
	background: none;
	cursor: pointer;
}

a {
	display: block;
}

a:active, a:focus, button:active, button:focus {
	outline: none;
}

/*----------------------------------------ХЕАДЕР----------------------------------------*/
.header {
	position: relative;
	background: rgba(62, 88, 136, 1);
	color: #fff;
	padding: 25px 0;
	z-index: 5;
}

.logo {
	position: absolute;
	width: 270px;
	height: 90px;
	left: 50%;
	top: 50%;
	margin-left: -135px;
}

.info-item {
	font-size: 14px;
	margin-right: 20px;
}

.info-item p {
	margin-left: 10px;
}

.info__right {
	justify-content: flex-end;
}

.info__right .info-item:last-child {
	margin-right: 0;
}

.reserve {
	display: block;
	width: 220px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid #FFF;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(58, 235, 224, 0.6);
	color: #FFFFFF;
	text-shadow: 0px 0px 10px rgba(58, 235, 224, 0.6);
	text-decoration: none;
	transition: 0.5s;
	margin: 20px 0;
	font-size: 14px;
	margin-left: auto;
}

.reserve p {
	margin-left: 5px;
}

.reserve:hover {
	text-decoration: none;
	border: 1px solid #FFFFFF;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.9);
	border-radius: 5px;
	color: #FFFFFF;
	transition: 0.5s;
}

.menu-item {
	margin-right: 25px;
}

.menu-item a {
	position: relative;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: 0.5s;
}

.menu-item .fa-chevron-down {
	width: 12px;
	margin-left: 5px;
}

/*--------------------ЛИНИИЯ ПРИ НАВЕДЕНИЕ--------------------*/
.menu-item a:after {
	display: block;
	position: absolute;
	content: "";
	left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
	width: 0;/*задаём длинну линии до наведения курсора*/
	height: 2px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #fff; /*задаём цвет линии*/
	transition: width 0.5s ease-out; /*задаём время анимации*/
	margin-top: -1px;
}

.menu-item a:hover:after, .menu-item a:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}

.menu-item.active a:after {
	display: block;
	position: absolute;
	content: "";
	width: 100%;
	height: 2px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #fff;
	margin-top: -1px;
}

.menu__right {
	justify-content: flex-end;
}

.menu__right .menu-item:last-child {
	margin-right: 0;
}

/*--------------------ВЫПАДАЮЩЕЕ МЕНЮ--------------------*/
.menu-item__down {
	align-items: center;
}

.dropdown {
	cursor: pointer;
}

.dropdown-content__pre {
	position: absolute;
	display: none;
}

.dropdown-content {
	position: relative;
	border-radius: 5px;
	width: auto;
	margin-top: 6px;
	padding: 15px;
	z-index: 7;
	background: rgba(62, 88, 136, 1);
	box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.25);
}

.dropdown-content.two {
	width: 125px;
}

.dropdown-content a {
	display: block;
	font-size: 13px;
	color: #fff;
	text-decoration: none;
	transition: 1s;
	margin-bottom: 10px;
	width: auto;
}

.dropdown-content a:last-child {
	margin-bottom: 0;
}

.dropdown-content a:hover {
	transition: 1s;
	text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
}

.dropdown:hover .dropdown-content a:after, .menu-item.active .dropdown-content a:after, .dropdown-content a:after {
	display: none;
}

.menu-item.active.arrow-down .fa-chevron-down {
	transform: rotate(180deg);
}

.dropdown:hover .dropdown-content__pre {
	display: block;
}

.dropdown:hover .fa-chevron-down {
	transform: rotate(180deg);
}

.dropdown:hover a:after {
	display: block;
	position: absolute;
	content: "";
	width: 100%;
	height: 2px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #fff;
	margin-top: -1px;
}


/*----------------------------------------БЛОК СО СЛАЙДЕРОМ----------------------------------------*/
.slider-block {
	position: relative;
	z-index: 2;
}

h1 {
	font-size: 48px;
	color: #fff;
	width: 900px;
	text-align: center;
	margin: 0 auto;
	margin-top: 100px;
}

.play {
	display: block;
	width: 80px;
	height: 80px;
	border: 4px #1CB2CE solid;
	border-radius: 50%;
	align-items: center;
	padding-left: 26px;
	color: #1CB2CE;
	font-size: 32px;
	margin: 0 auto;
	margin-top: 35px;
}

.play:hover {
	text-decoration: none;
	color: #1CB2CE;
}

.slider-block .arrow-down {
	display: block;
	margin: 0 auto;
	width: 31px;
	height: 15px;
	margin-top: 335px;
	margin-bottom: 25px;
}

.slider-block .arrow-down img {
	display: block;
	width: 100%;
	height: 100%;
}

.slider-big {
	position: absolute;
	width: 100%;
	z-index: -1;
}

.slider-big__one {
	height: 755px;
	position: relative;
	overflow: hidden;
}

.slider-big__one img {
	position: relative;
    width: 100%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
   	filter: brightness(65%);
}

.slider-big .slick-arrow {
	display: block;
	position: absolute;
	cursor: pointer;
	top: 0; 
	bottom: auto;
	padding: 0;
	background: none;
	margin-top: 342.5px;
	z-index: 5;
	left: 50%;
}

.slider-big .slick-arrow img {
	height: 70px;
}

.slider-big .slick-prev {
	margin-left: -635px;
}

.slider-big .slick-next {
	margin-left: 600px;
	transform: rotate(180deg);
}

.slider-big .slick-dots {
	position: absolute;
	display: flex;
	justify-content: center;
	left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
    margin-top: -65px;
}

.slider-big .slick-dots li {
	background: none;
	border: none;
	display: block;
	content: '';
	text-indent: -9999px;
	width: 15px;
	height: 15px;
	background: none;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	margin: 0 5px;
}

.slider-big .slick-dots li.slick-active {
	background: #FFF;
}

.box-modal.box-modal__video {
	width: 1170px;
	height: 658px;
	padding: 0;
	background: none;
	position: relative;
	overflow: hidden;
}

.box-modal.box-modal__video .box-modal_close {
	margin-top: 0;
	margin-left: 1175px;
}

/*----------------------------------------О КОМПАНИИ----------------------------------------*/
.about {
	padding: 100px 0;
}

h2 {
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	margin-bottom: 35px;
}

.no-one {
	margin-bottom: 0;
}

.title-after {
	font-weight: 300;
	font-size: 22px;
	letter-spacing: 0.09em;
	text-transform: uppercase; 
	text-align: center;
	margin-top: 5px;
}

.about .foto {
	position: absolute;
	width: 670px;
	height: 470px;
	border-radius: 5px;
	margin-top: 67.5px;
	right: 0;
}

.text-block {
	width: 670px;
	background: rgba(185, 231, 241, 0.34);
	border-radius: 5px;
	padding: 70px 0 70px 35px;
	line-height: 130%;
	margin-top: 35px;
}

.text-block .one {
	width: 370px;
	margin-bottom: 15px;
}

.text-block .one.right {
	margin-left: 65px;
}

.text-block .two {
	font-style: italic;
	font-weight: 300;
}

.text-block .two span {
	font-style: normal;
	font-weight: 500;
}

.text-block .license {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.61);
	margin-top: 10px;
} 

.about-one {
	margin-top: 35px;
}

.about-one img {
	display: block;
	width: 60px;
	margin: 0 auto;
}

.about-one p {
	text-align: center;
	margin-top: 15px;
}

/*----------------------------------------СПЕЦИАЛИСТЫ---------------------------------------*/
.specialists {
	padding: 50px 0;
	background: #E7F7FA;
}

.specialist__one {
	text-align: center;
	margin-top: 30px;
}

.specialist__one .photo {
	position: relative;
	overflow: hidden;
	width: 135px;
	height: 135px;
	border: 3px solid #1CB2CE;
	border-radius: 50%;
	margin: 0 auto;
}

.specialist__one img {
	display: block;
	height: 100%;
	position: relative;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.specialist__one img.widht {
	height: auto;
	width: 100%;
}

.specialist__one .name {
	font-weight: bold;
	font-size: 20px;
	margin-top: 10px;
}

.specialist__one .text {
	margin-top: 10px;
}

.gallery {
	padding: 100px 0;
}

.gallery .foto {
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
}

.gallery .one {
	height: 240px;
}

.gallery .two {
	height: 510px;
}

.gallery img {
	display: block;
	height: 105%;
	position: relative;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}


/*----------------------------------------ДИПЛОМЫ----------------------------------------*/
.awards {
	padding-bottom: 150px;
}

.slick-arrow {
	display: block;
	position: absolute;
	cursor: pointer;
	padding: 0;
	background: none;
	z-index: 2;
	top: auto;
	bottom: 0;
	margin-bottom: -2.5px;
}

.slick-arrow img {
	height: 15px;
}

.slick-prev {
	left: 0;
	margin-left: 10px;
}

.slick-next {
	right: 0;
	margin-right: 10px;
	transform: rotate(180deg);
}

.slick-dots {
	display: flex;
	justify-content: center;
	margin: 0 auto;
    margin-top: 22.5px;
    z-index: 2;
}

.slick-dots li {
	background: none;
	border: none;
	display: block;
	content: '';
	text-indent: -9999px;
	width: 10px;
	height: 10px;
	background: #D3F8FF;
	border-radius: 1px;
	margin: 0 5px;
}

.slick-dots li.slick-active {
	background: #1CB2CE;
}

.slick-slide:active, 
.slick-slide:focus, 
.slick-dots li button:active, 
.slick-dots li button:focus {
	outline: none;
}

.awards-one .diplom {
	width: 370px;
	height: 254px;
	position: relative;
	border-radius: 5px;
	margin: 0 auto;
	overflow: hidden;
}

.awards-one img {
	display: block;
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}



/*----------------------------------------ВОПРОСЫ----------------------------------------*/
.question {
	background: #E7F7FA;
	padding: 50px 0;
}

.question p {
	font-size: 30px;
	text-align: center;
	margin-bottom: 35px;
}

.form {
	width: 970px;
	margin: 0 auto;
	justify-content: space-between;
}

.form__input {
	display: block;
	background: #fff;
	border: none;
	border-radius: 5px;
	width: 270px;
	height: 65px;
	padding-left: 25px;
	font-size: 18px;
}

.form-item {
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.form-label {
	position: absolute;
	pointer-events: none;
	font-size: 16px;
	color: #AFAFAF;
	left: 25px;
	top: 23.5px;
	white-space: nowrap;
	overflow: hidden;
	line-height: 18px;
	transition: .3s;
}

.form__input:focus~.form-label,
.form__input:not(:focus):valid~.form-label {
	top: 5px;
	font-size: 10px;
}

.form__input:active, .form__input:focus {
	outline: none;
}

.form button {
	width: 370px;
	height: 65px;
	background: #6B90EF;
	border-radius: 5px;
	font-size: 20px;
	color: #fff;
	transition: 1s;
}

.form button:hover {
	transition: 1s;
	background: #007bff;
}

/*----------------------------------------ОТЗЫВЫ----------------------------------------*/
.reviews {
	padding-top: 100px;
}

.title-after.no-one {
	width: 690px;
	letter-spacing: 0em;
	text-transform: none;
	margin: 0 auto;
	margin-top: 5px; 
}

.reviews .title-after {
	width: 690px;
}

.reviews-slider {
	position: relative;
	width: 1170px;
	margin: 0 auto;
	margin-top: 35px;
}

.reviews-one {
	width: 565px;
	background: #E7F7FA;
	border-radius: 5px;
	padding: 25px;
	position: relative;
	margin: 0 auto;
}
.reviews-one .reviews__photo {
	width: 70px;
	height: 70px;
	background: #fff;
	border: 3px solid #1CB2CE;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.reviews-one .reviews__info {
	margin-left: 10px;
	margin-top: 10px;
}

.reviews-one .name {
	font-weight: 500;
}

.reviews-one .location {
	font-weight: 300;
	font-size: 12px;
	margin-top: 3px;
}

.reviews-one .text {
	margin-top: 15px;
}

.reviews-one .dots {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 25px;
	margin-right: 25px;
	opacity: 0.6;
}

.but {
    background: #6B90EF;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 65px;
    transition: 1s;
}

.but:hover {
	text-decoration: none;
    color: #fff;
    transition: 1s;
	background: #007bff;
}

.reviews .but {
	width: 270px;
    margin-top: 65px;
}

/*----------------------------------------КОНТАКТЫ----------------------------------------*/
.contact {
	padding: 100px 0;
}

.contact .title-after {
    letter-spacing: 0.09em;
}

.way-one {
	margin-top: 35px;
}

.transport {
	width: 75px;
}

.way__info {
	margin-left: 10px;
}

.way__info .way__name {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
}

.way__info .way__nfo {
	margin-top: 5px;
	line-height: 130%;
}

.way__info .way__nfo span {
	font-weight: 500;
}

.way__info ul {
	margin-left: 10px;
}

.way__info li .dots {
	display: block;
	width: 4px;
	height: 4px;
	background: #000;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 7px;
}

.way__info li p {
	margin-left: 10px;
}

.contact .title-after.two {
	margin: 35px 0;
}

.contact .contacts-one {
	color: #1CB2CE;
	font-size: 35px;
	align-items: center;
	margin-top: 35px;
}

.contact .contacts-one:first-child {
	margin-top: 27.5px;
}

.contact .contacts-one .fa-map-marker-alt {
	width: 35px;
}

.contact .contacts-one p {
	color: #000;
	font-weight: 500;
	font-size: 20px;
	margin-left: 15px;
}

.map iframe {
	width: 100%;
	height: 300px;
	box-shadow: 0px 0px 10px 4px #E7F7FA;
	border-radius: 5px;
}

.contact .social p {
	font-size: 22px;
	line-height: 130%;
	letter-spacing: 0.09em;
	transform: rotate(90deg);
	margin-top: 68px;
    margin-left: -25px;
}

.contact .social .line {
	width: 2px;
	height: 35px;
	background: #000;
	border-radius: 50px;
	margin-left: 22px;
	margin-top: 20px;
}

.contact .social a {
	width: 45px;
	height: 45px;
	background: #6B90EF;
	color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	border-radius: 12px;
	margin-top: 15px;
    transition: 1s;
}

.social a:hover {
	text-decoration: none;
    color: #fff;
    transition: 1s;
	background: #007bff;
}

/*----------------------------------------ФУТТЕР----------------------------------------*/
.footer {
	background: #3E5888;
	padding: 40px 0;
}

.footer img {
	width: 170px;
}

.footer .social {
	margin-top: 25px;
	align-items: center;
}

.footer .social p {
	line-height: 130%;
	letter-spacing: 0.09em;
	color: #fff;
}

.footer .social .line {
	width: 30px;
	height: 2px;
	border-radius: 50px;
	background: #fff;
	margin-left: 10px;
}

.footer .social a {
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	background: #D3F8FF;
	border-radius: 5px;
	color: #3E5888;
	margin-left: 10px;
	transition: 1s;
}

.footer .social a:hover {
	text-decoration: none;
	color: #3E5888;
	background: #fff;
	transition: 1s;
}


.footer .menu {
	margin-top: 15px;
}

.footer .menu.three {
	margin-left: -26px;
}

.footer .menu-item {
	margin-bottom: 10px;
}

.footer .menu-item a:after {
	display: none;
}

.footer .contacts-one {
	font-size: 15px;
	align-items: center;
	color: #fff;
	margin-top: 15px;
}

.footer .contacts-one p {
	font-size: 14px;
	margin-left: 5px;
}

.footer .contacts-one .fa-map-marker-alt {
	width: 15px;
}

.footer-text {
	font-size: 12px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 35px;
}

/*-------------------------------------------------------------------------------------*/
/*--------------------------------------ЛЕЧЕБНИЦА--------------------------------------*/
/*-------------------------------------------------------------------------------------*/

/*----------------------------------------ПОСЛЕ ХЕДЕРА----------------------------------------*/
.after-header {
	background: url('../img/lechebnica/big-photo.png');
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 375px;
}

.after-header p {
	font-weight: 300;
	font-size: 22px;
	letter-spacing: 0.09em;
	color: #fff;
	text-align: center;
}

.after-header h1 {
	margin-top: 20px;
}

.dignity {
	width: 100%;
	height: 250px;
	background: rgba(91, 123, 237, 0.28);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	border-radius: 5px;
	padding: 25px 15px 0 40px;
	color: #fff;
	margin-top: -200px;
}

.dignity.two {
	margin-top: -220px;
}

.dignity__number {
	justify-content: space-between;
}

.dignity img {
	display: block;
	height: 55px;
	margin-top: 5px;
}

.dignity__number p {
	font-weight: bold;
	font-size: 64px;
	line-height: 45px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.1);
}

.dignity .title {
	font-weight: 500;
	font-size: 16px;
	margin-top: 20px;
}

.dignity .line {
	width: 100px;
	height: 1px;
	background: #fff;
	border-radius: 50px;
	margin: 5px 0;
}

.dignity .text {
	font-weight: 300;
	font-size: 14px;
}

/*----------------------------------------ЛЕЧЕНИЕ----------------------------------------*/
.treatment {
	padding-top: 100px;
}

.treatment .title-after {
    width: 725px;
}

.treatment-card {
	background: #E7F7FA;
	padding: 35px 0;
	margin-top: 35px;
}

.treatment-card .one {
	width: 100%;
	height: 375px;
	background: #FFFFFF;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	margin: 15px 0;
}

.treatment-card .one img {
	display: block;
	height: 225px;
	margin: 0 auto;
}

.treatment-card .one p {
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	height: 46px;
}

.treatment-card .one .but {
	width: 230px;
	height: 55px;
	margin-top: 20px;
}

.special-card {
	position: relative;
	width: 815px;
	background: rgba(231, 247, 250, 0.8);
	border: 1px solid #1CB2CE;
	box-sizing: border-box;
	backdrop-filter: blur(4px);
	border-radius: 5px;
	overflow: hidden;
	margin: 100px auto;
}

.special-card img {
	position: absolute;
	z-index: -1;
}

.special-card .lotus {
	width: 255px;
	margin-top: 100px;
	margin-left: 100px;
}

.special-card .man {
	height: 305px;
	right: 0;
	margin-right: -35px;
}

.special-card p {
	width: 355px;
	text-align: center;
	font-size: 20px;
	margin-left: 35px;
}

.special-card .title {
	font-weight: bold;
	margin-top: 60px;
	margin-bottom: 35px;
}

.special-card .text {
	margin-top: 15px;
}

.special-card .form {
	margin-top: 95px;
	width: 750px;
	margin-bottom: 35px;
}

.special-card .form__input {
	width: 230px;
}

.special-card .form button {
	width: 230px;
}

/*----------------------------------------ВРАЧИ----------------------------------------*/
.doctor {
	background: #E7F7FA;
	padding: 50px 0;
}

.doctor .title-after {
    width: 625px;
}

.doctor .specialist__one {
	margin-top: 35px;
}

.doctor .specialist__one .text {
	width: 220px;
	margin: 0 auto;
	margin-top: 10px;
}

.doctor .specialist__one .text span {
	font-weight: 500;
}

.doctor .but {
	width: 230px;
	margin: 0 auto;
	margin-top: 15px;
}

/*----------------------------------------Реабилитация----------------------------------------*/
.rehabilitation {
	padding: 100px 0;
}

.rehabilitation h2 {
	width: 750px;
	margin: 0 auto;
}

.rehabilitation .title-after {
    width: 725px;
}

.slider {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.rehabilitation .slider {
	margin-top: 20px;
}

.rehabilitation .spa-one {
	position: relative;
	margin: 15px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
	padding-bottom: 25px;
}

.rehabilitation .spa-one .photo {
	position: relative;
	width: 100%;
	height: 265px;
	border-radius: 5px;
	overflow: hidden;
}

.rehabilitation .spa-one img {
	position: absolute;
	height: 100%;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.rehabilitation .text__info {
	position: relative;
}

.rehabilitation .spa-one .name {
	position: relative;
	padding: 0 20px;
	margin-top: 20px;
}

.rehabilitation .spa-one .title {
	font-weight: bold;
	font-size: 20px;
	width: 270px;
}

.rehabilitation .spa-one .cost {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 500;
	font-size: 20px;
	color: #1CB2CE;
	margin-top: 23.19px;
	margin-right: 20px;
}

.rehabilitation .spa-one .info {
	padding: 0 20px;
	margin-top: 15px;
}

.rehabilitation .spa-one .info span {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 5px;
}

.rehabilitation .spa-one .but {
	width: 175px;
	height: 45px;
	font-size: 16px;
	margin-top: 20px;
}

.rehabilitation .spa-one .line {
	position: absolute;
	width: 3px;
	background: #6B90EF;
	border-radius: 100px;
	right: 0;
	height: 100%;
}

.rehabilitation .slider .slick-prev {
	margin-left: 15px;
}

.rehabilitation .slider .slick-next {
	margin-right: 15px;
}

/*----------------------------------------ПЛАТФОРМА----------------------------------------*/
.platform {
	padding: 100px 0;
}

.platform h2 {
	width: 900px;
	margin: 0 auto;
}

.platform-info {
	margin-top: 35px;
	color: #fff;
}

.platform-info__one {
	background: #3E5888;
	border-radius: 5px 0px 0px 0px;
	padding: 35px 50px;
}

.platform-info__one.two {
	width: 500px;
	margin-left: -30px;
	border-radius: 0px 0px 5px 0px;
}

.platform-info .title {
	font-weight: bold;
	font-size: 20px;
	width: 470px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 15px;
}

.platform-info .list-name {
	font-weight: 300;
	font-size: 22px;
	text-align: center;
}

.platform-info li {
	margin-top: 15px;
}

.platform-info li div {
	height: 45px;
	width: 45px;
}

.platform-info li img {
	height: 100%;
}

.platform-info li p {
	margin-left: 10px;
}

.platform-info .img-one {
	position: relative;
	height: 336.89px;
	margin-left: -30px;
	border-radius: 0px 5px 0px 0px;
	overflow: hidden;
}

.platform-info .img-one img {
	position: absolute;
	height: 100%;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.platform-info .img-one.two {
	height: 406.16px;
	border-radius: 0px 0px 0px 5px;
	margin: 0;
}

/*----------------------------------------ФОРМА 2----------------------------------------*/
.treatment.two {
	padding: 0;
}

.treatment.two .special-card {
	overflow: visible;
	margin: 0 auto;
}

.treatment.two .special-card .man {
	margin-right: -225px;
}

.treatment.two .title {
	width: 410px;
	margin-bottom: 0;
}

.treatment.two .text {
	margin-top: 25px;
}

.treatment.two .text.bold {
	font-weight: 500;
	margin-top: 15px;
}

/*----------------------------------------ПРОГРАММЫ----------------------------------------*/
.but.choise {
	width: 300px;
	margin-top: 67.5px;
}

/*----------------------------------------ВЫ НЕ ИЗ ОДЕССА----------------------------------------*/
.live-odessa .slider-room {
	margin-top: 35px;
}

.slider-room {
	display: none;
	position: relative;
}

.slider-room#corps-one {
	display: block;
}

.slider-room .room-one {
	position: relative;
}

.slider-room .slick-track {
	width: 100%;
}

.slider-room .photo {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
}

.slider-room .photo img {
	position: relative;
	display: block;
	width: 100%;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    filter: brightness(60%);
}

.slider-room .info {
	position: absolute;
	z-index: 1;
	width: 1170px;
	left: 50%;
	margin-left: -585px;
	margin-top: 60px;
	color: #fff;
}

.slider-room .info .text {
	width: 600px;
	margin-top: 20px;
	font-weight: bold;
	font-size: 20px;
	line-height: 26px;
}

.slider-room .info .text:first-child {
	width: 370px;
	margin-top: 0;
}

.slider-room .click {
	margin-top: 30px;
}

.slider-room .reserve {
	margin: 0;
	box-shadow: none;
}

.slider-room .reserve:first-child {
	border: none;
	background: #6B90EF;
	color: #E7F7FA;
}

.slider-room .reserve.view {
	width: 130px;
	margin-left: 20px;
}

.slider-room .reserve.view:hover {
	border: none;
	background: #6B90EF;
	color: #E7F7FA;
}

.slider-room .slick-arrow {
	width: 35px;
	height: 35px;
	background: #3E5888;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	left: 50%;
}

.slider-room .slick-arrow img {
	width: 9px;
}

.slider-room .slick-prev {
	margin-left: 515px;
}

.slider-room .slick-next {
	margin-right: 0px;
	margin-left: 550px;
}

.type-room {
	background: #E7F7FA;
}

.type-room a {
	color: #000000;
	font-weight: bold;
	font-size: 20px;
	transition: 1s;
	justify-content: center;
	align-items: center;
	height: 80px;
}

.type-room a:hover {
	transition: 1s;
	text-decoration: none;
	color: #fff;
	background: #3E5888;
}

.type-room a.active {
	color: #fff;
	background: #3E5888;
}

.question.lech {
	margin: 100px 0;
}

/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓==============СМЕНА СЛАЙДЕРОВ НОМЕРОВ==============↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.box-modal.info__treatment {
	width: 730px;
	padding: 30px;
	background: #FFFFFF;
}

.box-modal.info__treatment h2 {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
}

.box-modal.info__treatment .choise__info  a {
	position: relative;
	color: #000;
	font-weight: 300;
	font-size: 18px;
	text-decoration: none;
	transition: 0.5s;
	margin-right: 10px;
	margin-bottom: 15px;
}

.box-modal.info__treatment .choise__info  a:after {
	display: block;
	position: absolute;
	content: "";
	left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
	width: 0;/*задаём длинну линии до наведения курсора*/
	height: 1px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #000; /*задаём цвет линии*/
	transition: width 0.5s ease-out; /*задаём время анимации*/
	margin-top: -4px;
}

.box-modal.info__treatment .choise__info  a:hover:after, .box-modal.info__treatment .choise__info  a:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}

.box-modal.info__treatment .choise__info a.active {
	font-weight: normal;
	font-size: 18px;
}

.box-modal.info__treatment .choise__info a.active:after {
	display: block;
	position: absolute;
	content: "";
	width: 100%;
	height: 2px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #000;
	margin-top: -4px;
}

.box-modal.info__treatment .all-info {
	justify-content: space-between;
}

.box-modal.info__treatment .text {
	width: 420px;
}

.box-modal.info__treatment .box-modal_close {
	margin-top: -30px;
	margin-left: 705px;
}

.box-modal.info__treatment .all-info img.icon {
    display: block;
    flex-shrink: 0;
    height: 225px;
}

.box-modal.info__treatment .all-info .indication {
	margin-top: 0;
}

.box-modal.info__treatment .all-info .indication li:first-child {
	margin-top: 0;
}

.box-modal.info__treatment .all-info .indication li p span {
	font-weight: 500;
}

.box-modal.info__treatment .all-info .indication .dots {
	display: block;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑==============СМЕНА СЛАЙДЕРОВ НОМЕРОВ==============↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/

/*------------------------------------------------------------------------------------*/
/*--------------------------------------ПРОГРАММА-------------------------------------*/
/*------------------------------------------------------------------------------------*/

/*----------------------------------------ПОСЛЕ ХЕДЕРА----------------------------------------*/
.after-header.program {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/program/big-photo.png');
	background-size: cover;
	padding-bottom: 200px;
}

.after-header.program h1 {
	width: 880px;
	font-size: 40px;
	margin-top: 0;
}

.after-header.program p {
	width: 755px;
	margin-top: 15px;
}

.after-header.program .arrow-down {
    display: block;
    margin: 0 auto;
    width: 31px;
    height: 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.after-header.program .arrow-down img {
    display: block;
    width: 100%;
    height: 100%;
}

.rehabilitation.list-program {
	padding: 0;
	margin-top: -60px;
}

.list-program .spa-one {
	margin: 0;
	margin-bottom: 50px;
}

.rehabilitation .spa-one:hover {
	cursor: pointer;
}

.rehabilitation .spa-one:hover .reserved {
	opacity:1;
	transition: 1s;
}

.rehabilitation .reserved {
	top: 0;
	opacity:0;
	position: absolute;
	width: 100%;
	height: 265px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 5px;
	padding-top: 200px;
	transition: 1s;
}

.rehabilitation .reserved a {
	width: 155px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	margin: 0 auto;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.rehabilitation .reserved a:hover {
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.9);
	text-decoration: none;
	color: #fff;
}

/*------------------------------------------------------------------------------------*/
/*--------------------------------------ПРОГРАММА-------------------------------------*/
/*------------------------------------------------------------------------------------*/
.after-header.one-program {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/program/big-photo.png');
	background-size: cover;
	background-position: bottom;
	padding-bottom: 200px;
}

.about-program {
	padding: 0;
	margin-top: -60px;
}

.rehabilitation.about-program .spa-one {
	margin: 0;
}

.about-program .spa-one a.down {
	padding-left: 20px;
	align-items: center;
	color: rgba(0, 0, 0, 0.6);
	margin-top: 10px;
}

.about-program .spa-one a.down:hover {
	color: rgba(0, 0, 0,1);
}

.about-program .spa-one .down img {
	display: block;
	width: 16px;
	height: 8px;
	position: relative;
	top: 0;
	left: 0;
	margin-right: 0;
	transform: translate(0%, 0%);
	margin-left: 5px;
}

.about-program .spa-one .down img.up {
	transform: rotate(180deg);
}

.about-program .spa-one .down:hover {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.6);
}

.spa-one .amount-days {
	padding-left: 20px;
	align-items: center;
	margin-top: 15px;
}

.spa-one .day-one {
	margin-right: 15px;
}

.spa-one .circle {
	width: 22px;
	height: 22px;
	border: 2px solid #1CB2CE;
	opacity: 0.5;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}

.spa-one .circle-one {
	width: 10px;
	height: 10px;
	background: #1CB2CE;
	border-radius: 50%;
}

.spa-one .circle.active {
	opacity: 1;
}

.spa-one .day-one p {
	margin-left: 5px;
}

.spa-one .price {
	padding-left: 20px;
	font-weight: bold;
	font-size: 30px;
	color: #1CB2CE;
	margin-top: 15px;
}

.spa-one .program-block {
	display: none;
}

.spa-one .program-block .title {
	width: 100%;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 5px;
}

.spa-one .program-block .one {
	padding: 7px 30px 7px 20px;
	justify-content: space-between;
	align-items: center;
}

.spa-one .program-block .one p:first-child {
	width: 265px;
}

.spa-one .program-block .one.blue {
	background: #E7F7FA;
}

.danger {
	margin-top: 100px;
	background: #FFF2F2;
	border-radius: 5px;
	padding: 20px 45px;
	align-items: center;
}

.danger img {

}

.danger p {
	margin-left: 15px;
	opacity: 0.7;
}

.indication {
	margin-top: 50px;
}

.indication .title {
	font-size: 30px;
	margin-bottom: 20px;
}

.indication li {
	margin-top: 10px;
}

.indication li img {
	display: block;
	width: 15px;
	height: 15px;
	margin-top: 3px;
}

.indication li p {
	margin-left: 5px;
}

.about-program .but {
	width: 300px;
	margin-top: 50px;
}

/*--------------------------------------------------------------------------------*/
/*--------------------------------------ЦЕНЫ-------------------------------------*/
/*-------------------------------------------------------------------------------*/
.price-info {
	padding-top: 100px;
}

.price-info h1 {
	margin-top: 0;
	color: #000;
	width: 100%;
}

.price-info .after-title {
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	margin-top: 15px;
}

.price-info .update {
	font-weight: bold;
	font-size: 20px;
	text-align: right;
	margin-top: 35px;
	margin-bottom: 20px;
}

.column-category {
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	font-size: 20px;
	width: 1170px;
	margin: 0 auto;
}

.price-info .one {
	width: 170px;
}

.price-info .two {
	width: 670px;
}

.price-info .three {
	width: 100px;
}

.price-info .four {
	width: 170px;
}

.price-info .five-colum .one {
	width: 70px;
} 

.price-info .five-colum .two {
	width: 570px;
} 

.price-info .five-colum .three {
	width: 180px;
	text-align: start;
} 

.price-info .five-colum .four {
	width: 110px;
} 

.price-info .five-colum .five {
	width: 100px;
} 

.category-one {
	padding-top: 20px;
}

.category-one.blue {
	background: #E7F7FA;
}

.category-one .title {
	font-weight: bold;
	font-size: 20px;
	text-transform: uppercase;
	color: #000;
	width: 1170px;
	margin: 0 auto;
	padding-bottom: 20px;
	text-align: center;
}

.column-category.five-colum {
	margin-top: 35px;
	margin-bottom: 20px;
}

.category-one .text {
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 20px;
	width: 1170px;
	margin: 0 auto;
}

.category-one .all-line {
	width: 1170px;
	margin: 0 auto;
	padding-bottom: 20px;
}

.category-line {
	justify-content: space-between;
	margin-top: 10px;
}

.category-line .three, .category-line .four, .category-line .five {
	text-align: center;
}

/*--------------------------------------------------------------------------------------------*/
/*--------------------------------------КОРПУСА И НОМЕРА-------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
.after-header.hotel-rooms {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/hotel-rooms/big-photo.png');
	background-size: cover;
	padding-bottom: 200px;
    background-position: center;
}

.after-header.hotel-rooms .arrow-down {
    display: block;
    margin: 0 auto;
    width: 31px;
    height: 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.after-header.hotel-rooms .arrow-down img {
	display: block;
    width: 100%;
    height: 100%;
}

.rehabilitation.hotel-rooms {
	padding-top: 0;
	padding-bottom: 145px;
	margin-top: -75px;
}

.slider-room .info .text span {
	font-weight: normal;
	font-size: 14px;
}

.slider-room .info h2 {
	font-size: 35px;
	text-align: start;
	margin-bottom: 20px;

}

/*----------------------------------------------------------------------------------------*/
/*--------------------------------------ОДНА КОМНАТА-------------------------------------*/
/*--------------------------------------------------------------------------------------*/
.rehabilitation.one-rooms {
	padding: 0;
}

.rooms-info {
	padding: 100px 0;
}

.rooms-info .text__info {
	background: #E7F7FA;
	border-radius: 5px;
	padding: 28px;
	line-height: 19px;
	margin-top: 20px;
}

.rooms-info .text__info span {
	font-weight: 500;
}

.slider__nomer {
	position: relative;
	width: 100%;
	height: 400px;
}

.slider__nomer .photo {
	width: 100%;
	height: 400px;
	border-radius: 5px;
	overflow: hidden;
}

.slider__nomer img {
	position: relative;
	width: 110%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    filter: brightness(80%);
}

.slider__nomer .slick-arrow {
	top: 50%;
	bottom: auto;
	margin-top: -18px;
}

.slider__nomer .slick-arrow img {
	width: 18px;
	height: 36px;
    filter: brightness(100%);
	transform: translate(0%, 0%);
	margin-right: 0;
}













.rooms-info .in-room {
	justify-content: space-between;
	margin-top: 80px;
}

.rooms-info .in-room img {
	width: 70px;
	height: 70px;
	display: block;
	margin: 0 auto;
}

.rooms-info .in-room p {
	text-align: center;
	margin-top: 10px;
}

.rooms-info .checkout {
	width: 400px;
	background: #E7F7FA;
	border-radius: 5px;
	padding: 25px 35px;
	margin: 0 auto;
	margin-top: 50px;
}

.rooms-info .checkout p {
	margin-bottom: 15px;
}

.rooms-info .checkout p:first-child {
	text-align: center;
}

.rooms-info .checkout p span {
	font-weight: 500;
}

.rooms-info .checkout .type {
	justify-content: space-between;
}

.rooms-info .checkout .button {
	width: 270px;
	margin: 0 auto;
	margin-bottom: 15px;
	text-align: center;
}

.rooms-info .checkout .but {
	width: 200px;
	height: 45px;
	font-size: 16px;
}

.rooms-info .checkout .button a {
	position: relative;
	display: inline;
	color: #1CB2CE;
	text-decoration: none;
}

.rooms-info .checkout .button a:after {
	display: block;
	position: absolute;
	content: "";
	left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
	width: 0;/*задаём длинну линии до наведения курсора*/
	height: 1px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #1CB2CE; /*задаём цвет линии*/
	transition: width 0.5s ease-out; /*задаём время анимации*/
	margin-top: -1px;
}

.rooms-info .checkout .button a:hover:after, .rooms-info .checkout .button a:focus:after {
	width: 100%; /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}





/*----------------------------------------------------------------------------------*/
/*--------------------------------------ОТЗЫВЫ-------------------------------------*/
/*---------------------------------------------------------------------------------*/
.reviews-page {
	padding: 0;
	padding-top: 50px;
}

.reviews.reviews-page .title-after {
	margin-bottom: 35px;
}

.reviews-page .reviews-one {
	width: 970px;
	margin-top: 20px;
}

.reviews-page .reviews-one:first-child {
	margin-top: 35px;
}

.reviews-page .reviews__about {
	align-items: flex-start;
}

.reviews-one .reviews__info {
	width: 150px;
}

.reviews-page .reviews-one .text {
	position: relative;
	width: 600px;
	margin-top: 0;
	margin-left: 20px;
	margin-top: 10px;
	height: 56px;
	overflow: hidden;
}

.reviews-page .reviews-one .text.all {
	height: auto;
}

.reviews-page .reviews-one .text a {
   	position: absolute;
    display: inline;
	width: auto;
	bottom: 1px;
    right: 0;
	color: #1CB2CE;
    background: #E7F7FA;
    text-decoration: none;
}

.reviews-page .reviews-one .text .three-dots {
	margin-right: 87px;
	color: #000;
}

.reviews-page .reviews-one .text .view {
    width: 87px;
}

.reviews-page .reviews-one .text .hide {
	width: auto;
}

.reviews-page .reviews-one .text .view:after {
	display: block;
	position: absolute;
	content: "";
	left: 0; /*изменить на right:0;, чтобы изменить направление подчёркивания */
	width: 100%;/*задаём длинну линии до наведения курсора*/
	height: 1px; /*задаём ширину линии*/
	border-radius: 50px;
	background-color: #1CB2CE; /*задаём цвет линии*/
	margin-top: -1px;
}

.reviews-page .reviews-one .stars {
	width: 95px;
	justify-content: space-between;
	margin-top: 7.5px;
}

.reviews-page .reviews-one .stars img {
	display: block;
	width: 15px;
}

.reviews-page .reviews-one .dots {
	margin-top: 35px;
}

/*-----------------------------------------------------------------------------------*/
/*--------------------------------------ГАЛЕРЕЯ-------------------------------------*/
/*---------------------------------------------------------------------------------*/
.gallery-page {
	padding: 0;
	padding-top: 50px;
}

/*------------------------------------------------------------------------------------*/
/*--------------------------------------КОНТАКТЫ-------------------------------------*/
/*----------------------------------------------------------------------------------*/
.contact-page {
	padding: 0;
	padding-top: 50px;
}

.contact-page .but {
	width: 370px;
	margin: 50px auto;
}

/*---------------------------------------------------------------------------------------*/
/*--------------------------------------БРОНИРОВАТЬ-------------------------------------*/
/*-------------------------------------------------------------------------------------*/
.reserve__rest {
	padding-top: 70px;
}

.reserve__rest .form {
	width: 100%;
}

.reserve__rest .input__all {
	height: 240px;
	flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.reserve__rest .one-input {
	align-items: center;
	margin-bottom: 20px;
	width: 375px;
	justify-content: space-between;
	margin-right: 22.5px;
	position: relative;
}

.reserve__rest .form__input {
	display: block;
	width: 270px;
	height: 60px;
	border: 1px solid #1CB2CE;
	padding-right: 20px;
}

.reserve__rest .form__input.down {
	border-radius: 0;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

.reserve__rest .form__input::placeholder {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
}

.reserve__rest .one-input p {
	font-weight: 500;
	width: 100px;
}

.reserve__rest .one-input img {
	position: absolute;
	width: 10px;
	height: 5px;
	z-index: 2;
	top: 0;
	right: 0;
	margin-top: 27.5px;
	margin-right: 25px;
	cursor: pointer;
}

.reserve__rest .one-input img.up {
	transform: rotate(180deg);
}

.reserve__rest .one-input ul {
	display: none;
	position: absolute;
	width: 270px;
	background: #fff;
	border: 1px solid #1CB2CE;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top: none;
	z-index: 3;
	top: 60px;
	right: 0;
}

.reserve__rest .one-input li {
	border-bottom: 1px solid #1CB2CE;
	padding: 12px 0 12px 25px;
	color: rgba(0, 0, 0, 0.5);
}

.reserve__rest .one-input li:last-child {
	border: none;
}

.reserve__rest a.form__input {
	align-items: center;
	color: #000;
	font-size: 18px;
	text-decoration: none;
	font-weight: normal;
}

.reserve__rest a.form__input p {
	font-weight: normal;
	width: auto;
}

.actions {
	width: 340px;
	margin: 0 auto;
	margin-top: 35px;
}

.actions__remember {
	align-items: center;
	justify-content: space-between;
}

.actions__checkbox {
	display: block;
	width: 14px;
	height: 14px;
	border: 1px solid #B1B1B1;
	border-radius: 3px;
	cursor: pointer;
}

/*---------Галочка---------*/
.wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.check-sign {
	position: relative;
    background: #6B90EF;
}

#check-part-1 {
    width: 5px;
    height: 2px;    
    transform:rotate(45deg);
    margin-top: 6px;
    margin-left: 1px;
}

#check-part-2 {
    width: 10px;
    height: 2px;    
    transform: rotate(-45deg);
    margin-left: 2px;
    margin-top: -3px;
}
/*---------Галочка---------*/

.actions__remember_text {
	font-size: 14px;
}

.actions__remember_text span {
	font-weight: 500;
}

.reserve__rest .form .but.no-active {
	background: rgba(107,144,239,0.5);
}

.reserve__rest .form .but {
	display: block;
	width: 340px;
	margin: 0 auto;
	margin-top: 10px;
}

.reserve__rest .framed {
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	margin-top: 25px;
}

.reserve__rest label.error {
	left: 0;
	bottom: 0;
	margin: 0;
	margin-left: 105px;
	margin-bottom: -18px;
}


/*----------------------------------------ФОРМА ДЛЯ ОТЗЫВА----------------------------------------*/
.box-modal {
	width: 520px;
	background: #E7F7FA;
	border-radius: 5px;
	padding: 35px 55px;
}

.box-modal h2 {
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	margin-bottom: 25px;
}

.box-modal_close {
	position: absolute;
	z-index: 5;
	width: 25px;
	height: 25px;
	background: #6B90EF;
	border-radius: 50%;
	font-size: 15px;
	color: #FAFAFA;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-top: -35px;
	margin-left: 470px;
}

.box-modal .form {
	width: 100%;
}

.box-modal .form-item {
	display: block;
	width: 100%;
}

.box-modal .form__input {
	width: 100%;
	margin-top: 20px;
}

textarea.form__input {
	padding-top: 15px;
}

.box-modal textarea.form__input {
	height: 100px;
}

textarea.form__input::placeholder {
	font-size: 16px;
    color: #AFAFAF;
}

.box-modal .form button {
	width: 100%;
	margin-top: 20px;
}


/*----------------------------------------ПРОЦЕДУРЫ----------------------------------------*/
.after-header.procedures {
	background: url('../img/procedures/big-photo.png');
	background-size: cover;
	padding-bottom: 200px;
}


.after-header.procedures .arrow-down {
	display: block;
    margin: 0 auto;
    width: 31px;
    height: 15px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.rooms-info.procedures .cost {
	text-align: end;
    font-weight: 500;
    font-size: 20px;
    color: #1CB2CE;
    margin-right: 20px;
}

.rooms-info.procedures .info {
	margin-top: 10px;
}

.procedures__info {
	align-items: center;
}

.procedures__info .text__info {
	width: 400px;
	margin-top: 0;
	margin-bottom: 0;
}

.procedures__info .info {
	line-height: 130%;
}

.procedures__photo {
	width: 770px;
	height: 400px;
	overflow: hidden;
	border-radius: 5px;
	object-fit: cover;
}

.procedures__photo img {
	position: relative;
    width: 100%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    filter: brightness(80%);
}











#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.8);
    overflow: hidden;
    display: none;
}

#loader img {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
    z-index: 10001;
}

#overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	left: 0px;
	top: 0px;
	cursor: pointer;
	z-index: 10000;
}

#overlay .all {
	position: absolute;
	width: 290px;
	background: #E7F7FA;
	border-radius: 5px;
	padding: 35px 55px;
	left: 50%;
	top: 50%;
	margin-left: -145px;
}

#overlay.overlay__reviews .all {
	margin-top: -95.5px;
}

#overlay.overlay__question .all, #overlay.overlay__doctor .all {
	margin-top: -118.5px;
}

#overlay.overlay__sale .all {
	margin-top: -130px;
}


#overlay .all .box-modal_close {
	margin-left: 240px;
}

#overlay .all .fa-check-circle {
	display: block;
	color: #6B90EF;
	font-size: 55px;
	margin: 0 auto;
}

#overlay .all .title {
	font-weight: 600;
	font-size: 20px;
	margin-top: 20px;
	text-align: center;
}

#overlay .all .text {
	font-size: 16px;
	margin-top: 10px;
	text-align: center;
}

label.error {
	position: absolute;
	font-size: 12px;
	color: #FF0000;
}











.conditions {
	padding-top: 100px;
}

.conditions h2 {
	margin-bottom: 35px;
}

.conditions .indication {
	margin-top: 0px;
}

.conditions .indication li p {
	font-size: 18px;
}

.conditions .danger {
	margin: 50px 0;
}

.conditions .graphics {
	margin-bottom: 50px;
}

.conditions .graphics li p {
	font-size: 18px;
	margin-left: 10px;
}

.conditions .graphics li p.number {
	font-size: 20px;
	font-weight: 900;
	color: rgba(62, 88, 136, 1);
	margin-left: 0;
}

.conditions .graphics li {
	margin-top: 10px;
}

.question.plus {
	background: #fff;
	margin-bottom: 50px;
}

.question.plus .form__input {
	border: 1px solid #000;
}



.conditions .legal__one {
	padding: 30px;
    background-color: #f4f4f4;
    border-radius: 6px;
    margin-bottom: 25px;
}

.conditions .legal__one p {
	font-size: 18px;
    color: #3e5786;
    font-weight: 700;
}

.conditions .legal__one a {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	margin-top: 15px;
}

.conditions .legal__one a:hover {
	font-weight: 500;
}


.conditions.politic {
	margin-bottom: 50px;
}

.conditions.politic h2:first-child {
    font-size: 40px;
    text-align: center;
    margin-top: 0;
}

.conditions.politic h2 {
	font-size: 30px;
	text-align: start;
	margin-top: 50px;
	margin-bottom: 20px;
}

.conditions.politic ul {
	margin-left: 10px;
	margin-bottom: 10px;
}

.conditions.politic .graphics {
	margin-left: 25px;
}

.conditions.politic p {
	font-size: 18px;
	line-height: 1.4;
}

.conditions.politic li {
	margin-top: 10px;
}

.conditions.politic li .dots {
	position: static;
	margin-right: 10px;
	margin-top: 10px;
	width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;
    flex-shrink: 0;
}

.conditions.politic .graphics li p.number {
	font-weight: 400;
	color: #000;
	font-size: 18px;
	margin-top: 0;
}



.price__room .category-line.one {
	margin-bottom: 50px;
	width: 100%;
}