@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');



.profilecard {
    position: relative;
    width: 18.75rem;
    height: 11.875rem;
    /* height: 28.125rem; */
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2.1875rem 5rem rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.profilecard:hover {
    height: 28.125rem;
}

.imgBx {
    position: absolute;
    left: 50%;
    top: -3.125rem;
    transform: translateX(-50%);
    width: 9.375rem;
    height: 9.375rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: 0.5s;
}

.imgBxcard {
    position: absolute;
    left: ;
    top: -3.125rem;
    transform: translateX(-50%);
    width: 9.375rem;
    height: 9.375rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: 0.5s;
}

.profilecard:hover .imgBx {
    width: 15.625rem;
    height: 15.625rem;
}

.imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.profilecard .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.profilecard .content .details {
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(9.375rem);
}

.profilecard:hover .content .details {
    transform: translateY(0);

}

.profilecard .content .details h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #555;
    line-height: 1.2rem;
}

.profilecard .content .details h2 span {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.5;
}

.profilecard .content .details .data {
    display: flex;
    justify-content: space-between;
    margin: 1.25rem 0;
}

.profilecard .content .details .data h3 {
    font-size: 1em;
    color: #555;
    line-height: 1.2em;
    font-weight: 600;
}

.profilecard .content .details .data h3 span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.5;
}

.profilecard .content .details .actionBtn {
    display: flex;
    justify-content: space-between;

}

.profilecard .content .details .actionBtn button {
    padding: 0.625rem 1.25rem;
    border-radius: 0.3125rem;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    background: #66c6bf;
    color: #fff;
    cursor: pointer;
}

.profilecard .content .details .actionBtn button:nth-child(2) {
    border: 0.0625rem solid #999;
    background: #ef3f42;
}



/* ---------------------------------------------------------------- */
/* -----allauth css------ */