@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

#team .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#team .card::before {
    content: "";
    position: absolute;
    top: -50px;
    height: 0;
    width: 150%;
    
    z-index: -1;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all 0.5s ease-in-out;
}

#team .card.color1::before {
    background: linear-gradient(140deg, #00b09b, #96c93d);
}
#team .card.color2::before {
    background: linear-gradient(140deg, #fc4a1a, #f7b733);
}
#team .card.color3::before {
    background: linear-gradient(140deg, #667db6, #0082c8);
}
#team .card.color4::before {
    background: linear-gradient(140deg, #fceabb, #f8b500);
}
#team .card.color5::before {
    background: linear-gradient(140deg, pink, brown);
}


#team .card {
    width: 280px;
    height: 320px;
    overflow: hidden;
    z-index: 3;
    transition: all 0.5s ease-in-out;
    border: none;
    box-shadow: 5px 5px 10px #1f1f1fa8,
                -5px -5px 10px #1f1f1fa8;
}

#team .card::before{
  height: 150px;
}

#team .card .img-container {
    width: 175px;
    height: 175px;
    margin-bottom: 30px;
    border: 3px solid black;
}


  #team .card .img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: all 0.5s ease-in-out;
  }

  #team  .card:hover .img-container img {
    transform: scale(1.2);
}

#team .card .h3 {
    margin-bottom: 5px !important;
    font-weight: 600;
    pointer-events: none;
}

#team .card .designation {
    font-size: 0.85rem;
    letter-spacing: 2px;
    pointer-events: none;
}

#team .card ul {
    background-color: #1369ce;
    transition: all 0.5s ease-in-out;
    transform: translateY(40px);
}


#team .card ul li {
    padding: 5px 8px;
    transition: all 0.4s;
}

#team .card ul li a {
    color: #FFF;
}