.box-faq-100 {
    position: absolute;
    left: 0;
    width: 100%;
    height: 500px;
    background: #faf7f3;
    z-index: 1;
}
.box-faq {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 1200px;
    min-height: 500px;
    margin-left: auto;
    margin-right: auto;
    background: #faf7f3;
    margin-bottom: 30px;
    padding: 75px 30px 0;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}
.box-faq .col1 {
    margin-right: 70px;
    width: 50%;
}
.box-faq .col1 .txt-faq {
    display: inline-block;
    background-color: #fce3de;
    padding: 5px 10px;
    margin: 10px 0 0;
    border-radius: 12px;
    color:#fd8377;
    font-size: 12px;
}
.box-faq .col1 h2 {
    font-size: 38px;
    padding: 0.67em 0;
}
.box-faq .col1 .lead {
    font-size: 18px;
    line-height: 1.4;
}
.box-faq .col2 {
    width: 50%;
}
.box-faq .col2:hover {
    cursor:pointer;
}
.box-faq .col2 h3 {
    font-size: 20px;
    font-weight: 700;
}
.box-faq .col2 .faq {
    margin-bottom: 0;
    background: url('/bundles/portalsimplebox/images/arrow-off.svg') no-repeat right 18px;
}

.box-faq .col2 .faq div {
    opacity: 0;
    max-height: 0;
    font-size: 18px;
    transition: all .3s ease;
}

.box-faq .col2 .faq-on div {
     opacity: 1;
     max-height: 200px;

 }

.box-faq .col2 .faq-on {
    background: url('/bundles/portalsimplebox/images/arrow-on.svg') no-repeat right 18px;
}

@media screen and (min-width: 801px) {
    .box-faq-100 {
        height: 500px;
    }
    .box-faq {
        flex-direction: row;
    }

}
@media screen and (max-width: 800px) {
    .box-faq .col1 {
        width: 100%;
    }
    .box-faq .col2 {
        width: 100%;
    }
}
