@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
* 
{
    padding: 0;
    margin: 0;
}

.heading{
    color: #fff;
    font-weight: lighter;
    text-align: center;
    font-size: 50px;
    margin-top: 50px;
    position: relative;
    font-family: 'Cairo', sans-serif;
}
.heading::before{
    content: '';
    position: absolute;
    width: 10%;
    height: 3px;
    background: #fff;
    top: 90px;
    left: 45%;
}
.wrapper{
    width: 1000px;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile{
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    background: #fff;
    display: grid;
    justify-content: center;
    align-content: center;
    transition: 0.5s;
}
.pro_img{
  
   /* width: 220px;
    height: 220px; */
  width: 250px;
  height: 250px;
  
    position: relative;
    border: 5px solid #fff;
    border-radius: 50%;
    transition: 0.5s;
    transition-delay: 0.5s;
    z-index: 2;
}
.dtl{
    position: absolute;
    width: 100%;
    top: 25%;
    transition: 0.5s;
    transition-delay: 0.5s;
}
.name{
    font-family: arial;
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
    color: #525151;
}
.bio{
    font-family: arial;
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    color: #008cfe;
}
.social{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bi{
    width: 22px;
    height: 22px;
    padding: 7px;
    transition: 0.3s;
    cursor: pointer;
}
.bi:hover{
    transform: translateY(-5px);
}
.fb:hover{
    fill: #009ef9;
}
.yt:hover{
    fill: red;
}
.ins:hover{
    fill: #ff009d;
}



.profile:hover{
    border-radius: 17px;
    height: 380px;
}
.profile:hover .pro_img{
    border-radius: 17px;
    margin-top: -230px;
}
.profile:hover .dtl{
    top: 50%;
}