.company-features{
    position: relative;
    overflow: hidden;
    background-color: rgba(218, 221, 231, .4);;
}
.company-features::before{
    content: '';
    position: absolute;
    width: 578px;
    height: 545px;
    left: -4%;
    bottom: -10%;
    background-image: url("../../local/templates/helicon-corp/images/bacteria.png");
}
.features-list__item{
    display: flex;
    gap: 26px;
}
.features-list__img{
    min-width: 52px;
    text-align: center;
}
.cons-list__title{
    margin-bottom: 16px;
}

@media screen and (min-width:769px) {
    .company-features__list{
        margin-left: 20px;
    }
    .features-list__item{
        margin-bottom: 40px;
    }   
    .features-list__item:last-child{
        margin-bottom: 0;
    }
}
@media screen and (max-width:768px){
    .company-features__list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    .features-list__item{
        width: calc(50% - 12px);
    }
}
@media screen and (max-width:600px){
    .company-features__list{
        gap: 40px;
    }
    .features-list__item{
        width: 100%;
    }
}


.features-list__number{
    font-size: 72px;
    color: var(--blue-color);
    font-weight: 500;
    width: 100px;
    flex: 0 0 auto;
    line-height: 1;
}
@media screen and (min-width:769px){
    .features-list__number{
        margin-left: -22px;
    }
}
@media screen and (max-width:768px){
    .features-list__number{
        font-size: 65px;
        width: 80px;
    }
}
@media screen and (max-width:600px){
    .features-list__number{
        font-size: 40px;
        width: 50px;
    }
}