.events-card{
    width: 50%;
    padding: 48px 0;
    text-align: center;
}
.events-list{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 32px 74px 6px 74px;
}
.event{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background: #DFF6FF;
    
    padding: 14px 30px;
}
.eventh2{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #0B0B0B;
    max-width: 50%;
    text-align: left;
}
.eventlink{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 100%;
    padding: 14px 0;
    color: #FFF;
    font-size: 14px;
    background-color: #1F1F1F;
    font-style: normal;
    font-weight: 700;

}
@media (max-width:768px){
    .events-card{
        width: -webkit-fill-available;
        padding: 38px 20px;
    }
    .events-list{
        gap: 8px;
        padding: 23px 0 8px 0;
    }
    .event{
        padding: 13px 12px;
    }
    .eventh2{
        font-size: 12px;
    }
    .eventlink{
        padding: 13px 12px;
        font-size: 12px;
        width: -webkit-fill-available;
    }
}