.faq__wrap {
    max-width: 80%;
    width: 100%;
}
.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 15px;
    position: relative;
}
/* .faq__item:last-child{
    margin-bottom: 0;
} */
.faq__item--boxed{
    padding: 0px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #E5E9F3;
    box-shadow: none;
    background: #F4F5F7;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.faq__item--boxed:hover {
    border: 1px solid var(--basic-company);
}
.faq__item--boxed.closed {
    display: none;
}
.faq__item--boxed.visible {
    box-shadow: 0px 4px 20px 0px #00082726;
}
.faq__icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
}
.faq__icon svg {
    width: 14px;
    height: 14px;
    display: block;
    color: var(--basic-company);
}
.faq__arrow {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin-left: auto;
}
.faq__arrow svg {
    width: 18px;
    height: 18px;
    display: block;
    color: var(--body-heading);
    transform: rotate(90deg);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.faq__question{
    position: relative;
    padding: 20px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 22px;
    color: var(--okay-body-text);
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.faq__question.active {
    color: var(--okay-basic-company);
}
.faq__question.active .faq__arrow svg{
    transform: rotate(-90deg);
}
.faq__content{
    position: relative;
    display: none;
    padding: 0 0 0 20px;
}
.faq__answer{
    position: relative;
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.4;
    font-weight: normal;
    font-family: inherit;
    border-top: 1px solid #E5E9F3;
    margin-right: 50px;
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-size: 20px;
    }
    .faq__wrap {
        max-width: 100%;
    }
    /* .faq__answer {
        font-size: 16px;
    } */
}

@media only screen and (max-width : 576px) {
    /* .faq__item--boxed {
        padding: 10px 15px;
    }
    .faq__question {
        padding: 15px 0;
        font-size: 18px;
    }*/
    .faq__content {
        padding: 0 0 0 20px;
    } 
     .faq__question {
        padding: 20px;
        font-size: 18px;
    }
    .faq__answer {
        padding: 20px 0 20px 0;
        margin-right: 20px;
    }
}
