/* Блок 5 */
.adns_napravleniy_block5 {
    display: flex;
    gap: 20px;
}

.nprvln_bl5-content1 {
    width: 50%;
    background-color: var(--theme-base-color);
    color: white;
    padding: 30px 40px 10px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

.nprvln_bl5-name {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.nprvln_bl5-content2 {
    width: 50%;
}

.nprvln_bl5-content2 img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 30px;
}

.nprvln_bl5-name_mob {
    display: none;
}

.adns_disease_name {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    align-items: center;
    cursor: pointer;
}

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

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

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

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

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

.adns_disease_content {
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    height: 0;
    opacity: 0;
    font-weight: 100;
    padding-top: 10px;
}

.adns_disease_content.is-open {
    opacity: 1;
}

.adns_disease-title {
    font-weight: 600;
}

.adns_disease_content p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .adns_disease-title {
        font-size: 16px;
        width: calc(100% - 32px);
    }

    .adns_disease_content {
        font-size: 14px;
    }

    .adns_napravleniy_block5 {
        flex-direction: column;
    }

    .nprvln_bl5-content1 {
        width: 100%;
        padding: 20px 20px 18px;
    }

    .nprvln_bl5-content2 {
        width: 100%;
    }

    .nprvln_bl5-name {
        font-size: 30px;
    }
}
