.team-members {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}



  .team-card {
    width: 250px;
    height: 350px;
    margin: 10px;
    background-color: #212529;
    border-radius: 0;
    transition: all 0.38s ease;
    text-align: center;
  }
  
  .team-card .card-content img {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-top: 40px; /* Adjust this value to increase the margin */
}

  
  .team-card .card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #8bc34a;
    margin-top: 10px;
  }
  
  .team-card .card-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .team-card .social-icons {
    margin-top: 15px;
  }
  
  .team-card .social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 0 8px;
    text-decoration: none;
    transition: all 0.38s ease;
  }
  
  .team-card .social-icons a:hover {
    transform: scale(1.2);
    color: #FFC13B;
  }
  
  @media (max-width: 318px) {
    .team-card {
      width: 100%;
      height: auto;
      max-width: 300px;
    }
  
    .team-card .card-content h3 {
      font-size: 18px;
    }
  
    .team-card .card-content h5 {
      font-size: 14px;
    }
  
    .team-card .card-content img {
      width: 100px;
      height: 100px;
    }
  }
  