.direction_clinic {
    display: flex;
    gap: 1%;
    align-items: stretch;
}

.direction_clinic>div {
    display: flex;
    flex-direction: column;
}

.direction_clinic_left {
    width: 30%;
    color: var(--theme-base-color)
}

.direction_clinic_left_title {
    font-size: 40px;
    line-height: 46px;
    color: var(--theme-base-color);
    font-weight: bold;
    padding-bottom: 16px;
}

.direction_clinic_left_img {
    width: 100%;
    margin-top: 22px;
}

.direction_clinic_left_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px
}

.direction_clinic_left_desc {}

.direction_clinic_left_perfect {
    margin-top: 15px;
    padding: 35px 25px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 20px;
    background: #F2F4FF;
}

.direction_clinic_center {
    width: 40%;
    background: var(--theme-base-color);
    border-radius: 20px;
    color: white;
    padding: 35px
}

.direction_clinic_center img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.direction_clinic_right {
    width: 28%;
    display: flex;
    flex-direction: column;
}

.direction_clinic_right_title {
    font-size: 24px;
    color: var(--theme-base-color);
    font-weight: bold;
    padding-bottom: 20px;
}

.direction_clinic_right_desc {
    padding-bottom: 30px;
    color: var(--theme-base-color);
}

.direction_clinic_title {
    font-weight: 600;
    font-size: 22px;
    background-color: white;
    color: var(--theme-base-color);
    width: fit-content;
    border-radius: 40px;
    padding: 8px 24px;
}

.direction_clinic_items {
    margin-bottom: 25px;
}

.direction_clinic_items .base-text {
    color: white;
    margin: 25px 0 25px 15px;
    font-size: 18px;
    width: 90%;
}

.horizontal-line {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 10px 0;
}

.staff_block_btn {
    display: flex;
    border: 1px solid var(--theme-base-color);
    background: white;
    border-radius: 30px;
    padding: 10px 27px;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    color: var(--theme-base-color);
    text-decoration: none;
}

.direction_clinic_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.staff_block_btn img {
    width: 14px;
    height: 15px;
}

.direction_center_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.direction_center_link .link_arrow_s {
    position: static;
    border: 1px solid white;
    border-radius: 30px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    align-items: center;
}

.direction_center_link .link_arrow_content {
    display: flex;
    width: 100%;
    height: 30px;
}

.direction_center_link .link_arrow__icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    transition: 0.3s;
    align-items: center;
    transform: rotate(313deg);
}

.direction_center_link .link_arrow__icon img {
    width: 15px;
    height: 15px;
}

.direction_clinic_right_content {
    background: #F2F4FF;
    padding: 25px 30px;
    border-radius: 38px;
    flex: 0 0 auto;
}

.direction_clinic_right_content button {
    width: 100%
}

.direction_clinic_right_img {
    max-height: 554px;
    margin-top: 20px;
    min-height: 0;
}

.direction_clinic_right_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    object-position: top;
}

.direction_clinic_left_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.direction_clinic_right_content button {
    border-radius: 40px;
}

@media (max-width: 991px) {
    .direction_clinic {
        display: flex;
        row-gap: 40px;
        flex-direction: column;
    }

    .direction_clinic_left {
        width: 100%;
    }

    .direction_clinic_center {
        width: 100%;
    }

    .direction_clinic_right {
        width: 100%;
        text-align: center;
    }

    .direction_clinic_right img {
        max-width: none;
        width: 100%;
    }

    .direction_clinic_items .base-text {
        margin-left: 0;
    }

    .direction_clinic_center {
        padding: 15px;
    }

    .direction_clinic_left_perfect {
        padding: 25px 15px;
    }

    .direction_clinic_right_img {
        max-height: none;
    }
}
