/* TEAM SECTION */
.our-team {
  padding: 40px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.team-category-section {
  margin-bottom: 50px;
}

.team-category-title {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  font-family: Arial, Helvetica, sans-serif;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-wrap {
  flex: 0 1 calc(25% - 20px);
  box-sizing: border-box;
}

.team-member {
  text-align: left;

  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* IMAGE BOX */
.team-img {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all .3s ease;
}

/* TEXT */
.team-title {
  /* margin: 15px 0 5px; */
  
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.team-member span {
  font-size: 14px; 
  font-family: Arial, Helvetica, sans-serif;
  color: #ff4800;
}

/* TEAM INFO OVERLAY */
.team-info {
  font-family: Arial, Helvetica, sans-serif;
}

.team-info h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.team-info span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-wrap {
    flex: 0 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .team-wrap {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .team-wrap {
    flex: 0 1 100%;
  }

  .team-img {
    height: 300px;
  }
}

/* LOADER */
.loader {
  display: none;
  text-align: center;
  padding: 30px 20px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  width: 100%;
  clear: both;
}

/* FILTER */
.team-filter {
  margin-bottom: 30px;
  text-align: center;
}

.team-filter select {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 200px;
  font-family: Arial, Helvetica, sans-serif;
}
