body {
  font-family: "Nunito";
}

#navbar .nav-link {
  font-weight: bold;
}

#navbar .nav-link:hover {
  color: rgb(22, 26, 116);
}

#navbar .nav-item:hover .dropdown-menu {
  display: block;
}

#air-plane-logo:hover {
  transform: scale(75%);
}

/* #img-logo-hjw:hover {
  transform: scale(75%);
} */

section {
  padding-top: 5rem;
}

#btn-lihat-paket {
  animation: wiggle 2s linear infinite;
  /* position: absolute; */
  left: calc(50% - 3em);
  top: calc(50% - 2em);

  height: 3em;
  width: 7em;

  background: #775c01;
  background: linear-gradient(top, #555, #333);
  border: none;
  border-top: 3px solid orange;
  border-radius: 0 0 0.2em 0.2em;
  color: #fff;
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 1em;
  transform-origin: 50% 5em;
}

#btn-lihat-paket:hover {
  background: #d2b96d;
  border-top: 3px solid orange;
  color: #480606;
}

@keyframes wiggle {
  0%,
  7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%,
  100% {
    transform: rotateZ(0);
  }
}

#img-logo-hjw {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }
  50% {
    /* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
    transform: translatey(-20px);
  }
  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }
}

/* .fade-in {
  animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */

#konten-utama .cursor {
  position: relative;
  width: 24em;
  margin: 0 auto;
  /* border-right: 2px solid rgba(255,255,255,.75); */
  /* font-size: 40px; */
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);
}

#konten-utama .typewriter-animation {
  animation: typewriter 5s steps(50) 1s 1 normal both, blinkingCursor 500ms steps(50) infinite normal;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blinkingCursor {
  from {
    border-right-color: rgba(255, 255, 255, 0.75);
  }
  to {
    border-right-color: transparent;
  }
}

.custom-scrollbar-js,
.custom-scrollbar-css {
  height: 250px;
}

/* Custom Scrollbar using CSS */
.custom-scrollbar-css {
  overflow-y: scroll;
}

/* scrollbar width */
.custom-scrollbar-css::-webkit-scrollbar {
  width: 5px;
}

/* scrollbar track */
.custom-scrollbar-css::-webkit-scrollbar-track {
  background: #eee;
}

/* scrollbar handle */
.custom-scrollbar-css::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: #00d2ff;
  background-image: linear-gradient(to top, #00d2ff 0%, #3a7bd5 100%);
}

/* Gaya untuk container video */
      .video-container {
        display: flex; /* Mengatur video dalam baris */
        overflow-x: auto; /* Mengaktifkan scroll horizontal */
        gap: 10px; /* Jarak antar video */
        padding: 10px;
        white-space: nowrap; /* Mencegah video turun ke baris berikutnya */
        border: 2px solid #ccc; /* Opsional: Tambahkan border */
      }

      /* Gaya untuk video */
      .video-container video {
        width: 300px; /* Lebar setiap video */
        height: auto; /* Tinggi otomatis sesuai rasio */
        border-radius: 8px; /* Opsional: Membuat sudut video melengkung */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Opsional: Tambahkan bayangan */
      }

      /* Gaya untuk scrollbar */
      .video-container::-webkit-scrollbar {
        height: 8px; /* Tinggi scrollbar */
      }

      .video-container::-webkit-scrollbar-thumb {
        background: #888; /* Warna scrollbar */
        border-radius: 4px; /* Membuat scrollbar melengkung */
      }

      .video-container::-webkit-scrollbar-thumb:hover {
        background: #555; /* Warna scrollbar saat di-hover */
      }