.faq-block__wrapper {
    display: flex;
    gap: 30px;
}
.faq-block__text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    max-width: 490px;
    width: 100%;
}
.faq-block__descr {
    font-size: 20px;
    line-height: 120%;
    color: var(--main-text-primary);
    margin-bottom: 30px;
}
.faq-block__questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.faq-block__item {
    border: 1px solid var(--head-secondary);;
    border-radius: 5px;
}
.faq-block__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px;
    padding-right: 20px;
    border-bottom: 1px solid var(--background-secondary);
    background: var(--background-secondary);
    border-radius: 5px;
    cursor: pointer;
    transition: .25s ease-out;
}
.faq-block__item-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.faq-block__item-icon {
    width: 50px;
    height: 50px;
    padding: 15px;
    background: var(--head-secondary);
    border-radius: 5px;
    transition: .25s ease-out;
}
.faq-block__item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--head-primary);
}
.faq-block__item-nav {
    position: relative;
    width: 14px;
    height: 14px;
    transition: all .25s ease-out;
    transform: rotate(-90deg);
}
.faq-block__item-nav > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .25s ease-out;
}
.faq-block__item-nav .btn-open {
    opacity: 1;
}
.faq-block__item-nav .btn-close {
    opacity: 0;    
}
.faq-block__item-bottom {
    display: none;
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text-primary);
    padding: 30px 90px;
}

/* open-btn */
.faq-block__item.open {
    background: var(--head-secondary);
    border: 1px solid var(--stroke);
}
.faq-block__item.open .faq-block__item-top {
    background: var(--head-secondary);
    border-bottom: 1px solid var(--stroke);
}
.faq-block__item.open .faq-block__item-icon {
    background: var(--background-secondary);
}
.faq-block__item.open .faq-block__item-nav {
    transform: rotate(0deg);
}
.faq-block__item.open .btn-open {
    opacity: 0;
}
.faq-block__item.open .btn-close {
    opacity: 1;
}
@media screen and (max-width: 991px) {
    .faq-block__wrapper {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .faq-block__item-left {
        gap: 10px;
    }
    .faq-block__item-title {
        font-size: 14px;
    }
    .faq-block__item-top {
        gap: 5px;
    }
    .faq-block__item-bottom {
        font-size: 14px;
        padding: 30px 20px;
    }
    .faq-block__item-icon {
        width: 40px;
        height: 40px;
    }
}
