.steps-section {
    padding: 60px 0;
}

.steps-title {
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700
}

.steps-left {
    padding-right: 20px
}

/* ensure top alignment with the image column */
.steps-section .row.align-items-center {
    align-items: flex-start !important
}

/* step layout to match the screenshot */
.step-card {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    position: relative
}

.step-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 8px;
    background: #d56638;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* dashed connector from icon to content */
.step-card:before {
    content: "";
    position: absolute;
    left: 100px;
    right: 100px;
    top: 50%;
    border-top: 2px dashed #3a4a50;
    transform: translateY(-50%);
    z-index: 0
}

.step-dot {
    position: absolute;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f1a1e;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border: 2px solid #34444a;
    z-index: 2
}

.step-content {
    margin-left: 98px;
    background: #d56638;
    border-radius: 8px;
    padding: 15px 19px;
    position: relative;
    z-index: 1
}

.step-content h4 {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 18px;
}

.step-content p {
    color: #cbd5da;
    margin: 0
}

.steps-image img {
    width: 100%;
    height: auto;
    border-radius: 10px
}

@media (max-width:991.98px) {
    .steps-left {
        padding-right: 0;
        margin-bottom: 30px
    }

    .step-card:before {
        left: 100px
    }

    .step-dot {
        left: 122px
    }
}

@media (max-width:575.98px) {
    .step-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 24px
    }

    .step-card:before {
        left: 84px
    }

    .step-dot {
        left: 102px;
        width: 28px;
        height: 28px;
        font-size: 12px
    }

    .step-content {
        margin-left: 82px;
        padding: 14px;
    }
}
