.hero-section {
    position: relative;
    color: white;
    background-image: linear-gradient(220deg, rgba(53, 80, 160, 0.27) 0%, #3550a0 100%);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 5px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(220deg, rgba(53, 80, 160, 0.7) 50%, #3550a0 100%);
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

h1.title {
    text-transform: uppercase;
    font-size: 3rem;
}

/** STEP **/
.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #007bff;
    color: #000;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #007bff;
    z-index: -1;
}

@media (min-width: 575.98px) {
    .step-body {
        min-height: 30rem;
    }
}