#stepbystep_row {
    background-color: var(--primary);
    padding-bottom: 70px;
}

#stepbystep_row .title {
    font: normal normal bold 55px/52px Nunito;
    color: white;
}

#stepbystep_row::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 70px;
    top: -69px;
    left: 0;
    background: var(--svg-cloud-blue);
    z-index: 5;
}

#stepbystep_row::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: -69px;
    left: 0;
    transform: scaleY(-1);
    background: var(--svg-cloud-blue);
    z-index: 5;
}

#stepbystep_row .stepbystep-gutter {
    --bs-gutter-y: 2.5rem;
    --bs-gutter-x: 2.5rem;
}

#stepbystep_row .step-card {
    background-color: white;
    border-radius: 25px;
    padding: 25px;
}

#stepbystep_row .step-card .image {
    filter: invert(34%) sepia(93%) saturate(662%) hue-rotate(196deg) brightness(98%) contrast(87%);
}

#stepbystep_row .step-card .title {
    font: normal normal bold 25px/40px Nunito;
    color: var(--secondary);
}

#stepbystep_row .step-card .description {
    font: normal normal normal 17px/20px Nunito;
}

@media screen and (max-width: 1199px) {
    #stepbystep_row>div {
        padding: 0 4%;
    }

    #stepbystep_row .step-card .title {
        font: normal normal bold 22px/40px Nunito;
    }

    #stepbystep_row .step-card .description {
        font: normal normal normal 14px/20px Nunito;
    }
}