.steps.text-align-center {
    text-align: center;
}

.steps.text-align-left {
    text-align: left;
}


.section__col .steps {
    grid-template-columns: 1fr 1fr;
}

.steps .item {
    padding: 40px 30px 30px 30px;
    position: relative;
}

.steps .number {
    background: var(--steps-number-background);
    color: var(--steps-number-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    padding: 9px 22px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%)
}

.steps .image {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-bottom: 30px;
}

.steps.text-align-center .image {
    margin-left: auto;
    margin-right: auto;
}

.steps .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.steps .title {
    color: var(--steps-title-color);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.16;
    margin-bottom: 15px;
}

.steps .text {
    font-size: 16px;
    color: var(--steps-color);
    margin: 0;
}

@media only screen and (min-width: 992px) {
    .steps {
        display:  inline-flex;
        background-image: var(--steps-dashed-line);
        border-radius: 30px;
    }

    .steps .item {
        background-image: repeating-linear-gradient(180deg, var(--steps-dashed-line-color), var(--steps-dashed-line-color) 4px, transparent 4px, transparent 8px);
        background-position: left top;
        background-repeat: repeat-y;
        background-size: 1px 100%;
    }

    .steps .item:first-of-type { 
        background-image: none;
    }
}

@media only screen and (max-width: 991px) {
    .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .steps .item {
        background-image: var(--steps-dashed-line);
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .steps .item:last-child {
        margin-bottom: 0;
    }

}

@media only screen and (max-width: 767px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .steps .item {
        width: 100%;
        margin-bottom: 10px;
    }
}