.cover-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 230px;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


.cover-image-gallery {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 230px;
}




.batas-tulisan {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Jumlah baris yang diinginkan */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 320px - 480px */
@media (min-width: 320px) and (max-width: 1024px) {

    /* CSS khusus untuk rentang ini */
    .cover-image {
        height: 150px;
    }

    .cover-image-gallery {
        height: 200px;
    }

    h5 {
        font-size: 12px;
    }
}


.blur {
    box-shadow: inset 0 0 2px #fefefed1;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    background-color: rgba(255,255,255,.5)!important;
}


.share-baru-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
}

.share-baru-header img {
    margin-left: 5px;
    margin-right: 5px;
    max-width: 30px;
    width: 100%;
}


/* CSS untuk overlay dan judul */
.itemgaleri {
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.itemgaleri:hover {
    transform: scale(1.05); /* Efek scaling saat mouse diarahkan */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Efek bayangan saat mouse diarahkan */
}


.itemgaleri .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Warna latar belakang overlay (RGBA) */
    display: flex;
    align-items: center;
    color: white; /* Warna teks judul */
}

.itemgaleri:hover .overlay {
    opacity: 1;
}

.itemgaleri .overlay h2 {
    font-size: 13px; /* Ukuran font judul */
    margin: 0;
    padding: 10px;
    text-align: center; /* Teks berada di tengah */
}



.video::before {
    content: '';
    width: 75px;
    height: 75px;
    position: absolute;
    left: 50%;
    margin-left: -37.5px;
    top: 30%;
    background-image: url(./../images/youtube-play-button.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .8;
    transition: transform .25s cubic-bezier(1,0,0,1);
    z-index: 1;
}


.boundary {
    content: "";
    background-image: url(./../images/motif.png);
    height: 30px;
    width: 190px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    margin: 0 auto;
}

#result {
    margin: 0;
    position: absolute;
    border: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 5px;
    padding-left: 25px;
    position: fixed;
    color: #fff;
    background-color: rgba(160, 26, 26, 0.94);
    width: 100%;
    text-align: left;
    z-index: 10000;
    font-size: 13px;
    display: none;
}

@media (max-width: 767px) {
    .page-content {
        margin-top: 90px;
        margin-bottom: 10px;
    }
    
}

@media (min-width: 768px) {
    .page-content {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}

@media (min-width: 992px) {
    .page-content {
        margin-top: 0px;
        margin-bottom: 10px;
    }
}


/* Password style  */
.password-input-container {
    position: relative;
  }
  
  .password-input-container input[type="password"] {
    padding-right: 35px; /* Untuk memberi ruang untuk ikon */
  }
  
  .show-password-btn {
    position: absolute;
    right: 10px; /* Atur posisi tombol "Show Password" di sisi kanan */
    top: 50%; /* Atur posisi tombol secara vertikal di tengah */
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  .show-password-btn i {
    font-size: 1rem;
  }



.navigation {
    background-image: url(./../images/overlay-4-dark-yellow.png);
    background-size: auto 45px;
    background-repeat: repeat-x;
}

.navigation.nav-sticky .navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: opacity .35s cubic-bezier(1,0,0,1);
}

.navigation.nav-sticky .navbar-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    background-color: rgba(255,204,41,.5)!important;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.16)!important;
}

.navigation.nav-sticky .navbar-overlay::after {
    content: "";
    background-image: url(./../images/overlay-4-dark.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: left top;
    background-size: auto 39px;
    background-repeat: repeat-x;
}




.image-container {
    width: 100%; /* Lebar kontainer gambar */
    height: 300px; /* Tinggi yang diinginkan */
    overflow: hidden; /* Untuk memastikan gambar tidak melewati kontainer */
    position: relative; /* Diperlukan jika Anda ingin menambahkan overlay teks atau elemen lain di atas gambar */
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ini akan memastikan gambar mengisi kontainer tanpa merusak aspek rasio */
  }
  

  .landing-footer{
    padding: 0;
    position: relative;
    background-image: url(./../images/overlay-2.png);
    background-size: auto 360px;
    background-repeat: no-repeat;
    background-position: top right;
  }

.footer-bottom {
    color: #fff;
    background-color: #082032;
    padding: 1rem 0;
    position: relative;
}



.landing-footer .footer-bottom::after, .landing-footer .footer-bottom::before {
    content: "";
    position: absolute;
    background-image: url(./../images/overlay-4.png);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    transform: scaleY(-1);
}

.landing-footer .footer-bottom::after {
    transform: scaleX(-1) scaleY(-1);
    opacity: 1;
}

.landing-footer  .footer-bottom::after, .landing-footer  .footer-bottom::before {
    content: "";
    position: absolute;
    background-image: url(./../images/overlay-4.png);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}



