.animationBizz-faq-section {
    display: flex;
    justify-content: center;
    padding: 40px 24px ;
    height: auto !important;
    background-color: white;
}

.animationBizz-faq-container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    width: 100%;
}

.animationBizz-faq-container .title {
    font-size: 20px;
    margin-bottom: 16px;
}

.spoiler {
    width: 100%;

    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #101820;
}

    .spoiler.open {
        max-height: none;
        transition: max-height 0.3s ease-in-out;
    }

.spoiler__title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height:54px;
}

.spoiler__content {
    padding-bottom: 16px;
}
.spoiler__content ul {
    padding:0 16px;
}

.spoiler__arrow {
    transform: rotate(360deg);
    transition: transform 0.3s ease-in-out;
}

.spoiler.open .spoiler__arrow {
    transform: rotate(180deg);
}



.h5-semi-bold {
    font-size: 16px;
    line-height: 22.5px;
    font-weight: bold;
}

@media (min-width: 1440px){
    .animationBizz-faq-section{
        justify-content: unset;
    }
}

@media (min-width: 786px) {
    .animationBizz-faq-section{
        z-index: 100;
        max-width: unset !important;
        padding: 80px 0;
    }

    .animationBizz-faq-container {
        max-width: 900px;
        position: relative;    
    }
    }