.step-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.single-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 100%;
    border: 2px dashed #cdcdcd;
    width: 250px;
    height: 250px;
}

.single-step:after {
    position: absolute;
    content: "\f101";
    font-family: "fontawesome";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -50px;
    color: #f47920;
    font-size: 50px;
}

.single-step:last-child:after {
    font-size: 0px;
    display: none;
}

.inner-circle {
    display: flex;
    flex-direction: column;
    height: 215px;
    width: 215px;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 3px 5px 20px -13px black;
}

.step-content li {
    max-width: 25%;
}

.number {
    font-size: 55px;
    -webkit-text-stroke: 1px #f47920;
    display: block;
    color: transparent;
    font-weight: 700;
}

.title {
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #003c71;
    text-transform: uppercase;
    margin-top: 30px;
    font-size: 14px;
}

ul.step-content {
    margin: 0;
    padding: 0 !important;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.description {
    color: #8c8c8c;
    margin-top: 10px;
    line-height: 1.5;
}

.steps h2 {
    margin-bottom: 2em !important;
}

@media (max-width: 769px) {
    .step-content li {
        max-width: 100% !important;
        margin-bottom: 60px;
    }

    .step-content {
        flex-direction: column !important;
        align-items: center;
    }

    .single-step:after {
        top: 108%;
        right: unset;
        transform: rotate(90deg);
    }

    .learndash-course-grid .items-wrapper.grid {
        display: flex !important;
        flex-direction: column;
    }
}