
.features-card{
    width: 62%;
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    padding: 64px 74px;
}
.linkslist{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.linkH{
    color: #9A9A9A;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;;
}
.linkslist a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 130.5%; 
}
@media (max-width:768px){
    .features-card{
        width: -webkit-fill-available;
        flex-direction: column;
        padding: 30px 24px;    
        gap: 45px;
    }
    .linkslist{
        width: -webkit-fill-available;
        gap: 16px;
    }
    .linkH{
        font-size: 14px;
        margin-bottom: 0;
    }
    .linkslist a{
        font-size: 14px;
    }
    .lastlist{
        margin-top: -45px;
    }
}