.vxd-how-we-work {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vxd-how-we-work .card {
    padding: 8px 40px 39px;
    transition: all 300ms;
    position: relative;
    border-radius: 0.75rem;
}

.vxd-how-we-work .card.odd {
    background-color: var(--e-global-color-secondary);
}

.vxd-how-we-work .card.even {
    background-color: var(--e-global-color-primary);
    color: #fff;
}

.vxd-how-we-work .card:nth-child(2) {
    position: relative;
    top: -30px;
}

.vxd-how-we-work .card:hover {
    transform: translateY(-5px);
}

.vxd-how-we-work .card h5 {
    position: absolute;
    top: 30px;
    right: 90px;
    padding-left: 30px;
    text-align: right;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    margin: 0;
    font-family: var(--e-global-typography-secondary-font-family);
}

.vxd-how-we-work .card.odd h5 {
    color: #B8DBDE;
}

.vxd-how-we-work .card.even h5 {
    color: #1890a0;
}

.vxd-how-we-work .card span {
    margin-bottom: 110px;
    font-size: 75px;
    line-height: 80px;
    text-align: right;
    display: block;
    font-family: var(--e-global-typography-secondary-font-family);
    font-weight: 900;
}

.vxd-how-we-work .card h3 {
    max-width: 72%;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
    font-family: var(--e-global-typography-secondary-font-family);
}

.vxd-how-we-work .card p {
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .vxd-how-we-work {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }

    .vxd-how-we-work .card:nth-child(2) {
        top: 0;
    }
}

@media (max-width: 767px) {
    .vxd-how-we-work {
        grid-template-columns: repeat(1, 1fr);
    }
    .vxd-how-we-work .card span {
        margin-bottom: 80px;
    }

    .vxd-how-we-work .card h5 {
        font-size: 28px; 
        margin-bottom: 40px;
    
    }

  
  

}