.id-card {
     padding:50px 50px;
}

.main-wrapper {
    background-color: #fff;
    display: flex;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
}

.main-wrapper .row {
    align-items: center;
}

.name-wrapper {
    display: flex;
    justify-content: space-between;
}

.id-detail-box ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.id-img-box {
    background-color: #f2f5f7;
    border-radius: 5px;
    overflow: hidden;
    /* max-height: 360px; */

}

.id-img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.name-wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.id-detail-box{
    padding-top: 15px;
}

.id-detail-box ul {
    padding: 10px 0;
}

.id-detail-box ul li {
    display: flex;
}

.id-detail-box ul li p {
    width: 50%;
    font-weight: 600;
    font-family: "Hind", sans-serif;
    color: #000;
    font-size: 14px;
    display: flex;
    column-gap: 50px;
}

.id-detail-box ul li span {
    font-family: "Hind", sans-serif;
    font-weight: 600;
    width: 70%;
    color: #a0a1a3;
    font-size: 14px;
}

.id-card-btn .interested,
.view-profile {
    font-family: "Hind", sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    background-color: #0dcaf0;
    padding: 5px 10px;
    transition: all ease .5s;
    border-radius: 2px;
}

.id-card-btn .view-profile {
    background-color: #0d6efd;
}


.id-card-btn .interested:hover {
    background-color: #31b0d5;
}

.id-card-btn .view-profile:hover {
    background-color: #0b5ed7;
}

.id-card-btn .interested i,
.view-profile i {
    color: red;
    padding-right: 5px;
}

.view-profile i {
    color: #fff;
}

.premium-tag {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 30px;
    background-color: rgba(223, 72, 72, 0.89);
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    z-index: 999;
}

.premium-tag h4 {
    font-family: "Hind", sans-serif;
    font-weight: 800;
    margin: 0;
    font-size: 16px;
    text-align: center;
    margin-left: -15px;
}

@media screen and (max-width:991px) {
    .id-card-btn{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}