
/* whychoose bootesnull */
.why__box--wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 24px;
}
/* .why__section--box {
    width: 424px;
    padding-left: 30px;
    border-left: 1px solid #FFFFFF1A;
} */
.why__section--box {
    width: 424px;
    padding-left: 30px;
    border-left: 4px solid #ffffff17;
    background: #14141499;
    padding: 30px;
    border-radius: 10px;
    transition: 0.30s;
}
.why__section--box:hover{
     background: #343333;
}
.why__section--box h3{
    
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}
.why__section--box p{
    
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

@media (max-width: 1399px) {
     .why__section--box {
        width: 30%;       
    }
}

@media (max-width: 991px) {
     .why__section--box {
        width: 48%;      
    }   
    .why__box--wrapper {       
        row-gap: 48px;
    }
}

@media (max-width: 767px) {
       .why__section--box {
        width: 47%;    
        padding: 16px;   
    }
     .why__section--box h3{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .why__section--box p{
        font-size: 14px;
        line-height: 21px;
    } 
}

@media (max-width: 575px) { 
   .why__section--box {
        width: 100%;
        border-left: 0px;
        border-bottom: 2px solid #FFFFFF1A;
    }  
    .why__box--wrapper{
        gap: 24px;
    }
}