*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: white;
    /* position: relative; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url(https://wallpaper.dog/large/5556710.jpg) center/cover no-repeat fixed;
    /* filter: blur(2px); 
    z-index: -1; */
    
}


a{
    text-decoration: none;
}


#team{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heading {
    font-size: 4.9rem;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 20px;
}
.heading:hover{
    color: orangered;
}

.heading i{
    background-color: black;
    color: orangered;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin: 0 20px;
    border-radius: 50%;
}

.box{
    width: 266px;
    height: 340px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar{
    width: 50%;
    height: 4px;
    position: absolute;
    left: 50%;
    top:0;
    transform: translate(-50%);
    background-color: #333;
    border-radius: 0 0 10px 10px;
}

.verify{
     color: #333;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav i:hover{
    color: gray;
    cursor: pointer;
    
}

.nav .heart{
   color: rgb(0, 0, 0);
}

.nav .heart:before {
    content: '\f004';
    font-family: fontAwesome;
    line-height: 30px;
    z-index: 1;
    cursor: pointer;
}
.nav .heart:hover {
    color: gray;
}
.nav .heart-btn{
    display: none;
}

.details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.details img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.details p{
    font-size: 0.8rem;
    color: #7a7a7a;
    margin: 5px 0;

}

.btn{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn a{
    height: 45px;
    width: 45px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 45px;
    color: #333;
}

.btn a i {
    padding-left: 13px;
}

.btn a:hover {
    color: orangered;
    background-color: black;
    transition: all ease 0.5s;
}

.box:hover{
    transform: scale(1.06);
    transition: all ease 1s;
    background-color: rgb(208, 246, 246);
}

@media(max-width:612px){
    .box{
        flex-grow: 0.9;
    }
}



/* footer start  */
footer {
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
  }
  .social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
  }
  .social-links a {
    /* border: 2px solid #fff; */
    color: #fff;
    display: block;
    width: 108px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20%;
    text-decoration: none;
    margin: 0 0.3rem;
    transition: all 0.5s ease;
  }
  
  .social-links a:hover {
    background: orangered;
    color: black;
  }
  .footer>span {

    margin-top: 1rem;
    display: block;
    font-family: var(--Playfair);
    letter-spacing: 2px;
  }
  