.team_section {
  padding: 60px 30px;
}

.team_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.team_title {
  font-family: "Clash Grotesk", sans-serif;
  margin: 0;
  font-weight: 600;
  font-size: 38px;
	margin-bottom: 15px;
}

.team_intro {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  margin-top: 0;
  color: black;
  margin-bottom: 30px;
  line-height: 30px;
}

.team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 -20px;
}

.team_member {
  flex: 0 0 45%;
  margin: 0 20px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.team_image_wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.team_content {
  padding: 24px 0;
}

.team_name {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0;
}

.team_function {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 400;
  font-style: Medium;
  font-size: 20px;
  margin-top: 0;
  color: #252525;
  font-style: italic;
  margin-bottom: 10px;
}

.team_contact {
  display: flex;
  gap: 8px;
}

.team_email,
.team_tel {
  background-color: #1F2C4C;
  color: white;
  font-family: "Open Sans", sans-serif;
	padding: 14px 25px 14px 25px;
  display: inline-block;
  border-radius: 100px;
  text-decoration: unset;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  transition: 0.3s all;
  border: 1px solid #1F2C4C;
  margin-top: 10px;
}

.team_email:hover,
.team_tel:hover {
  background-color: white;
  color: #1F2C4C;
  border: 1px solid #1F2C4C;
  transition: 0.3s all;
}

.team_contact svg {
  width: 20px;
	fill: white;
    margin-right: 5px;
	transition: 0.3s all;
}

.team_email:hover svg,
.team_tel:hover svg {
	fill: #1F2C4C;
	transition: 0.3s all;
}

/* Media Queries */
/* 1200px - 900px */
@media screen and (max-width: 1200px) and (min-width: 900px) {
  .team_section {
    padding: 50px 30px;
  }
  .team_title {
    margin-bottom: 8px;
  }
  .team_grid {
    gap: 10px;
  }
  .team_member {
    flex: 0 0 46%;
    margin: 0 15px;
  }
  .team_image,
  .team_image_wrapper {
    height: 400px;
  }
}
/* 899px - 600px */
@media screen and (max-width: 899px) and (min-width: 600px) {
  .team_section {
    padding: 50px 30px;
  }
  .team_title {
    margin-bottom: 8px;
    font-size: 32px;
  }
  .team_grid {
    gap: 10px;
  }
  .team_member {
    flex: 0 0 43%;
    margin: 0 15px;
  }
  .team_image,
  .team_image_wrapper {
    height: 350px;
  }
  .team_intro {
    font-size: 19px;
  }
  .team_name {
    margin-bottom: 5px;
  }
}
/* 599px - 400px */
@media screen and (max-width: 599px) and (min-width: 400px) {
  .team_section {
    padding: 50px 30px;
  }
  .team_title {
    margin-bottom: 8px;
    font-size: 32px;
  }
  .team_grid {
    gap: 30px;
    flex-direction: column;
  }
  .team_member {
    flex: 0 0 calc(50% - 15px);
    margin: 0 15px;
  }
  .team_image,
  .team_image_wrapper {
    height: 300px;
  }
  .team_intro {
    font-size: 19px;
  }
  .team_name {
    margin-bottom: 5px;
    font-size: 24px;
  }
  .team_email, .team_tel {
    padding: 12px 25px 12px 25px;
  }
  .team_function {
    font-size: 18px;
  }
}
/* Max 399px */
@media screen and (max-width: 399px) {
  .team_section {
    padding: 50px 30px;
  }
  .team_title {
    margin-bottom: 8px;
    font-size: 32px;
  }
  .team_grid {
    gap: 30px;
    flex-direction: column;
  }
  .team_member {
    flex: 0 0 calc(50% - 15px);
    margin: 0 15px;
  }
  .team_image,
  .team_image_wrapper {
    height: 300px;
  }
  .team_intro {
    font-size: 19px;
  }
  .team_name {
    margin-bottom: 5px;
    font-size: 24px;
  }
  .team_email, .team_tel {
    padding: 12px 25px 12px 25px;
  }
  .team_function {
    font-size: 18px;
  }
}
/* Performance optimalisaties */
@media (prefers-reduced-motion: reduce) {
  .team_member {
    transition: none;
  }
}/*# sourceMappingURL=the_team.css.map */