.faq-container {
    background: linear-gradient(135deg, #D7E9FF 0%, #589BC6 100%);
    padding: 32px;
}

.faq-body {
    max-width: 925px;
    color: var(--text-color);
    margin: 0 auto;
}

.faq-body .faq-body__item {
    position: relative;
    margin: 16px 0;
    padding: 32px 40px;
    background: #FFF;
    cursor: pointer;
}

.faq-body .faq-body__label {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    transition: 0.3s;
    display: grid;
    grid-template-columns: 11fr 1fr;
}

.faq-body .faq-body__label::before {
    content: '\FF0B';
    color: var(--text-color);
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 24px;
    transform: translateY(-50%);
}

.faq-body .faq-body__content {
    position: relative;
    background: white;
    height: 0;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    width: 90%;
    overflow: hidden;
    transition: 0.6s;
}

.faq-body .faq-body__item.active .faq-body__content {
    height: 20px;
}

.faq-body .faq-body__item.active .faq-body__label::before {
    content: '\2014';
    font-size: 24px;
    color: #589BC6;
}

.faq-body .faq-body__item.active .faq-body__label {
    color: #589BC6;
    margin-bottom: 8px;
    /*transition: 0.3s;*/
}

#hidden-faq{
    display: none;
    text-align: center;
}

@media screen and (max-width: 1420px) {
    .faq-body .faq-body__label {
        font-size: 18px;
    }
}
@media screen and (max-width: 1200px) {
    .faq-body .faq-body__label {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .faq-body .faq-body__label {
        font-size: 14px;
    }
    .faq-body {
        max-width: 680px;
    }
    .faq-body .faq-body__item{
        padding: 14px;
    }
    .faq-body__label>p{
        line-height: 1.5;
    }
}
