/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {

}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {

}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {

}

/* small mobile :320px. */
@media (max-width: 767px) {

}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px;
    }
}

.header-bottom.header-sticky {
    background: linear-gradient(90deg, #0047AB 0%, #003087 100%); /* Gradien biru tua */
}

.header-bottom.header-sticky .main-menu li a {
    color: white; /* Warna teks menu menjadi putih */
}

.header-bottom.header-sticky .sticky-logo a {
    color: white; /* Warna teks logo menjadi putih */
}

.footer-bottom-area {
    background: linear-gradient(90deg, #0047AB 0%, #003087 100%); /* Gradien biru tua */
    color: white; /* Warna teks logo menjadi putih */
}

.footer-area {
    background: linear-gradient(90deg, #0047AB 0%, #003087 100%); /* Gradien biru tua */
    color: white; /* Warna teks logo menjadi putih */
}
