.navbar_menu--item {
  animation-name: navbar_menu--animation;
  animation-duration: 1.5s;
}
.required:after {
  content:" *";
  color: red;
}
@keyframes navbar_menu--animation {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.team_card--animation {
  opacity: 0;
  animation-name: team_card--animation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.team_card--animation:nth-child(1) {
  animation-delay: 10ms;
}
.team_card--animation:nth-child(2) {
  animation-delay: 300ms;
}
.team_card--animation:nth-child(3) {
  animation-delay: 600ms;
}


@keyframes team_card--animation {
  from {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
    filter: blur(0px);
  }
}
