#our-team .hero {
  position: relative;
}
#our-team .hero .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 250px;
  margin-bottom: 120px;
  max-width: 1230px;
  align-items: flex-end;
}
#our-team .hero h1 {
  color: #1E2859;
  font-family: "kepler-std-display";
  font-weight: 300;
  font-size: 160px;
  line-height: 140px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: clip-path 0.75s linear;
}
#our-team .hero h2 {
  transition: all 0.5s ease 0.75s;
  opacity: 0;
  transform: translate(0, 50px);
  padding-left: 30px;
  font-size: 33px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.33px;
  color: #2E3F57;
  position: relative;
  margin-bottom: 20px;
}
#our-team .hero h2::before {
  width: 9px;
  height: 9px;
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 0;
  background: #4A8CCC;
}
#our-team .hero.in-view h1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
#our-team .hero.in-view h2 {
  opacity: 1;
  transform: translate(0, 0);
}
#our-team .s1 {
  aspect-ratio: 1920/667;
  min-height: 250px;
  background: url(/i/our-team-hero3.jpg) no-repeat right top/cover;
  width: 100%;
}
#our-team .s2 {
  padding: 150px 0;
  background: #ECEFF9;
}
#our-team .s2 .content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10%;
  max-width: 1230px;
}
#our-team .s2 .content > div:nth-child(1) {
  width: 35%;
}
#our-team .s2 .content > div:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  border-right: 3px solid #4D8CCA;
  border-top: 3px solid #4D8CCA;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
}
#our-team .s2 .content > div:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  border-left: 3px solid #4D8CCA;
  border-bottom: 3px solid #4D8CCA;
  width: 30px;
  height: 30px;
  left: 0;
  bottom: 0;
}
#our-team .s2 .content > div:nth-child(2) {
  padding: 0 50px;
  position: relative;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#our-team .s2 h4 {
  opacity: 0;
  font-size: 33px;
  font-weight: 300;
  letter-spacing: 0.33px;
  line-height: 1.3;
  color: #2E3F57;
}
#our-team .s2 h4 strong {
  font-weight: 500;
  color: #4D8CCA;
}
#our-team .s2 p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #2E3F57;
}
#our-team .s2 p strong {
  font-weight: 600;
}
#our-team .s2 ul {
  list-style: none;
  width: 100%;
  margin-top: 40px;
}
#our-team .s2 li {
  border-top: 1px solid #ABC2E5;
  width: 100%;
  padding: 10px 0;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.63px;
  line-height: 1.5;
  color: #2E3F57;
}
#our-team .s2 li:last-child {
  border-bottom: 1px solid #ABC2E5;
}
#our-team .s2.in-view h4 {
  opacity: 1;
  transition: opacity 0.5s ease 0.25s;
}
#our-team .s3 {
  padding: 150px 0;
  /* Trigger (visible box) */
  /* Dropdown list */
  /* Show dropdown */
  /* Option styling */
}
#our-team .s3 .content {
  max-width: 1230px;
}
#our-team .s3 .filters {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.57px;
}
#our-team .s3 .filters button {
  outline: none;
  text-decoration: underline;
  border: none;
  background: transparent;
  font-family: "neue-haas-grotesk-display";
  color: #2E3F57;
  font-size: 19px;
  font-weight: 400;
}
#our-team .s3 .filters > span {
  color: #2E3F57;
}
#our-team .s3 span {
  margin-right: auto;
}
#our-team .s3 .custom-select {
  position: relative;
  width: fit-content;
  min-width: 180px;
  font-size: 21px;
  user-select: none;
  letter-spacing: 0.63px;
  line-height: 1.5;
}
#our-team .s3 .custom-select-trigger {
  color: #2E3F57;
  padding: 12px 16px;
  border: 1px solid #ABC2E5;
  border-radius: 36px;
  cursor: pointer;
  background: url(/i/chevron2.svg) no-repeat calc(100% - 1rem) center/10px auto;
}
#our-team .s3 .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 15px;
  background: #fff;
  border: 1px solid transparent;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2);
  min-width: max-content;
  padding: 18px 10px;
}
#our-team .s3 .custom-select.open .custom-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#our-team .s3 .custom-select.open .custom-select-trigger {
  background-image: url(/i/chevron-up2.svg);
  background-color: #E9EEF8;
}
#our-team .s3 .custom-select:hover .custom-select-trigger {
  background-color: #E9EEF8;
}
#our-team .s3 .custom-option {
  padding: 10px;
  color: #000;
  cursor: pointer;
  display: block;
  width: 100%;
  color: #2E3F57;
  font-size: 19px;
  letter-spacing: 0.57px;
}
#our-team .s3 .custom-option:hover {
  background: #E9EEF8;
  color: #4D8CCA;
}
#our-team .s3 .custom-option.selected {
  background: #E9EEF8;
  color: #4D8CCA;
}
#our-team .s3 .team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 120px;
  gap: 20px;
}
#our-team .s3 .team a {
  position: relative;
  width: calc(25% - 20px);
}
#our-team .s3 .team a img {
  display: block;
}
#our-team .s3 .team a:hover .img-wrap {
  position: relative;
}
#our-team .s3 .team a:hover .img-wrap::before {
  content: "";
  display: block;
  position: absolute;
  border-right: 4px solid #4D8CCA;
  border-top: 4px solid #4D8CCA;
  width: 40px;
  height: 40px;
  right: -2px;
  top: -2px;
}
#our-team .s3 .team a:hover .img-wrap::after {
  content: "";
  display: block;
  position: absolute;
  border-left: 4px solid #4D8CCA;
  border-bottom: 4px solid #4D8CCA;
  width: 40px;
  height: 40px;
  left: -2px;
  bottom: -2px;
}
#our-team .s3 .team img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
#our-team .s3 p.name {
  font-family: "kepler-std-display";
  font-size: 25px;
  font-weight: 300;
  color: #2E3F57;
  letter-spacing: 0;
  margin-top: 10px;
}
#our-team .s3 p.title {
  color: #2E3F57;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.54px;
  margin: -5px 0 15px 0;
}

@media screen and (max-width: 1279px) {
  #our-team .s3 .filters {
    flex-wrap: wrap;
  }
  #our-team .s3 .filters span {
    width: 100%;
  }
  #our-team .s3 .team button {
    width: 20%;
  }
}
@media screen and (max-width: 1160px) {
  #our-team .s3 .team {
    gap: 30px;
  }
  #our-team .s3 .team a {
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 1024px) {
  #our-team .s2 .content {
    flex-direction: column;
    gap: 50px;
  }
  #our-team .s2 .content > div {
    width: 100% !important;
  }
  #our-team .s2 .content > div:nth-child(2) {
    padding: 40px;
  }
}
@media screen and (max-width: 979px) {
  #our-team .s3 .team a {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  #our-team .s1 {
    max-height: 250px;
  }
  #our-team .s2 {
    padding: 100px 0;
  }
  #our-team .s2 h4 {
    font-size: 25px;
  }
  #our-team .s2 p {
    font-size: 18px;
  }
  #our-team .s3 {
    padding: 100px 0;
  }
  #our-team .s3 .team {
    margin-top: 75px;
  }
  #our-team .s3 .team a {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=our-team.css.map */
