.faq-block .b-content{
    display: flex;
    flex-direction: column;
}

.faq-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.faq-heading {
    margin-block-start: 15px;
    margin-block-end: 15px;
    font-weight: 400;
    font-size: 19px;
    padding-left: 20px;
    padding-right: 25px;
    position: relative;
}

.faq-heading::after {
    content: '';
    width: 6px;
    height: 6px;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 2px solid rgba(0, 0, 0, 0.33);
    border-right: 2px solid rgba(0, 0, 0, 0.33);
    float: right;
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq-text {
    font-weight: 400;
    width:95%;
    padding-left:20px;
    margin-bottom:0;
}

.faq {
    margin-bottom: 10px;
    background: white;
    border-radius: 4px;
    position: relative;
    border: 1px solid #E1E1E1;
}
.faq label {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    padding-top:1px;
    border-radius: 4px;
    margin-bottom: 0;
    border-bottom: 1px solid #E1E1E1;
}

.faq input[type="checkbox"] {
    display: none;
}

.faq input[type="checkbox"]:checked + label > .faq-heading::after {
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.faq input[type="checkbox"]:checked + label > .faq-text {
    max-height: 500px;
    transition: all 0.25s ease-in;
    margin-bottom: 15px;
}

.faq input[type="checkbox"]:not(:checked) + label > .faq-text {
    max-height: 0px;
    transition: all 0.25s ease-out;
    overflow: hidden;
    margin-bottom: 0px;
}
