.animationBizz_BulletSectionContainer{
    display: flex;
    flex-direction: column;
    padding: 40px 24px 40px 49px ;
    justify-content: center;
}

.animationBizz_BulletSectionTitle{
    font-size: 20px;
    margin-bottom: 16px;
}

.bulletList-container{
    display: flex;
    flex-direction: column; 
    gap: 16px;

}

.animationBizz_BulletContainer{
    display: flex;
    gap: 8px;
    width: 100%;
    opacity: 0;
    transition: opacity 2s ease-out;
}
.border{
    width: 100%;
    border-bottom: 1px solid black;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s ease-out;
}

.border.border-fade-in {
    transform: scaleX(1);
}

.animationBizz_BulletContainer.fade-in {
    opacity: 1;
}

.animationBizz_BulletIcon{
    height: 40px;
    width: 40px;
}

.animationBizz_BulletTextContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.animationBizz_BulletText{
    font-size: 16px;
    align-content: center;
    width: 100%;
    border: none;
}
.bullet-container{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}
@media (min-width: 786px) {
    .animationBizz_BulletSectionContainer{
        padding: 80px 0;
    }
    
.bulletList-container{
    display: flex;
    flex-direction: row;
    gap: 78px;
    padding: 0;
    flex-wrap: wrap;
}


.border{
    border-bottom: 2px solid black;
}

.animationBizz_BulletSectionTitle {
    font-size: 28px;
    border-bottom: 2px solid black;
    margin-bottom: 32px;
}

.animationBizz_BulletContainer {
    align-items: center;
    gap: 16px;
}

.animationBizz_BulletTextContainer{
    justify-content: unset;
}

.animationBizz_BulletText {
    font-size: 16px;
}
}