/*=================================================================
  Navigation
==================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');

/* Menerapkan font Hammersmith One ke seluruh elemen */
body {
  font-family: 'Hammersmith One', sans-serif;
}

/* Mengonfigurasi ukuran dan bobot font untuk judul */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Hammersmith One', sans-serif;
  font-weight: 400; /* Contoh bobot font */
}

/* Contoh penggunaan font Hammersmith One pada paragraf */
p {
  font-family: 'Hammersmith One', sans-serif;
  font-weight: 300; /* Contoh bobot font */

}


  /* Menerapkan font ke elemen-elemen lainnya sesuai kebutuhan */

.transparent-bg {
    background-color: transparent !important; /* Gaya !important untuk memastikan prioritas tinggi */
    box-shadow: none !important; /* Jangan gunakan bayangan kotak */
  }


  .navigation {
    transition: 0.3s all;
  }
  .navigation .logo-default {
    display: none;
  }
  .navigation .dropdown-toggle::before, .navigation .dropdown-toggle::after {
    display: none;
  }
  .navigation .dropdown-toggle i {
    font-size: 10px;
    margin-left: 2px;
    vertical-align: 2px;
  }
  .navigation .navbar-light .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    padding: 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.2s ease-in-out 0s;
  }
  .navigation .navbar-light .navbar-nav .nav-item .nav-link:hover, .navigation .navbar-light .navbar-nav .nav-item .nav-link:active, .navigation .navbar-light .navbar-nav .nav-item .nav-link:focus {
    background: none;
    color: #ffae00;
  }
  .navigation .navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #ffae00;
  }
  @media (max-width: 991px) {
    .navigation .nav-link {
      padding: 6px !important;
    }
    .navigation .navbar-collapse.show {
      overflow-y: auto;
      max-height: calc(100vh - 55px);
    }
  }
  .navigation .dropdown-submenu .dropdown-menu {
    margin: 0;
    background-color: #131313;
  }
  @media (min-width: 992px) {
    .navigation .dropdown-submenu .dropdown-menu {
      left: 100%;
      top: -5px;
    }
    .navigation .dropleft .dropdown-menu {
      left: auto;
      right: 100%;
      margin: 0;
      top: -5px;
    }
    .navigation .dropdown-submenu .dropdown-menu {
      background-color: #000;
    }
  }
  .navigation .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
  .navigation .dropdown-menu {
    border: 0;
    border-radius: 0;
    top: 80%;
    left: 5px;
    display: block;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    background: #000;
    transition: 0.3s ease;
  }
  .navigation .dropdown-menu li:first-child {
    margin-top: 12px;
  }
  .navigation .dropdown-menu li:last-child {
    margin-bottom: 12px;
  }
  @media (max-width: 991px) {
    .navigation .dropdown-menu {
      display: none;
      opacity: 1;
      visibility: visible;
      text-align: center;
      transition: 0s;
    }
  }
  @media (max-width: 991px) {
    .navigation .dropdown-menu.show {
      display: block;
    }
    .navigation .dropdown-menu {
      float: left;
      width: 100%;
    }
  }
  .navigation .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s ease;
    padding: 8px 22px;
  }
  .navigation .dropdown-item:focus, .navigation .dropdown-item:hover {
    color: #fff;
    background: transparent;
  }

  @media (max-width: 991px) {
    .navigation {
      box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
      background: #fff;
    }
    .navigation .navbar-light .navbar-nav .nav-item .nav-link {
      color: #000;
    }
    .navigation .logo-white {
      display: none;
    }
    .navigation .logo-default {
      display: block;
    }
    .navigation .navbar-light .navbar-toggler {
      color: rgba(0, 0, 0, 0.5);
      border-color: rgba(0, 0, 0, 0.1);
    }
  }
  .sticky-header {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    background: #fff;
  }
  .sticky-header .navbar-light .navbar-nav .nav-item .nav-link {
    color: #000;
  }
  .sticky-header .logo-white {
    display: none;
  }
  .sticky-header .logo-default {
    display: block;
  }



  .c-item{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  };


  .c-image{
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
  }

  .banner-image {
    background-image: url('../img/mine.jpg');
    background-size: cover;


  }
  .me-3{
    color: black;
  }

  .me-2{
    margin-top: 10px;


  }

  .judul{
    height:100px;
    background: linear-gradient(to top, #df6f00, #ffa348);
  }


  .text-title{
    font-size: 3em;
    font-weight: bold;

  }

  .card-text{
    text-decoration: none;
  }


  .text-sub{
    font-size: 1.5em;
  }

  .text-primary{
    color :#ffae00 !important;
  }

  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover,
.card:focus {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card:hover .card-body {
    background-color: #f8f9fa; /* Ganti warna latar belakang saat hover pada card-body */
}

.card a {
    text-decoration: none; /* Menghilangkan garis bawah */
    color: inherit; /* Mewarisi warna teks default dari elemen induk */
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

hr{
    color:#ffa348 !important;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}


.popup-image{
  position: fixed;
  top: 0 ; left: 0;
  background: rgba(0,0,0,.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  opacity: 0; /* tambahkan ini agar elemen transparan sebelum animasi dimulai */
  transition: opacity 0.3s ease; /* tambahkan efek transisi */
}

.popup-image span{
  position: absolute;
  top: 0; right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;

}
.popup-image img{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 750px;
  object-fit: cover;

  z-index: 100;

}
.popup-image.active {
  transition: opacity 0.3s ease; /* tambahkan efek transisi */
  opacity: 1; /* ubah opacity menjadi 1 saat popup aktif */
}

@media(max-width: 768px){
  .popup-image img{
    width: 95%;

  }
}

.banner-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.banner-video h1 {
    text-align: center;
    color: #fff;
    z-index: 9999;
}

.icon-hover:hover {
    border-color: #3b71ca !important;
    background-color: white !important;
    color: #3b71ca !important;
  }

  .icon-hover:hover i {
    color: #3b71ca !important;
  }


  .image-utama{
    object-fit: fill;
  }

  .footer a{
    text-decoration: none !important;
  }

  @media only screen and (min-width: 768px) {
    /* Set ukuran gambar menjadi 120x120px untuk medium size screen (desktop) */
    .owl-carousel .item img {
        width: 240px;
        height: 240px;
    }
}

@media only screen and (max-width: 767px) {
    /* Set ukuran gambar menjadi 60x60px untuk small size screen (mobile) */
    .owl-carousel .item img {
        width: 60px;
        height: 60px;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px; /* Mengubah right menjadi left */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }

  .my-float {
    margin-top: 16px;
  }




.video-container {
    display: flex;
    overflow-x: auto; /* Membuat kontainer dapat di-scroll secara horizontal */
    width: 100%; /* Atur lebar sesuai kebutuhan Anda */
}

.video-item {
    margin-right: 10px; /* Jarak antar video */
}

/* Opsional: Membuat video item memiliki lebar tetap */
.video-item video {
    width: 300px; /* Sesuaikan dengan lebar video yang diinginkan */
}

video {
    width: 500px;
    height: 300px;
    object-fit: fill;
  }
