.steps h2 {
    color: #12305C;
    font-size: 2rem;
    text-align: center;
}

.steps h3 {
    font-size: 1.2rem;
}

.steps p {
    line-height: 25px;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

.w-500 {
    max-width: 650px;
}

section.steps-box.left {
    border-left: solid 2px #FEB430;
}

section.steps-box.right {
    border-right: solid 2px #FEB430;
    display: flex;
    justify-content: flex-end;
}

.steps-content {
    margin: 50px 15%;
}

.steps-box {
    border-bottom: solid 2px #FEB430;
    padding: 10px 10px 20px 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.steps-text {
    width: 100%;
}

.right .steps-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.steps-text p {
    max-width: 650px;
}

@media only screen and (max-width: 992px) {
    .steps-content {
        margin: 50px auto;
    }
    
}

@media only screen and (max-width: 772px) {}

@media only screen and (max-width: 600px) {
    .steps-box {
        flex-direction: column;
    }
    .steps-box.right {
        flex-direction: column-reverse;
    }

}