.doctor_item .top_group img {
    border-radius: 50%;
}

/* Banners */
.home-banners {
    padding-top: unset;
}

/* Hero block */
.home.home-hero {
    margin-bottom: 34px;
}

.home.home-hero .about_block {
    position: relative;
}

.home.home-hero .about_block .mySwiper {
    height: auto;
    overflow: visible;
}

.home.home-hero .about_block .group_paginations {
    display: none;
}

.home-hero-card {
    position: relative;
    min-height: 520px;
    padding: 54px 48px 92px;
    border-radius: 34px;
    overflow: hidden;
    background-color: #f6f1ef;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.42) 63%, rgba(255, 255, 255, 0.12) 100%),
        url(../img/hero1.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    box-shadow: 0 28px 65px rgba(31, 35, 45, 0.08);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.home-hero-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--accent-red);
}

.home-hero-content h1 {
    margin-bottom: 18px;
    font-family: "Roboto", sans-serif !important;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: 0;
    color: #111216;
}

.home-hero-content p {
    max-width: 520px;
    margin-bottom: 34px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.15;
    text-wrap: balance;
    color: #2e3138;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: 0.25s ease;
}

.home-hero-btn--primary {
    color: #fff;
    background: var(--accent-red);
    box-shadow: 0 18px 34px var(--accent-red-shadow);
}

.home-hero-btn--primary:hover {
    color: #fff;
    background: var(--accent-red-hover);
}

.home-hero-btn--secondary {
    color: var(--accent-red);
    background: rgba(255, 255, 255, 0.281);
    border: 1px solid var(--accent-red-soft);
    backdrop-filter: blur(4px);
    box-shadow: 0 18px 34px rgba(18, 26, 42, 0.08);
}

.home-hero-btn--secondary:hover {
    color: var(--accent-red-hover);
}

.home-hero-stats {
    margin-top: 40px;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: fit-content;
    gap: 30px;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.281);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.12);
}

.home-hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.home-hero-stat img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 48px;
}

.home-hero-stat__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home-hero-stat__text strong {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.05;
    color: var(--accent-red);
    white-space: nowrap;
}

.home-hero-stat__text span {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(41, 42, 47, 0.75);
}

/* Services grid block */
.cards_block {
    padding: 68px 0 72px;
}

.cards_block-title {
    margin-bottom: 24px;
}

.cards_block-title h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    color: #111216;
}

.cards_block .about_block.cards_grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(3, 126px);
    gap: 15px;
    align-items: stretch;
}

.cards_block .about_block.cards_grid > a.item {
    position: relative;
    width: auto;
    height: auto;
    min-height: 126px;
    padding: 10px 10px;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: #f2f4f6;
    isolation: isolate;
}

.cards_block .about_block.cards_grid > a.item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 18, 24, 0.02) 0%, rgba(15, 18, 24, 0.12) 50%, rgba(15, 18, 24, 0.62) 100%);
    z-index: 1;
}

.cards_block .about_block.cards_grid > a.item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.35s ease;
}

.cards_block .about_block.cards_grid > a.item:hover img {
    transform: scale(1.03);
}

.cards_block .about_block.cards_grid > a.item:hover {
    background-color: #f2f4f6;
}

.cards_block .about_block.cards_grid > a.item p {
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.12;
    letter-spacing: 0;
    color: #ffffff;
    text-wrap: balance;
    max-width: 90%;
}

.cards_block .about_block.cards_grid > a.item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.cards_block .about_block.cards_grid > a.item:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
}

.cards_block .about_block.cards_grid > a.item:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
}

.cards_block .about_block.cards_grid > a.item:nth-child(4) {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.cards_block .about_block.cards_grid > a.item:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
}

.cards_block .about_block.cards_grid > a.item:nth-child(6) {
    grid-column: 4;
    grid-row: 1;
}

.cards_block .about_block.cards_grid > a.item:nth-child(7) {
    grid-column: 4;
    grid-row: 2 / span 2;
}

.cards_block .about_block.cards_grid > a.item:nth-child(8) {
    grid-column: 5;
    grid-row: 1 / span 2;
}

.cards_block .about_block.cards_grid > a.item:nth-child(9) {
    grid-column: 5;
    grid-row: 3;
}

.cards_block .about_block.cards_grid > a.item:nth-child(10) {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.cards_block .about_block.cards_grid > a.item.item-all-services {
    grid-column: 6;
    grid-row: 1 / span 3;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--accent-red);
}

.cards_block .about_block.cards_grid > a.item.item-all-services::before {
    display: none;
}

.cards_block .about_block.cards_grid > a.item.item-all-services img {
    display: none;
}

.cards_block .about_block.cards_grid > a.item.item-all-services p {
    max-width: none;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
}

.cards_block .about_block.cards_grid > a.item.item-all-services::after {
    content: "↗";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 42px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    z-index: 2;
}

/* Patients and partners FAQ block */
.info_split_block {
    padding: 0 0 72px;
}

.info_split_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.info_split_title {
    margin-bottom: 18px;
}

.info_split_title h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    color: #111216;
}

.info_split_card {
    display: flex;
    flex-direction: column;
    height: calc(100% - 32px);
    padding: 26px 28px 28px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(20, 28, 38, 0.1);
}

.info_accordion {
    display: flex;
    flex-direction: column;
}

.info_accordion_item {
    border-bottom: 1px solid rgba(41, 42, 47, 0.14);
}

.info_accordion_trigger {
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.info_accordion_trigger span:first-child {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #292a2f;
}

.info_accordion_icon {
    flex: 0 0 auto;
    font-size: 28px;
    line-height: 1;
    color: var(--accent-red);
    transition: transform 0.25s ease;
}

.info_accordion_item.is-open .info_accordion_icon {
    transform: rotate(90deg);
}

.info_accordion_content {
    display: none;
    padding: 0 48px 20px 0;
}

.info_accordion_content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(41, 42, 47, 0.78);
}

.info_split_actions {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
}

.info_split_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 192px;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    background: var(--accent-red);
    box-shadow: 0 18px 34px var(--accent-red-shadow);
    transition: 0.25s ease;
}

.info_split_more:hover {
    color: #ffffff;
    background: var(--accent-red-hover);
}

/* Contact feedback block */
.form_group {
    padding-bottom: 72px;
}

.form_group .feedback_block {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(310px, 320px) minmax(0, 1fr);
    gap: 22px 44px;
    padding: 30px 34px 34px;
    border-radius: 18px;
    background: var(--accent-red);
    box-shadow: 0 22px 54px rgba(25, 28, 36, 0.12);
}

.form_group .feedback_block .title_form {
    max-width: none;
}

.form_group .feedback_block .title_form h2 {
    margin-bottom: 34px;
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    color: #ffffff;
}

.form_group .feedback_block .title_form p {
    text-wrap: balance;
    font-size: 16px;
    line-height: 1.15;
    color: #ffffff;
}

.form_group .feedback_block .feedback_form {
    position: static;
    max-width: none;
    width: 100%;
}

.form_group .feedback_block .feedback_form .input_block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin-bottom: 18px;
}

.form_group .feedback_block .feedback_form .input_block .inputs {
    min-height: 58px;
    padding: 0 22px;
    border-radius: 8px;
    gap: 0;
}

.form_group .feedback_block .feedback_form .input_block .inputs img {
    display: none;
}

.form_group .feedback_block .feedback_form .input_block .inputs input {
    font-size: 16px;
    line-height: 1.2;
    color: #292a2f;
}

.form_group .feedback_block .feedback_form .input_block .inputs input::placeholder,
.form_group .feedback_block .feedback_form textarea::placeholder {
    color: #292a2f;
    opacity: 1;
}

.form_group .feedback_block .feedback_form textarea {
    height: 122px;
    padding: 20px 22px;
    margin-bottom: 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #292a2f;
}

.form_group .feedback_block .feedback_form .eula {
    gap: 8px;
    margin-bottom: 0;
}

.form_group .feedback_block .feedback_form .eula div {
    gap: 12px;
}

.form_group .feedback_block .feedback_form .eula input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #ffffff;
}

.form_group .feedback_block .feedback_form .eula label,
.form_group .feedback_block .feedback_form .eula a {
    font-size: 13px;
    line-height: 1.25;
    color: #ffffff;
}

.form_group .feedback_block .feedback_form .eula a {
    text-decoration: underline !important;
}

.form_group .feedback_block .feedback_form .button_block {
    position: absolute;
    left: 34px;
    bottom: 34px;
    width: 260px;
    display: block;
}

.form_group .feedback_block .feedback_form .button_block button {
    width: 100%;
    min-height: 60px;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-red);
    background: #ffffff;
}

.form_group .feedback_block .feedback_form .button_block button:hover {
    background: #f4f4f4;
}

.form_group .feedback_block .form-succes {
    grid-column: 2;
    align-self: center;
    min-height: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #ffffff;
}

.map.pc {
    display: block;
    z-index: 8;
    position: relative;
    left: -100px;
}


.main_banner_pc,
.main_banner_mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.cards_news .item img {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.map.mobile,
.main_banner_mobile {
    display: none;
}

.contacts_block .about_block .left_text_block .tabs_block .list {
    background-color: transparent;

}

.contacts_block .about_block .left_text_block .tabs_block .on_map {
    background-color: transparent;
    color: #000;
}

.contacts_block .about_block .left_text_block .tabs_block a {
    border: 1px solid #ff6a6a;
    color: #000;
}

.contacts_block .about_block .left_text_block .tabs_block a.active {
    background-color: #ff6a6a;
    color: #fff;
}

.foot_link {}

.form-succes {
    min-height: 241px;
}

button.default {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    background-color: #ff6a6a;
    border-radius: 400px;
}

header .bottom_header .search_block input {
    min-width: 300px;
}

.menu_groups .about_block {
    gap: 20px;
}


@media only screen and (max-width : 1024px) {

    .home .about_block .group_paginations {
        right: auto;
        bottom: -10px;
        top: auto;
        width: 110px;
        height: 30px;
        border-radius: 15px;
        margin: 0 auto;
        left: 50%;
        margin-left: -65px;
        background: none;
    }

    .home .about_block .group_paginations .swiper_buttons .swiper-button-prev,
    .home .about_block .group_paginations .swiper_buttons .swiper-rtl .swiper-button-next {
        display: none;
    }

    .home .about_block .group_paginations .swiper_buttons .swiper-button-next,
    .home .about_block .group_paginations .swiper_buttons .swiper-rtl .swiper-button-prev {
        display: none;
    }

    .swiper-pagination-bullet-active {
        background: #ff6a6a;
    }

    .home .about_block .mySwiper {
        width: 100%;
        height: 400px;
        position: relative;
        padding: 20px 0;
    }


    .cards_block {
        padding: 30px 0 33px 0;
    }

    header .bottom_header .search_block input {
        min-width: 230px;
    }

    header .top_header .connecting_group .tel_number a {
        font-size: 20px;

    }

    header .top_header .connecting_group .tel_number span {
        font-size: 12px;

    }

    header .bottom_header .block_last .date a {
        max-width: 120px;
    }

    header .bottom_header .search_block {
        max-width: 300px;
    }

    header .bottom_header .menu ul li a {
        font-size: 12px;
    }

    .contacts_block .about_block .map iframe {

        max-width: 650px;
    }

    .cards_block .about_block a {
        width: 300px;
    }

    .cards_block .about_block {
        gap: 40px;
    }

    .connecting_apps {
        display: none;
    }

    .header_fixed .about_block .left_block .connect_group .tel_number {
        align-items: flex-start;
    }

    .header_fixed .about_block .left_block .connect_group .tel_number a {
        font-weight: 900;
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0%;
        color: #292a2f;
    }

    .about_us .about_block {
        padding: 25px;
    }

    .about_us .about_block .left_text .card_text {
        max-width: 100%;
    }

    .about_us .about_block .left_text .card_text h2 {
        font-size: 40px;
    }

    .about_us .about_block .left_text .card_text p {
        font-size: 16px;
    }



    .about_us .about_block .left_text .mini_texts_group {
        margin-left: 30px;
    }

    .form_group .about_block .phone_img {
        width: 230px;
        right: -30px;
        top: 0px;
    }

}


@media (max-width: 999px) {

    .news .about_block .title_block {
        margin-bottom: 30px;
    }

    .about_us .about_block {
        padding: 0px;
    }

    header .bottom_header .search_block input {
        min-width: 250px;
    }

    .cards_block .about_block a {
        width: 100%;
        height: 100px;
        max-width: 100%;
        margin: 0 auto;
    }

    .cards_block {
        padding: 40px 0 40px 0;
    }


    .cards_block .about_block {
        display: grid;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .form-succes {
        min-height: auto;
    }

    .contacts_block .about_block.map {
        flex-direction: column;
        height: 490px;
    }

}

@media only screen and (max-width : 999px) {

    .cards_block {
        padding: 42px 0 44px;
    }

    .cards_block-title {
        margin-bottom: 16px;
    }

    .cards_block-title h2 {
        font-size: 28px;
    }

    .cards_block .about_block.cards_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(9, 110px);
        gap: 12px;
    }

    .cards_block .about_block.cards_grid > a.item {
        width: 100%;
        min-height: 110px;
        padding: 16px 14px;
        border-radius: 18px;
    }

    .cards_block .about_block.cards_grid > a.item p {
        font-size: 12px;
        max-width: 100%;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(4) {
        grid-column: 1;
        grid-row: 4 / span 2;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(5) {
        grid-column: 1;
        grid-row: 6;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(6) {
        grid-column: 2;
        grid-row: 4;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(7) {
        grid-column: 2;
        grid-row: 5 / span 2;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(8) {
        grid-column: 1;
        grid-row: 7 / span 2;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(9) {
        grid-column: 1;
        grid-row: 9;
    }

    .cards_block .about_block.cards_grid > a.item:nth-child(10) {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .cards_block .about_block.cards_grid > a.item.item-all-services {
        grid-column: 2;
        grid-row: 7 / span 3;
        justify-content: flex-start;
        align-items: center;
        padding: 22px 16px;
    }

    .cards_block .about_block.cards_grid > a.item.item-all-services p {
        font-size: 18px;
        text-align: left;
    }

    .cards_block .about_block.cards_grid > a.item.item-all-services::after {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 38px;
        font-size: 22px;
    }

    /* Patients and partners FAQ block - mobile */
    .info_split_block {
        padding: 0 0 48px;
    }

    .info_split_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .info_split_title {
        margin-bottom: 14px;
    }

    .info_split_title h2 {
        font-size: 28px;
    }

    .info_split_card {
        padding: 20px 20px 24px;
        border-radius: 24px;
    }

    .info_accordion_trigger {
        padding: 18px 0;
        align-items: flex-start;
    }

    .info_accordion_trigger span:first-child {
        font-size: 13px;
        line-height: 1.25;
    }

    .info_accordion_icon {
        font-size: 24px;
    }

    .info_accordion_content {
        padding: 0 24px 18px 0;
    }

    .info_accordion_content p {
        font-size: 13px;
    }

    .info_split_actions {
        margin-top: auto;
    }

    .info_split_more {
        min-width: 200px;
        min-height: 50px;
        font-size: 16px;
    }

    /* Contact feedback block - mobile */
    .form_group {
        padding-bottom: 48px;
    }

    .form_group .feedback_block {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px 18px 20px;
        border-radius: 18px;
    }

    .form_group .feedback_block .title_form h2 {
        margin-bottom: 16px;
        font-size: 32px;
    }

    .form_group .feedback_block .title_form p {
        text-wrap: unset;
        font-size: 14px;
        line-height: 1.15;
    }

    .form_group .feedback_block .feedback_form .input_block {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .form_group .feedback_block .feedback_form .input_block .inputs {
        min-height: 74px;
        padding: 0 26px;
        border-radius: 12px;
    }

    .form_group .feedback_block .feedback_form .input_block .inputs input {
        font-size: 18px;
    }

    .form_group .feedback_block .feedback_form textarea {
        height: 146px;
        padding: 20px 26px;
        margin-bottom: 16px;
        border-radius: 12px;
        font-size: 18px;
    }

    .form_group .feedback_block .feedback_form .eula {
        margin-bottom: 18px;
    }

    .form_group .feedback_block .feedback_form .eula div {
        gap: 14px;
    }

    .form_group .feedback_block .feedback_form .eula input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-top: 1px;
    }

    .form_group .feedback_block .feedback_form .eula label,
    .form_group .feedback_block .feedback_form .eula a {
        font-size: 13px;
        line-height: 1.2;
    }

    .form_group .feedback_block .feedback_form .button_block {
        position: static;
        width: 100%;
    }

    .form_group .feedback_block .feedback_form .button_block button {
        min-height: 56px;
        border-radius: 12px;
        font-size: 16px;
    }

    .form_group .feedback_block .form-succes {
        grid-column: auto;
        font-size: 16px;
    }

    .home-hero-card {
        min-height: auto;
        padding: 28px 24px 24px;
        border-radius: 24px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 44%, rgba(255, 255, 255, 0.45) 72%, rgba(255, 255, 255, 0.25) 100%),
            url(../img/hero1.png);
        background-position: 72% center;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .home-hero-content h1 {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.08;
    }

    .home-hero-content p {
        max-width: 320px;
        margin-bottom: 22px;
        font-size: 12px;
        line-height: 1.15;
    }

    .home-hero-actions {
        gap: 12px;
    }

    .home-hero-btn {
        width: 100%;
        min-width: 210px;
        min-height: 44px;
        font-size: 13px;
        width: fit-content;
    }

    .home-hero-stats {
        display: none;
        margin-top: 22px;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
    }

    .home-hero-stat img {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .home-hero-stat__text strong {
        font-size: 20px;
    }

    .home-hero-stat__text span {
        font-size: 13px;
    }

    .map.pc {
        display: none;
    }

    .map.mobile {
        display: block;
        z-index: 8;
        position: relative;
        top: -50px;
    }

    .contacts_block .about_block .left_text_block {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0px;
        background: #fff;
        background: linear-gradient(180deg, #fff 0%, #fff 80%, rgba(242, 244, 246, 0) 100%);
        text-align: center;
        width: 100%;
    }

    .contacts_block .about_block .left_text_block .locations {
        display: none;
    }

    .contacts_block .about_block .map iframe {
        max-width: 100%;
    }

    .contacts_block .about_block .left_text_block .tabs_block a {
        width: 150px;

    }

    .contacts_block .about_block .left_text_block .tabs_block {
        display: flex;
        margin-bottom: 40px;
        justify-content: center;
    }

    .contacts_block .about_block .left_text_block .locations .right_text_loc .emeil_connect {
        display: flex;
        align-items: center;
        gap: 2px;
        justify-content: center;
    }

    header .bottom_header .search_block {
        max-width: 100%;
    }
}


@media only screen and (max-width : 767px) {

    .map.pc,
    .main_banner_pc {
        display: none;
    }


    .map.mobile {
        display: block;
        z-index: 8;
        position: relative;
        top: -50px;
    }

    .main_banner_mobile {
        display: block;
    }

    .contacts_block .about_block .left_text_block .locations {
        display: none;
    }

    .contacts_block .about_block .left_text_block {
        width: 100%;
    }

    .news .about_block .cards_news .item {
        min-width: 300px;
    }

    .contacts_block .about_block .left_text_block {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0px;
        background: #fff;
        background: linear-gradient(180deg, #fff 0%, #fff 80%, rgba(242, 244, 246, 0) 100%);

    }

}


.coockies_noties {
    box-shadow: 0px -6px 10px hsla(240, 7%, 46%, .2);
    padding: 30px 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    display: none;
}

.coockies_noties.active {
    display: block;
}

.coockies_noties ._noties {
    font-size: 15px;
    font-weight: 500;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.coockies_noties ._noties span {
    color: #c4211d;
}

.topinfobar {
    background: rgb(255, 203, 189);
    background: linear-gradient(180deg, rgba(255, 203, 189, 1) 0%, rgba(248, 93, 88, 1) 100%);
    padding: 10px;
}

.topinfobar .flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topinfobar .flex svg {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .coockies_noties {
        bottom: 72px;
    }

    .coockies_noties ._noties {
        font-size: 14px;
        font-weight: 500;
    }
}

@media only screen and (max-width: 768px) {
    .topinfobar {
        padding: 10px;
    }

    .topinfobar .flex {
        flex-direction: column;
    }

    .topinfobar .flex svg {
        margin-right: 0px;
        width: 40px;
    }

}

.complex_banner_wrap {
    margin-top: 30px;
}

.complex_banner_wrap img {
    max-width: 100%;
}

.clinic_doctors .about_block .group_doctors .doctor_item .top_group p:first-letter {
    text-transform: uppercase;
}

@media (max-width: 999px) {
    .contacts_block .about_block {
        flex-direction: column;
        height: auto;
    }

    .about_us .about_block .left_text .mini_texts_group {
        /* margin-left: 30px; */
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-left: 0px;
    }

    .doctor_item .top_group a {
        display: block;
        width: 100%;
        text-align: center;
    }

    header.header_main_hidden {
        overflow: unset;
    }

    header.header_main_hidden {
        top: 0px;
    }
}

@media only screen and (max-width : 768px) {

    .about_us .about_block {
        flex-direction: column;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }

    .about_us .about_block .left_text {
        flex-direction: column;
        padding: 24px 30px 43px 30px;
    }

    .about_us .about_block .img_des {
        display: none;
    }

    .about_us .about_block .img_mob {
        display: block;
        width: 100%;
    }

    .about_us .about_block .left_text .card_text h3 {
        font-size: 20px;
        line-height: normal;
    }

    .about_us .about_block .left_text .card_text h2 {
        font-size: 50px;
        line-height: normal;
    }

    .about_us .about_block .left_text .card_text p {
        font-size: 16px;
    }

    .about_us .about_block .left_text .mini_texts_group {
        margin-left: 0;
        flex-wrap: wrap;
        margin-top: 30px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .about_us .about_block .left_text .mini_texts_group .numbers_text {
        flex-direction: column;
        gap: 18px;
        width: 143px;
    }

    .about_us .about_block .left_text .mini_texts_group .numbers_text h4 {
        align-items: center;
    }

    .home .about_block .mySwiper {
        height: 340px;
        max-width: 600px;
        margin: 0 auto;
    }


    header .bottom_header .search_block input {
        min-width: 280px;
    }



    header .bottom_header .search_block {
        width: 100%;
        max-width: 100%;
    }

    .home .about_block .group_paginations {
        right: auto;
        bottom: -10px;
        top: auto;
        width: 110px;
        height: 30px;
        border-radius: 15px;
        margin: 0 auto;
        left: 50%;
        margin-left: -65px;
        background: none;
    }

    .home .about_block .group_paginations .swiper_buttons .swiper-button-prev,
    .home .about_block .group_paginations .swiper_buttons .swiper-rtl .swiper-button-next {
        display: none;
    }

    .home .about_block .group_paginations .swiper_buttons .swiper-button-next,
    .home .about_block .group_paginations .swiper_buttons .swiper-rtl .swiper-button-prev {
        display: none;
    }

    .swiper-pagination-bullet-active {
        background: #ff6a6a;
    }
}


.search_block form {
    position: relative;
}

.find {
    position: absolute;
    display: none;
    background: #FFF;
    top: 45px;
    left: -30px;
    z-index: 99;
}

.founded_top {
    width: 320px;
    font-size: 13px;
    min-height: 32px;
    border: 1px solid #E0E4E8;
    border-radius: 12px;
    cursor: pointer;
    margin-top: -1px;
    padding-left: 6px;
    transition: .2s ease;
    /* padding: 5px; */
    line-height: 32px;
    margin-left: 5px;
}

.founded_top:hover {
    background: #F0F4F8;
    transition: .2s ease;
}

.search input:valid+.find {
    display: block;
}


@media only screen and (max-width: 760px) {
    .founded_top {
        width: 250px;
        font-size: 13px;
        min-height: 20px;
        border: 1px solid #E0E4E8;
        border-radius: 2px;
        cursor: pointer;
        margin-top: -1px;
        padding: 8px;
        transition: .2s ease;
        /* padding: 5px; */
        line-height: 16px;
        margin-left: 5px;
        display: block;
    }
}

@media (max-width: 999px) {
    .cards_block .about_block:not(.cards_grid) a.childs img {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .about_us .about_block .left_text .mini_texts_group {
        /* margin-left: 30px; */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0px;
    }

    .about_us .about_block {
        max-width: 100%;
    }

    .about_us .about_block .left_text .card_text {
        max-width: 300px;
    }
}

/* About center block */
.about_us {
    padding-bottom: 72px;
}

.about_us .about_block.about_center_block {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 360px;
    padding: 48px 52px 48px 0;
    border-radius: 34px;
    overflow: hidden;
    background: #f6f1ef;
}

.about_us .about_block.about_center_block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 28%, rgba(255, 255, 255, 0.74) 49%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.16) 100%);
    z-index: 1;
}

.about_us .about_block.about_center_block .left_text {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 560px;
}

.about_us .about_block.about_center_block .left_text .card_text {
    max-width: 560px;
}

.about_us .about_block.about_center_block .left_text .card_text h3 {
    display: none;
}

.about_us .about_block.about_center_block .left_text .card_text h2 {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.04;
    text-transform: none;
    color: #111216;
}

.about_us .about_block.about_center_block .left_text .card_text p {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.12;
    color: rgba(41, 42, 47, 0.62);
}

.about_center_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 216px;
    min-height: 52px;
    margin-top: 36px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    background: var(--accent-red);
    /* box-shadow: 0 18px 34px var(--accent-red-shadow); */
    transition: 0.25s ease;
}

.about_center_more:hover {
    color: #ffffff;
    background: var(--accent-red-hover);
}

.about_us .about_block.about_center_block .mini_texts_group {
    position: absolute;
    top: 50%;
    right: 28px;
    z-index: 2;
    width: min(44%, 575px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
    margin: 0;
    padding: 28px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
    transform: translateY(-50%);
}

.about_us .about_block.about_center_block .left_text .mini_texts_group .numbers_text,
.about_us .about_block.about_center_block .mini_texts_group .numbers_text {
    display: flex;
    align-items: center;
    gap: 18px;
    width: auto;
}

.about_us .about_block.about_center_block .left_text .mini_texts_group .numbers_text img,
.about_us .about_block.about_center_block .mini_texts_group .numbers_text img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
}

.about_us .about_block.about_center_block .left_text .mini_texts_group .numbers_text h4,
.about_us .about_block.about_center_block .mini_texts_group .numbers_text h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: var(--accent-red);
}

.about_us .about_block.about_center_block .left_text .mini_texts_group .numbers_text h4 span,
.about_us .about_block.about_center_block .mini_texts_group .numbers_text h4 span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.15;
    color: rgba(41, 42, 47, 0.72);
}

.about_us .about_block.about_center_block .img_des {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.about_us .about_block.about_center_block .img_mob {
    display: none;
}

@media (max-width: 1180px) {
    .about_us .about_block.about_center_block {
        padding: 40px 42px;
    }

    .about_us .about_block.about_center_block .mini_texts_group {
        right: 22px;
        width: min(46%, 520px);
        gap: 22px 24px;
        padding: 24px 26px;
    }

    .about_us .about_block.about_center_block .left_text .card_text h2 {
        font-size: 38px;
    }

    .about_us .about_block.about_center_block .left_text .card_text p {
        max-width: 460px;
        font-size: 16px;
    }
}

@media (max-width: 999px) {
    .about_us {
        padding-bottom: 48px;
    }

    .about_us .about_block.about_center_block {
        min-height: auto;
        padding: 0;
        background: transparent;
        border-radius: 0;
        overflow: visible;
        display: block;
    }

    .about_us .about_block.about_center_block::before {
        display: none;
    }

    .about_us .about_block.about_center_block .left_text {
        max-width: none;
    }

    .about_us .about_block.about_center_block .left_text .card_text {
        max-width: none;
    }

    .about_us .about_block.about_center_block .left_text .card_text h2 {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.08;
    }

    .about_us .about_block.about_center_block .left_text .card_text p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.12;
    }

    .about_center_more {
        min-width: 314px;
        min-height: 68px;
        margin-top: 34px;
        padding: 16px 24px;
        font-size: 18px;
    }

    .about_us .about_block.about_center_block .mini_texts_group,
    .about_us .about_block.about_center_block .img_des,
    .about_us .about_block.about_center_block .img_mob {
        display: none;
    }
}

/* Doctors slider block (shared person-slide, may affect multiple pages) */
.clinic_doctors {
    padding-bottom: 72px;
}

.clinic_doctors .about_block .title_block {
    align-items: center;
    margin-bottom: 28px;
}

.clinic_doctors .about_block .title_block h2 {
    font-size: 40px;
    line-height: 1;
    color: #111216;
}

.clinic_doctors .about_block .title_block .location,
.clinic_doctors .about_block .title_block .location_mob {
    display: none;
}

.clinic_doctors .about_block .title_block .right_title {
    margin-left: auto;
}

.clinic_doctors .about_block .title_block .right_title a {
    gap: 10px;
    padding: 14px 20px 14px 24px;
    border: 1px solid var(--accent-red);
    background: transparent;
    color: var(--accent-red);
}

.clinic_doctors .about_block .title_block .right_title a:hover {
    background: var(--accent-red-soft);
}

.clinic_doctors .about_block .title_block .right_title a img {
    width: 18px;
    height: 18px;
}

.clinic_doctors .about_block .group_doctors {
    position: relative;
    padding-bottom: 26px;
}

.clinic_doctors .about_block .group_doctors .swiper {
    overflow: visible;
}

.clinic_doctors .about_block .group_doctors .swiper-slide {
    height: auto;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin-bottom: 0;
    padding: 0 0 18px;
    border: 1px solid rgba(226, 231, 238, 0.95);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
    overflow: hidden;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group {
    position: relative;
}

.clinic_doctors .about_block .group_doctors .doctor_item__photo {
    display: block;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    overflow: hidden;
}

.clinic_doctors .about_block .group_doctors .doctor_item__photo img,
.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group a img {
    display: block;
    width: 100%;
    height: 202px;
    border-radius: 0;
    object-fit: cover;
    object-position: center -15px;
}

.clinic_doctors .about_block .group_doctors .doctor_item__badges {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.doctor_badge_group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.doctor_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.doctor_badge--experience {
    gap: 6px;
    min-height: 34px;
    padding: 5px 12px 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
    backdrop-filter: blur(4px);
    font-size: 14px;
    line-height: 1;
    color: #292a2f;
}

.doctor_badge__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.doctor_badge--icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.14);
}

.doctor_badge--icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.clinic_doctors .about_block .group_doctors .doctor_item__content {
    padding: 12px 18px 0;
    text-align: center;
}

.clinic_doctors .about_block .group_doctors .doctor_item__content h3,
.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group h3 {
    margin: 0 0 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.08;
    color: #111216;
}

.clinic_doctors .about_block .group_doctors .doctor_item__content p,
.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(41, 42, 47, 0.56);
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group {
    margin-top: auto;
    padding: 16px 10px 0;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .descr_doctors {
    display: none;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block {
    gap: 10px;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block a {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block .more {
    color: #ffffff;
    border-color: var(--accent-red);
    background: var(--accent-red);
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block .more:hover {
    background: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block .follow {
    color: var(--accent-red);
    background: #ffffff;
    border: 1px solid var(--accent-red);
}

.clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block .follow:hover {
    background: var(--accent-red-soft);
}

.clinic_doctors .about_block .group_doctors .swiper-button-next,
.clinic_doctors .about_block .group_doctors .swiper-button-prev {
    top: 50%;
    margin-top: -23px;
}

.clinic_doctors .about_block .group_doctors .swiper-pagination {
    display: none;
}

@media (max-width: 999px) {
    .clinic_doctors {
        padding-bottom: 48px;
    }

    .clinic_doctors .about_block .title_block {
        margin-bottom: 22px;
        justify-content: center;
    }

    .clinic_doctors .about_block .title_block h2 {
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

    .clinic_doctors .about_block .title_block .right_title {
        margin-left: 0;
    }

    .clinic_doctors .about_block .title_block .right_title a {
        display: none;
    }

    .clinic_doctors .about_block .group_doctors {
        padding-bottom: 34px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern {
        width: 100%;
        max-width: 374px;
        border-radius: 22px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item__photo img,
    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group a img {
        height: 248px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item__content {
        padding: 14px 16px 0;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item__content h3,
    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group h3 {
        font-size: 22px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item__content p,
    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .top_group p {
        min-height: 36px;
        font-size: 16px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group {
        padding: 18px 14px 0;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item.doctor_item--modern .bottom_group .more_block a {
        min-height: 48px;
        font-size: 16px;
    }

    .clinic_doctors .about_block .group_doctors .doctor_item__badges {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .doctor_badge--experience {
        min-height: 38px;
        font-size: 16px;
    }

    .doctor_badge__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .doctor_badge--icon {
        width: 34px;
        height: 34px;
    }

    .clinic_doctors .about_block .group_doctors .swiper-button-next,
    .clinic_doctors .about_block .group_doctors .swiper-button-prev {
        display: none;
    }

    .clinic_doctors .about_block .group_doctors .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        bottom: 0;
    }

    .clinic_doctors .about_block .group_doctors .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 !important;
        background: rgba(41, 42, 47, 0.28);
        opacity: 1;
    }

    .clinic_doctors .about_block .group_doctors .swiper-pagination .swiper-pagination-bullet-active {
        background: #111216;
    }
}

.eula {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    /* расстояние между чекбоксами */
}

.eula div {
    display: flex;
    align-items: flex-start;
    /* выравнивание по верхнему краю */
    gap: 8px;
    /* отступ между чекбоксом и текстом */
}

.eula input[type="checkbox"] {
    margin-top: 2px;
    /* выравнивание по вертикали, если нужно */
}

.eula label {
    font-size: 1rem;
    line-height: 1.4;
}

.eula a {
    display: inline;
    color: rgba(41, 42, 47, 0.5019607843);
    text-decoration: underline !important
}

.health_blog {
    padding-bottom: 60px;
}

.health_blog .about_block .title_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.health_blog .about_block .title_block h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .title_block a {
    padding: 17px 20px 17px 24px;
    background-color: #f2f4f6;
    border-radius: 400px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .health_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

@media (max-width: 768px) {
    .health_blog .about_block .health_item {
        grid-template-columns: 1fr;
        /* 1 колонка на маленьких экранах */
    }
}

.health_blog .about_block .health_item .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 22px 24px 22px;
    background-color: #f2f4f6;
    border-radius: 40px;
    width: 100%;
    height: 600px;
}

.health_blog .about_block .health_item .item .top_group img {
    width: 100%;
}

.health_blog .about_block .health_item .item .top_group span {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(41, 42, 47, 0.4);
    margin: 25px 0 7px 0;
    display: inline-block;
}

.health_blog .about_block .health_item .item .top_group h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #292a2f;
    margin-bottom: 7px;
}

.health_blog .about_block .health_item .item .top_group p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .health_item .item a {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
    padding: 12px;
    border: 1px solid #ec1213;
    transition: 0.5s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    border-radius: 400px;
}

.health_blog .about_block .health_item .item a:hover {
    color: #ffffff;
    background-color: #ff6a6a;
    border: 1px solid #ff6a6a;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 6px;
}

.breadcrumb a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292A2F;
}

.breadcrumb .arrow {
    color: rgba(41, 42, 47, 0.4);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.breadcrumb span {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(41, 42, 47, 0.4);
}

/* Стили пагинации */
.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
    background-color: #f2f4f6;
    transition: 0.5s all ease;
    cursor: pointer;
}

.pagination ul li.page-item.active {
    background-color: #EC1213;
    color: #ffffff;
}

.pagination ul li.dots {
    background-color: transparent;
    cursor: default;
}

.pagination ul li.next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f2f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
}

.pagination ul .page-item.active {
    background-color: #ec1213;
    /* Фон активной страницы */
    color: #ffffff;
    /* Цвет текста активной страницы */
}

.pagination {
    margin-top: 40px;
    /* Добавляет отступ сверху */
}

.pagination ul {
    display: flex;
    /* Отображение элементов в строку */
    align-items: center;
    /* Выравнивание по вертикали по центру */
    gap: 10px;
    /* Расстояние между элементами */
    list-style: none;
    /* Убирает маркеры списка */
    padding: 0;
    /* Сбрасывает внутренние отступы */
    margin: 0;
    /* Сбрасывает внешние отступы */
}

.pagination ul .page-item {
    width: 48px;
    /* Ширина элемента страницы */
    height: 48px;
    /* Высота элемента страницы */
    border: 1px solid #FF6A6A;
    /* Граница цвета #FF6A6A */
    color: #FF6A6A;
    /* Цвет текста */
    display: flex;
    /* Отображение содержимого как flex */
    align-items: center;
    /* Выравнивание содержимого по вертикали по центру */
    justify-content: center;
    /* Выравнивание содержимого по горизонтали по центру */
    border-radius: 10px;
    /* Скругление углов */
    font-weight: 500;
    /* Жирность шрифта */
    font-size: 16px;
    /* Размер шрифта */
    line-height: 100%;
    /* Высота строки */
    letter-spacing: 0%;
    /* Интервал между буквами */
    text-align: center;
    /* Выравнивание текста по центру */
    vertical-align: middle;
    /* Выравнивание по вертикали */
    cursor: pointer;
    /* Курсор в виде указателя */
    transition: all 0.3s ease;
    /* Плавный переход для всех изменений */
}

.pagination ul .page-item.active {
    /* Стили для активной страницы (в файле не определены явно, применяется стиль .page-item) */
    /* background-color: #ec1213; color: #ffffff; - эти стили есть в другом файле */
}

.pagination ul .page-item:hover:not(.active) {
    background-color: rgba(255, 107, 107, 0.1);
    /* Фон при наведении, кроме активной */
}

.pagination ul .dots {
    font-weight: 500;
    /* Жирность шрифта */
    font-size: 16px;
    /* Размер шрифта */
    line-height: 100%;
    /* Высота строки */
    letter-spacing: 0%;
    /* Интервал между буквами */
    text-align: center;
    /* Выравнивание текста по центру */
    vertical-align: middle;
    /* Выравнивание по вертикали */
    color: #FF6A6A;
    /* Цвет текста */
    margin: 0 8px;
    /* Внешние отступы */
    cursor: default;
    /* Курсор в виде стрелки (не указателя) */
}

.pagination ul .next {
    color: #FF6A6A;
    /* Цвет текста */
    cursor: pointer;
    /* Курсор в виде указателя */
    font-size: 20px;
    /* Размер шрифта */
    display: flex;
    /* Отображение содержимого как flex */
    align-items: center;
    /* Выравнивание содержимого по вертикали по центру */
    justify-content: center;
    /* Выравнивание содержимого по горизонтали по центру */
    transition: color 0.3s ease;
    /* Плавный переход для изменения цвета */
    width: 48px;
    /* Ширина */
    height: 48px;
    /* Высота */
}


.health_blog {
    padding-bottom: 60px;
}

.health_blog .about_block .title_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.health_blog .about_block .title_block h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .title_block a {
    padding: 17px 20px 17px 24px;
    background-color: #f2f4f6;
    border-radius: 400px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .health_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
}

.health_blog .about_block .health_item .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 22px 24px 22px;
    background-color: #f2f4f6;
    border-radius: 40px;
    width: 100%;
    height: 600px;
}

.health_blog .about_block .health_item .item .top_group img {
    width: 100%;
}

.health_blog .about_block .health_item .item .top_group span {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(41, 42, 47, 0.4);
    margin: 25px 0 7px 0;
    display: inline-block;
}

.health_blog .about_block .health_item .item .top_group h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #292a2f;
    margin-bottom: 7px;
    min-height: 52px;
}

.health_blog .about_block .health_item .item .top_group p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #292a2f;
}

.health_blog .about_block .health_item .item a {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292a2f;
    padding: 12px;
    border: 1px solid #ec1213;
    transition: 0.5s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    border-radius: 400px;
}

.health_blog .about_block .health_item .item a:hover {
    color: #ffffff;
    background-color: #ff6a6a;
    border: 1px solid #ff6a6a;
}

.health_page_block {
    padding-bottom: 42px;
}

.health_page_block .about_block .title_block {
    margin-bottom: 32px;
}

.health_page_block .about_block .health_item {
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 40px;
}

.health_page_block .about_block .health_item .item {
    max-width: 385px;
}

.healthy_eating_prevention {
    padding-bottom: 73px;
}

.healthy_eating_prevention .about_block .title_block {
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 36px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .block_descriptions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 35px 10px 9px;
    background-color: #F2F4F6;
    border-radius: 40px;
    width: 100%;
}

.healthy_eating_prevention .about_block .block_descriptions .desc_group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.healthy_eating_prevention .about_block .block_descriptions .desc_group span {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .block_descriptions .desc_group a {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0%;
    text-decoration: underline !important;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .block_descriptions .profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.healthy_eating_prevention .about_block .block_descriptions .profile h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .block_descriptions .profile h3 span {
    font-weight: 700;
}

.healthy_eating_prevention .about_block .img_main {
    width: 100%;
    margin: 20px 0;
    border-radius: 24px;
}

.healthy_eating_prevention .about_block .content {
    padding: 32px 40px;
    background-color: #F2F4F6;
    border-radius: 40px;
    margin-bottom: 30px;
}

.healthy_eating_prevention .about_block .content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #292A2F;
    margin-bottom: 30px;
}

.healthy_eating_prevention .about_block .content ul {
    padding-left: 20px;
}

.healthy_eating_prevention .about_block .content ul li {
    list-style: auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    text-decoration: underline;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .content ul li a {
    color: #292A2F;
}

.healthy_eating_prevention .about_block h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #292A2F;
    margin-bottom: 25px;
}

.healthy_eating_prevention .about_block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #292A2F;
    margin-bottom: 20px;
}

.healthy_eating_prevention .about_block p span {
    font-weight: 700;
}

.healthy_eating_prevention .about_block p.text_fifth {
    margin-bottom: 30px;
}

.healthy_eating_prevention .about_block p.text_mini {
    margin-bottom: 0;
}

.healthy_eating_prevention .about_block p.text_sixth {
    margin-bottom: 30px;
}

.healthy_eating_prevention .about_block .text_group_ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 30px;
}

.healthy_eating_prevention .about_block .text_group_ul li {
    list-style: disc;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .text_group_last {
    padding: 43px 71px 40px 40px;
    background-color: #F2F4F6;
    border-radius: 40px;
    display: flex;
    align-items: flex-start;
    gap: 42px;
    margin: 30px 0;
}

.healthy_eating_prevention .about_block .text_group_last h5 {
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #292A2F;
}

.healthy_eating_prevention .about_block .did_you_like {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}

.healthy_eating_prevention .about_block .did_you_like span {
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: rgba(41, 42, 47, 0.4);
}

.healthy_eating_prevention .about_block .did_you_like h6 {
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #292A2F;
}

.cards_health_last {
    padding-bottom: 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 6px;
}

.breadcrumb a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #292A2F;
}

.breadcrumb .arrow {
    color: rgba(41, 42, 47, 0.4);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.breadcrumb span {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(41, 42, 47, 0.4);
}

.pagination {
    margin-top: 40px;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul .page-item {
    width: 48px;
    height: 48px;
    border: 1px solid #FF6A6A;
    color: #FF6A6A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination ul .page-item.active {
    background-color: #F2F4F6;
    color: #292A2F;
    border: none;
}

.pagination ul .page-item:hover:not(.active) {
    background-color: rgba(255, 107, 107, 0.1);
}

.pagination ul .dots {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FF6A6A;
    margin: 0 8px;
    cursor: default;
}

.pagination ul .next {
    color: #FF6A6A;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    width: 48px;
    height: 48px;
}

.news .about_block .cards_news .item .bottom_description {
    height: 280px;
}

.news .about_block .cards_news .item .bottom_description .top_text {
    min-height: 190px;
}

.news .about_block .cards_news .item .bottom_description .top_text h3 {
    min-height: 80px;
}

.health_blog .about_block .health_item .item .top_group h3 {}

.anons_blog {
    min-height: 120px;
}


@media (max-width: 999px) {

    .health_blog .about_block .title_block h2 {
        font-weight: 500;
        font-size: 24px;
        line-height: 26px;
    }

    .health_blog .about_block .health_item {
        overflow-x: scroll;
        overflow-y: clip;
        justify-content: center;
    }

    .health_blog .about_block .health_item .item {
        width: 285px;
    }

    .health_page_block .about_block .health_item .item {
        min-width: 285px;
    }

    .health_blog .about_block .title_block a {
        width: 206px;
    }

    .news_page_group {
        padding-top: 160px;
    }

    .breadcrumb {
        margin-bottom: 29px;
    }

    .news_page_group .about_block .title_block {
        margin-bottom: 39px;
    }

    .news .about_block .cards_main {
        display: none;
    }

    .news_page_group .about_block .cards_news {
        justify-content: center;
        row-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .news .about_block .cards_news .item .bottom_description .top_text {
        min-height: 190px;
    }

    .news .about_block .cards_news .item .bottom_description .top_text h3 {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0%;
        margin-bottom: 20px;
        min-height: 80px;
    }


    .news_page_group .about_block .cards_news .item {
        height: 400px;
    }

    .news_page_group .about_block .cards_news .item .bottom_description {
        height: 180px;
    }

    .health_page_block {
        padding-top: 160px;
    }

    .healthy_eating_prevention {
        padding-top: 160px;
        padding-bottom: 0;
    }

    .healthy_eating_prevention .about_block .title_block {
        margin-bottom: 21px;
        font-size: 32px;
        line-height: 100%;
    }

    .healthy_eating_prevention .about_block .block_descriptions {
        flex-wrap: wrap;
        row-gap: 11px;
        -moz-column-gap: 16px;
        column-gap: 16px;
        padding: 17px 20px 16px 20px;
    }

    .healthy_eating_prevention .about_block .block_descriptions .desc_group {
        gap: 10px;
        width: 180px;
    }

    .healthy_eating_prevention .about_block .block_descriptions .desc_group img {
        width: 24px;
        height: 24px;
    }

    .healthy_eating_prevention .about_block .block_descriptions .profile {
        width: 100%;
    }

    .healthy_eating_prevention .about_block .block_descriptions .desc_group span br {
        display: none;
    }

    .healthy_eating_prevention .about_block .block_descriptions .desc_group span .label {
        display: none;
    }

    .healthy_eating_prevention .about_block .content {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .healthy_eating_prevention .about_block .img_main {
        margin-bottom: -10px;
    }

    .healthy_eating_prevention .about_block .text_group_last {
        flex-direction: column;
        gap: 39px;
    }

    .healthy_eating_prevention .about_block .text_group_last {
        padding: 46px 30px 47px 30px;
    }

    .cards_health_last {
        padding-top: 48px;
    }

    .cards_health_last .about_block .health_item {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.healthy_eating_prevention .profile img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.health_blog .health_item img {
    border-radius: 16px;
}

.did_you_like button {
    border: none;
    background: none;
}

.did_you_like img {
    opacity: 0.5;
}

.did_you_like.active img {
    opacity: 1;
}

.popup-gallery {
    list-style: none;
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.popup-gallery img {
    border-radius: 6px;
    opacity: 1;
}

.popup-gallery img:hover {
    transform: scale(1);
}

@media (max-width: 1140px) {


    .popup-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {


    .popup-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .popup-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}


.healthy_eating_prevention blockquote {
    padding: 43px 71px 40px 40px;
    background-color: #F2F4F6;
    border-radius: 40px;
    display: flex;
    align-items: flex-start;
    gap: 42px;
    margin: 30px 0;
    position: relative;
    padding-left: 200px;
}

.healthy_eating_prevention blockquote::before {
    content: url('/templates/demodizzy/app/img/blog/text_arrow.svg');
    position: absolute;
    left: 50px;
    top: 50px;
}

.healthy_eating_prevention blockquote h5,
.healthy_eating_prevention blockquote h4,
.healthy_eating_prevention blockquote h3 {
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #292A2F;
}

@media (max-width: 768px) {

    .healthy_eating_prevention blockquote::before {
        content: url('/templates/demodizzy/app/img/blog/text_arrow.svg');
        position: absolute;
        left: 20px;
        top: 30px;
    }

    .healthy_eating_prevention blockquote {
        padding: 120px 20px 20px 20px;
        background-color: #F2F4F6;
        border-radius: 40px;
        display: flex;
        align-items: flex-start;
        gap: 42px;
        margin: 30px 0;
        position: relative;
    }
}



.form_group .about_block {
    min-height: 300px;
}



@media (max-width: 768px) {
    .mobile_profile {
        padding: 10px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ec1213;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .top_header .version_impaired a.mobile_profile img {
        width: 25px;
        height: 25px;
    }
}

.anons_blog {
    min-height: 120px;
}

.price_booking {
    margin-top: 15px;
}


.develop_noties {
    box-shadow: 0px -6px 10px hsla(240, 7%, 46%, .2);
    padding: 15px 0px;
    position: fixed;
    bottom: 0;
    width: 250px;
    left: 0px;
    background: #fff;
    z-index: 8;
    text-align: center;
    border-top-right-radius: 16px;

}

.develop_noties.active {}

.develop_noties ._noties {
    font-size: 15px;
    font-weight: 500;
}



.develop_noties ._noties span {
    color: #c4211d;
}



@media only screen and (max-width: 768px) {

    .develop_noties {

        bottom: 36px;
    }

    .develop_noties ._noties {
        font-size: 14px;
        font-weight: 500;
    }
}

.topinfobar {
    background: #839D48;
    background: linear-gradient(180deg, #839D48 0%, #839D48 100%);
    padding: 10px;
    color: #fff !important;
}

.topinfobar div {
    color: #fff !important;
}