section.steps {
    padding: 120px 0;
    position: relative;
    z-index: 99;

    .title-wrap {
        display: flex;
        gap: 40px;
        align-items: center;

        > div {
            flex: 1;
        }

        .title {
            max-width: 614px;

            h2 {
                letter-spacing: 1.5px;
            }
        }

        .description {
            font-weight: 700;
            letter-spacing: 1px;
            margin-top: 24px;
        }
    }

    .image-wrap {
        max-width: 518px;
        border-radius: 16px;
        overflow: hidden;
    }

    .steps-line {
        margin-top: 80px;
        padding-top: 32px;
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 20px;

        .item {
            flex: 1;

            .item-num {
                font-size: 16px;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: #F9371C;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                border: 1px solid #F9371C;
            }

            .item-title {
                font-size: 18px;
                font-weight: 700;
                letter-spacing: 1px;
                margin-top: 16px;
                max-width: 170px;
            }
        }

        .item::before {
            content: '';
            width: 12px;
            height: 12px;
            background: #F9371C;
            position: absolute;
            top: -6px;
            transform: rotate(-45deg);
        }
    }

    .steps-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: 8px;
        right: 8px;
        height: 1px;
        background: linear-gradient(270deg, #F9371C 0%, rgba(249, 55, 28, 0) 100%);
        flex-shrink: 0;
    }

    .button-wrap {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }
}


/* MEDIA */

@media screen and (max-width: 768px) {
    section.steps {
        padding: 80px 0;

        .title-wrap {
            flex-wrap: wrap;
            gap: 28px;

            > div {
                min-width: 100%;
            }
        }

        .description {
            margin-top: 16px;

            p {
                font-size: 18px;
            }
        }

        .steps-line {
            flex-wrap: wrap;
            margin-top: 32px;

            .item {
                min-width: 100%;
                padding-left: 32px;
                position: relative;
            }

            .item::before {
                left: 0;
            }

            .item:first-child {
                margin-top: 0;
            }

            .item:not(:first-child) {
                margin-top: 32px;
            }
        }

        .steps-line::before {
            left: 5px;
            right: auto;
            bottom: 0;
            width: 1px;
            height: auto;
            background: linear-gradient(0deg, #F9371C 0%, rgba(249, 55, 28, 0) 100%);
        }

        .button-wrap {
            margin-top: 40px;
        }
    }
}

/* ( < 768 ) */
