.forward {
    color: var(--Primary-800, #0C2A5A);
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.card-forward {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1 0 0;
    border-radius: 32px;
    height:100%;
    border: 2px solid var(--Neutral-300, #F2F2F2);
    background: var(--Dark-White, #FFF);
    transition:0.4s all;
}
.forward-content h5 {
    color: var(--Neutral-900, #121A15);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.forward-content p {
    color: var(--Neutral-700, #666);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.forward-item {
    border-radius: 16px;
    background: var(--Neutral-200, #F7F7F7);
}
.card-forward:hover {
    background-color: #302d4b;
    color:#fff !important;
}

    .card-forward:hover .forward-content p{
        color: #fff !important;
    }
    .card-forward:hover .forward-content h5 {
        color: #fff !important;
    }