.machine {
    margin-bottom: 90px;
}

.machine__inner {
    display: flex;
}

.machine-img {
    margin-right: 148px;
    padding: 7px 0 7px 83px ;
    position: relative;
}
.machine-img:before {
    content: '';
    position: absolute;
    width: 281px;
    height: 100%;
    top: 0;
    left: 0;
    background: #F83F49;
    z-index: -1;
}
.machine-img img {
    width: 355px;
    height: 329px;
    object-fit: cover;
}

.machine-text__title {
    font-family: 'Lato';
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
}

.machine-text__items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.machine-text__item {
    text-align: center;
}
.machine-text__item-title {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 40px;
    line-height: 59px;
    letter-spacing: 0.03em;
    color: #F83F49;
}
.machine-text__item-desc {
    font-family: 'Lato';
    font-weight: bold;
    font-size: 14px;
    color: #1E1E1E;
}
.machine-desc {
    font-family: 'Lato';
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #434343;
}

@media (max-width: 1024px) {
    .machine-img {
        margin-right: 60px;
    }
}
@media (max-width: 768px) {
    .machine__inner {
        flex-direction: column;
    }
    .machine-img {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .machine-img:before {
        display: none;
    }
    .machine-img img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
    .machine-img {
        padding: 0;
    }
    .machine-text__items {
        flex-wrap: wrap;
        row-gap: 20px;;
    }
    .machine-text__item {
        width: 50%;
    }
}