.another-theme {
    display: none;
}

.header-main-image {
    display: none;
}

.faq {
    padding: 48px 20px 200px;
    display: flex;
    justify-content: space-between;
}

.faq-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 110%;
    text-transform: lowercase;
    color: var(--color-foreground-primary);
    letter-spacing: -0.3px;
}

.faq-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 54.479vw;
    max-width: 1394px;
    min-width: 787px;
}

.faq-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-info-block-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-info-block-question-t {
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
    color: var(--color-foreground-primary);
    letter-spacing: -0.3px;
}

.faq-info-block-question-ic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;

    transform: rotate(45deg);
    transition: transform .2s ease;
}

.faq-info-block-question-ic img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

.faq-info-block-answer {
    font-size: 24px;
    color: var(--color-foreground-opacity);
    letter-spacing: -0.3px;
    

    display: none;
    width: 81.3%;
}

.faq-info-block-question:hover .faq-info-block-question-ic {
    opacity: .5;
}

.faq-info-block.active .faq-info-block-answer {
    display: block;
}

.faq-info-block.active .faq-info-block-question-ic {
    transform: rotate(90deg);
}

/* Адаптация на маленькие экраны (< 1920)*/
/* 1440 */
@media screen and (max-width: 1575px) {
    .faq-title {
        font-size: 48px;
        line-height: 110%;
    }

    .faq-info {
        gap: 48px;
        width: 54.653vw;
    }

    .faq-info-block-answer {
        font-size: 20px;
    }
}

/* 1280 */
@media screen and (max-width: 1280px) {
    .faq {
        padding: 48px 20px 48px;
        flex-direction: column;
        gap: 48px;
    }

    .faq-title {
        font-size: 64px;
        line-height: 110%;
    }

    .faq-info {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

/* 768 */
@media screen and (max-width: 1200px) {
    .faq {
        padding: 48px 20px 72px;
    }

    .faq-info {
        gap: 32px;
    }

    .faq-info-block-question-t {
        font-size: 24px;
        line-height: 110%;
    }

    .faq-info-block-question-ic {
        width: 32px;
        height: 32px;
    }

    .faq-info-block-answer {
        font-size: 16px;
    }
}

/* 375 */
@media screen and (max-width: 725px) {
    .faq-title {
        font-size: 32px;
        line-height: 110%;
    }

    .faq-info-block-question-t {
        font-size: 18px;
        line-height: 110%;
        width: 85%;
    }

    .faq-info-block-question-ic {
        width: 24px;
        height: 24px;
    }

    .faq-info-block-answer {
        font-size: 14px;
        width: 100%;
    }
}