.how-it-works{
    padding: 0 16px 56px;
    text-align: center;
}

.how-it-works .steps{
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: -26px auto var(--space-xl);
    justify-items: stretch;
}

.how-it-works .step{
    background: linear-gradient(180deg, #3B4F78 0%, #2FBED2 53.85%);
    opacity: 1;
    border-radius: 22px;
    box-shadow: 2px 2px 10px 3px #ffffff33;
    transition: transform .25s ease, box-shadow .2s ease, background .2s ease;

}
.how-it-works .step:hover{ transform: translateY(-2px); }

.how-it-works .step .step-header{
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 10px 7px var(--space-md) 13px;
}

.how-it-works .step svg{
    width: 70px;
    height: 70px;
    margin: 2px 0 0 0;
    vertical-align: middle;
    flex: none;
    justify-self: start;
    display: block;
    opacity: 1;
}
.how-it-works .step h3{
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: right;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
    color: #FFFFFF;
}
.how-it-works .step p{
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: justify;
    vertical-align: middle;
    color: #000000;
    padding: 10px 7px 0 13px;
}

.how-it-works .cta-center{ text-align: center; margin-top: 8px; }
.how-it-works .btn-cta-lg,
.how-it-works .btn.btn-secondary{
    font-weight: 600;
    font-size: var(--font-size-xl);
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;

    opacity: 1;
    border-radius: 5px;
    border-width: 1px;
    background: radial-gradient(167.66% 167.66% at 50% 50%, #2FBED2 38.94%, #18626C 100%);

    box-shadow: 3px 5px 9.9px 0 #00000040;
}
