.faq {
    /* background: linear-gradient(180deg, #e7f5ff 0%, #e3dafc 100%); */
}
.faq .container {
    position: relative;
    z-index: 3;
}
.bg-ph-faq {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
.bg-ph-faq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.faq__title {
    font-size: 50px;
    color: #fff;
}
.faq__questions {
    margin-top: 60px;
}

.faq__questions-block:not(:first-child) {
    margin-top: 20px;
}

.faq__questions-title {
    font-size: 30px;
    border-radius: 15px;
    padding: 30px 80px 30px 30px;
    background: #ffffff;
    position: relative;
    letter-spacing: unset !important;
}

.faq__questions-title::before {
    content: '';
    margin: auto 0;
    width: 22px;
    height: 2px;
    background-color: #333; /* цвет линий */
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    transition: transform 0.3s ease;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.faq__questions-title::after {
    content: '';
    margin: auto 0;
    width: 22px;
    height: 2px;
    background-color: #333; /* цвет линий */
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}
.faq__questions-block {
    background: #fff;
    border-radius: 15px;
    cursor: pointer;
}
.faq__questions-block {
    margin-bottom: 30px;
}

.faq__questions-block.active .faq__questions-title::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.faq__questions-answer {
    color: #696969;
    font-size: 19px;
    padding: 0px 30px 30px 30px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .faq__questions {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .faq__questions-title::after,
    .faq__questions-title::before {
        right: 20px;
    }
    .faq__title {
        text-align: center;
    }
    .faq__questions-block {
        margin-bottom: 15px;
    }
    .faq__questions-title {
        font-size: 18px;
        padding: 28px 60px 20px 20px;
        border-radius: 8px;
    }
    .faq__questions-block {
        border-radius: 8px;
    }

    .faq__questions-answer {
        font-size: 16px;
        padding: 8px 20px 20px 20px;
    }

    .faq__questions-block:not(:first-child) {
        margin-top: 15px;
    }
}
