/* ===============================
   Custom Responsive & Styling
   =============================== */

@media (max-width: 768px) {
  .custom_font_size {
    font-size: 12px !important;
  }
}

@media (min-width: 768px) {
  .custom_font_size {
    font-size: 14px !important;
  }
}

@media (min-width: 992px) {
  .col-lg-25 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Rounded corners */
.custom_rounded {
  border-radius: 0.75rem !important;
}

/* Transparent body */
body {
  background-color: transparent !important;
}

/* Gradient background */
.custom_gradient {
  background-color: red; /* fallback jika browser tidak support gradient */
  background-image: linear-gradient(to right, #260026 0%, #260026 100%);
}

/* Navbar styling */
.navbar {
  padding: 5px !important;
}

.navbar-area {
  top: 0 !important;
  background-color: #ffffff;
}

/* Navbar toggler */
.custom-toggler .navbar-toggler-icon {
  border-color: rgb(66, 8, 66);
}

.custom-toggler.navbar-toggler {
  border-color: rgb(66, 8, 66);
}

.accordion-button::after {
  display: none !important;
}

