/*@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --bs-primary: #50cbff;
  --bs-primary-dark: #666;
  --bs-second: #333;
  --bs-primary-rgb: 80, 203, 255;
  --bs-primary-dark-rgb: 234, 168, 17;
  --bs-second-rgb: 191, 0, 2;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 14px;
  --transition: all 0.5s ease-in-out;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --bs-body-line-height: 1.5;
  --bs-body-color: #3f434c;
  --bs-primary-font: "Inter", serif;
  --bs-alt-font: "Inter", sans-serif;
  --bs-font-sans-serif: "Inter", sans-serif;
}

.skiptranslate {
  display: none;
}

body {
  top: 0 !important;
}

.alt-font {
  font-family: var(--bs-alt-font);
}

.primary-font {
  font-family: var(--bs-primary-font);
}

.ls-1px {
  letter-spacing: 1px;
}

.btn {
  --bs-btn-font-size: 14px;
  --bs-btn-font-weight: 500;
}

.btn:not(.btn-link):hover {
  transform: none;
  box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-primary-dark {
  background-color: var(--bs-primary-dark) !important;
}

.bg-second {
  background-color: var(--bs-second);
}

.text-primary-dark {
  color: var(--bs-primary-dark);
}

.text-primary {
  color: var(--bs-primary);
}

.text-black {
  color: #000 !important;
}

.text-second {
  color: var(--bs-second);
}

.btn-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-primary.hover-white:hover {
  --bs-btn-hover-bg: #fff !important;
  --bs-btn-hover-border-color: #fff !important;
  --bs-btn-active-bg: #fff !important;
  --bs-btn-active-border-color: #fff !important;
  --bs-btn-hover-color: #000 !important;
  --bs-btn-active-color: #000 !important;
}

.btn-second {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-second);
  --bs-btn-border-color: var(--bs-second);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ca5300;
  --bs-btn-hover-border-color: #ca5300;
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ca5300;
  --bs-btn-active-border-color: var(--bs-second);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-second);
  --bs-btn-disabled-border-color: var(--bs-second);
}

.btn-primary-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary-dark);
  --bs-btn-border-color: var(--bs-primary-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-second);
  --bs-btn-hover-border-color: var(--bs-second);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-second);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary-dark);
  --bs-btn-disabled-border-color: var(--bs-primary-dark);
}

.btn-black {
  --bs-btn-color: #fff;
  --bs-btn-bg: black;
  --bs-btn-border-color: black;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: black;
  --bs-btn-hover-border-color: black;
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: black;
  --bs-btn-active-border-color: black;
  --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: black;
  --bs-btn-disabled-border-color: black;
}

/* Gaya Kustom untuk Tombol Gradasi */
.btn-primary-gradient-custom {
    background: linear-gradient(100deg, #0072ff 0%, #00c6ff 100%) !important;
    border: none !important;
    border-radius: 50px !important; 
    color: #ffffff !important;
    font-weight: 500 !important;
    /*letter-spacing: 0.5px;*/
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 36px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.35), 
                0 8px 30px rgba(0, 198, 255, 0.2);
}
.btn-primary-gradient-custom i.uil {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.3s ease;
}
.btn-primary-gradient-custom:hover {
    background: linear-gradient(100deg, #0066e2 0%, #00b8ec 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.45), 
                0 10px 35px rgba(0, 198, 255, 0.3);
    transform: translateY(-5px) !important;
}
.btn-primary-gradient-custom:hover i.uil {
    transform: translate(2px, -2px);
}

.icon-svg,
.icon-svg.icon-svg-lg {
  width: 5rem;
  height: 5rem;
}

@media (max-width: 767px) {
  .icon-svg,
  .icon-svg.icon-svg-lg {
    width: 3rem !important;
    height: 3rem !important;
  }
}

/* Background */
.background-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('../../../images/lain-lain/bg-1.jpg'); */
  background:
    linear-gradient(to bottom, rgb(255 255 255), rgb(0 0 0 / 0%)),
    url("../../../images/lain-lain/bg-keunggulan.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 0.1; */
}

/* Navbar */
.navbar {
  --bs-navbar-hover-color: var(--bs-primary);
  --bs-navbar-active-color: var(--bs-primary);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  background: transparent;
}

.navbar-nav {
  --bs-nav-link-padding-y: 1rem;
}

.nav-link {
  color: rgb(255, 255, 255);
  --bs-nav-link-font-weight: 600;
  font-size: 16px;
}

.navbar-clone.navbar-stick {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
  background: var(--bs-second);
}

.home-slider {
  height: calc(100vh - 34px) !important;
}

.dropdown-menu{
    --bs-dropdown-item-padding-x: 1.5rem;
    --bs-dropdown-item-padding-y: 0.5rem;
    border-radius:0.8rem !important;
    margin-top: 10px;
}

.dropdown-item {
  font-weight: 600;
  letter-spacing: -0.01rem;
  font-size: 16px;
}

@media (max-width: 576px) {
    .dropdown-item{
        white-space:wrap !important;
    }
}

.dropdown-toggle::after {
  line-height: 1;
}

/* .navbar-stick .nav-link {
  color: black !important;
} */

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background-color: var(--bs-primary);
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link.active::before {
    display: none;
  }
}

.offcanvas,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm,
.offcanvas-xl,
.offcanvas-xxl {
  --bs-offcanvas-bg: black;
}

.logo-dark,
.logo-light {
  height: 45px;
  width: auto;
}

@media (max-width: 991px) {
  .logo-dark,
  .logo-light {
    height: 30px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    /* padding-right: 0 !important; */
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .mega-menu-content {
    background: white !important;
  }
}

/* .navbar.navbar-light.fixed .custom-btn-primary {
  display: inline-block;
} */

.navbar.navbar-light.fixed .custom-btn-outline {
  display: none;
}

.navbar.navbar-dark .custom-btn-primary {
  display: none;
}

/* .navbar.navbar-light.fixed .btn:not(.btn-expand):not(.btn-gradient) {
  background: none;
  border-color: transparent;
  color: var(--bs-white);
} */

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.logo-nav {
  width: auto;
  height: 65px;
}

/* Welcome Text */
.welcome-section-custom {
  position: relative;
  display: flex;
  align-items: center;
}

.welcome-section-custom .background-image {
  position: absolute;
  inset: 0;
}

.welcome-section-custom .background-image img {
  height: 100%;
  /*object-fit: cover;*/
  width: 100%;
  opacity:0.3;
}
.bg-dot.primary {
  background-image: radial-gradient(var(--bs-primary) 2px, transparent 2.5px);
}

@media (max-width: 575px) {
  .welcome_img1 {
    width: 7rem !important;
  }
  
  .welcome_img2 {
    width: 6rem !important;
  }
  
  .welcome_img3 {
    width: 7rem !important;
  }
}

/* Tagline */
.banner-container {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #b3d4ff; /* Border biru muda lembut */
    border-radius: 50px; /* Membuat sudut membulat sempurna */
    padding: 5px 15px;
    box-shadow: 0 4px 15px rgba(179, 212, 255, 0.2); /* Efek bayangan halus */
    /* max-width: 90%; */
    width: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

/* Sisi Kiri: Logo dan Nama Brand */
.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Placeholder Logo */
.logo-placeholder {
    width: 25px;
    height: 25px;
    background-color: #1a73e8; /* Warna biru utama */
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    position: relative;
}

/* Teks Nama Brand */
.brand-name {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Garis Pemisah Vertikal */
.divider {
    width: 1px;
    height: 15px;
    background-color: #e0e0e0;
    margin: 0 10px;
}

.banner-container .divider:after {
    display:none;
}

/* Sisi Kanan: Slogan/Tagline */
.tagline {
    color: #5f6368; /* Warna abu-abu teks */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Titik Biru Kecil di Ujung Kanan */
.dot-icon {
    width: 8px;
    height: 8px;
    background-color: #a3cfff;
    border-radius: 50px;
    margin-left: 30px;
    box-shadow: 0 0 8px rgba(163, 207, 255, 0.8);
}


/* Button */
/* .btn-group-very-sm > .btn,
.btn-very-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.7rem;
  --bs-btn-border-radius: 0.4rem;
}

.btn-group-very-sm > .btn-icon.btn,
.btn-icon.btn-very-sm {
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-group-very-sm > .btn-icon.btn i,
.btn-icon.btn-very-sm i {
  font-size: 0.8rem;
} */

.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text p {
  line-height: 1.6;
}

/* header page */
.image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(16 26 37), rgb(0 0 0 / 32%));
}

/* About Me */
.ornament-about-1 {
  position: absolute;
  width: 100%;
  /* bottom: 0; */
  right: 0;
  opacity: 0.1;
}

/*Swiper*/
.swiper-controls .swiper-navigation .swiper-button.swiper-button-next {
  right: -0.5rem;
}

.swiper-controls .swiper-navigation .swiper-button.swiper-button-prev {
  left: -0.5rem;
}

.swiper-controls .swiper-navigation .swiper-button.swiper-button-disabled {
  background: rgba(var(--bs-white-rgb), 0.7);
  visibility: hidden;
}

.swiper-slide.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(30, 34, 40, 0.5);
}

.swiper-controls .swiper-navigation .swiper-button {
  /* background: rgba(var(--bs-second-rgb), 0.9); */
  color: var(--bs-primary);
  border: 0;
  box-shadow: 0 0.25rem 0.75rem rgba(30, 34, 40, 0.02);
  width: 2rem;
  height: 2rem;
  line-height: inherit;
  border-radius: 100%;
  border: 2px solid var(--bs-primary);
  text-shadow: none;
  transition: all 0.2s ease-in-out;
}

.bg-overlay-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgb(0 0 0 / 10%));
}

.navbar-stick .navbar-nav .nav-link.active,
.navbar-stick .navbar-nav .nav-link:hover,
.navbar-stick .navbar-nav .nav-link.show {
  color: var(--bs-navbar-hover-color) !important;
}

/* CK Editor */
.description p:last-child {
  margin-bottom: 0;
}
.description {
  border-radius: 10px;
  overflow: hidden;
}
.description-table table {
  width: 100%;
  margin-bottom: 10px;
}

.description-table table thead{
  background-color: #d8d8d8;
}

.description-table table th {
  padding-top: 12px;
  padding-bottom: 12px;
  /* text-align: center; */
  border: 1px solid #ddd;
  background-color: var(--bs-primary);
  color: white;
  font-size: 15px;
}

.description-table table td {
  border: 1px solid #ddd;
  padding: 8px;
  /* text-align: center; */
}

/* .description-table p {
  margin-bottom: 0px;
} */

.description-table table tr:nth-child(even) {
  background-color: #f2f2f2 !important;
}

.description-table table tr:hover {
  background-color: #dddddd24;
}

/* .desc-cat ol,
.desc-cat ul {
    padding-left: 0px;
} */

.text-shadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.section-2 .img-about {
  aspect-ratio: 5/6;
  object-fit: cover;
}

.section-2 .deskrip {
  left: -150px;
  right: 100px;
  top: 50%;
  margin-top: 70px;
}

@media (max-width: 756px) {
  .section-2 .deskrip {
    margin-top: 0px;
  }
}

.ls-05px {
  letter-spacing: 0.5px;
}

.second-img-wrapper {
  aspect-ratio: 4/2;
  object-fit: cover;
  max-width: 300px;
}

@media (max-width: 756px) {
  .second-img-wrapper {
    max-width: 215px;
  }

  .h-450px {
    height: 450px;
  }
}

/* Section CTA */
.section-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0.6;
}

.two-columns {
  column-count: 2;
  column-gap: 30px;
}

.three-columns {
  column-count: 3;
  column-gap: 30px;
}

.overlay * {
  color: black;
}

/* Contact */
.contact-info-item {
  position: relative;
  padding: 0 20px 40px;
  background: #ffffff;
  margin-top: 50px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 80px rgb(0 0 0 / 7%);
}

.contact-info-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  transform: translateY(-50px);
  margin-bottom: -20px;
  font-size: 40px;
  color: #ffffff;
  background: var(--bs-primary);
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%);
}

h4.contact-info-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #0d0d0d;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.contact-info-text p {
  font-size: 16px;
  line-height: 32px;
  /* font-weight: 400; */
  color: #6a6a6a;
}

.contact-info-text a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #6a6a6a;
  display: inline-block;
  transition: all 500ms;
}

.contact-info-text a:hover {
  color: var(--theme-color);
}

/* Title Section */
.section-title-custom {
  display: flex;
  gap: 40px;
  align-items: center;
}

.section-title-custom.style-1 .divider-title-1:nth-child(1) {
  display: none;
}

.section-title-custom .title {
  width: fit-content;
  text-wrap: nowrap;
  margin: 0;
  font-weight: 600;
}

.section-title-custom.light-ver .title {
  color: white;
}

.section-title-custom .divider-title-1:nth-child(3) {
  rotate: 180deg;
}

.section-title-custom.light-ver .divider-title-1 span {
  background: rgba(255, 255, 255, 0.4);
}

.divider-title-1 {
  display: flex;
  gap: 5px;
  width: 100%;
  transform: skewX(135deg);
}

.divider-title-1 span {
  display: block;
  height: 3px;
}

.divider-title-1 span:nth-child(1) {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* .divider-title-1 span:nth-child(2) {
  background: rgba(0, 0, 0, 0.1);
  width: 10%;
}
.divider-title-1 span:nth-child(3) {
  width: 70%;
  background: var(--bs-second);
} */

/* Glit Box */
.glightbox-clean .gdesc-inner .gslide-desc,
.glightbox-clean .gdesc-inner .gslide-title {
  color: var(--bs-white);
  font-weight: 400;
}

/* Button Custom */
.custom-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  font-size: 16px;
  width: 25%;
  border-radius: 50px;
  cursor: pointer;
  display: inline;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.custom-btn-outline:hover {
  background: #37768f;
  color: white;
}

.custom-btn-outline img.arrow {
  height: 20px;
}

.custom-btn-primary {
  /* background: transparent; */
  color: white;
  border: 2px solid white;
  background: var(--bs-primary);
  padding: 10px 25px;
  font-size: 16px;
  width: 25%;
  border-radius: 50px;
  cursor: pointer;
  display: inline;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.custom-btn-primary:hover {
  color: white;
}

.custom-btn-primary img.arrow {
  height: 20px;
}

/* DESKRIPSI TOUR */
.table-description {
  width: 100%;
  overflow-x: auto !important;
  /* Scroll horizontal jika perlu */
}

.table-description table p {
  margin-bottom: 0px;
}

.table-description table {
  width: 100% !important;
  /* min-width: 600px; */
  /*overflow-x: auto;*/
}

.table-description table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: var(--bs-primary);
  color: white;
}

.table-description table td {
  border: 1px solid #ddd;
  padding: 8px;
}

/* .table-description table tr:nth-child(even) {
  background-color: #f2f2f2 !important;
} */

.table-description table tr:hover {
  background-color: #f2f2f2;
}

.table-description.table-price table tr:nth-child(1) {
  background-color: var(--bs-primary);
  color: white;
}

.text-shadow-custom {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.accordion-wrapper .card {
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-wrapper .card-header {
  margin-bottom: 0;
  /* background: #fdfbf6; */
  border: 0;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
}

.accordion-wrapper .card-header button.collapsed {
  color: #000;
}

.accordion-wrapper .card-header button {
  padding: 0 1rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: black;
}

.accordion-wrapper .card-header button:before {
  right: 1.3rem;
  left: unset;
  /*content: "\ec07";*/
  margin-top: -0.25rem;
  margin-right: -0.3rem;
  color: black;
}

.accordion-item .card-body {
  padding: 0 1.25rem;
}

.icon-xxl {
  width: 4rem !important;
  min-width: 4rem !important;
  height: 4rem !important;
  line-height: 4rem !important;
}

.icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}

.icon-flip::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-primary);
  border-radius: 3px;
  bottom: 0;
  width: 24px;
  height: 2px;
  background-color: var();
}

.bg-gradient-custom {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #eef6ff 40%,
        #C9E1FD 100%
    );
}

.bg-primary-soft {
  background-color: #fff5d6 !important;
}

.goverlay {
  background: rgba(0, 0, 0, 0.9);
}

/* Rental */
.rental .item .card {
  box-shadow: none !important;
  border: 3px solid #e5e5e5 !important;
  border-radius: 0.8rem !important;
}

.rental .item:hover .card {
  box-shadow: 0 2px 15px rgb(197 43 47) !important;
}

.rental .item .card .con {
  position: relative;
}

.rental .item figure img {
  transition: all 0.3s ease;
}

.rental .item:hover figure img {
  /* transform: scale(1.1); */
  transition: all 0.3s ease;
}

.rental .item .card .con .title-rental {
  color: #000;
}

.rental .item .con span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.rental .item:hover .con span {
  /*background-image: linear-gradient(transparent 24px, white 20px);*/
  background-size: 100% !important;
}

.rental .item .con .price {
  background-color: var(--bs-primary);
  position: absolute;
  top: -22px;
  right: 10px;
  font-size: 18px;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
}

.rental .item:hover .con .price {
  background-color: black;
  color: white;
  border: none !important;
}

.rental .item:hover .con .btn {
  background-color: var(--bs-primary);
  color: white !important;
  border-color: var(--bs-primary);
}

.rental .item .con .btn:hover {
  color: var(--bs-primary);
}

.rental .image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0, 0, 0), rgb(0 0 0 / 32%));
}

.rental .cta-title p {
  margin-bottom: 0;
}

.rental .cta-title p strong {
  color: var(--bs-primary) !important;
  background-color: white;
  padding: 0 10px;
}

/* Wisata */
.wisata .item .card {
  box-shadow: none !important;
  border: 3px solid #e5e5e5 !important;
  border-radius: 0.8rem !important;
}

.wisata .item:hover .card {
  box-shadow: 0 2px 15px rgb(197 43 47) !important;
}

.wisata .item .card .con .title-wisata {
  color: #000;
}

.wisata .item .con span {
  background-image: linear-gradient(transparent 24px, black 20px);
  background-size: 0;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.wisata .item:hover .con span {
  /* background-image: linear-gradient(transparent 24px, white 20px); */
  background-size: 100% !important;
}

.wisata .item:hover .con .btn.btn-outline-primary {
  border-color: black;
  color: white !important;
  background-color: black;
}

.wisata .item:hover .con .btn.btn-primary {
  /* background-color: #fff; */
  /* color: var(--bs-primary) !important; */
}

.wisata .item figure img {
  transition: all 0.3s ease;
}

.wisata .item:hover figure img {
  /*transform: scale(1.1);*/
  transition: all 0.3s ease;
}

.wisata .image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(0, 0, 0), rgb(0 0 0 / 32%));
}

.wisata .cta-title p {
  margin-bottom: 0;
}

.wisata .cta-title p strong {
  color: var(--bs-primary) !important;
  background-color: white;
  padding: 0 10px;
}

/*  */
.border-gray {
  --bs-border-opacity: 1;
  border-color: rgb(239 239 239) !important;
}

.border-second {
  --bs-border-opacity: 1;
  border-color: var(--bs-second) !important;
}

.border-custom {
  border-color: rgb(252 145 3 / 23%) !important;
}

/* sd */
.link-second,
.link-second:focus,
.link-second:hover {
  color: var(--bs-second);
}

@media (min-width: 992px) {
  .min-vh-lg-50 {
    height: 50vh !important;
  }
}

/* Float animation */
.animation-float {
  animation: float 2000ms linear 500ms infinite alternate both;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(20px);
  }
}

.animation-float-2 {
  animation: float2 1500ms linear 500ms infinite alternate both;
}

@keyframes float2 {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(10px);
  }
}

.animation-float-reverse {
  animation: floatReverse 2000ms linear 500ms infinite alternate both;
}

@keyframes floatReverse {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Sosmed */
.elements-social ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.small-icon li {
  margin: 0 3.5px;
}

.elements-social ul li:first-child {
  margin-left: 0 !important;
}

.elements-social ul li {
  display: inline-block;
}

.social-icon-style-09 ul.light li a {
  border-color: rgba(var(--bs-primary-rgb), 0.5);
}

.elements-social .light li a {
  color: var(--bs-primary);
}

.social-icon-style-09 ul li a {
  z-index: 9;
  border: 1px solid rgba(35, 35, 35, 0.15);
  border-radius: 100%;
  position: relative;
}

.elements-social ul li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}

.social-icon-style-09 ul.light li a:hover {
  color: white !important;
  text-decoration: none;
}

.social-icon-style-09 ul.light li a span {
  background-color: var(--bs-primary);
}

.social-icon-style-09 ul li a span {
  display: block;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  top: -1px;
  left: -1px;
  padding: 1px;
  box-sizing: content-box;
  margin: 0;
  position: absolute;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.5s cubic-bezier(0.12, 0, 0.39, 0);
  pointer-events: none;
  z-index: -1;
  background-color: var(--bs-dark);
}

.social-icon-style-09 ul li a:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.small-icon a {
  font-size: 18px;
  width: 40px;
  height: 40px;
}

/* Breadcrumb */
.breadcrumb .breadcrumb-item {
  font-weight: 400;
  font-size: 13px;
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: Unicons;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  color: #60697b;
  content: "\e930";
  margin-top: 0.5px;
  line-height: 0;
  font-size: 13px;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--bs-primary) !important;
}

/* Footer */
.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

ul.footer-list {
  padding-left: 0;
}

.footer-list li {
  flex: 1 1 30%;
  list-style: none;
}

@media (max-width: 762px) {
  .footer-list li {
    flex: 1 1 45% !important;
  }
}

.footer-list li a {
  position: relative;
  color: var(--bs-light);
  transition: var(--transition);
}

.footer-list li a::before {
  content: ".";
  position: absolute;
  left: -3px;
  top: -4px;
  font-size: 50px;
  line-height: 0;
  color: var(--bs-white);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.footer-list li a:hover {
  color: var(--bs-white) !important;
}

.footer-list li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--bs-second);
}

.footer-list li a:hover {
  padding-left: 12px;
  color: var(--bs-white);
  /* color: rgba(255, 255, 255, 0.5); */
}

/* Sosmed */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

ul.footer-social {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: var(--bs-white);
  font-size: 20px;
  color: var(--bs-primary);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* Hero */
.hero-section-custom {
  position: relative;
  color: white;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section-custom .background-video {
  position: absolute;
  inset: 0;
}

.hero-section-custom .background-video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  /*background: linear-gradient(120deg, #00000099 20%, #0000004d 100% 100%);*/
  background: linear-gradient(120deg, #01021bcc 20%, #0000004d 100% 100%);
}

/* Galeri */
.galeri-item {
  transition: 0.2s;
}

.galeri-item:hover {
  transform: translateY(-10px);
}

.galeri-item .thumbnail-wrapper {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3.5 / 4;
}

.galeri-item.variant-2 .thumbnail-wrapper {
  aspect-ratio: 4 / 3.5;
}

.galeri-item .img-thumbnail {
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeri-item .content {
  padding: 10px;
}

.galeri-item .content .title {
  font-size: 16px;
  font-weight: 700;
}

.galeri-item .content .title a {
  color: var(--bs-text-dark);
}

/* Layanan */
.layanan-section-custom {
  position: relative;
  color: white;
  /* min-height: 600px; */
  /* display: flex;
  flex-direction: column; */
}

.layanan-section-custom .background-image {
  position: absolute;
  inset: 0;
}

.layanan-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.layanan-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--bs-primary-dark-rgb), 0.9);
  /* background: linear-gradient(
    0deg,
    rgba(var(--bs-primary-dark-rgb), 1),
    rgba(var(--bs-primary-dark-rgb), 0.5),
    rgba(var(--bs-primary-dark-rgb), 1)
  ); */
}

.layanan-section-custom .sup-title {
  color: white;
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
}

.layanan-section-custom .title {
  color: white;
  font-size: 35px;
  line-height: 1.25 !important;
  text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.75);
}

/* Footer Contact */
ul.footer-contact {
  padding-left: 0;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--bs-white);
  /* font-size: 16px; */
  margin-bottom: 10px;
}

.footer-contact li a {
  color: var(--bs-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  display: inline-block;
  border-radius: 10px 10px 10px 0;
  background: var(--bs-white);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--bs-primary);
}

/* General */
.custom-hover-scale {
  transition: 0.3s;
}

.custom-hover-scale:hover {
  transform: scale(1.04);
}

.custom-text-shadow {
  text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.75);
}

/* Paket Wisata */
.package-item {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.package-item .thumbnail-wrapper {
  /* aspect-ratio: 2 / 1; */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.package-item .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s;
}

.package-item:hover .thumbnail-wrapper img {
  transform: scale(1.1);
}

.package-item .thumbnail-wrapper .post-type {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  background: var(--bs-secondary);
  border-radius: 510px;
}

.package-item .thumbnail-wrapper .reading-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  padding: 5px 15px;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 510px;
}

.package-item .details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-item.infografis .details {
  padding: 10px 15px;
}

.package-item .details .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.package-item.infografis .details .title {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.package-item .details .title a {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.package-item .details .date-dropdown-wrapper {
  position: relative;
}

.package-item .details .date-dropdown {
  border: 0;
  border-radius: 10px;
  padding: 1.5px 12.5px;
  font-size: 12px;
  position: unset;
}

.package-item .details .date-dropdown-wrapper .date-dropdown .dropdown-toggle {
  color: inherit;
}

.package-item
  .details
  .date-dropdown-wrapper
  .date-dropdown
  .dropdown-toggle.show::after,
.package-item
  .details
  .date-dropdown-wrapper:hover
  .date-dropdown
  .dropdown-toggle::after {
  rotate: 180deg;
}

@media (min-width: 992px) {
  .package-item
    .details
    .date-dropdown-wrapper:hover
    .date-dropdown
    .dropdown-menu {
    display: block;
    left: 0;
  }
}

.package-item .details .date-dropdown .dropdown-menu {
  width: 100%;
  transform: unset !important;
  top: 30px !important;
  height: fit-content;
  max-height: 130px;
  overflow-y: auto;
  padding: 15px 25px;
}

.package-item .details .date-dropdown .dropdown-menu .dropdown-item:f {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

/* About */
.imageblock-section {
  position: relative;
  display: block;
  width: 100%;
}

.imageblock-section-img {
  position: absolute;
  height: 100%;
  top: 0;
  padding: 0;
  float: left;
  left: 0;
  right: auto;
}

.background-image-holder {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: 50% 50% !important;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .imageblock-section-img {
    float: none;
  }
}

@media (max-width: 767px) {
  .imageblock-section-img {
    position: relative;
    height: 400px;
  }
}

/* .about p:last-child {
  margin-bottom: 0;
} */

/* DESKRIPSI TEXT AREA */
.description p:last-child {
  margin-bottom: 0;
}

.description hr {
  margin: 5px 0px 20px 0px;
}

.description p strong {
  font-weight: 600;
}

/* .picker label[for*=size]>span  */
.description :is(h1, h2, h3, h4, h5, h6) {
  color: #000;
  font-weight: 600;
}

.description .btgrid div[class*="row-"] {
  margin-bottom: 30px !important;
  row-gap: 20px;
  align-items: center;
}

@media (max-width: 575px) {
  .description .btgrid div[class*="row-"]:nth-of-type(even) {
    flex-direction: column-reverse !important;
  }

  .description .btgrid div[class*="row-"] > .col {
    flex: 1 0 100% !important;
  }
}

/* Why Us */
.background-why-us {
  position: relative;
  overflow: hidden;
}

.background-why-us::before {
  content: "";
  bottom: -4rem;
  right: -15%;
  width: 100%;
  height: 45%;
  background-color: var(--bs-primary) !important;
  position: absolute;
  overflow: hidden;
  transform: rotate(-5deg);
  z-index: 1;
}

.background-why-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url('../../../images/lain-lain/bg-why-us.jpg'); */
  background:
    linear-gradient(to left, rgb(255 255 255), rgb(0 0 0 / 0%)),
    url("../../../images/lain-lain/bg-why-us.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  /*z-index: -1;*/
  /* opacity: 0.1; */
}

@media (max-width: 756px) {
  .background-why-us::before {
    height: 15%;
  }
}

.pagination .page-item.active .page-link {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

.gradient-1 {
  background-image: linear-gradient(120deg, #fc9103 10%, #fb7002 100%);
}

/* Sidebar Produk */
.sidebar-category-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar-category-wrapper .sidebar-category-item .link {
  color: var(--bs-dark);
}
.sidebar-category-wrapper .sidebar-category-item .link:hover {
  text-decoration: underline;
}
.sidebar-category-item {
  margin-bottom: 5px;
}
.sidebar-category-item .link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-category-item .link-wrapper.active {
  padding: 5px;
  background: #dcdcdc;
  border-radius: 5px;
}
.toggle-btn {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  user-select: none;
  transition: transform 0.3s;
  background: var(--bs-gray-50);
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1 !important;
}
.sidebar-sub-category-wrapper {
  display: none;
  padding-left: 20px;
  margin-top: 5px;
  border-left: 2px solid var(--bs-gray-50);
  flex-direction: column;
  gap: 5px;
}
.sidebar-sub-category-wrapper.show {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}
.toggle-btn.rotate {
  transform: rotate(45deg);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-search {
  /* padding: 0 20px; */
}
.navbar-search .navbar-search-input {
  font-size: 0.6rem;
  padding: 10px 20px;
  min-height: calc(1.5em + 0.8rem + 2px) !important;
  border-radius: 5rem !important;
}
.input-group .search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  aspect-ratio: 1 / 1;
  padding: 0 0.25rem !important;
  border-radius: 50rem !important;
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/* Keunggulan */
.keunggulan:last-child .keunggulan-item {
  border-right: 0;
}

.keunggulan-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: start;
  align-items: center;
  text-align: center;
  /* border-right: 1px solid var(--bs-primary); */
  padding: 50px 20px 30px 20px;
  /* border-radius: 10px; */
  background-color: white;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.keunggulan-item:hover {
  background: var(--bs-primary);
  color: #fff;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.keunggulan-item .image {
  width: 80px;
  margin: 0 auto;
  padding: 15px;
  background: black;
  border-radius: 100%;
  position: absolute;
  top: -38%;
  transform: translateY(50%);
}
.keunggulan-item img {
  /* width: 80px; */
  /* filter: grayscale(100%) contrast(0.1); */
  margin: 0 auto;
}
.keunggulan-item .title {
  margin-bottom: 10px;
  margin-top: 10px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  width: 80%;
  transition: all 0.3s;
}
.keunggulan-item:hover .title {
  color: #fff;
  transition: all 0.3s;
}
.keunggulan-item .desc {
  margin-bottom: 0;
  font-size: 13px;
}
.keunggulan-item .divier {
  margin-top: 20px;
  width: 20%;
  height: 2px;
  background-color: var(--bs-primary);
}

.keunggulan-item:hover .divier {
  background-color: white;
}

@media (max-width: 756px) {
  .keunggulan-item .image {
    top: -45%;
  }
  /* .keunggulan .keunggulan-item {
    border: 0;
  } */
  /* .keunggulan-item:hover {
    transform: translateY(-5px);
  } */
  .keunggulan-item img {
    width: 50px;
  }
  .keunggulan-item .title {
    font-size: 15px !important;
    margin-bottom: 0 !important;
  }
}

/* Stats */
.stats-section-custom {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stats-section-custom .background-image {
  position: absolute;
  inset: 0;
}

.stats-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.stats-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: #000000d1;
}

/*.stats:last-child .stats-item {*/
/*  border-right: 0;*/
/*}*/

.stats-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #4d4d4d55;
}
 .stats-item:hover {
  /*background: #fc910333;*/
  box-shadow: 0 8px 20px rgb(255 255 255 / 42%) !important;
  transform: translateY(-8px);
  transition: all 0.3s ease;
} 
.stats-item .images{
    width: 80px !important;
    height: 80px !important;
    padding: 10px;
    /*background-color: #626262;*/
    border-radius: 10px;
    transition: all 0.3s ease;
}
.stats-item:hover .images{
    background-color:#ffffff18;
    transition: all 0.3s ease;
}
.stats-item img {
  width: 80px !important;
  height: auto !important;
  margin: 0 0;
}
.stats-item .title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  /* width: 85%; */
}
.stats-item .desc {
  margin-bottom: 0;
  color: #d6d6d6;
  font-size: 16px;
}

@media (max-width: 756px) {
  .stats .stats-item {
    border: 0;
    flex-direction: row;
    text-align: start;
    align-items: center;
    gap: 20px;
  }
  .stats-item .images {
    width: 100px !important;
    }
  /* .stats-item:hover {
    transform: translateY(-5px);
  } */
  .stats-item img {
    width: 50px;
  }
  .stats-item .title {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
}

/* Product Category */
.product-category {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.product-category .image-wrapper {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.product-category .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.98) 7%,
    rgba(0, 0, 0, 0.06) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: end;
  text-align: center;
}
.product-category .content .title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.product-category .content .title a {
  color: white;
}
.product-category .content p {
  margin-bottom: 0;
  color: whitesmoke;
}

.productCategorySwiperWrapper .swiper-button-next,
.productCategorySwiperWrapper .swiper-button-prev {
  height: 30px;
  width: 30px;
  background-color: var(--bs-primary);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.productCategorySwiperWrapper .swiper-button-prev {
  left: -15px;
  right: auto;
}
.productCategorySwiperWrapper .swiper-button-next {
  right: -15px;
  left: auto;
}
@media (max-width: 991.98px) {
  .product-category .image-wrapper {
    height: 320px;
  }
  .productCategorySwiperWrapper {
    border-bottom: 1px solid var(--bs-gray-50);
  }
  .productCategorySwiperWrapper .swiper-button-prev {
    left: -15px;
    right: auto;
    position: absolute;
    float: left;
    margin-top: 0;
    transform: translateY(-15px);
  }
  .productCategorySwiperWrapper .swiper-button-next {
    right: -15px;
    left: auto;
    position: absolute;
    float: right;
    margin-top: 0;
    transform: translateY(-15px);
  }
}
.productCategorySwiperWrapper .swiper-button-next:after,
.productCategorySwiperWrapper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 500;
}
.productCategorySwiperWrapper .swiper-button-next.swiper-button-disabled,
.productCategorySwiperWrapper .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
.productCategorySwiperWrapper
  .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

/* Product */
.product-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important; */
  padding: 10px;
  background: #f8f8f8;
  /* border: 1px solid #e2e2e2; */
  border: 1.5px solid #e971435e;
  align-items: center;
}

.product-item .image-wrapper img {
  object-fit: cover;
  /* height: 200px; */
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 5px;
  background: white;
}
.product-item .content {
  /* padding: 0 10px 10px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.product-item .content .title {
  font-size: 20px;
  margin-bottom: 0 !important;
  font-family: var(--bs-primary-font);
  line-height: 1.1;
  color: #000;
}
.product-item:hover .content .title {
  color: var(--bs-primary);
}
.product-item .content .title a {
  color: #000;
}
.product-item .price {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--bs-second);
  font-weight: 800;
  margin-bottom: 0px;
  font-family: var(--bs-primary-font);
}
.product-item:hover .btn {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
@media (max-width: 767px) {
  .product-item {
    text-align: center;
    padding: 5px;
  }
  /* .product-item .image-wrapper img {
    height: 125px;
  } */
}

/* Layanan */
.layanan-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
  /* padding: 20px; */
  box-shadow: 1px 2px 11px rgba(0, 0, 0, 0.1) !important;
  /*border: 1.5px solid rgba(0, 0, 0, 0.1) !important; */
  border: 1px solid rgb(0 0 0 / 9%) !important;
  /* background: #f3f3f3; */
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s;
}
.layanan-item:hover {
  transform: translateY(-10px);
  box-shadow: 1px 2px 25px rgb(0 0 0 / 35%) !important;
  /* background: var(--bs-primary); */
  transition: all 0.3s;
}
.layanan-item .image-wrapper img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  background: white;
}
.layanan-item .content {
  /*margin-top: -30px;*/
  /*background: #f3f3f3;*/
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 100%;
  padding: 20px 20px 20px 20px;
}
.layanan-item .content .title {
  font-size: 20px;
  margin-bottom: 5px !important;
  font-family: var(--bs-alt-font);
  line-height: 1.1;
  color: #000;
  font-weight: 600;
}
/* .layanan-item:hover .content .title {
  color: white;
} */
.layanan-item .content .title a {
  color: #000;
}
.layanan-item .content p {
  /*margin-bottom: 0px;*/
  line-height: 1.5;
}
/* .layanan-item:hover .content p {
  color: white;
  opacity: 0.8;
} */
.layanan-item:hover .content .btn {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.layanan-item:hover a.more.hover:before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
  color: white !important;
}
.layanan-item:hover a.more.hover {
  color: white !important;
}
.layanan-item .detail {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border-radius: 15px;
  background: #ededed; 
  /*background: #666;*/
  /*color: white;*/
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(105%);
  transition: all 0.3s;
}
@media (min-width: 767px) {
    .layanan-item:hover .detail {
      transform: translateY(0%);
      opacity: 1;
      transition: all 0.3s;
    }
}
@media (max-width: 767px) {
    /* Klik */
    .layanan-item.show-detail .detail {
        transform: translateY(0%);
          opacity: 1;
          transition: all 0.3s;
    }
  .layanan-item {
    /* text-align: center; */
    /* padding: 5px; */
  }
}

/* Artikel */
.artikel-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e2e2e2;
  transition: all 0.3s ease;
}
.artikel-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
/*.artikel-item .image-wrapper {*/
/*  height: 150px;*/
/*}*/
.artikel-item .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.artikel-item .content {
  position: relative;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.artikel-item .content .category {
  position: absolute;
  top: 0;
  transform: translateY(-20px);
}
.artikel-item .content .category a {
  padding: 2px 20px;
  background: var(--bs-primary);
  color: black;
  border-radius: 10rem;
  line-height: 0;
  font-size: 12px;
  font-weight: 600;
}
.artikel-item .content .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #000;
}
.artikel-item:hover .content .title {
  color: var(--bs-second);
}
.artikel-item .content .title a {
  color: #000;
}
.artikel-item:hover .content .title a {
  color: var(--bs-second);
}
.artikel-item .content .date {
  margin-bottom: 10px;
  margin-top: auto;
  font-size: 12px;
}
.blogSwiperWrapper .swiper-button-next,
.blogSwiperWrapper .swiper-button-prev {
  height: 30px;
  width: 30px;
  background-color: var(--bs-primary);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.blogSwiperWrapper .swiper-button-prev {
  left: -15px;
  right: auto;
}
.blogSwiperWrapper .swiper-button-next {
  right: -15px;
  left: auto;
}
@media (max-width: 991.98px) {
  /*.artikel-item .image-wrapper {*/
  /*  height: 230px;*/
  /*}*/
  .blogSwiperWrapper {
    border-bottom: 1px solid var(--bs-gray-50);
  }
  .blogSwiperWrapper .swiper-button-prev {
    left: -15px;
    right: auto;
    position: absolute;
    float: left;
    margin-top: 0;
    transform: translateY(-15px);
  }
  .blogSwiperWrapper .swiper-button-next {
    right: -15px;
    left: auto;
    position: absolute;
    float: right;
    margin-top: 0;
    transform: translateY(-15px);
  }
}
.blogSwiperWrapper .swiper-button-next:after,
.blogSwiperWrapper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 500;
}
.blogSwiperWrapper .swiper-button-next.swiper-button-disabled,
.blogSwiperWrapper .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
.blogSwiperWrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

/* Artikel Home */
.artikel-home-item {
    position: relative;
    overflow: hidden;
}
.artikel-home-item .img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
}

.artikel-home-item .content {
    inset:0;
    position: absolute;
    padding: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transform: translateY(30%);
    transition: all 0.3s;
}
@media (min-width: 767px) {
    .artikel-home-item:hover .content {
        transform: translateY(0%);
        transition: all 0.3s;
    }
}
.artikel-home-item .overlay {
    inset:0;
    background: #333;
    background: linear-gradient(0deg,rgba(51, 51, 51, 1) 5%, rgba(0, 0, 0, 0.12) 100%);
    position: absolute;
    z-index: 2;
}
.artikel-home-item .content .category {
  /*position: absolute;*/
  /*top: 0;*/
  /*transform: translateY(-20px);*/
}
.artikel-home-item .content .category a {
  padding: 2px 20px;
  background: var(--bs-primary);
  color: black;
  border-radius: 10rem;
  line-height: 0;
  font-size: 12px;
  font-weight: 600;
}
.artikel-home-item .content .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #fff;
}
.artikel-home-item .content .title a {
  color: #fff;
}
.artikel-home-item .content .deskripsi {
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
.artikel-home-item:hover .content .deskripsi {
  opacity: .8;
  transition: all 0.3s;
}

/*.artikel-home-item:hover .content .title a {*/
/*  color: var(--bs-second);*/
/*}*/
/* Timeline */
/*===============*/

/*Combined*/
.timeline-container ul {
  list-style: none;
  padding-left: 0;
}
.timeline-container,
.timeline-container li {
  position: relative;
}

.timeline-container:after,
.timeline-container li:before,
.timeline-container li > div:before,
.timeline-container li:first-child div:after,
.timeline-container li:last-child div:after {
  content: "";
  position: absolute;
}

/* color */
.timeline-container li:before,
.timeline-container li > div:before,
.timeline-container:after {
  background-color: var(--bs-primary);
}

.timeline-container:after,
.timeline-container li small,
.timeline-container li:first-child div:after,
.timeline-container li:last-child div:after {
  left: 50%;
  transform: translateX(-50%);
}

.timeline-container li small,
.timeline-container li > div:before {
  top: 50%;
  transform: translateY(-50%);
}

/*clearfix*/
.timeline-container li:after {
  clear: both;
  content: "";
  display: table;
}

.timeline-container li {
  margin: 20px 0;
}

.timeline-container li:first-child {
  margin-top: 0;
}

.timeline-container li:last-child {
  margin-bottom: 0;
}

/*timeline content*/
.timeline-container li > div {
  width: 45%;
  /* color: #fff; */
  padding: 10px 25px;
  border-radius: 1px;
  border: 1px solid #dddddd;
  border-radius: 15px;
  background: #eeeeee;
}

.timeline-container li:nth-child(odd) > div {
  float: left;
  text-align: end;
}

.timeline-container li:nth-child(even) > div {
  float: right;
}

/* Main vertical line middile */
.timeline-container:after {
  width: 4px;
  height: 100%;
  top: 0;
  bottom: 0;
}

/* Square */
.timeline-container li:before {
  height: 20px;
  width: 20px;
  border: 4px solid var(--bs-second);
  z-index: 2;
  left: 50%;
  top: 50%;
  background-color: white;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Horizontal line */
.timeline-container li > div:before {
  height: 4px;
  left: 45%;
  width: 5%;
}
.timeline-container li:nth-child(even) div:before {
  left: auto;
  right: 45%;
}

/* Remove the top part of main vertical line */
.timeline-container li:first-child div:after,
.timeline-container li:last-child div:after {
  width: 4px;
  top: 0;
  background-color: #fff;
  height: 50%;
  z-index: 1;
}

.timeline-container li:last-child div:after {
  top: auto;
  bottom: 0;
}

/* Responsive CSS */
@media screen and (max-width: 767px) {
  .timeline-container li:nth-child(odd) > div,
  .timeline-container li:nth-child(even) > div {
    float: right;
    width: 95%;
    text-align: start;
  }

  .timeline-container li:first-child div:after,
  .timeline-container li:last-child div:after {
    content: none;
  }

  .timeline-container:after,
  .timeline-container li:first-child div:after,
  .timeline-container li:last-child div:after,
  .timeline-container li:before {
    top: 0;
    left: 0;
  }

  .timeline-container li {
    margin: 0;
    padding: 35px 0;
    padding-top: 0;
  }

  .timeline-container li:last-child > div:after {
    content: "";
    height: 7px;
    width: 8px;
    position: absolute;
    top: 100%;
    border: 3px solid #fff;
    z-index: 2;
    background-color: #00c4cc;
  }

  .timeline-container li > div:before {
    display: none;
  }
  .timeline-container li:before {
    transform: translate(-50%, 70%);
  }
}

/* Client */
.client-section-custom {
  position: relative;
}
.client-section-custom .background-image {
  position: absolute;
  inset: 0;
}
.client-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.client-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: #0000008c;
  /* background: linear-gradient(0deg, rgb(0 0 0 / 97%), rgb(0 0 0 / 60%)); */
}

.client-item {
  padding: 5px;
  background: #ffffff91;
}

.client-item img {
  max-width: 140px;
  object-fit: contain;
  height: 50px;
  width: auto;
}

/* Product Detail */
.product-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail .category {
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  /* padding: 10px 0px; */
  /* border-bottom: 2px solid var(--bs-second); */
}
.product-detail .category .category-link {
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
  background-color: var(--bs-primary);
  padding: 5px 10px;
  border-radius: 5px;
}
.product-detail .category .category-link:hover {
  color: black;
}
.product-detail .content .tagline {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}
.product-detail .content .color {
  display: flex;
  gap: 10px;
}
.product-detail .content .color-item {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.product-detail .content .price {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  /* justify-content: end; */
}
.product-detail .specification {
  width: 100%;
  overflow-x: auto !important;
}
.product-detail .specification table p {
  margin-bottom: 0px;
}
.product-detail .specification table {
  width: 100% !important;
}
.product-detail .specification table td {
  /* border: 1px solid #ddd; */
  padding: 8px;
  width: 33%;
}
.swiper-container .swiper-thumbs .swiper-wrapper img {
  background: #eeeeee !important;
  border: 1px solid #eeeeee;
}
.swiper-container
  .swiper-thumbs
  .swiper-wrapper
  .swiper-slide-thumb-active
  img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff !important;
}

/* Area Layanan */
.area-layanan {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
  z-index: 2;
  overflow: hidden;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important; */
  padding: 10px;
  /* background: #ff910021; */
  /* border: 1.5px solid var(--bs-primary); */
  transition: all 0.3s;
}
.area-layanan:hover {
  transform: translateY(-10px);
  transition: all 0.3s;
}
.area-layanan .overlay {
  position: absolute;
  background: #ff910021;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: scale(0);
  transition: all 0.3s;
}
.area-layanan:hover .overlay {
  transform: scale(1);
  transition: all 0.3s;
}
.area-layanan .image-wrapper img {
  object-fit: cover;
  height: 200px;
  width: 100%;
  border-radius: 20px;
  background: white;
}
.area-layanan .content .title {
  font-size: 20px;
  margin-bottom: 10px !important;
  font-family: var(--bs-primary-font);
  line-height: 1.1;
  text-align: center;
}
.area-layanan .content .title a {
  color: #000;
}
.area-layanan .content .category {
  font-size: 12px;
  color: gray;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .area-layanan {
    text-align: center;
    /* padding: 5px; */
  }
  /* .area-layanan .image-wrapper img {
    height: 125px;
  } */
}

/* Tahapan */
.tahapan-layanan {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.tahapan .col:last-child .tahapan-layanan .image-wrapper .icon {
  display: none;
}
.tahapan-layanan .image-wrapper {
  position: relative;
}
.tahapan-layanan .image-wrapper .icon {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-primary);
  font-size: 40px;
}
.tahapan .col:last-child .tahapan-layanan .icon-2 {
  display: none;
}
.tahapan-layanan .icon-2 {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bs-primary);
  font-size: 40px;
  display: none;
}
.tahapan-layanan .image-wrapper img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 60%;
  margin: 0 auto;
  border-radius: 45%;
  position: relative;
}
.tahapan-layanan .content .title {
  margin-bottom: 5px;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tahapan-layanan .content .title span {
  height: 20px;
  width: 20px;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  font-weight: 800;
  color: white;
}
.tahapan-layanan .content .title h4 {
  color: #000;
}

@media (max-width: 767px) {
  .tahapan-layanan .image-wrapper img {
    width: 30%;
  }
  .tahapan-layanan .image-wrapper .icon {
    display: none;
  }
  .tahapan-layanan .icon-2 {
    display: block;
  }
}

/* Artikel */
.testimoni {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  overflow: hidden;
  height: 100%;
  border: 1.5px solid #e2e2e2;
}
.testimoni .profile {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: auto;
}
.testimoni .profile .image-wrapper {
  width: 20%;
}
.testimoni .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimoni .profile .name {
  width: 80%;
  font-size: 16px;
  color: #000;
}
/*.scroll {*/
/*  display: block;*/
/*  height: 110px;*/
/*  overflow: auto;*/
/*  margin-bottom: 10px;*/
/*  padding-right: 20px;*/
/*}*/
/*.scroll::-webkit-scrollbar {*/
/*  width: 3px;*/
/*  height: 3px;*/
/*}*/
/*.scroll::-webkit-scrollbar-track {*/
/*  border-radius: 10px;*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*}*/

/*.scroll::-webkit-scrollbar-thumb {*/
/*  border-radius: 10px;*/
/*  background: var(--bs-primary);*/
/*}*/

/*.scroll::-webkit-scrollbar-thumb:hover {*/
/*  background: var(--bs-primary);*/
/*}*/

/*.scroll::-webkit-scrollbar-thumb:active {*/
/*  background: var(--bs-primary);*/
/*}*/

/*.scroll::-webkit-scrollbar-track {*/
/*  border-radius: 10px;*/
/*  background: rgb(218, 217, 217);*/
/*}*/
.testimoniSwiperWrapper .swiper-button-next,
.testimoniSwiperWrapper .swiper-button-prev {
  height: 30px;
  width: 30px;
  background-color: var(--bs-primary);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.testimoniSwiperWrapper .swiper-button-prev {
  left: -15px;
  right: auto;
}
.testimoniSwiperWrapper .swiper-button-next {
  right: -15px;
  left: auto;
}
@media (max-width: 991.98px) {
  .testimoniSwiperWrapper {
    border-bottom: 1px solid var(--bs-gray-50);
  }
  .testimoniSwiperWrapper .swiper-button-prev {
    left: -15px;
    right: auto;
    position: absolute;
    float: left;
    margin-top: 0;
    transform: translateY(-15px);
  }
  .testimoniSwiperWrapper .swiper-button-next {
    right: -15px;
    left: auto;
    position: absolute;
    float: right;
    margin-top: 0;
    transform: translateY(-15px);
  }
}
.testimoniSwiperWrapper .swiper-button-next:after,
.testimoniSwiperWrapper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 500;
}
.testimoniSwiperWrapper .swiper-button-next.swiper-button-disabled,
.testimoniSwiperWrapper .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
.testimoniSwiperWrapper
  .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

/* ========================= */
/* GENERAL */
/* ========================= */

/* Share Button */
.cs_social_btns .cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.cs_social_btns .cs_style_1 a {
  width: 26px;
  height: 26px;
  font-size: 11px;
  border: 1px solid;
  border-color: #ffffff;
}
.cs_social_btns .cs_style_1 a {
  height: 45px;
  width: 45px;
  border-radius: 10px;
  /* background-color: rgba(105, 105, 105, 0.3); */
  color: #ffffff;
  font-size: 16px;
}
.cs_social_btns .cs_style_1 a:hover {
  background-color: var(--bs-white);
  color: var(--bs-primary) !important;
}
.cs_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cs_social_btns.cs_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
.cs_social_btns.cs_style_1 a {
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background-color: rgba(105, 105, 105, 0.3);
  color: #ffffff;
  font-size: 16px;
}
.cs_social_btns.cs_style_1 a:hover {
  background-color: var(--bs-white);
  color: var(--bs-primary) !important;
}

nav.breadcrumb {
  background: #ffffff82;
  border-radius: 50px;
}

/* Galery */
.gallery-item {
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
}

.gallery-item .image-wrapper {
  /* height: 240px; */
  aspect-ratio: 4 / 2.5;
  width: 100%;
  object-fit: cover;
}
.gallery-item .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #000000;
  background: linear-gradient(
    0deg,
    rgb(0 0 0 / 65%) 7%,
    rgba(0, 0, 0, 0.06) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: start;
  justify-content: end;
  text-align: start;
}
.gallery-item .content .title {
  text-align: start;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.gallery-item .content .title a {
  color: white;
}
.gallery-item .content p {
  margin-bottom: 0;
  color: whitesmoke;
}

.gallerySwiperWrapper .swiper-button-next,
.gallerySwiperWrapper .swiper-button-prev {
  height: 30px;
  width: 30px;
  background-color: var(--bs-primary);
  color: white;
  border-radius: 50%;
  visibility: visible;
}
.gallerySwiperWrapper .swiper-button-prev {
  left: -15px;
  right: auto;
}
.gallerySwiperWrapper .swiper-button-next {
  right: -15px;
  left: auto;
}
@media (max-width: 991.98px) {
  /* .gallery-item .image-wrapper {
    height: 320px;
  } */
  .gallerySwiperWrapper {
    border-bottom: 1px solid var(--bs-gray-50);
  }
  .gallerySwiperWrapper .swiper-button-prev {
    left: -15px;
    right: auto;
    position: absolute;
    float: left;
    margin-top: 0;
    transform: translateY(-15px);
  }
  .gallerySwiperWrapper .swiper-button-next {
    right: -15px;
    left: auto;
    position: absolute;
    float: right;
    margin-top: 0;
    transform: translateY(-15px);
  }
}
.gallerySwiperWrapper .swiper-button-next:after,
.gallerySwiperWrapper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 500;
}
.gallerySwiperWrapper .swiper-button-next.swiper-button-disabled,
.gallerySwiperWrapper .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
.gallerySwiperWrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

/* Pagination */
.pagination {
  gap: 5px;
}
.pagination .page-link {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}

/* Galeri */
.galeri .item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.galeri .item:hover {
  transform: translateY(-10px);
  transition: all 0.3s;
}
.galeri .item figure img {
  transition: all 0.4s ease;
}
.galeri .item:hover figure img {
  transform: scale(1.1);
  transition: all 0.4s ease;
}
.galeri .item .overlay {
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  transition: all 0.4s ease;
}
.galeri .item:hover .overlay {
  content: "";
  opacity: 100;
  transition: all 0.4s ease;
}
.galeri .item .overlay .title {
  height: 100px;
  width: 100px;
  background: #c19048bf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.galeri .item:hover .overlay i {
  color: white !important;
}

/* Gallery Grid */
/* .image-grid {
    padding: 12px;
} */

.galeri .image-row {
  display: flex;
}

.galeri .item .image-wrapper {
  margin: 5px;
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                0 6px 20px rgba(0, 0, 0, 0.15),
                0 6px 20px rgba(0, 0, 0, 0.7); */
  transition: transform 0.3s ease;
}

/* .galeri .item .image-wrapper:hover {
  transform: scale(1.03);
} */

.galeri .item .image-item {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 500px) {
  .galeri .item .image-row {
    flex-direction: column;
  }

  .galeri .item .image-wrapper {
    margin: 5px;
  }
}

/* CTA */
.cta-section-custom {
  position: relative;
  /* height: 500px; */
  display: flex;
  align-items: center;
}

.cta-section-custom .background-image {
  position: absolute;
  inset: 0;
}

.cta-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cta-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 38%,
    rgba(0, 0, 0, 0.29) 100%
  );
}

.header-section-custom {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.header-section-custom .background-image {
  position: absolute;
  inset: 0;
}

.header-section-custom .background-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.header-section-custom .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #000000d9 20%, #00000096 100%);
}

.opacity-6 {
  opacity: 0.6;
}
.opacity-7 {
  opacity: 0.7;
}
.opacity-8 {
  opacity: 0.8;
}
.opacity-9 {
  opacity: 0.9;
}

button.hamburger span,
button.hamburger:after,
button.hamburger:before {
  width: 1.2rem;
  height: 0.1rem;
  transition: all 0.2s ease-in-out;
  background: var(--bs-primary);
  border-radius: 2rem;
}

@media screen and (max-width: 565px) {
  .navbar-nav .nav-link.active::after {
    display: none !important;
  }
}

.text-line {
  position: relative;
  vertical-align: top;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.text-line.text-primary:before {
  background-color: var(--bs-primary);
}

.text-line::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-60%);
  right: 0 !important;
  width: 0.75rem;
  height: 0.05rem;
  background: var(--bs-primary);
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}


/* --- 1. TOMBOL UTAMA (KAPSUL / PILL SHAPE) --- */
.wa-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgb(71, 204, 255), rgb(37, 99, 235));
    /* Warna biru sesuai gambar */
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    /* Membuat bentuk kapsul sempurna */
    display: flex;
    align-items: center;
    gap: 10px;
    /* Jarak antara ikon dan teks */
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s;
}

.wa-floating-btn:hover {
    transform: scale(1.03);
    background-color: #2563eb;
}

.wa-floating-btn i {
    font-size: 22px;
    /* Ukuran ikon WhatsApp */
}

/* --- 2. POPUP CONTAINER --- */
.wa-popup-container {
    position: fixed;
    bottom: 85px;
    /* Disesuaikan agar pas di atas tombol kapsul */
    right: 20px;
    width: 360px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 9999;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 3. HEADER POPUP --- */
.wa-header {
    background-color: #3b82f6;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.wa-avatar-wrapper {
    position: relative;
    margin-right: 12px;
}

.wa-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-status-dot {
    width: 12px;
    height: 12px;
    background-color: #4aee04;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    position: absolute;
    bottom: -1px;
    right: 4px;
}

.wa-header-info h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    margin-bottom: 2px;
    padding-bottom: 0px !important;
}

.wa-header-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
    font-family: 'Inter', sans-serif;
}

.wa-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    background: none;
    border: none;
}

/* --- 4. BODY CHAT & ANIMASI TYPING --- */
.wa-body {
    background-color: #e5e7eb;
    padding: 20px;
    min-height: 140px;
}

.wa-bubble {
    background-color: white;
    padding: 12px 16px;
    border-radius: 0px 12px 12px 12px;
    max-width: 90%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wa-bubble-name {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.wa-bubble-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

/* Efek Titik Tiga Meloncat */
.typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 20px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background-color: #9ca3af;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

/* --- 5. FOOTER POPUP --- */
.wa-footer {
    padding: 16px;
    background-color: white;
    text-align: center;
}

.wa-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    width: 100%;
    padding: 8px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300;
}

.fa-brands, .fab {
    font-size: 18px;
}

.wa-btn-submit i {
    margin-right: 8px;
}

/* --- 6. ATURAN RESPONSIVE (KHUSUS LAYAR HP & TABLET) --- */
@media screen and (max-width: 480px) {
    .wa-popup-container {
        right: 15px;
        bottom: 80px;
        width: calc(100% - 30px);
        /* Jarak kiri-kanan pop-up ke tepi layar HP adalah 15px */
    }

    .wa-floating-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 20px;
        /* Mengecilkan sedikit ukuran tombol di HP agar proporsional */
        font-size: 16px !important;
    }
}

.text-gradient-custom {
    background: linear-gradient(to right, #50cbff, #286aeb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#toc ul, #toc ol{
    padding-left:0rem;
}

#toc ul li ul, #toc ol li ol, #toc ul li ol, #toc ol li ul{
    padding-left:1rem;
}

#toc ul li, #toc ol li{
    list-style:none;
    margin-bottom : 5px;
}

#toc a{
   color: #000 !important;
}

#toc ul:last-child, #toc ol:last-child{
    margin-bottom: 0;
}

#content h2, #content h3 {
    scroll-margin-top: 90px;
}

.bg-mesh {
    position: absolute;
    inset: -40px -10% -40px -10%;
    z-index: -3;
    background: radial-gradient(600px 420px at 82% 20%, rgba(46, 111, 242, 0.10), transparent 70%), radial-gradient(500px 380px at 12% 85%, rgba(94, 234, 212, 0.08), transparent 70%), linear-gradient(180deg, #FCFDFF 0%, #F6F8FC 100%);
}

.feature-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
    /*margin-bottom:38px;*/
  }
  ul.feature-list{
      padding-left: 0;
  }
  .feature-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:18px;
    line-height:1.6;
    color:  #334155;
  }
  .check{
    flex-shrink:0;
    width:24px; height:24px;
    border-radius:7px;
    background:rgba(46,111,242,0.09);
    border:1px solid rgba(46,111,242,0.22);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:2px;
  }
  .check svg{ 
      width:13px; height:13px;
  }
  
  .corner-ornament{
    position:absolute;
    bottom:32px; left:36px;
    width:130px; height:130px;
    z-index:-1;
    opacity:0.5;
  }
  
  .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl{
      --bs-offcanvas-width: 90% !important;
  }
  
.simplescroll{
    max-height: 295px;
    overflow-y: auto;
    padding-right: 10px;
}
  
.simplescroll::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.simplescroll::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #D1F1FF;
}
.simplescroll::-webkit-scrollbar-thumb {
  border-radius: 0px;
  /* margin-left: 10px; */
  background: var(--bs-primary);
}
.simplescroll::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}
.simplescroll::-webkit-scrollbar-thumb:active {
  background: var(--bs-primary);
}

@media (min-width: 1800px) {
    .container, .container-fluid{
        max-width : 1800px;
    }
}

  