@media (min-width: 1090px) {
    .faq {
        padding-bottom: 290px;
        overflow: hidden;
    }
    .faq.faq-inner {
        padding-bottom: 0;
    }
}
.faq.section.faq-inner {
    margin-bottom: 62px;
    padding: 48px 0 0;
}
.faq-content {
    padding-bottom: 45px;
}
.faq__title {
    font-size: var(--font-h2);
    line-height: 1.14;
    margin-bottom: 64px;
}
.faq__container {
    display: flex;
    gap: 32px;
}
.faq__preview {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
}
.faq-images {
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.faq__img img {
    display: none;
}
.lazyready .faq__img img {
    display: inline;
}

.faq__img {
    position: absolute;
    top: 0;
    transition: var(--transition);
    opacity: 0;
}
.faq__img.active {
    opacity: 1;
}
.faq-tabs {
    z-index: 4;
    position: relative;
}
.faq__tabs {
    margin-top: 50px;
    flex: 1;
}
.faq-tabs__btns {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--accent);
}
.faq-tabs__heading {
    flex: 1;
    cursor: pointer;
    text-align: center;
    border-radius: 16px 16px 0px 0px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-big);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-tabs__heading.active,
.faq-tabs__heading:hover {
    color: var(--black);
    background-color: var(--accent);
}

.faq-tabs__content {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}
.faq-inner .faq__container {
    flex-wrap: wrap;
}
.faq-inner .faq__preview.faq__preview__no-image {
    display: block;
    flex-basis: 100%;
    max-width: 100%;
}
.faq-inner .faq__tabs {
    margin-top: 10px;
}
.faq-inner .faq__title {
    margin-bottom: 0;
}
@media (max-width: 1440px) {
    .faq.section {
        overflow-y: hidden;
    }
}
@media (max-width: 1260px) {
    .faq__preview {
        flex: 0 0 500px;
    }
}
@media (max-width: 1090px) {
    .faq__container {
        flex-direction: column;
    }
    .faq__tabs {
        margin-top: 0;
    }
    .faq__preview {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
    }
    .faq__img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 265px;
        object-fit: contain;
    }
    .faq__img.active {
        position: static;
    }
    .faq__title {
        font-size: 56px;
    }
}
@media (max-width: 991px) {
    .faq__title {
        margin-bottom: 0;
    }
}
@media (max-width: 1015px) {
    .faq.section.faq-inner {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .faq__title {
        font-size: 32px;
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 60px;
    }
    .faq__preview {
        flex-wrap: wrap;
    }
    .faq__img img {
        max-height: 202px;
    }
    .faq__container {
        gap: 77px
    }
}
@media (max-width: 430px) {
    .faq-tabs__btns {
        display: none;
    }

    .faq__container {
        gap: 77px;
    }
}
