.step-row {
    color: #73709A;
    padding: 50px 30px;
    background: #FFFFFF;
    border-radius: 42px;
    margin-bottom: 35px;
}
.step-row:last-child{
    margin-bottom: -50px;
}

.step-row h2 .text-pink {
    font-size: 45px;
}

.p-masthead {
    color: var(--color-darkblue);
}

.how-we-vet-cta {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    /* margin-bottom: 40px; */
}

.how-we-vet-cta:before {
    content: '';
    top: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #D8E2F3;
    position: absolute;
}

.how-we-vet-cta:after {
    content: '';
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #D8E2F3;
    position: absolute;
}

.how-we-vet-gif {
    position: relative;
    z-index: 1;
}

.number-circle {
    background-image: url("../svg/circle.svg");
    background-size: cover;
    height: 150px;
    width: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.number-circle .number-circle-text-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.number-circle .number-circle-text {
    color: #9F9CC8;
    font-size: 20px;
    display: block;
    line-height: 1;
}

.number-circle .number-circle-number {
    color: #BA5A8D;
    font-weight: bold;
    font-size: 30px;
    display: block;
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .step-row h2 .text-pink {
        font-size: 32px;
    }

}
@media screen and (width: 768px) {
    .newline {
        display: block!important;
    }
}

@media screen and (min-width: 768px) {
    .step-row:nth-last-child(3) {
        margin-bottom: -100px
    }

    .step-row:last-child {
        -webkit-transform: translateY(-150px);
        -moz-transform: translateY(-150px);
        transform: translateY(-150px);
    }
}

@media screen and (max-width: 767px) {
    .step-row {
        padding: 30px 0;
      
    }
    .how-we-vet-cta {
        margin-top: 30px;
    }

    .how-we-vet-cta,
    .step-row {
        margin-left: auto;
        margin-right: auto;
    }

    .step-row img {
        margin-bottom: 30px;
    }

    .step-row:last-child {
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
        margin-bottom: 60px;
    }

    .number-circle {
        margin: 40px auto 15px;
    }

    .step-row h2 .newline {
        display: block;
    }
}