.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.team-grid .team-card {
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  background: #F4F4F4;
}
.team-grid .team-card figure {
  margin-bottom: 0 !important;
}
.team-grid .team-card .team-body {
  padding: 50px 60px 120px !important;
  flex: 1;
}
.team-grid .team-card .team-body h3 {
  margin-bottom: 0 !important;
}
.team-grid .team-card .team-body .contac-info-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--wp--preset--color--tertiary);
  width: 100%;
  padding: 20px 35px;
  box-sizing: border-box;
  /* Hidden state */
}
.team-grid .team-card .team-body .contac-info-wrapper .contact-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  background-color: var(--wp--preset--color--tertiary);
  transform: translateY(-10px);
  transition: max-height 0.35s ease-out, opacity 0.35s ease-out, transform 0.35s ease-out, padding-top 0.35s ease-out;
}
.team-grid .team-card .team-body .contac-info-wrapper .contact {
  margin-bottom: 0 !important;
  gap: 0 !important;
}
.team-grid .team-card .team-body .contac-info-wrapper .contact:after {
  content: "\f64d";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 0px;
  font-size: 20px;
  top: 1px;
}
.team-grid .team-card .team-body .contac-info-wrapper.open-info .contact-details {
  max-height: 300px;
  opacity: 1;
  padding-top: 160px;
  transform: translateY(0);
}
.team-grid .team-card .team-body .contac-info-wrapper.open-info .contact::after {
  content: "\f63b";
}
@media (max-width: 1118px) {
  .team-grid .team-card .team-body {
    padding: 30px 30px 90px !important;
  }
}
@media (max-width: 1280px) {
  .team-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 601px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=about-us.css.map */