
.use-block__wrapper {
    display: flex;
    gap: 30px;
}
.use-block__title {
    position: relative;
    height: fit-content;
}
.use-block__title-text {
    position: relative;
    z-index: 2;
    color: var(--head-secondary);
    width: 100%;
    max-width: 490px;
    height: fit-content;
    min-height: 360px;
    padding: 40px 40px 40px 40px;
}
.use-block__title-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 5px;
    object-fit: cover;
}
.use-block__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1010px;
    width: 100%;
}
.use-block__item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e3e1;
    border-radius: 5px;
}
.use-block__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 10px 10px 10px 40px;
    cursor: pointer;
}
.use-block__item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #1f1f1f;
    max-width: 865px;
    width: 100%;
    padding: 20px 0 20px;
}
.use-block__item-descr {
    display: none;
    font-size: 16px;
    line-height: 120%;
    color: #6a6a6a;
    border-top: 1px solid var(--stroke);
    padding: 25px 0 40px 0;
    margin: 0 105px 0 40px;
}
.use-block__item-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 5px;
    transition: .15s ease-out;
    aspect-ratio: 1/1;
}
.use-block__item-nav .btn-open path {
    fill: #fff;
}
.use-block__item-nav .btn-close {
    display: none;
}
/* open-btn */
.use-block__item.open .use-block__item-nav {
    background-color: var(--background-secondary);
}
.use-block__item.open .btn-close {
    display: block;
}
.use-block__item.open .btn-open {
    display: none;
}
@media screen and (max-width: 991px) {
    .use-block__wrapper {
        flex-direction: column;
    }
    .use-block__title-text {
        max-width: 100%;
        padding: 40px;
    }
}
@media screen and (max-width: 576px) {
    .use-block__item-top {
        padding: 10px 10px 10px 24px;
        gap: 15px;
    }
    .use-block__item-descr {
        padding: 15px 0 30px 0;
        margin: 0 90px 0 30px;
    }
    .use-block__item-nav {
        width: 40px;
        height: 40px;
    }
}
