
  h1,h2,h3 {
      margin: 0;
      font-family: 'IBM Plex Sans',Serif;
  }
  p {
      margin: 0;
      font-size: 18px;
      line-height: 24px;
  }
  a {
      color: #005eeb;
  }
  a:hover {
    color: #ffb200;
  }
  .teamWrapper {
      margin-top: 50px;
      padding: 0px 5%;
  }
  .container {
    --container: 1160px;
    max-width: var(--container);
    margin: auto;
  }
  .teamGrid {
      display: grid;
      grid-template-columns: 32.33% 32.33% 32.33%;
      column-gap: 1.5%;
      margin-top: 100px;
  }
  .avatar {
      position: absolute;
      left: 0;
      right: 0;
      top: -80px;
      text-align: center;
  }
  .teamcolinner {
      position: relative;
  }
  .avatar > img {
      width: 150px;
      aspect-ratio: 1/1;
      object-fit: cover;
      object-position: top;
      margin: auto;
      border-radius: 50%;
      border: 1px solid rgb(170 170 173/ 1);
      box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
  }
  .teamcolinner {
      position: relative;
      border: 1px dashed #ddd;
      min-height: 100px;
      background: #fff;
      z-index: 9;
  }
  .colmun{
    margin-bottom: 100px;
  }
  .teamcol {
      padding: 15px;
      background: #fff;
      border-radius: 10px;
      position: relative;
      transition: transform 1s ease-in-out;
  }
  .teamcol:hover {
      transform: translateY(-30px);
      box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
      transition: transform 1s ease-in-out;
  }
  .teamcol:before {
      content: "";
      width: 50%;
      height: 50%;
      position: absolute;
      right: 0;
      top: 0;
      background: -webkit-linear-gradient(var(--main-clr), var(--main-clr));
      border-top-right-radius: 10px;
      transition: width 1s ease-in-out;
  }
  .teamcol:after {
      content: "";
      width: 50%;
      height: 50%;
      position: absolute;
      left: 0;
      bottom: 0;
      background: -webkit-linear-gradient(#07536a, #07536a);
      border-bottom-left-radius: 10px;
      transition: width 1s ease-in-out;
  }
  .teamcol:hover::before, .teamcol:hover::after {
      width: 100%;
      transition: width 1s ease-in-out;
  }
  .member-name {
      margin-top: 80px;
  }
  .member-info {
      padding: 10px 20px;
      min-height: 68px;
  }

.teamcolinner h4{
    text-align: center;
    margin-bottom: 20px;
}
.colmun:nth-child(4){
    margin-bottom: 0px;
  }
.colmun:nth-child(5){
    margin-bottom: 0px;
  }

@media (width<=768px){
    .teamGrid {
        grid-template-columns: 1fr;
    }
    .colmun:nth-child(4){
        margin-bottom: 100px;
      }
    .colmun:last-child{
        margin-bottom: 0px;
      }
}