.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
    max-width: 70%;
}
.faq__item{
    margin-bottom: 12px;
    position: relative;
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item--boxed{
    background-color: var(--faq-bg);
    border-radius: 16px;
}
.faq__question{
    position: relative;
    padding: 20px 16px;
    transition: all .3s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background-color: #0C4A6B;
    color: rgb(187 250 250);
    border-radius: 16px;
}
.faq__question.active {
    /* background-color: #0C4A6B;
    color: rgb(187 250 250); */
    border-radius: 16px 16px 0 0;
}
.faq__item--boxed.visible {
    background-color: var(--faq-bg);
    border: 1px solid var(--basic-company);
}
.faq__content{
    position: relative;
    display: none;
    padding: 20px 16px;
}
.faq__answer{
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    font-family: inherit;
    color: var(--body-text);
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}