.abc-card{
    background:#0b0b0b;
    border-radius:30px;
    padding:40px;
    color:#fff !important;

    box-shadow:
        0 0 40px rgba(255,255,255,0.04),
        0 0 80px rgba(255,255,255,0.02);

    overflow:hidden;
}

.abc-card *{
    color:#fff !important;
    box-sizing:border-box;
}

/* TOP */

.abc-top{
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:40px;
}

.abc-image{
    flex-shrink:0;
}

.abc-image img{
    width:220px;
    height:140px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.abc-title-area h2{
    font-size:42px;
    margin:0;
    line-height:1;
}

/* BARRE */

.abc-bars{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-bottom:50px;
}

.abc-bar-item{
    width:100%;
}

.abc-bar-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:15px;
}

.abc-progress{
    width:100%;
    height:12px;
    background:#1d1d1d;
    border-radius:100px;
    overflow:hidden;
}

.abc-progress span{
    display:block;
    height:100%;
    background:#ff2b2b;
    border-radius:100px;
}

/* SERVIZI */

.abc-services{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:50px;
}

.abc-service{
    display:flex;
    align-items:center;
    gap:10px;

    width:auto;

    padding:14px 18px;

    border-radius:100px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.06);

    font-size:15px;

    line-height:1;
}

.abc-icon{
    color:#ff2b2b !important;

    font-size:18px;

    width:20px;

    text-align:center;

    flex-shrink:0;
}

/* IDEALE PER */

.abc-ideal{
    margin-top:10px;
}

.abc-ideal h3{
    margin-bottom:20px;
    font-size:28px;
    line-height:1;
}

.abc-ideal-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.abc-ideal-item{
    padding:14px 20px;

    border-radius:100px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.06);

    font-size:15px;

    line-height:1;
}

/* VERSIONE MEDIUM */

.abc-card.abc-medium{
    padding:28px;
}

.abc-card.abc-medium .abc-image img{
    width:160px;
    height:100px;
}

.abc-card.abc-medium .abc-title-area h2{
    font-size:30px;
}

.abc-card.abc-medium .abc-bars{
    gap:18px;
}

.abc-card.abc-medium .abc-service{
    padding:12px 14px;
    font-size:14px;
}

.abc-card.abc-medium .abc-ideal-item{
    padding:10px 14px;
    font-size:14px;
}

/* VERSIONE SMALL */

.abc-card.abc-small{
    padding:20px;
    border-radius:24px;
}

.abc-card.abc-small .abc-top{
    gap:16px;
    margin-bottom:25px;
}

.abc-card.abc-small .abc-image img{
    width:90px;
    height:60px;
    border-radius:12px;
}

.abc-card.abc-small .abc-title-area h2{
    font-size:24px;
}

.abc-card.abc-small .abc-bars{
    gap:14px;
    margin-bottom:30px;
}

.abc-card.abc-small .abc-bar-top{
    font-size:13px;
}

.abc-card.abc-small .abc-progress{
    height:8px;
}

.abc-card.abc-small .abc-services{
    gap:10px;
    margin-bottom:30px;
}

.abc-card.abc-small .abc-service{
    padding:10px 12px;
    font-size:12px;
    gap:6px;
}

.abc-card.abc-small .abc-icon{
    font-size:13px;
    width:14px;
}

.abc-card.abc-small .abc-ideal h3{
    font-size:20px;
}

.abc-card.abc-small .abc-ideal-grid{
    gap:10px;
}

.abc-card.abc-small .abc-ideal-item{
    padding:10px 14px;
    font-size:12px;
}

/* MOBILE */

@media(max-width:768px){

    .abc-card{
        padding:24px;
    }

    .abc-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .abc-image img{
        width:100%;
        height:auto;
    }

    .abc-title-area h2{
        font-size:32px;
    }

    .abc-services,
    .abc-ideal-grid{
        gap:10px;
    }

    .abc-service,
    .abc-ideal-item{
        font-size:13px;
        padding:10px 14px;
    }

}