.bg-main {
  background-color: #26ace2;
}

.bg-color {
  background-color: #26ace2;
}

.border-right {
  margin-left: auto;
  margin-right: 0 !important;
}

.border-left::before {
  margin-left: 0 !important;
}
.border-right:before {
  right: 0 !important;
  left: inherit !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-container {
  width: 50px;
  height: 50px;
  position: relative;
}

.preloader-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  /* Faster transition */
  visibility: hidden;
  object-fit: contain;
}

.preloader-image.active {
  opacity: 1;
  visibility: visible;
}

.preloader-fade-out {
  animation: fadeOut 0.4s ease-in-out forwards;
  /* Faster fade out */
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

.title-about {
  position: absolute;
  z-index: 9;
  top: -50px;
}

.section-bg-about {
  background-color: #363737;
}

.about-us-title-bg {
  position: absolute;
  top: -50px;
  left: 0;
}

.con-info h5 {
  margin: 0;
  margin-left: 25px !important;
  color: #fff !important;
  font-weight: bold !important;
}
.con-info span {
  margin-left: 25px !important;
}

.section-vision {
  background-image: url("../images/background_vision.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}
/* Show hamburger menu only on mobile */
@media screen and (max-width: 768px) {
  .section-vision {
    height: inherit !important;
  }
}

.map-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url("../images/maps-indonesia.png") center/contain
    no-repeat;
}
/* Pin Kontainer */
.location-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* Garis Vertikal */
.pin-line {
  width: 2px;
  height: 0; /* Awalnya kecil (0px) */
  background: white;
  margin: 0 auto;
  transform-origin: bottom; /* Animasi dimulai dari bawah */
  transition: height 0.5s ease-out;
}

.location-pin.active .pin-line {
  height: 50px; /* Tinggi akhir garis */
}

/* Titik Pin */
.pin-point {
  width: 15px;
  height: 15px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  position: absolute;
  top: -10px; /* Titik di atas garis */
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  padding: 0.2em 0.4em 0.3em;
  text-align: left;
}

.location-pin.active .pin-point {
  opacity: 1; /* Titik muncul setelah garis selesai */
}

/* Label di samping */
.label {
  position: absolute;
  top: 0;
  left: calc(100% + 10px); /* Geser ke kanan titik */
  color: white;
  font-size: 11px;
  white-space: nowrap;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  text-align: left;
  padding:0;
}

.location-pin.active .label {
  opacity: 1; /* Label muncul setelah garis */
}

.top-img-icon {
    vertical-align: top;
    z-index:99;
    position:absolute;top:0;
    margin-top:20px;
}
.top-img-icon img{
    width:60%;
}

/* Show hamburger menu only on mobile */
@media screen and (max-width: 768px) {
    .top-img-icon img{
        width:40px;
    }
}

.contact-details{
    padding-left: 20px;
}

@media screen and (min-width: 769px) {
  .gallery-caption {
      margin-top:-115px;
  }
}