@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap");

:root,
[data-bs-theme="light"] {
  --bs-primary: #28365a;
  --bs-second: #edaa15;
  --bs-primary-light: #fcf8ee;
  --bs-primary-dark: #7a601f;
  --very-light-base-color: #fbeee1;
  --bs-primary-rgb: 40, 54, 90;
  --bs-second-rgb: 237, 170, 21;
  --bs-body-font-size: 14px;
}

.primary-font {
  font-family: "Gilda Display", serif;
}

.bg-primary {
  background-color: var(--bs-primary);
}

.bg-second {
  background-color: var(--bs-second) !important;
}

.text-second {
  color: var(--bs-second) !important;
}

.bg-primary-light {
  background-color: var(--bs-primary-light);
}

.bg-primary-dark {
  background-color: var(--bs-primary-dark);
}

.bg-very-light-base-color {
  background-color: var(--very-light-base-color);
}

.text-black {
  color: #000 !important;
}

/* BTN Custom */
.btn.btn-primary-custom {
  color: white !important;
  background-color: var(--bs-primary);
  font-weight: 600;
  border: 2px solid var(--bs-primary);
  border-radius: 50rem;
}

.btn.btn-primary-custom:hover {
  color: var(--bs-primary) !important;
  background-color: white !important;
}

.btn.btn-primary-custom i {
  color: var(--bs-primary);
  background-color: white;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn.btn-primary-custom:hover i {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

/*  */

.btn.btn-cta-custom {
  background-color: white !important;
  color: var(--bs-second);
  font-weight: 600;
  border-radius: 50rem;
}

.btn.btn-cta-custom:hover {
  color: var(--bs-second) !important;
}

.btn.btn-cta-custom i {
  background-color: var(--bs-second);
  color: white;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*  */
.btn.btn-cta-outline-custom {
  color: var(--bs-second);
  font-weight: 600;
  border-radius: 50rem;
  border: 2px solid var(--bs-second);
}

.btn.btn-cta-outline-custom:hover {
  color: var(--bs-second) !important;
}

.btn.btn-cta-outline-custom i {
  background-color: var(--bs-second);
  color: white;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*  */
.btn.btn-white-custom {
  background-color: white !important;
  color: var(--bs-primary);
  font-weight: 600;
  border-radius: 50rem;
}

.btn.btn-white-custom:hover {
  color: var(--bs-primary) !important;
}

.btn.btn-white-custom i {
  background-color: var(--bs-primary);
  color: white;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*  */

.btn.btn-outline-primary-custom {
  background-color: white !important;
  color: var(--bs-primary) !important;
  font-weight: 600;
  border-radius: 50rem;
  border: 2px solid var(--bs-primary);
}

.btn.btn-outline-primary-custom i {
  background-color: var(--bs-primary);
  color: white !important;
  font-size: 24px;
  font-weight: 600;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-outline-primary-custom:hover {
  background-color: var(--bs-primary) !important;
  color: white !important;
  transition: all 0.2s ease-in-out;
}

.btn.btn-outline-primary-custom:hover i {
  background-color: white !important;
  color: var(--bs-primary) !important;
  transition: all 0.2s ease-in-out;
}

/*  */

.btn-base-color {
  --bs-btn-color: #fff;
  --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);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 92, 140, 229;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --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-orange {
  --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: var(--bs-second);
  --bs-btn-hover-border-color: var(--bs-second);
  --bs-btn-focus-shadow-rgb: 218, 128, 113;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-second);
  --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);
}

/* 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(0 0 0 / 80%), rgb(0 0 0 / 80%)),
    url("../../../images/lain-lain/bg-keunggulan.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  /* opacity: 0.1; */
}

.background-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-2.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.03;
}

.background-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-333.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  opacity: 0.07;
}

.background-4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-tentang-kami.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  /* opacity: 0.3; */
}

.background-5 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../images/lain-lain/bg-layanan.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: -1;
  /* opacity: 0.3; */
}

/* Navbar */
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.logo-nav {
  width: auto;
  height: 60px;
}

/* Welcome Text */
.bg-dot.primary {
  background-image: radial-gradient(var(--bs-primary) 2px, transparent 2.5px);
}

/* Floating WA */
.contact-btn-1 {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 99999;
  display: flex;
  gap: 10px;
}

.button-34 {
  background-color: #39b54a;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-34:hover {
  box-shadow: rgba(57, 181, 74, 0.35) 0 -25px 18px -14px inset,
    rgba(57, 181, 74, 0.25) 0 1px 2px, rgba(57, 181, 74, 0.25) 0 2px 4px,
    rgba(57, 181, 74, 0.25) 0 4px 8px, rgba(57, 181, 74, 0.25) 0 8px 16px,
    rgba(57, 181, 74, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
  color: white;
}

/* Navbar */
.nav-link {
  color: black;
  font-size: 16px;
}

.navbar-clone.navbar-stick {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.home-slider {
  height: calc(100vh - 95px);
}
.swiper-fullscreen .swiper:not(.swiper-thumbs) .swiper-slide {
  height: calc(100vh - 95px) !important;
}
/* .swiper-fullscreen {
  height: calc(100vh - 95px) !important;
}
.home-slider {
  height: calc(100vh - 140px) !important;
} */

/* Artikel */
article .artikel:hover .card-body a.btn-outline-primary {
  background-color: var(--bs-primary) !important;
  color: #ffffff !important;
}

.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 */
.swiper-slide.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0));
}

.section-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0));
}

.cta-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgb(191 53 50 / 80%),
    rgb(225 62 59 / 80%)
  );
}

.cta-overlay-2:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8a214cc, #f8a214cc);
}

/*Swiper Bullte*/
.swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  border: solid 1px var(--bs-primary);
  background-color: transparent;
  opacity: 1;
}

.pagination .page-item.active .page-link{
    background-color:var(--bs-primary) !important;
    color:white !important;
}

/* FAQ */
.accordion-wrapper .card {
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-wrapper .card-header {
  margin-bottom: 0;
  background: 0 0;
  border: 0;
  padding: 0.5rem 1.3rem;
}
.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: #000;
}
.accordion-wrapper .card-header button.collapsed:before {
  content: "\ec5d";
}
.accordion-wrapper .card-header button:before {
  right: 1.3rem;
  left: unset;
  content: "\ec07";
  margin-top: -0.25rem;
  margin-right: -0.3rem;
  color: #000;
}
.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-primary-soft {
  background-color: #fff5d6 !important;
}
.goverlay {
  background: rgba(0, 0, 0, 0.9);
}

/* Card Artikel */
.article-card {
  display: flex;
  /* width: 600px; */
  /* background: white; */
  /* border-radius: 8px; */
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.article-card .truncate-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card .truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card img {
  width: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.article-content {
  width: 50%;
  padding: 15px;
  /* background-color: #e0e0e0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.article-content h2 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.admin {
  font-size: 14px;
  color: gray;
  margin: 5px 0;
}
/* 
.description {
  font-size: 14px;
  color: #555;
} */

.description h1,
.description h2,
.description h3,
.description h4,
.description h5,
.description h6 {
  color: black !important;
}

.read-more {
  margin-top: 10px;
  color: red;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 992px) {
  .article-card img {
    width: 80%;
  }

  .article-card .box-artikel {
    left: -200px !important;
  }

  .article-card .box-artikel h5 {
    margin-bottom: 0px !important;
  }

  /* Keunggulan */
  #keunggulan picture {
    width: 20% !important;
  }
}

.price {
  white-space: nowrap;
}

.icon-logo-footer {
  right: 100px;
  bottom: 10px;
}

@media (max-width: 992px) {
  .icon-logo-footer {
    right: 20px;
    bottom: 10px;
  }
}

/* Keunggulan */
.keunggulan .card-keunggulan {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* aspect-ratio: 16 / 9; */
  transition: 0.3s;
  border-radius: 17px;
  overflow: hidden;
}

.keunggulan .card-keunggulan img {
  transition: 0.3s;
  aspect-ratio: 3 / 5;
  object-fit: cover;
}

.keunggulan .card-keunggulan .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.keunggulan .card-keunggulan:hover .overlay {
  background: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.keunggulan .card-keunggulan .overlay .desc {
  font-weight: 200;
}

.keunggulan .card-keunggulan:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.icon-svg,
.icon-svg.icon-svg-lg {
  width: 3rem !important;
  height: 3rem !important;
}

@media (max-width: 756px) {
  .section-title {
    border-width: 0px !important;
  }
  .keunggulan .card-keunggulan img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

.wrapper-gallery {
  display: flex;
  align-items: center; /* Vertikal center */
  justify-content: center; /* Horizontal center */
  height: 100vh; /* Full viewport height */
  padding: 40px;
}

.section-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.section-gallery img {
  width: 180px; /* atau sesuaikan sesuai kebutuhan */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.section-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .section-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .section-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.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 .nav-link {
  color: black !important;
}

.navbar-nav {
  --bs-nav-link-padding-y: 1rem;
}

.navbar {
  --bs-navbar-nav-link-padding-x: 0.7rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--bs-second) !important;
}

.nav-link {
  --bs-nav-link-font-weight: 500;
}

.breadcrumb.text-white .breadcrumb-item + .breadcrumb-item::before {
  color: white;
  margin-top: -2px;
}

/* Galeri Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-column img {
  width: 100%;
  object-fit: cover;
  /* border-radius: 8px; */
}

/* Kolom 1, 3, dan 5 - gambar persegi */
.gallery-column:nth-child(1),
.gallery-column:nth-child(3),
.gallery-column:nth-child(5) {
  gap: 30px;
  margin: 20px;
}

.gallery-column:nth-child(1) img,
.gallery-column:nth-child(3) img,
.gallery-column:nth-child(5) img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Kolom 2 dan 4 - gambar dengan variasi ukuran */
.gallery-column:nth-child(2),
.gallery-column:nth-child(4) {
  gap: 30px;
}

.gallery-column:nth-child(2) a:first-child img {
  aspect-ratio: 3 / 4; /* portrait */
  object-fit: cover;
}

.gallery-column:nth-child(4) a:first-child img {
  aspect-ratio: 4 / 3; /* portrait */
  object-fit: cover;
}

.gallery-column:nth-child(2) a:last-child img {
  aspect-ratio: 4 / 3; /* landscape */
  object-fit: cover;
}

.gallery-column:nth-child(4) a:last-child img {
  aspect-ratio: 3 / 4; /* landscape */
  object-fit: cover;
}

@media (max-width: 756px) {
  .gallery {
    gap: 5px;
  }

  /* Kolom 1, 3, dan 5 - gambar persegi */
  .gallery-column:nth-child(1),
  .gallery-column:nth-child(3),
  .gallery-column:nth-child(5) {
    gap: 10px;
    margin: 5px;
  }

  /* Kolom 2 dan 4 - gambar dengan variasi ukuran */
  .gallery-column:nth-child(2),
  .gallery-column:nth-child(4) {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# ARTIKEL
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-four__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-four__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--elitecons-black-rgb), 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.services-four__single:hover .services-four__img::after {
  visibility: visible;
  opacity: 1;
}

.services-four__img img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  object-fit: cover;
}

.services-four__single:hover .services-four__img img {
  transform: scale(1.1);
}

.services-four__content {
  position: relative;
  display: block;
  background-color: var(--bs-white);
  /* border-bottom: 2px solid var(--bs-primary); */
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin: -90px 20px 0;
  padding: 20px;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-four__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.services-four__title a {
  color: var(--elitecons-black);
}

.services-four__title a:hover {
  color: var(--elitecons-base);
}

.services-four__text {
  margin-top: 6px;
  margin-bottom: 33px;
}

.services-four__btn-box {
  position: relative;
  display: block;
}

.services-four__btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.services-four__btn span {
  font-size: 14px;
}

.services-four__btn:hover {
  color: var(--elitecons-black);
}

/* Tabel Harga */
.description-p table {
  width: 100%;
}

.description-p table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #dddddd24;
  color: white;
}

.description-p table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.description-p p {
  margin-bottom: 0px;
}

/* Button Style */
.butn-dark {
  position: relative;
  line-height: 1.2em;
}
.butn-dark a {
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  background: var(--bs-primary);
  color: #fff;
  padding: 15px 30px;
  margin: 0;
  position: relative;
  font-size: 13px;
  letter-spacing: 3px;
}
.butn-dark a:after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 100%;
  z-index: 1;
  background: #7a601f;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.butn-dark a span {
  position: relative;
  z-index: 2;
}
.butn-dark a:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.butn-dark a:hover span {
  color: #fff;
}

/* Article */
.article-home .image-list .item figure {
  width: 10rem;
  height: 7rem;
}

.article-home .image-list .item img {
  object-fit: cover;
  transition: all 0.4s ease;
}

.article-home .image-list .item:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.article-home .main-item img {
  transition: all 0.4s ease;
}

.article-home .main-item:hover img {
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.article-home .main-item .date {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: #fff;
  padding: 8px 10px 4px 10px;
  text-align: center;
}

.article-home .main-item .date span {
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.25em;
}

.article-home .main-item .date i {
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  font-size: 27px;
  font-style: normal;
  color: #fff;
}

.skiptranslate {
  display: none;
}

body {
  top: 0 !important;
}

.navbar-stick:not(.navbar-dark) {
  box-shadow: 0 0 1.25rem rgba(30, 34, 40, 0.06);
  background: var(--bs-primary-light);
}

.offcanvas {
  background-color: black !important;
}

/* .btn.show,
.btn:first-child:active {
  border: none !important;
} */

/* Sosmed */
.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: var(--medium-gray);
}

.cs_social_btns.cs_style_1 a {
  height: 40px;
  width: 40px;
  /*border-radius: 6px;*/
  /*background-color: white;*/
  color: var(--bs-primary);
  font-size: 25px;
}

.cs_social_btns.cs_style_1 a:hover {
  /*background-color: var(--bs-primary);*/
  /*background: var(--bs-primary-dark);*/
  /*-webkit-background-clip: text;*/
  /*  -webkit-text-fill-color: transparent;*/
  color: var(--bs-primary-dark);
}

.cs_social_btns.cs_style_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.cs_social_btns.cs_style_2 a {
  width: 26px;
  height: 26px;
  font-size: 11px;
  border: 1px solid;
  border-color: var(--bs-primary);
}

.cs_social_btns.cs_style_2 a {
  height: 45px;
  width: 45px;
  border-radius: 10px;
  /* background-color: rgba(105, 105, 105, 0.3); */
  color: var(--bs-primary);
  font-size: 16px;
}

.cs_social_btns.cs_style_2 a:hover {
  background-color: var(--bs-second) !important;
  color: white !important;
  border-color: var(--bs-second) !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;
}

/* @media (max-width: 767px) {
    .swiper-fullscreen, .swiper-fullscreen .swiper:not(.swiper-thumbs) .swiper-slide {
        height: 320px !important;
    }
} */

.text-editor h1,
.text-editor h2,
.text-editor h3,
.text-editor h4,
.text-editor h5,
.text-editor h6 {
  color: black !important;
}

/* Galeri */
.gallery-single {
  position: relative;
}

.gallery-single__img-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-single__img {
  display: block;
  width: 100%;
  border-radius: 10px;
  /* aspect-ratio: 4/2.5 !important; */
  transition: transform 0.7s ease;
}

.gallery-single:hover .gallery-single__img {
  transform: scale(1.1);
}

.gallery-single__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #f8a11497;
  /* background-color: #e13e3b90; */
  transition: all 0.5s ease;
  border-radius: 10px;
}

.gallery-single:hover .gallery-single__overlay {
  top: 0;
  height: 100%;
}

.gallery-single__btn {
  display: flex;
  justify-content: center;
  color: var(--bs-second);
  align-items: center;
  padding: 0;
  width: 64px;
  height: 64px;
  border-radius: 11px;
  font-size: 28px;
  background-color: white;
  opacity: 0;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .gallery-single__btn {
    width: 50px;
    height: 50px;
  }
}

/* .gallery-single__btn:hover {
  background-color: var(--bs-second);
} */

.gallery-single:hover .gallery-single__btn {
  opacity: 1;
}

/* Float animation */
.animation-float {
  animation: float 2000ms linear 500ms infinite alternate both;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(30px);
  }
}

.animation-float-small {
  animation: float 2000ms linear 500ms infinite alternate both;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(10px);
  }
}

/* Sosmed */
.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: #cacaca;
}

.cs_social_btns.cs_style_1 a {
  height: 45px;
  width: 45px;
  border-radius: 10px;
  /* background-color: rgba(105, 105, 105, 0.3); */
  color: #cacaca;
  font-size: 16px;
}

.cs_social_btns.cs_style_1 a:hover {
  background-color: var(--bs-second) !important;
  color: white !important;
  border-color: var(--bs-second) !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;
}

footer a:hover {
  color: var(--bs-second) !important;
  /* font-weight: 600; */
}

@media (max-width: 576px) {
  footer .img-footer {
    width: 50%;
  }
}

/*  */
.image-wrapper.bg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(225 62 59 / 50%);
}

/* Instansi */
.logo-swiper {
  width: 100%;
  overflow: hidden;
}

.logo-swiper .swiper-wrapper {
  display: flex;
}

.logo-swiper .swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .logo-wrapper {
    height: 70px !important;
  }
}

.logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.clients .gradient-right {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100px;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 18%,
    rgba(255, 255, 255, 0) 100%
  );
  right: 0;
  top: 0;
}

.clients .gradient-left {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 18%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 0;
  top: 0;
}

/* PROGRAM */
.programSwiper {
  width: 100%;
  padding: 10px 0;
}

.programSwiper .swiper-slide {
  /* width: 300px; */
  transition: transform 0.4s ease;
  opacity: 0.3;
  /* transform: scale(0.85); */
}

.programSwiper .swiper-slide img {
  width: 100%;
  border-radius: 12px;
}

/* Slide aktif */
.programSwiper .swiper-slide-active {
  opacity: 1;
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Slide kiri kanan */
.programSwiper .swiper-slide-prev,
.programSwiper .swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.9);
}

/* TESTIMONI */
.testimoniSwiper {
  width: 100%;
  padding: 10px 0;
}

.testimoniSwiper .swiper-slide {
  /* width: 300px; */
  transition: transform 0.4s ease;
  opacity: 0.3;
  /* transform: scale(0.85); */
}

.testimoniSwiper .swiper-slide img {
  width: 100%;
  border-radius: 12px;
}

/* Slide aktif */
.testimoniSwiper .swiper-slide-active {
  opacity: 1;
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Slide kiri kanan */
.testimoniSwiper .swiper-slide-prev,
.testimoniSwiper .swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.9);
}

/* VIDEO */
.video-item {
  position: relative;
    border-radius: 20px;
    transition: 0.3s;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; 
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* border-radius: 10px; */
    overflow: hidden;
    border: 1px solid #cccccc;
}
.video-item .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transition: 0.3s;
  border-radius: 17px;
  overflow: hidden;
}
.video-item .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-item .thumbnail .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
.video-item:hover .thumbnail .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.video-item .play-btn {
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: rgba(var(--bs-second-rgb), 0.9);
  border-radius: 50%;
  position: absolute;
  display: block;
  box-shadow: 0px 0px 25px 3px rgba(var(--bs-second-rgb), 0.8);
}
.video-item .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.video-item .play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.75);
  top: calc(-75% + 25px);
  left: calc(-75% + 25px);
  background: rgba(198, 16, 0, 0);
}
@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

.scroll {
  display: block;
  height: 100px;
  overflow: auto;
  margin-bottom: 10px;
  padding-right: 20px;
  /* direction: rtl;
    text-align: left; */
}

.simplescroll::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.simplescroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.simplescroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* 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);
}

/* ARTICLE */
.article .item .card {
  box-shadow: none !important;
  border: none !important;
  /* border-radius: 0.8rem !important; */
  transition: transform 0.3s ease;
}

.article .item:hover .card {
  /* background-color: var(--bs-primary); */
  /* color: #fff !important; */
  transform: scale(1.06);
  transition: transform 0.3s ease;
}

.article .item .card .con .title-article {
  color: #000;
}

/* .article .item:hover .card .con .title-article {
  color: #fff;
} */

.article .item .card .con .category-article {
  background-color: var(--bs-primary);
}

/* .article .item:hover .card .con .more {
  color: white !important;
} */

.article .item:hover .card .con .category-article {
  background-color: #fff !important;
  color: var(--bs-primary);
}

.article .item figure img {
  transition: all 0.5s ease;
}

.article .item:hover figure img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.dropdown-menu {
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
}

.dropdown-item {
  font-weight: 500;
}

@media (max-width: 576px) {
  .dropdown-item{
      white-space: wrap !important;
  }
}

@media (min-width: 992px) {
  .process-wrapper.line [class*="col-"]:after {
    width: 100%;
    position: absolute;
    content: "";
    height: 1px;
    background: 0 0;
    border-top: 2px solid rgba(164, 174, 198, 0.2);
    top: 1.5rem;
    z-index: 1;
    left: 5rem;
  }
}

.bg-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56%;
  background-color: #eef3fe;
  /* z-index: -1; */
}

.bg-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  background-color: #fff;
  /* z-index: -1; */
}

/* KEUNGGULAN */
.card-keunggulan figure:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgb(238 243 254) 25%,
    rgba(0, 0, 0, 0) 62%
  );
}

/* FORM */
.picker {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0 !important;
}

.picker label > span {
  position: relative !important;
  inset: 0;
  block-size: 100%;
  inline-size: 100%;
}

.picker label {
  width: auto;
}

/*LOKASI*/
.lokasi-card{
    position: relative;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* border-radius: 10px; */
    overflow: hidden;
    border: 1px solid #cccc
}

/*===================
41. Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  background: white;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);;
  transition: all .5s ease-in-out;
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img{
  border-radius: 5px;
}

.team-content {
  margin-top: 15px;
  position: relative;
}

.team-content .name{
    position: absolute;
    background: var(--bs-second);
    top: -40px;
    color: white;
    left: 10px;
    right: 10px;
    text-align: center;
}

.team-bio h5 {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
    line-height: 1px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bs-primary);
  /*text-transform: uppercase;*/
  /*letter-spacing: 2px;*/
}

.team-bio h5 a:hover {
  color:  var(--bs-primary);
}

.team-social-btn {
  position: absolute;
  right: -5px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding-left: 12px;
  border-radius: 50px 50px 0 50px;
  cursor: pointer;
  background: var(--bs-primary);
  color: white;
  transition: all .5s ease-in-out;
}

.team-item:hover .team-social-btn{
  background: var(--bs-second);
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 50px;
  right: 0px;
  bottom: 0;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.team-item:hover .team-social {
  opacity: 1;
  right: 30px;
}

.team-social a {
  display: block;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 50px 50px 50px 0;
  background: var(--bs-second);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);;
  transition: all .5s ease-in-out;
}

.team-social a:hover {
  background:  var(--bs-primary);
  color: white;
}
