



/* вторая секция info */

.info {
    padding: 40px 0;
}

.info__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.info__item {
    padding: 40px 50px;
    background-color: #3b3e40;
    border-radius: 20px;
    width: calc((100% - 100px) / 3);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    color: #fff;
    box-sizing: border-box;

}

.info__item:nth-child(4), .info__item:nth-child(5) {
    width: calc((100% - 50px) / 2);
}

.info__item-count {
    margin-top: 24px;
    font-size: 40px;
    font-weight: 700;
}

.info__item-count_span {
    color: #ee4a23;
}

.info__item-text {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.info__item:first-of-type .info__item-text {
    font-weight: 700;
}

.info__item-text.info__item-text_bold{
    font-size: 16px;
    line-height: 24px;
}

.info__item-text.info__item-text__small{
    font-size: 14px;
    line-height: 22px;
}

.info__item-photo {
    width: 160px;
    height: 69px;
    object-fit: fill;
}

.info__item-logo {
    width: 300px;
    height: 90px;
    object-fit: fill;
    margin-bottom: 24px;
}

.info__item-cnews {
    max-width: 300px;
    width: 100%;
    height: 90px;
    object-fit: fill;
    margin-bottom: 24px;
}

.info__item-stack {
    max-width: 123px;
    width: 100%;
    height: 90px;
    object-fit: fill;
    margin-bottom: 24px;
}

.info__item-text_bold {
    font-weight: 700;
    font-size: 20px;
}

.info__item:nth-child(2) .info__item-text_bold {
    margin-bottom: 6px;
}


/* адаптив секция info*/

@media (max-width: 1200px) {
    .info__wrap {
        gap: 29px;
    }
    .info__item {
        width: calc((100% - 29px) / 2);
    }
    .info__item:nth-child(4) {
        width: calc((100% - 29px) / 2);
    }
    .info__item:nth-child(5) {
        width: 100%;
    }
}


@media (max-width: 767px) {

    .info__item-count {
        margin-top: 20px;
        font-size: 32px;
    }

    .info__item-text {
        font-size: 16px;
    }

    .info__item {
        height: 313px;
        padding: 32px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .info__item:nth-child(4) {
        width: 100%;
    }

    .info__item-logo {
        margin-bottom: 24px;
    }

    .info__item-text_bold {
        font-size: 20px;
    }

    .info__item-stack {

        margin-bottom: 20px;
    }
}









