.card-counter {
    /* width: 420px; */
    height: 130px;
    border-radius: 10px;
    background: #002566;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
}
 
.glass {
    width: 100%;
    height: 112px;
    /* border-radius: 60px; */
    /* background: linear-gradient(90deg,
            rgba(255, 255, 255, .10),
            rgba(255, 255, 255, .05)); */
    border: 1.5px solid rgba(255, 255, 255, .22);
    /* backdrop-filter: blur(14px); */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
    /* padding: 0 28px; */
    /* box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 12px 25px rgba(0, 0, 0, .18); */

    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
}

.left {
    display: flex;
    align-items: center;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    /* border: 3px solid #fff; */
    margin-left: -12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar1 {
    background: linear-gradient(135deg, #ff6b6b, #ff9f43);
}

.avatar2 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.avatar3 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.more {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    border: 3px solid #fff;
    margin-left: -12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .12);
}

.right {
    color: #fff;
}

.right h2 {
    /* font-size: 34px;
    font-weight: 800;
    line-height: 1; */
    color: #FFF;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.72px;
}

.right p {
    /* margin-top: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, .9); */
    color: rgba(255, 255, 255, 0.80);
    font-family: Mukta;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media(max-width:480px) {
    .card-counter {
        width: 95%;
    }

    .glass {
        padding: 0 18px;
    }

    .right h2 {
        font-size: 28px;
    }

    .avatar {
        width: 42px;
        height: 42px;
         margin-left: -20px;
    }

    .more {
        width: 46px;
        height: 46px;
         margin-left: -20px;
    }
}