.custom-banner {
     min-height: 500px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive for laptops */
@media (max-width: 1024px) {
  .custom-banner {
    height: 60vh;
  }
}

/* Responsive for tablets and mobiles */
@media (max-width: 768px) {
  .custom-banner {
    height: 50vh;
  }
}



.team_section {
  width: 1070px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 90px 0;
}

i.fas.fa-user-tie {
  font-size: 109px;
}

.team_member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(0);
  transition: all 1s ease;
}

.team_icon {
  font-size: 60px;
  color: #0F0E9F;
  margin-bottom: 10px;
}

.team_name {
  font-size: 40px;
  font-weight: 200;
  font-family: 'gothic', sans-serif;
  color: #5a5a5a;
  margin: 5px 0;
}

.team_role {
  font-size: 21px;
  color: #000;
  font-weight: 400 !important;
  font-family:'Gothic A1', sans-serif !important;
}

/* Animation start positions */
.team_member.left {
  transform: translateX(-100px);
}
.team_member.middle {
  transform: translateY(100px);
}
.team_member.right {
  transform: translateX(100px);
}

/* When visible */
.team_member.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

