@font-face {
  font-family: "Jersey";
  src: url("../media/font/relish-gargler.ttf") format("truetype");
}
@font-face {
  font-family: "Arial";
  src: url("../media/font/arial_narrow_7.ttf") format("truetype");
  font-weight: 400;
}
.font-jersey {
  font-family: "Jersey", sans-serif;
}
.font-arial {
  font-family: "Arial", sans-serif;
  font-weight: 700; /* Biar pasti tampil tebal */
}
/* menegetik di home */
#typewriter::after {
  content: "|";
  animation: blink 0.7s infinite;
  display: inline-block;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.my-logo {
  width: 40px; /* Atur ukuran sesuai kebutuhan */
  height: 40px;
  border-radius: 50%; /* Ini yang bikin bulat */
  object-fit: cover; /* Biar nggak gepeng */
}

.text-secondary {
  color: #3b82f6; /* atau sesuai tema kamu */
}
/* tombl goyang project */
@keyframes pulseGrow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

.animate-pulse-delay-1 {
  animation: pulseGrow 1.5s ease-in-out infinite;
  animation-delay: 0s;
}
.animate-pulse-delay-2 {
  animation: pulseGrow 1.5s ease-in-out infinite;
  animation-delay: 0.2s;
}
.animate-pulse-delay-3 {
  animation: pulseGrow 1.5s ease-in-out infinite;
  animation-delay: 0.4s;
}

.swiper-pagination-bullet {
  background-color: #3b82f6;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
