@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i");
:root {
  --orange: #fd9940;
  --darkorange: #dd7d25;
  --platinum: #e5e5e5;
  --black: #2b2d42;
  --white: #fff;
  --thumb: #edf2f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Sembunyikan konten utama saat preloader aktif */
body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

/* =================================
  Navbar
================================= */
.navbar {
  background: rgba(0, 51, 102, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 0;
  backdrop-filter: blur(30px);
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
}

.navbar.scrolled {
  background: rgba(0, 51, 102, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: white !important;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand i {
  color: #ff6600;
  font-size: 2rem;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  gap: 1rem;
}

.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: white;
  margin: auto 10px;
}

.nav-link {
  position: relative;
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Garis bawah efek hover hanya untuk link selain dropdown */
.nav-item:not(.dropdown) .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.nav-item:not(.dropdown) .nav-link:hover {
  color: #ff6600 !important;
}

.nav-item:not(.dropdown) .nav-link:hover::after {
  width: 100%;
}

/* Dropdown "Tim" */
.dropdown .nav-link {
  color: white !important;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

/* Panah bawah default */
.dropdown .nav-link::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: white;
}

/* Saat hover ubah jadi panah atas dan warna orange */
.dropdown:hover .nav-link::after {
  content: "\f077"; /* fa-chevron-up */
  color: #ff6600;
}

.dropdown:hover .nav-link {
  color: #ff6600 !important;
}

/* Dropdown menu */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 110px !important;
  min-width: unset !important;
  left: -20px;
  right: auto;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* Efek hover untuk item di dropdown menu */
.dropdown-menu .dropdown-item {
  position: relative;
  color: #003366;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #ff6600;
}

.dropdown-menu .dropdown-item:hover {
  background-color: transparent !important;
  color: #ff6600 !important;
  padding-left: 25px;
}

.dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* === SIDEBAR (Untuk Responsif) === */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #2d4263;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 2000;
}

.sidebar.active {
  left: 0;
}

.sidebar .close-btn {
  color: white;
  font-size: 1.2rem;
  border: none;
  background: none;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li a {
  display: block;
  color: white;
  padding: 7px 0;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.2s ease;
}

.sidebar.active ul li a {
  opacity: 1;
  transform: translateX(0);
}

/* Tambahkan delay bertahap untuk setiap link agar muncul satu-satu */
.sidebar.active ul li:nth-child(1) a {
  transition-delay: 0.1s;
}
.sidebar.active ul li:nth-child(2) a {
  transition-delay: 0.2s;
}
.sidebar.active ul li:nth-child(3) a {
  transition-delay: 0.3s;
}
.sidebar.active ul li:nth-child(4) a {
  transition-delay: 0.2s;
}
.sidebar.active ul li:nth-child(5) a {
  transition-delay: 0.5s;
}
.sidebar.active ul li:nth-child(6) a {
  transition-delay: 0.6s;
}

/* Awalnya submenu disembunyikan dan geser ke kiri */
.sidebar .submenu {
  padding-left: 15px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-20px);
  transition: all 0.2s ease;
}

/* Saat "Lainnya" diklik (aktif), submenu muncul dengan animasi ke kanan */
.sidebar .has-submenu.active .submenu {
  max-height: 500px; /* cukup besar agar semua link terlihat */
  opacity: 1;
  transform: translateX(0);
}

/* Animasi link submenu muncul satu per satu dari kiri ke kanan */
.sidebar .has-submenu.active .submenu li a {
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.3s ease;
}

.sidebar .has-submenu.active .submenu li:nth-child(1) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}
.sidebar .has-submenu.active .submenu li:nth-child(2) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.sidebar .has-submenu.active .submenu li:nth-child(3) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
.sidebar .has-submenu.active .submenu li:nth-child(4) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.sidebar .has-submenu.active .submenu li:nth-child(5) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.sidebar .has-submenu.active .submenu li:nth-child(6) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.sidebar .has-submenu.active .submenu li:nth-child(7) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.7s;
}
.sidebar .has-submenu.active .submenu li:nth-child(8) a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}

/* Atur tampilan panah default */
.sidebar .toggle-submenu i {
  transition: transform 0.3s ease;
}

/* Saat submenu aktif, rotasikan panah ke atas */
.sidebar .has-submenu.active .toggle-submenu i {
  transform: rotate(180deg);
}

/* Overlay ketika sidebar terbuka */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* TATA LETAK HAMBURGER DAN LOGO SAAT HP */
@media (max-width: 991.98px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .navbar-toggler {
    order: 1;
  }

  .navbar-brand {
    order: 2;
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .sidebar,
  .overlay {
    display: none;
  }
}

/* =================================
  Welcome
================================= */
.welcome {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 8% 20px 8%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.welcome-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.welcome-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.welcome-text p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.welcome-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-img img {
  max-width: 50%;
  height: auto;
}

/* Untuk iPad dan tablet - tetap horizontal layout */
@media (min-width: 768px) and (max-width: 1024px) {
  .welcome {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5% 20px 5%;
    max-width: 100%;
  }

  .welcome-text {
    flex: 1;
    padding-right: 20px;
  }

  .welcome-text h1 {
    font-size: 1.2rem;
    text-align: left;
  }

  .welcome-text p {
    font-size: 0.75rem;
    text-align: justify;
  }

  .welcome-img {
    flex: 1;
  }

  .welcome-img img {
    max-width: 60%;
  }
}

/* Mobile: Ubah urutan menjadi h1 -> image -> paragraf */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .welcome {
    display: flex;
    flex-direction: column;
    padding: 60px 4% 0 4%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .welcome-text {
    order: 1; /* Urutan pertama */
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .welcome-text h1 {
    text-align: center;
    font-size: 1.4rem;
  }
  
  .welcome-img {
    order: 2; /* Urutan kedua */
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .welcome-img img {
    max-width: 100%;
    height: auto;
  }
  
  .welcome-text p {
    text-align: justify;
  }
}
/* =================================
  Hero
================================= */
.hero {
  margin-top: 40px;
  min-height: 50vh;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.7), rgba(255, 102, 0, 0.5)), url("assets/img/Foto-Pegawai-BPS.jpeg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0;
}

.hero-content {
  max-width: 1000px;
  padding: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: clamp(0.5rem, 1vw, 1rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  background: #ff6600;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.cta-button:hover {
  background: #ff3300;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll; /* agar lancar di hp */
    min-height: 40vh; /* tetap full view */
  }
}

/* =================================
   Struktur Tim
================================= */
/* Kelas: struktur -> team-structure */
/* =================================
        

        /* Kelas: team-structure__members (Main container) */
.team-structure {
  padding: 40px 0;
  text-align: center;
}

.team-structure h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 40px;
}
.team-structure__members {
  /* Default: stack rows vertically */
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Kelas: team-structure__row (Row wrapper) */
.team-structure__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

/* Member card */
.member-card {
  position: relative;
  width: 190px;
  height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 4px solid #fff;
  background-color: #fff;
}

/* Tambahkan warna border untuk memperjelas identitas */
.team-structure__row:nth-child(1) .member-card {
  border-color: #0066cc; /* Biru untuk baris atas */
}
.team-structure__row:nth-child(2) .member-card {
  border-color: #0066cc; /* Oranye untuk baris bawah */
}

.member-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s ease;
}

/* Member info appears on hover */
.member-card__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 5px;
  background: rgba(0, 0, 0, 0.7); /* Transparan gelap */
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.member-card:hover .member-card__info {
  opacity: 1;
  transform: translateY(0);
}

.member-card__info h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.member-card__info p {
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

/* ==================================
           DESKTOP VIEW (min-width: 701px)
           (Mengubah tata letak menjadi 1 baris untuk 5 kartu)
        ================================== */
@media (min-width: 701px) {
  .team-structure__members {
    /* Mengubah arah utama menjadi horizontal */
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap; /* Izinkan wrapping jika terlalu sempit */
    gap: 20px; /* Gunakan gap kartu */
  }
  /* Menghilangkan elemen .team-structure__row agar 5 kartu menjadi
               direct children dari .team-structure__members */
  .team-structure__row {
    display: contents;
  }

  .member-card {
    /* Menyesuaikan lebar kartu agar 5 kartu muat */
    width: 190px;
    height: 320px;
  }
}

/* ==================================
           MOBILE VIEW (max-width: 700px)
           (Perbaikan Responsif: Mempertahankan 3-2)
        ================================== */
@media (max-width: 700px) {
  .team-structure h2 {
    font-size: 2rem;
  }
  .team-structure__row {
    gap: 10px;
    /* Di tampilan mobile, baris tetap sebagai flex container */
    display: flex;
  }

  /* 1. Target kartu di baris PERTAMA (3 kartu) */
  .team-structure__row:nth-of-type(1) .member-card {
    /* Hitungan: (100% / 3) - sedikit margin/gap */
    width: calc(33.33% - 7px);
    height: 220px;
  }

  /* 2. Target kartu di baris KEDUA (2 kartu) */
  .team-structure__row:nth-of-type(2) .member-card {
    /* Ukuran kartu sama dengan Baris 1 */
    width: calc(33.33% - 7px);
    height: 220px;
  }

  /* Penyesuaian teks agar tetap terbaca di layar sempit */
  .member-card__info {
    padding: 5px 2px;
  }
  .member-card__info h3 {
    font-size: 0.8rem;
  }
  .member-card__info p {
    font-size: 0.65rem;
  }
}

/* =================================
  FOOTER
================================= */
.footer {
  background: #003366;
  color: white;
  padding: 60px 0 30px;
  width: 100%;
  margin-top: auto;
  left: 0;
  right: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.footer-section {
  margin-left: 20px;
}
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6600;
}

.footer-section a:hover i {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 102, 0, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6600;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}
.footer iframe {
  border: none;
  width: auto;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================================
  RESPONSIVE FOOTER UNTUK IPAD
================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
  }

  .footer-section h3 {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer iframe {
    width: 80%;
    height: 250px;
    margin: 0 auto;
  }
}

/* ================================
  RESPONSIVE (UNTUK HP)
================================ */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    max-width: 400px;
    margin-left: 0;
  }

  .social-links {
    justify-content: center;
  }

  .footer iframe {
    width: 90%;
    height: 200px;
  }
}

/* ================================
  Page Load Animation
================================ */
/* #main-content {
  -webkit-animation: appear 2s;
  animation: appear 2s;
} */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* ================================
  Preloading Screen Transition
================================ */
.animation {
  position: fixed; /* Gunakan fixed agar menutupi viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 9999; /* Pastikan di atas segalanya */
  font-size: 13.333333333vw;
  /* Animasi untuk menghilangkan preloader setelah selesai */
  animation: preloader-fade-out 0.5s ease 2s forwards;
}

.animation_title01_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  text-align: center;
  z-index: 99;
}

.animation_title01 {
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
}

.animation_title01 span {
  display: inline-block;
  opacity: 0;
}

.animation_title01 span:nth-child(1) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards, animation_font02 1.6s ease-in-out 3.6s forwards;
}
.animation_title01 span:nth-child(2) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards, animation_font02 1.6s ease-in-out 3.65s forwards;
}
.animation_title01 span:nth-child(3) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards, animation_font02 1.6s ease-in-out 3.7s forwards;
}
.animation_title01 span:nth-child(4) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards, animation_font02 1.6s ease-in-out 3.75s forwards;
}
.animation_title01 span:nth-child(5) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards, animation_font02 1.6s ease-in-out 3.8s forwards;
}
.animation_title01 span:nth-child(6) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s forwards, animation_font02 1.6s ease-in-out 3.85s forwards;
}
.animation_title01 span:nth-child(7) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1.2s forwards, animation_font02 1.6s ease-in-out 3.9s forwards;
}
.animation_title01 span:nth-child(8) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1.6s forwards, animation_font02 1.6s ease-in-out 3.95s forwards;
}
.animation_title01 span:nth-child(9) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1.8s forwards, animation_font02 1.6s ease-in-out 2s forwards;
}
.animation_title01 span:nth-child(10) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 2s forwards, animation_font02 1.6s ease-in-out 4.05s forwards;
}
.animation_title01 span:nth-child(11) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 2.2s forwards, animation_font02 1.6s ease-in-out 4.1s forwards;
}
.animation_title01 span:nth-child(12) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 2.2s forwards, animation_font02 1.6s ease-in-out 4.15s forwards;
}
.animation_title01 span:nth-child(13) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 2.6s forwards, animation_font02 1.6s ease-in-out 4.2s forwards;
}
.animation_title01 span:nth-child(14) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 2.8s forwards, animation_font02 1.6s ease-in-out 4.25s forwards;
}
.animation_title01 span:nth-child(15) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 3s forwards, animation_font02 1.6s ease-in-out 4.3s forwards;
}
.animation_title01 span:nth-child(16) {
  animation: animation_font01 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 3.2s forwards, animation_font02 1.6s ease-in-out 4.35s forwards;
}

.animation_bg01 {
  position: absolute;
  background-color: #ada939;
  width: 100%;
  height: 100%;
}
.animation_common_bg01 {
  position: absolute;
  bottom: 0;
  left: -300%;
  width: 300%;
  height: 300%;
  transform-origin: bottom right;
}
.animation_common_bg02 {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}
.animation_common_bg03 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: scale3d(0, 0, 0);
  transform-origin: bottom right;
}
.animation_common_bg04 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: scale3d(0, 0, 0);
  transform-origin: top left;
}
.animation_common_bg05 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  transform: scale3d(0, 0, 0);
  transform-origin: center;
}
.animation_common_bg06 {
  position: absolute;
  bottom: 0;
  right: -300%;
  width: 300%;
  height: 300%;
  transform-origin: bottom left;
}
.animation_common_bg07 {
  position: absolute;
  top: 0;
  width: 20%;
  height: 100%;
  transform: scale3d(0, 0, 0);
  transform-origin: center;
}
.animation_common_bg08 {
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
}
.animation_common_bg09 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: scale3d(0, 0, 0);
  transform-origin: bottom left;
}
.animation_common_bg10 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: scale3d(0, 0, 0);
  transform-origin: top right;
}

.animation_bg02 {
  background-color: #de2053;
  animation: animation_bg01 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.animation_bg03 {
  background-color: #f05a4e;
  animation: animation_bg01 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}
.animation_bg04 {
  background-color: #f9c142;
  animation: animation_bg01 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}
.animation_bg05 {
  background-color: #58b2ca;
  animation: animation_bg01 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}
.animation_bg06 {
  background-color: #c5d76e;
  animation: animation_bg02 2.2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}
.animation_bg07 {
  background-color: #1c998e;
  animation: animation_bg03 2.2s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}
.animation_bg08 {
  background-color: #f66038;
  animation: animation_bg04 2.2s cubic-bezier(0.19, 1, 0.22, 1) 1.2s forwards;
}
.animation_bg09 {
  background-color: #d8253d;
  animation: animation_bg05 2.2s cubic-bezier(0.19, 1, 0.22, 1) 1.2s forwards;
}
.animation_bg10 {
  border-top: 100vh solid transparent;
  border-right: 100vw solid #fff;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 1.6s forwards;
}
.animation_bg11 {
  border-bottom: 100vh solid transparent;
  border-left: 100vw solid #fff;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 1.6s forwards;
}
.animation_bg12 {
  border-top: 100vh solid transparent;
  border-right: 100vw solid #019fb9;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 1.8s forwards;
}
.animation_bg13 {
  border-bottom: 100vh solid transparent;
  border-left: 100vw solid #019fb9;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 1.8s forwards;
}
.animation_bg14 {
  border-top: 100vh solid transparent;
  border-right: 100vw solid #ffd766;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 2s forwards;
}
.animation_bg15 {
  border-bottom: 100vh solid transparent;
  border-left: 100vw solid #ffd766;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 2s forwards;
}
.animation_bg16 {
  border-top: 100vh solid transparent;
  border-right: 100vw solid #fe4949;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 2.2s forwards;
}
.animation_bg17 {
  border-bottom: 100vh solid transparent;
  border-left: 100vw solid #fe4949;
  animation: animation_bg06 2s cubic-bezier(0.19, 1, 0.22, 1) 2.2s forwards;
}
.animation_bg18 {
  bottom: 0;
  background-color: #b11f33;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 2.2s forwards;
}
.animation_bg19 {
  bottom: 20%;
  background-color: #1f2ddf;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 2.6s forwards;
}
.animation_bg20 {
  bottom: 40%;
  background-color: #54fe47;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 2.8s forwards;
}
.animation_bg21 {
  bottom: 60%;
  background-color: #f4fe55;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 3s forwards;
}
.animation_bg22 {
  bottom: 80%;
  background-color: #f7b844;
  animation: animation_bg07 2s cubic-bezier(0.19, 1, 0.22, 1) 3.2s forwards;
}
.animation_bg23 {
  background-color: #ffd048;
  animation: animation_bg08 1s cubic-bezier(0.19, 1, 0.22, 1) 3.3s forwards;
}
.animation_bg24 {
  background-color: #cf6b48;
  animation: animation_bg08 1s cubic-bezier(0.19, 1, 0.22, 1) 3.5s forwards;
}
.animation_bg25 {
  background-color: #970201;
  animation: animation_bg08 1s cubic-bezier(0.19, 1, 0.22, 1) 3.7s forwards;
}
.animation_bg26 {
  background-color: #261e4e;
  animation: animation_bg08 1s cubic-bezier(0.19, 1, 0.22, 1) 3.9s forwards;
}
.animation_bg27 {
  left: 0;
  background-color: #493b46;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 4.3s forwards;
}
.animation_bg28 {
  left: 20%;
  background-color: #3e6e72;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 4.5s forwards;
}
.animation_bg29 {
  left: 40%;
  background-color: #c0ee62;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 4.7s forwards;
}
.animation_bg30 {
  left: 60%;
  background-color: #f5733b;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 4.9s forwards;
}
.animation_bg31 {
  left: 80%;
  background-color: #f4f3f4;
  animation: animation_bg07 1.2s cubic-bezier(0.19, 1, 0.22, 1) 5.1s forwards;
}
.animation_bg32 {
  background-color: #fef0d0;
  animation: animation_bg10 2.2s cubic-bezier(0.19, 1, 0.22, 1) 5.2s forwards;
}
.animation_bg33 {
  background-color: #f0c80a;
  animation: animation_bg11 2.2s cubic-bezier(0.19, 1, 0.22, 1) 5.2s forwards;
}
.animation_bg34 {
  background-color: #096689;
  animation: animation_bg12 2.2s cubic-bezier(0.19, 1, 0.22, 1) 5.6s forwards;
}
.animation_bg35 {
  background-color: #3e6e72;
  animation: animation_bg13 2.2s cubic-bezier(0.19, 1, 0.22, 1) 5.8s forwards;
}

@keyframes preloader-fade-out {
  to {
    opacity: 0;
    visibility: hidden; /* Sembunyikan elemen setelah transisi selesai */
  }
}

@keyframes animation_bg01 {
  100% {
    transform: rotate(90deg);
  }
}
@keyframes animation_bg02 {
  100% {
    transform: translateX(100%);
  }
}
@keyframes animation_bg03 {
  100% {
    transform: translateX(75%);
  }
}
@keyframes animation_bg04 {
  100% {
    transform: translateX(50%);
  }
}
@keyframes animation_bg05 {
  100% {
    transform: translateX(25%);
  }
}
@keyframes animation_bg06 {
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes animation_bg07 {
  0% {
    transform: scale3d(0, 1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes animation_bg08 {
  100% {
    transform: rotate(-90deg);
  }
}
@keyframes animation_bg09 {
  0% {
    transform: scale3d(1, 0, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes animation_bg10 {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animation_bg11 {
  100% {
    transform: translateX(-75%);
  }
}
@keyframes animation_bg12 {
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animation_bg13 {
  100% {
    transform: translateX(-25%);
  }
}

@keyframes animation_font01 {
  0% {
    transform: translateX(-15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes animation_font02 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(180px);
    opacity: 0;
  }
}

@keyframes animation_title01 {
  0% {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
