::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    margin-top: 56px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
@media screen and (min-width: 992px) {
    .dropdown-menu {
        width: 50vw;
        position: absolute;
    left: 50%;
    transform: translateX(-30%);
    top: 100%;
    }
}
.dropdown-menu a .d-flex{
    transition: all 0.4s;
}
.dropdown-menu .col-sm-6:nth-child(1) a:hover .d-flex{
    background-color: var(--bs-warning-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(2) a:hover .d-flex{
    background-color: var(--bs-warning-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(3) a:hover .d-flex{
    background-color: var(--bs-warning-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(4) a:hover .d-flex{
    background-color: var(--bs-warning-bg-subtle);
}
.error {
    padding-top: 50px;
    color: red;
    text-align: center;
}
.error button {
    margin-top: 30px;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Agar video berada di belakang konten */
  }