.big_wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.big_wrapper .wrapper {
    max-width: 1270px;
    padding: 0 10px;
    margin: 0 auto;
}
.section {
    margin-bottom: 140px;
}
.swiper-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Главный блок */
.department_main_block {
    padding: 20px 40px;
    border-radius: 20px;
    background: #f2f4f8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.department_main_block .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 0;
}
.department_main_block .info_wrapper {
    display: flex;
    gap: 40px;
}
.department_main_block .info_wrapper .description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 35%;
    flex-shrink: 0;
    border-right: 1px solid #2a3440;
    padding-right: 10px;
}
.department_main_block .info_wrapper .description .description_text {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.32px;
    margin: 0 0 20px 0; /* add new 20px*/
    flex: 1;
}
.main_block_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 300px;
    height: 40px;
    padding: 12px 0;
    border-radius: 40px;
    background: #3e8dff;
    color: #fff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.32px;
    border: 0;
    transition: 0.3s;
    cursor: pointer;
}
.main_block_btn:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.main_block_btn.mobile {
    display: none;
}
.achievements_wrapper {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    height: fit-content;
    align-self: center; /* add new*/
}
.achievements_wrapper .achievement_block {
    border-radius: 20px;
    background: #3e8dff;
    padding: 17px 27px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(57% - 64px);
    height: auto;
}
.achievements_wrapper .achievement_block .achievement_title {
    color: #fff;
    font-family: Ubuntu;
    font-size: 33.116px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.662px;
    margin: 0;
}
.achievements_wrapper .achievement_block .achievement_text {
    color: rgba(255, 255, 255, 0.7);
    font-family: Ubuntu;
    font-size: 14.718px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.294px;
    margin: 0;
}
.department_main_block_section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.department_main_block_advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.main_block_advantage {
    display: flex;
    padding: 20px;
    gap: 20px;
    border-radius: 20px;
    background: #f2f4f8;
    width: calc(50% - 50px);
    align-items: center;
}
.main_block_advantage .advantage_img {
    flex-shrink: 0;
}
.main_block_advantage .advantage_text {
    margin: 0;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

/* Слайдер врачей */
.swiper-navigation__next,
.swiper-navigation__prev {
    align-items: center;
    border: 1px solid #2a3440;
    border-radius: 25px;
    display: flex;
    height: 26px;
    justify-content: center;
    width: 67px;
    cursor: pointer;
}
.swiper-navigation__next:before,
.swiper-navigation__prev:before {
    background: url(/img/centers/icons/swiper-arrow.svg) 50% no-repeat;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
}
.swiper-navigation__next.swiper-button-disabled,
.swiper-navigation__prev.swiper-button-disabled {
    opacity: 0.4;
}
.swiper-navigation__prev:before {
    rotate: 180deg;
}
.department_doctors_header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}
.department_doctors_header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.department_doctors_header_top .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 50px */
    letter-spacing: -1px;
    margin: 0;
}

.department_doctors_header .description,.doc-desc p {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.doc-desc p{
    padding: 0 10px;
}
.doctor-item {
    width: 347px;
}
.doctor-item__main {
    background: url(/img/centers/doctors/bg.png) 50% / cover no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* add new*/
}
.doctor-item__img {
    height: 293px;
    /*height: 365px;*/
    margin-top: 19px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}
.doctor-item__rating {
    left: 10px;
    position: absolute;
    top: 10px;
}
.rating {
    align-items: center;
    background: #fff;
    border-radius: 50px;
    display: flex;
    padding: 4px 13px 4px 7px;
    font-family: Ubuntu;
}
.star {
    background: url(/img/centers/icons/star.svg) 50% / contain no-repeat;
    height: 20px;
    width: 20px;
}
.rating__span {
    font-size: 14px;
    line-height: 14px;
    font-family: Ubuntu;
}
.doctor-item__info {
    background: #fff;
    border-radius: 20px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    left: 10px;
    min-height: 120px;
    padding: 20px;
    position: absolute;
    width: calc(100% - 60px);
}
.doctor-item__name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    margin: 0;
    font-family: Ubuntu;
}
.doctor-item__proffession {
    font-size: 14px;
    line-height: 14px;
    margin: 5px 0;
    font-family: Ubuntu;
}
.doctor-item__row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}
.doctor-item__cost {
    align-items: flex-end;
    display: flex;
    gap: 6px;
}
.doctor-item__cost-span {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin: 0;
    font-family: Ubuntu;
}
.doctor-item__sum {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    font-family: Ubuntu;
}
.external-link {
    background: url(/img/centers/icons/ellipse-arrow.svg) 50% / contain no-repeat;
    flex-shrink: 0;
    height: 30px;
    width: 30px;
}
.doctor-item__btn,
.doctor-item__btn:visited {
    margin-top: 9px;
    width: 100%;
    border: 1px solid #3e8dff;
    border-radius: 100px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    padding: 10px 0px;
    text-align: center;
    transition-duration: 0.3s;
    font-family: Ubuntu;
    background-color: #3e8dff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.doctor-item__btn:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.swiper-navigation.mobile {
    display: none;
}

/* О отделении */
.department_about_wrapper {
    border-radius: 20px;
    background: #f2f4f8;
    padding: 20px;
    display: flex;
    gap: 80px;
}
.about_doctor-item {
    width: 300px;
    flex-shrink: 0;
}
.department_about_info {
    display: flex;
    flex-direction: column;
}
.department_about_info .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 36px */
    letter-spacing: -0.72px;
    margin-top: 0;
    margin-bottom: 30px;
}
.department_about_info .description {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    margin-bottom: 10px;
}

/* Галерея */
.department_gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.department_gallery_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.department_gallery_header .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 0;
}
.gallery-item img {
    border-radius: 20px;
}

/* Болезни */
.department_diseases_wrapper {
    display: flex;
    justify-content: space-between;
}
.list_block__info {
    width: 47%;
    /*display: flex;*/
    flex-direction: column;
}
.list_block__info_title {
    flex: 1;
    margin: 0;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
}
.list_block {
    width: 47%;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}
.list_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.list_wrapper .list_item {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    align-items: center;
}
.list_wrapper .list_item:first-child {
    border-top: 1px solid #dcdcdc;
}
.list_item_letter {
    color: #3e8dff;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 17.6px */
    letter-spacing: -0.32px;
}
.list_item_name {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    letter-spacing: -0.4px;
    flex: 1;
    margin: 0;
}
.list_item_link,
.list_item_link:visited {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    transition: 0.3s;
}
.list_item_link:hover {
    color: #3e8dff;
    transition: 0.3s;
}
.list_btn {
    width: 162px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #3e8dff;
    background: #fff;
    color: #3e8dff;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border: 1px solid #3e8dff;
    transition: 0.3s;
    cursor: pointer;
}
.list_btn:hover {
    background: #3e8dff;
    color: #fff;
    transition: 0.3s;
}
.list_wrapper .list_item_hidden {
    display: none;
}

/* Блок с видео */
.department_video_block_wrapper {
    display: flex;
    gap: 40px;
    border-radius: 20px;
    background: #f2f4f8;
    padding: 20px;
}
.department_video_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    flex-shrink: 0;
}
.video_block_description {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.32px;
}
.department_video {
    width: 100%;
    position: relative;
}
.play {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 100px;
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
}
.department_video img {
    border-radius: 20px;
    width: 100%;
}
.department_video_block_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
.department_video_block_info .top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.department_video_block_info .top h2 {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.72px;
    margin: 0;
}
.department_video_block_info .top p {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.department_video_block_info .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    height: fit-content;
}
.video_list_item,
.video_list_item:visited {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.4px;
    transition: 0.3s;
    padding: 10px 20px;
}
.video_list_item:hover {
    opacity: 0.7;
    transition: 0.3s;
}

/* Методы */
.department_methods_wrapper {
    display: flex;
    justify-content: space-between;
}
.list_block__info_description {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    margin: 0;
    margin-top: 20px;/* add new*/
}

/* Блок со слайдером */
.department_slider_block_wrapper {
    display: flex;
    gap: 40px;
    border-radius: 20px;
    background: #f2f4f8;
    padding: 20px;
}
.department_slider_block_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    width: calc(50% - 20px);
    flex-shrink: 0;
}
.department_slider_block_info .top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.department_slider_block_info .top .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 36px */
    letter-spacing: -0.72px;
    margin: 0;
}
.department_slider_block_info .top .description {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.department_slider_block_info .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.slider_list_item,
.slider_list_item:visited {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.4px;
    transition: 0.3s;
    padding: 10px 20px;
}
.slider_list_item:hover {
    opacity: 0.7;
    transition: 0.3s;
}
.department_slider_block {
    width: calc(50% - 20px);
    align-items: flex-end;
}
.department_slider_block .swiper-navigation {
    margin-bottom: 30px;
    justify-content: flex-end;
}
.block-item img {
    border-radius: 20px;
}

/* Преимущества */
.department_advantages_gallery_block .swiper-navigation {
    margin-bottom: 30px;
    justify-content: flex-end;
}
.department_advantages_header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.department_advantages_header .left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 40%;
    flex-shrink: 0;
}
.department_advantages_header .left .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 50px */
    letter-spacing: -1px;
    margin: 0;
}
.department_advantages_header .left .description {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.department_advantages_header .right {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #f2f4f8;
    gap: 24px;
    padding: 20px;
    align-self: center;
}
.department_advantages_header .right .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.4px;
    margin: 0;
}
.department_advantages_header .right .description {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.contacts_buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.appointment_btn {
    width: calc(50% - 10px);
    height: 40px;
    border-radius: 40px;
    background: #3e8dff;
    color: #fff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.32px;
    border: 1px solid #3e8dff;
    transition: 0.3s;
    cursor: pointer;
    padding: 12px 0;
}
.appointment_btn:hover {
    background: #fff;
    color: #3e8dff;
    transition: 0.3s;
}
.call_btn {
    width: calc(50% - 10px);
    height: 40px;
    border-radius: 40px;
    background: #fff;
    color: #3e8dff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.32px;
    border: 1px solid #3e8dff;
    transition: 0.3s;
    cursor: pointer;
}
.call_btn:hover {
    background: #3e8dff;
    color: #fff;
    transition: 0.3s;
}

/* Прайс */
.department_price_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.price_header {
    display: flex;
    justify-content: space-between;
}
.price_header .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 50px */
    letter-spacing: -1px;
    margin: 0;
}
.price_header .description {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    margin: 0;
    max-width: 450px;
}
.price_header .description a,
.price_header .description a:visited {
    color: #3e8dff;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
    transition: 0.3s;
}
.price_header .description a:hover {
    text-decoration: underline;
    transition: 0.3s;
}
.department_price_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.department_price_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    border-radius: 10px;
    background: #f2f4f8;
}
.department_price_row_name {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    max-width: 50%;
    margin: 0;
}
a.department_price_row_name{
    color: #3e8dff;
}
.department_price_row_value {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}
.department_price_row_hidden {
    display: none;
}

/* Отзывы */
.department_reviews_wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.department_reviews_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.department_reviews_header .left {
    position: relative;
}
.department_reviews_header .left .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 0;
    padding-right: 30px;
}
.department_reviews_amount {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.32px;
}
.department_reviews_header .right {
    display: flex;
    align-items: center;
    gap: 50px;
}
.reviews_description {
    width: 425px;
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.reviews_item_wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #f2f4f8;
    padding: 20px;
}
.review_author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.review_author_icon {
    background: #3e8dff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    border-radius: 100%;
}
.review_author_name {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.4px;
    margin: 0;
}
.review_rating {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review_rating_stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review_rating_stars img {
    width: 22px;
}
.review_rating_stars_amount {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.review_date {
    color: rgba(42, 52, 64, 0.4);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}
.review_text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}
.review_text.expanded {
    -webkit-line-clamp: unset;
}
.review_toggle {
    display: none;
    margin-top: 5px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}
.department_reviews .swiper-wrapper {
    align-items: stretch;
}
.department_reviews .swiper-slide {
    height: auto;
    display: flex;
}
.department_reviews_btn {
    border-radius: 40px;
    background: #3e8dff;
    width: 100%;
    height: 40px;
    color: #fff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.32px;
    cursor: pointer;
    border: 1px solid #3e8dff;
    transition: 0.3s;
}
.department_reviews_btn:hover {
    background: #fff;
    color: #3e8dff;
    transition: 0.3s;
}
.all_reviews_link {
    display: none;
}

/* Форма */
.promotions-form__body {
    background: #f2f4f8;
    border-radius: 20px;
    display: flex;
    gap: 30px 40px;
    padding: 20px 18px 20px 40px;
}
.promotions-form__main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.promotions-form__main .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 0;
}
.promotions-form__subtitle {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin: 10px 0 0;
}
.promo-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promotions-form__form {
    margin-top: auto;
}
.input-wrapper {
    border: 1px solid rgba(42, 52, 64, 0.6);
    border-radius: 100px;
    font-size: 0;
    line-height: 0px;
    padding: 14px 30px;
    position: relative;
}
.input-wrapper:focus-within .input-wrapper__placeholder {
    scale: 0;
}
.input-wrapper:has(.input-wrapper__input:not(:placeholder-shown))
.input-wrapper__placeholder {
    scale: 0;
}
.input-wrapper__placeholder {
    align-items: center;
    display: flex;
    height: 100%;
    left: 0;
    line-height: 20px;
    padding-left: 30px;
    position: absolute;
    top: 0;
    transform-origin: left top;
    transition-duration: 0.3s;
    width: 100%;
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.input-wrapper__placeholder span {
    color: #c61515;
}
.input-wrapper__input {
    background: #f2f4f8;
    border: 0;
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    width: 100%;
}
.input-wrapper__input::placeholder {
    opacity: 0;
}
.input-wrapper__placeholder span {
    color: #c61515;
}
.input-wrapper__input:focus {
    outline: none;
    box-shadow: none;
}
.promo-form__btn {
    padding-block: 15px;
    background-color: #3e8dff;
    color: #fff;
    border: 1px solid #3e8dff;
    border-radius: 100px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    padding: 10px 26px;
    text-align: center;
    transition-duration: 0.3s;
}
.promotions-form__note {
    color: rgba(42, 52, 64, 0.4);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 10px 0 0;
}
.promotions-form__image-wrapper {
    width: 50%;
}
.promotions-form__img {
    height: 409px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}

/* Лицензии */
.department_licenses_section {
    background: #f2f4f8;
    padding-top: 40px;
    padding-bottom: 40px;
}
.department_licenses_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.department_licenses_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.department_licenses_header .title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    margin: 0;
}

/* Мобильные врачи */
.department_doctors_mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
}
.mobile_doctors_download {
    width: 100%;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #3e8dff;
    color: #3e8dff;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.mobile_doctors_download:hover {
    background: #3e8dff;
    color: #fff;
    transition: 0.3s;
}
.doctors_mobile_cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.doctor_mobile_card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #f2f4f8;
    padding: 20px;
}
.doctor_mobile_card_header {
    display: flex;
    gap: 20px;
    align-items: center;
}
.doctor_mobile_photo {
    width: 83px;
    height: 87px;
    background: url(/img/centers/doctors/bg.png) 50% / cover no-repeat;
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
}
.doctor_mobile_photo img {
    height: 84px;
    margin-top: 3px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}
.doctor_mobile_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    height: -webkit-fill-available;
}
.doctor_mobile_name,
.doctor_mobile_name:visited {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.32px;
    transition: 0.3s;
}
.doctor_mobile_position,
.doctor_mobile_position:visited {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    transition: 0.3s;
}
.doctor_mobile_name:hover,
.doctor_mobile_position:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.doctor_mobile_show_more {
    flex-shrink: 0;
}
.doctor_mobile_rating {
    width: fit-content;
    gap: 7px;
    margin-top: auto;
}
.doctor_mobile_rating .star {
    width: 14px;
    height: 14px;
}
.doctor_mobile_rating .rating__span {
    font-size: 12px;
}
.doctor_mobile_card_body {
    display: none;
    margin-top: 15px;
}
.doctor_mobile_satisfaction {
    display: flex;
    width: 100%;
    gap: 15px;
    border-radius: 30px;
    background: #fff;
    padding: 3px;
    align-items: center;
}
.satisfaction_amount {
    background: #3e8dff;
    border-radius: 100px;
    color: #fff;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    text-align: center;
    font-family: Ubuntu;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    flex-shrink: 0;
}
.satisfaction_text {
    flex: 1;
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
}
.doctor_mobile_card_white_stick {
    height: 1px;
    width: 100%;
    background: #fff;
    margin-top: 16px;
    margin-bottom: 20px;
}
.doctor_mobile_extra {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.doctor_mobile_extra_item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.doctor_mobile_extra_item span {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.28px;
}
.doctor_mobile_extra_item p,
.doctor_mobile_extra_item a,
.doctor_mobile_extra_item a:visited {
    color: rgba(42, 52, 64, 0.7);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}
.doctor_mobile_extra_item a {
    text-decoration: underline;
}
.doctor_mobile_date {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.doctor_mobile_date_title {
    color: #2a3440;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    letter-spacing: -0.28px;
    margin: 0;
}
.doctor_mobile_date_list {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    gap: 30px;
}
.doctor_mobile_date_item {
    color: #3e8dff;
    text-align: center;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.doctor_mobile_date_item::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #3e8dff;
    display: block;
    border-radius: 100%;
}

.doctor_mobile_timeslider_wrapper {
    margin-top: 15px;
    background: #f5f7fa;
    padding: 12px;
    border-radius: 10px;
    position: relative;
}

.doctor_mobile_timeslider .swiper-slide {
    width: auto;
    box-sizing: border-box;
    padding: 8px 0;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
}

.doctor_mobile_timeslider .swiper-slide.active {
    border-color: #2f80ed;
    color: #2f80ed;
}

.doctor_mobile_book_btn {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background: #3e8dff;
    color: #fff;
    border: 1px solid #3e8dff;
    font-family: Ubuntu;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    transition: 0.3s;
    border-radius: 40px;
    cursor: pointer;
}
.doctor_mobile_book_btn:hover {
    color: #3e8dff;
    background: #fff;
    transition: 0.3s;
}
.timeslider-button-prev {
    top: 31px;
    left: -15px;
}
.timeslider-button-next {
    top: 31px;
    right: -15px;
}
.timeslider-button-prev::after,
.timeslider-button-next::after {
    font-size: 20px;
    color: #000;
}

.doctor_mobile_date_item.active {
    color: #2a3440;
}
.doctor_mobile_date_item.active::before {
    background: #2a3440;
}
.about_doctor-item_mobile {
    display: none;
}

@media screen and (max-width: 900px) {
  .fancybox__slide {
    padding: 8px;
    align-self: center;
  }
}