@import "showcase.css";
@import "info.css";
@import "deal-team.css";
@import "steps.css";
@import "case-study.css";
@import "certificates.css";

@keyframes hero-badge-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.hero .badge .badge-dot {
  animation: hero-badge-pulse 2s ease-in-out infinite;
}

.hero {
  min-height: 908px;
  overflow: hidden;
}
.hero-mascot {
  align-items: center;
}
.hero-mascot img {
  width: 344px;
  height: 556px;
}
.video {
  margin-top: -290px;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }
  .hero-mascot {
    align-items: flex-start;
  }
  .hero-mascot img {
    height: 320px;
    width: auto;
  }
  .video {
    margin-top: -64px;
  }
}