.card-step {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 15px 55px;
    border-radius: 1px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(164, 164, 164, 0.25);
    text-align: center;
}

.card-step .card-step-thumbnail {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    line-height: 50px;
    text-align: center;
}

.card-step .card-step-thumbnail .card-step-media {
    max-width: 100%;
    max-height: 100%;
}

.card-step .card-step-title {
    opacity: 0.9;
    font-size: 16px;
    line-height: 23px;
}


.steps-grid {
    margin-bottom: -35px;
    counter-reset: step;
}

.steps-grid .step-item {
    position: relative;
    margin-bottom: 65px;
    counter-increment: step;
}

.steps-grid .step-item .card-step::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 2px 0 5px rgba(164, 164, 164, 0.25);
    background-color: #fff;
    transform: translate(-50%, 50%);
    color: #ffda3f;
    font-size: 29px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    content: counters(step, "");
}

@media (min-width: 1200px) {
    .card-step {
        padding: 30px 65px 55px;
    }

    .card-step .card-step-thumbnail  {
        width: 65px;
        height: 65px;
        margin: 0 auto 28px;
        line-height: 65px;
    }


    .steps-grid {
        margin: 0 -45px -35px;
    }

    .steps-grid .step-item {
        padding-left: 45px;
        padding-right: 45px;
    }

    .steps-grid .step-item::after {
        position: absolute;
        top: 50%;
        right: 0;
        width: 65px;
        height: 65px;
        transform: translate(50%, -50%);
        background: url('../../images/icons/svg/icon-step-arrow-right-danger.svg') no-repeat center;
        -webkit-background-size: contain;
        background-size: contain;
        content: '';
    }

    .steps-grid .step-item:nth-child(2n)::after {
        background-image: url('../../images/icons/svg/icon-step-arrow-right-danger-alt.svg');
    }

    .steps-grid .step-item:nth-child(3n)::after {
        display: none;
    }
}