.works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, 390px);
    column-gap: 95px;
}

.step {
    max-width: 390px;
}

.step:nth-child(2) {
    padding-top: 287px;
}

.step:nth-child(3) {
    padding-top: 54px;
}


.step-heading {
    position: relative;
    padding-top: 135px;
    padding-left: 88px;
    margin-bottom: 55px;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: #000;
    font-size: 30px;
    line-height: 150%;
}

.step-heading::before {
    position: absolute;
    left: 0;
    top: 0;
    content: attr(data-number);
    font-weight: 400;
    font-size: 150px;
    line-height: 150%;
    text-align: center;
    color: rgba(1, 153, 109, 0.2);
}

.step-text {
    margin-bottom: 60px;
    font-weight: 500;
    font-size: 20px;
    color: #424242;
}

.step-img {
    width: 100%;
    object-fit: cover;
    height: auto;
}


@media (max-width: 1389px) {
    .step:nth-child(2) {
        padding-top: 0px;
    }
    
    .step:nth-child(3) {
        padding-top: 0px;
    }
}

@media (max-width: 419px) {
    .works-steps {
        grid-template-columns: 1fr;
    }
}