        .card_container 
{
    background-image: url('../img/auto-bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    /*min-height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    position: relative;
    /*width: 500px;*/
    /*padding:0 30px;*/
    min-height:285px;
    background: rgb(229 228 228 / 32%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card1
{
        position: relative;
    /*width: 500px;*/
    padding:30px 30px;
    min-height:285px;
    background: rgb(229 228 228 / 32%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    transition: 1s;
  
}
.card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(255, 255, 255, 0.25);
}

.card .content {
    position: relative;
    display: flex;
    align-items: center;
    /*margin-top: -80px;*/
    gap: 25px;
        margin-top: -65px;
}

.card .content .avatar {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
}

.card .content .avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .content .details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ededed;
}

.card .content .details div {
    /*display:  flex;*/
    align-items: center;
    gap: 10px;
}

.card .content .details h3 {
    font-weight: 600;
}

.card .content .details i {
   font-size: 1.2em;
    padding: 2px 5px;
}
.ulheight1 {
    line-height: 2.5rem;
    list-style-type: none;
}
.social1 img {
    padding-right: 4px;
    width: 20px;
    margin-top: -5px;
    height: 12px;
}
.social1 .text
{
    padding-left:5px;

}
.social1 .text a
{
        color:#ededed;
        font-size:16px;
}
.ulheight1 .social1 i
{
    color:#ededed;
}

@media only screen and (max-width:991px)
{
   .card1
    {
        margin-top:20px;
    }
}
@media only screen and (max-width:480px)
{
    .card1
    {
        min-height:225px;
    }
    .card .content .avatar
    {
        width:100px;
        height:100px;
    }
    .card
    {
        min-height:225px;
    }
    .ulheight1
    {
        margin:0;
    }
}