.steps {
    padding: 40px 15px 22px;
    margin: 0 auto;
}

.steps__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 57px;
}

.steps__items {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 33px;
    max-width: 360px;
    margin: 0 auto;
}

.steps__items::before {
    top: 10px;
    left: 78px;
    content: "";
    position: absolute;
    width: 180px;
    height: 295px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/steps-back.png");
}

.steps__item {
    position: relative;
    text-align: left;
    line-height: 17px;
}

.steps__item:nth-child(1) {
    width: 194px;
    margin-left: auto;
}

.steps__item:nth-child(2) {
    width: 133px;
}

.steps__item:nth-child(3) {
    width: 160px;
    margin-left: auto;
}

.steps__item h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2d2d2d;
    z-index: 1;
    position: relative;
}

.steps__item p {
    font-size: 14px;
    color: rgba(45, 45, 45, 0.7);
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.steps__num {
    position: absolute;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 300;
    color: rgba(255, 231, 201, 1);
    pointer-events: none;
    z-index: 0;
}

.steps__item:nth-child(1) .steps__num {
    right: 10px;
    top: 10px;
}

.steps__item:nth-child(2) .steps__num {
    top: 60px;
    right: -34px;
}

.steps__item:nth-child(3) .steps__num {
    top: 75px;
    right: -10px;
}

@media (min-width: 1000px) {
    .steps {
        padding-top: 60px;
        padding-bottom: 160px;
    }

    .steps__title {
        margin-bottom: 167px;
        text-align: left;
    }

    .steps__items {
        min-width: 900px;
        max-width: auto;
        gap: 100px;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .steps__item:nth-child(1)::after {
        z-index: 0;
        top: -140px;
        left: -100px;
        content: "";
        position: absolute;
        width: 198px;
        height: 195px;
        background-size: 198px 195px;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("../images/steps-left-back.svg");
    }

    .steps__items::before {
        top: -152px;
        left: 78px;
        width: 758px;
        height: 155px;
        background-image: url("../images/steps-back-desktop.png");
    }

    .steps__item {
        position: relative;
        padding-left: 30px;
    }

    .steps__item:nth-child(1) {
        margin-top: 111px;
        width: 32%;
        margin-left: 0;
    }

    .steps__item:nth-child(2) {
        margin-top: 60px;
        width: 32%;
    }

    .steps__item:nth-child(3) {
        margin-top: 0;
        width: 32%;
        margin-left: 0;
    }

    .steps__item:nth-child(1) .steps__num {
        top: 50px;
        right: 34px;
    }

    .steps__item:nth-child(2) .steps__num {
        top: 14px;
    }

    .steps__item:nth-child(3) .steps__num {
        top: 18px;
    }

    .steps__item h3 {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .steps__item p {
        font-size: 16px;
        max-width: 250px;
    }

    .steps__num {
        font-size: 240px;
        top: -60px;
        transform: none;
    }
}

@media (min-width: 1440px) {
    .steps {
        padding: 40px 15px 22px;
        max-width: 1190px;
    }

    .steps__items {
        min-width: 1200px;
    }

    .steps__items::before {
        width: 1056px;
        height: 207px;
    }
}