.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
    max-width: 960px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    row-gap: 26px;
}
.faq__item{
    width: 100%;
    padding: 0 24px;
    position: relative;
    transition: all .3s ease;
    background: var(--second-company);
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item:hover, .faq__item:active, .faq__item:focus {
    background: #41490099;
}
.faq__question{
    padding: 30px 0;
    text-transform: none;
    position: relative;
    transition: all .3s ease;
    cursor: pointer;
    gap: 20px;
    line-height: 1.2;
    color: var(--body-heading);
}
.question_text {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    transition: all .3s;
    line-height: 1.2;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 15px;
    transition: all .3s ease;
}
.faq__item.visible .faq__content{
    border-top: 1px solid var(--border-color);
}
.faq__item:hover .faq__question{
    color: var(--button-second-color);
}
.faq__question.active .faq__arrow{
    transform: rotate(-90deg);
}
.faq__content{
    padding: 0 !important;
    border-bottom: none;
    position: relative;
    display: none;
}
.faq__answer{
    font-size: 18px;
    font-weight: 300;
    padding: 16px 0 16px;
    position: relative;
    line-height: 1.3;
    color: var(--body-text);
}
.faq__answer ul li, .faq__answer ol li, .faq__answer p {color: var(--body-text);font-weight: 300;font-size: 18px;}
.faq__answer h1, .faq__answer .h1, .faq__answer h2, .faq__answer .h2, .faq__answer h3, .faq__answer .h3 {font-size: 1.25rem;}
.faq__answer h4, .faq__answer .h4 {font-size: 1.125rem;}
.faq__answer h5, .faq__answer .h5, .faq__answer h6, .faq__answer .h6 {font-size: 1rem;}
.faq__answer a {
    text-decoration: none;
}
.faq__question.active .see_more_plus {
    transform: rotate(180deg);
}
.see_more_plus {
    transition: all .3s ease;
    display: grid;
    place-items: center;
    min-width: 1.5rem;
    max-width: 1.5rem;
    width: 100%;
    height: 1.5rem;
    position: relative;
    color: var(--button-second-colo);
}
.see_more_plus span {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.see_more_plus svg {
    color: var(--button-second-colo);
    display: block;
    width: 100%;
    height: 100%;
}
.see_more_plus span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
    visibility: visible;
}
.active .see_more_plus span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    visibility: hidden;
}
 .see_more_plus span:nth-child(2) {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq__list_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 26px;
}

@media only screen and (max-width : 991px) {
    .faq__question {padding: 24px 0;}
    .faq__item {padding: 0 18px;}
    .question_text {font-size: 20px;}
}
@media only screen and (max-width : 767px) {
    .faq__list_wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        max-width: 80%;
    }
    .faq__list {row-gap: 16px;}
    .faq__question, .question_text{font-size: 1.25rem;}
    .faq__answer {font-size: 0.875rem;}
    .faq__answer h1, .faq__answer .h1, .faq__answer h2, .faq__answer .h2, .faq__answer h3, .faq__answer .h3 {font-size: 1.125rem;}
    .faq__answer h4, .faq__answer .h4 {font-size: 1rem;}
    .faq__answer h5, .faq__answer .h5, .faq__answer h6, .faq__answer .h6 {font-size: 0.875rem;}
}
@media only screen and (max-width : 576px) {
    .faq__question{
         padding: 1rem 0;
    }
    .faq__question, .question_text{
        font-size: 1.125rem;
    }
    .faq__list_wrap {max-width: 100%;}
}