

/* 3 Footer awal */
footer {
    .sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgb(255, 255, 255);
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000;
    }


    .sticky-footer a:hover {
        font-weight: bold;
    }
    .sticky-icon {
        height: 45px;

    }


    .sticky-footer a {
        display: flex; /* Gunakan flexbox */
        flex-direction: column; /* Atur elemen anak secara kolom */
        align-items: center; /* Pusatkan secara horizontal */
        color: #333; /* Warna teks */
        text-decoration: none; /* Hapus garis bawah */
    }

    .icon-label {
        font-size: 12px; /* Ukuran font */
        margin-top: 4px; /* Jarak antara ikon dan label */
    }

    /* Media query untuk layar lebih kecil dari iPad (768px) */
    @media (max-width: 767px) {
        .sticky-icon {
            height: 30px;
        }

        .icon-label {
            font-size: 10px; /* Ukuran font lebih kecil */
        }
    }

}

/* PENUTUP NAVBAR FOOTER DAN HEADER */

