.company-info_section{
    position: relative;
    overflow: hidden;
}

.company-info_section:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(218, 221, 231, 0.8);
    opacity: 0.4;
    z-index: 1;
}

.company-info_section .company-info_wrapper{
    position: relative;
    z-index: 2;
    padding-block: 120px;
}

.company-info__background-image{
    position: absolute;
    width: 636px;
    height: 600px;
    left: -336px;
    bottom: 0;
    background-image: url("images/bacteria.png");
    z-index: -1;
}

.company-info__block{
    display: flex;
    justify-content: space-between;
}

.company-info__block__left{
    width: 30%;
}

.company-info__block__title{
    line-height: 1em;
}

.company-info__block__right{
    width: 60%;
}

.company-info__block__right{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.company-info__block__item{
    width: 50%;
}

.company-info__block__item:nth-child(n+3){
    margin-top: 56px;
}

.company-info_section .company-info__block__item__title{
    color: var(--blue-color);
    margin-bottom: 8px;
    font-size: 72px;
    font-weight: 500;
    white-space: nowrap;
}

.company-info__block__item__text{
    font-size: 1.533333em;
}

@media screen and (max-width:1024px) {
    .company-info__block{
        display: block;
    }
    .company-info__block__left{
        width: 60%;
    }
    .company-info__block__right{
        width: 100%;
    }
}
@media screen and (max-width:768px){
    .company-info_section .company-info__block__item__title{
        font-size: 50px;
    }
    .company-info__background-image{
        left: 0;
        bottom: -40%;
        width: 100%;
    }
}
@media screen and (max-width:425px){
    .company-info_section .company-info__block__item__title{
        font-size: 40px;
    }
    .company-info__block__item__text{
        font-size: 15px;
    }
    .company-info__block__item:nth-child(n+3) {
        margin-top: 30px;
    }
    .company-info_section .company-info_wrapper{
        padding-top: 50px;
        padding-bottom: 70px;
    }
}