:root {
  --grid-gutter-width: 30px;
  --border-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --grid-gutter-width: 40px;
  }
}
.team-popup {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  box-sizing: border-box;
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.team-popup .content-entry {
  transform: translate(50vw, 0);
  transition: transform 0.8s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.team-popup.active {
  opacity: 1;
  visibility: visible;
}
.team-popup.active .team-popup__nav {
  transform: translate(0, 0);
}
.team-popup.active .content-entry {
  transform: translate(0, 0);
}
.team-popup.active .team-popup__photo {
  transform: translate(0, 0);
}
.team-popup.active .team-popup__photo:after {
  height: 0;
}
.team-popup .ia-container {
  height: 100%;
  position: relative;
}
.team-popup__in {
  display: flex;
  justify-content: space-between;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.team-popup__left, .team-popup__right {
  width: 49%;
}
.team-popup__right {
  padding-top: 10.5rem;
}
.team-popup__nav {
  background: #cdf35c;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(50vw, 0);
  color: #000;
  position: absolute;
  left: 51%;
  right: 3rem;
  top: 0;
  z-index: 10;
}
.team-popup__nav div {
  border: none;
  background: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .team-popup__nav:hover {
    background: #fff;
  }
}
.team-popup__photo {
  width: 100%;
  padding-bottom: 133%;
  position: relative;
  transform: translate(-50vw, 0);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.team-popup__photo:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  transition: height 0.5s 0.1s cubic-bezier(1, 0, 0.25, 0.995);
  background: linear-gradient(0deg, #CDF35C 0%, #009CB9 100%);
}
.team-popup__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.team-popup__title {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 4rem;
  background: #000;
  border: 0.2px solid rgba(0, 0, 0, 0.4);
  padding: 5rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(9px);
}

.linkedIn {
  padding-right: 0 !important;
}
.linkedIn:after {
  display: none;
}

@media (max-width: 1300px) {
  .team-popup__photo {
    height: auto;
    padding-bottom: 133%;
    max-height: none;
  }
}
@media (max-width: 1024px) {
  .team-popup__photo {
    height: auto;
    padding-bottom: 133%;
    max-height: none;
  }
  .team-popup__title {
    padding: 2rem;
  }
  .team-popup__nav,
  .team-popup .content-entry {
    transform: translate(100vw, 0);
  }
  .team-popup .team-popup__photo {
    transform: translate(-100vw, 0);
  }
}
@media (max-width: 767px) {
  .team-popup__in {
    display: block;
  }
  .team-popup__photo {
    padding-bottom: 133%;
    height: auto;
    max-height: none;
    margin-bottom: 4rem;
  }
  .team-popup__title {
    padding: 2rem;
  }
  .team-popup .ia-container {
    position: static;
    display: block;
    padding-top: 7.4rem;
    box-sizing: border-box;
  }
  .team-popup__left, .team-popup__right {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .team-popup__right {
    padding-top: 0;
  }
  .team-popup__nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.2rem 2rem;
    width: auto;
  }
}

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