.bg-primary-jsteel {
  background-color: #004389;
}

.text-yellow-jsteel {
  color: #E57414;
}

.bg-footer-image {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-image: url("../img/footer-bg.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.01;
}

.z-9 {
  z-index: 999999;
}

.swiper-slide.bg-overlay-500::before,
.image-wrapper.bg-overlay-500::before {
  background: rgba(30, 34, 40, 0.5);
}
.swiper-slide.bg-overlay-600::before,
.image-wrapper.bg-overlay-600::before {
  background: rgba(30, 34, 40, 0.6);
}
.swiper-slide.bg-overlay-700::before,
.image-wrapper.bg-overlay-700::before {
  background: rgba(30, 34, 40, 0.7);
}
.swiper-slide.bg-overlay-800::before,
.image-wrapper.bg-overlay-800::before {
  background: rgba(30, 34, 40, 0.8);
}

.whatsapp-sticky {
  position: fixed;
  width: 2.3rem;
  height: 2.3rem;
  right: 1.5rem;
  bottom: 4.5rem;
  background-color: #25d366; /* WhatsApp green color */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 100; /* Ensure it stays on top of other elements */
  display: flex; /* Centers the icon inside the circle */
  justify-content: center;
  align-items: center;
}

.whatsapp-sticky:hover {
  color: #fff; /* Keep icon white on hover */
  background-color: #128c7e; /* Slightly darker green on hover */
}

.gradient-jsteel {
  background: #004389;
  background: linear-gradient(360deg, rgb(0, 67, 137) 0%, rgb(195, 211, 227) 63%, rgb(255, 255, 255) 100%);
}

.hidden {
  display: none;
}

.sticky-button {
  position: fixed;
  bottom: 5rem;
  right: 1.3rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}
.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  transition: all 0.3s ease-out;
}
.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  right: 1.5rem;
  width: 320px;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}
.sticky-chat svg {
  width: 35px;
  height: 35px;
}
.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}
.sticky-chat .chat-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}
.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}
.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  color: #f4f4f4;
}
.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}
.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0 15px 15px;
}
.sticky-chat .chat-text span:after {
  content: "just now";
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}
.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  border-radius: 15px 0 15px 15px;
}
.sticky-chat .chat-text span.typing:after {
  display: none;
}
.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}
.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
}
.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #505050;
  margin-left: auto;
  transform: rotate(40deg);
}

/* Toggle State */
.chat-menu:checked + .sticky-button label {
  transform: rotate(360deg);
}
.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}
.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}
.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 8.5rem;
  opacity: 1;
  visibility: visible;
}

.navbar {
  transition: transform 0.3s ease-in-out;
}

.navbar-hidden {
  transform: translateY(-100%);
}

/* ========================================
   UX Sticky Header Dynamic
   ======================================== */
.ux-sticky-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.ux-sticky-header.ux-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.ux-sticky-header.ux-header-hidden {
  transform: translateY(-100%);
}
.ux-sticky-header.ux-header-scrolled {
  background: rgba(255, 255, 255, 0.89);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.chat-header {
  position: relative; /* Pastikan header punya posisi relatif */
  display: flex;
  align-items: center;
  padding-right: 30px; /* Beri ruang agar teks tidak tertabrak ikon close */
}

.close-chat {
  position: absolute;
  top: 10px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  right: 10px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background-color: #FFF;
  color: #677081;
}

.close-chat:hover {
  opacity: 1;
}

.close-chat svg {
  fill: #fff; /* Sesuaikan warna dengan tema header Anda */
}

.bg-text {
  font-size: 6rem;
  font-family: "Red Hat Display", "serif" !important;
  position: absolute;
  font-weight: 900;
  letter-spacing: 0;
  left: 0;
  z-index: 1;
  top: -65px;
  font-family: var(--font-primary);
  min-width: max-content;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}
.bg-text::after {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}

.text-justify {
  text-align: justify !important;
}

.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
}

.media img,
.media video {
  display: block;
  object-fit: cover;
  object-position: center;
}

.media--16x9 {
  aspect-ratio: 16/9;
}

.media--4x3 {
  aspect-ratio: 4/3;
}

.media--1x1 {
  aspect-ratio: 1/1;
}

.media--3x2 {
  aspect-ratio: 3/2;
}

.media--21x9 {
  aspect-ratio: 21/9;
}

.left-thumbnail-about {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}
.left-thumbnail-about .small-image {
  position: absolute;
  right: -63px;
  bottom: 40px;
  max-width: 211px;
}
.left-thumbnail-about .counter-area {
  position: absolute;
  padding: 40px;
  top: 50px;
  left: -75px;
  text-align: center;
  background-color: #004389;
  color: #fff;
  width: 150px;
  height: 150px;
}

.widget.with-embed-map iframe {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 250px;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 639px) {
  .left-thumbnail-about .counter-area {
    left: 1rem;
    top: 1rem;
    padding: 20px;
    width: 100px;
    height: 100px;
  }
  .left-thumbnail-about .small-image {
    display: none;
  }
}
.social.social-white a:hover i {
  color: #fab758 !important;
}

/*# sourceMappingURL=jsteel.css.map */
