.faq .title h2 {
    font-size: 64px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 30px;
    color: var(--theme-secondary);
    text-align: left;
}
.faq .title .img {
    background: var(--theme-secondary);
    color: var(--theme-white);
    border-radius: 24px;
    overflow: hidden;
    padding: 70px 0 20px 0;
}
.faq .title .img img {
    width: 100%;
    margin-bottom: 15px;
}
.faq .title .img p {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
}


.faq .faq-block {
    border: 1px solid var(--theme-black);
    border-radius: 16px;
    overflow: hidden;
}
.faq .faq-block:not(:last-child) {
    margin-bottom: 20px;
}
.faq .faq-block-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    cursor: pointer;
}
.faq .faq-block .faq-block-title .dot {
    width: 16px;
    height: 16px;
    border-radius: 1000px;
    border: 1px solid var(--theme-black);
    background: var(--theme-white);
    transition: 0.3s;
    margin-right: 10px;
    transition: 0.3s;
}
.faq .faq-block.active .faq-block-title .dot {
    background: var(--theme-black);
}
.faq .faq-block-title .text {
    margin-right: 10px;
}
.faq .faq-block-title .cross {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
}
.faq .faq-block-title .cross img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.faq .faq-block .faq-block-content {
    padding: 0 20px 0px 20px;
    transition: 0.3s;
    max-height: 0px;
}
.faq .faq-block.active .faq-block-content {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}
.faq .faq-block .faq-block-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.faq .faq-block .cross img {
    transition: 0.3s;
}
.faq .faq-block .cross img:nth-child(1) {
    opacity: 1;
}
.faq .faq-block .cross img:nth-child(2) {
    opacity: 0;
}
.faq .faq-block.active .cross img:nth-child(1) {
    opacity: 0;
}
.faq .faq-block.active .cross img:nth-child(2) {
    opacity: 1;
}
.faq * {
    user-select: none;
}

.faq .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

@media (min-width: 576px) {
    .faq .container {
        max-width:576px
    }
}

@media (min-width: 768px) {
    .faq .container {
        max-width:768px
    }
}

@media (min-width: 992px) {
    .faq .container {
        max-width: 1200px
    }
}

@media (min-width: 1200px) {
    .faq .container {
        max-width:1300px
    }
}


@media screen and (max-width: 991px) {
    .faq .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq .title h2 {
        font-size: 2rem;
        line-height: 1.4;
        text-align: center;
    }
    .faq .title .img {
        max-width: 400px;
        margin: 0 auto;
    }
    .faq .faq-block-title {
        padding: 10px 10px;
    }
    .faq .faq-block-title .text {
        font-size: 14px;
        line-height: 1.4;
    }
    .faq .faq-block .faq-block-content {
        padding: 0 10px 0 10px;
    }
    .faq .faq-block.active .faq-block-content {
        padding: 0 10px 10px 10px;
    }
    .faq .faq-block .faq-block-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    .faq .faq-block .faq-block-title .dot {
        width: 12px;
        height: 12px;
        margin-right: 6px;
    }
    .faq .faq-block-title .cross {
        width: 18px;
        height: 18px;
    }
}