.step-process {
    position: relative;
    overflow: hidden; /* Prevents pseudo from overflowing */
    background-color: #F2F7F8;
    z-index: 1;
    margin: 0;
    padding: 0 0 140px;
}
.step-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(217, 231, 236, 0) 0%,
        #D9E7EC 100%
    );
    z-index: -1;
}
.step-process h2 {
    color: #00212D;
}
.step-process h2 > strong {
    position: relative;
    display: inline-block;
}
.step-process h2 > strong::after {
    content: '';
    background: linear-gradient(90deg, #34B18F 0%, rgba(52, 177, 143, 0.00) 100%);
    height: 0.1875rem;
    width: 100%;
    display: block;
    position: absolute;
    bottom: -3px;
}
.step-process-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}
.step-process-card {
    border-radius: 10px;
    background: var(--White, #FFF);
    padding: 20px;
    transition: all 0.3s;
}
.step-process-card:hover {
    transform: scale(1.03);
}
.step-process-card .b2-eyebrow {
    margin-bottom: 50px;
}
.step-process-card .h5 {
    margin-bottom: 12px;
}
.step-procress-image {
    display: block;
    margin-top: 20px;
}
.step-procress-image svg {
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 1650px) {
    .step-procress-image svg {
        width: 80%;
    }
}

@media only screen and (max-width: 1080px) {
    .step-process-container {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }
    .step-procress-image {
        display: none;
    }
    .step-process {
        padding: 0 0 60px;
    }
}

@media only screen and (max-width: 767px) {
    .step-process-container {
        grid-template-columns: repeat(1, 1fr);
    }
}