.our-team-banner .banner-content-wrapper {
  min-height: 58.5vh !important;
}
.our-team-banner {
  background: url(../images/our-team-banner.jpg) no-repeat center center;
  background-size: cover;
}
.our-team-wrapper {
  background-color: #7a7a7a14;
  padding-block: 90px;
  text-align: center;
  h2 {
    font-family: "Roboto", Sans-serif;
    font-size: clamp(1.5625rem, 1.3352rem + 1.1364vw, 2.1875rem);
    font-weight: 400;
    color: #000000;
  }
}
.profile-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.profile-card {
  position: relative;
  overflow: hidden;

  &:hover .profile-card-overlay {
    transform: translateY(0);
  }
}
.profile-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #1a3967d9;
  transform: translateY(100%);
  transition: ease-in-out 0.5s;
  padding: 20px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  h5 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
  }
  p {
    font-size: 13px;
    color: #fff;
    margin-top: 0;
  }
}
.profile-linkedin {
  color: #ffffff;
  background-color: #a1a1a1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  &:hover{
    background-color:#0077b5 ;
    color: #fff;
  }
}
