/* Font Family */
.font-primary {
    font-family: 'Poppins', sans-serif;
    }
    .font-anton {
    font-family: 'Anton', sans-serif;
    }
    .font-antonio {
    font-family: 'Antonio', sans-serif;
    }

    /* Rotation */
    .rotate-5 {
    transform: rotate(5deg);
    }
    .rotate-2 {
    transform: rotate(2deg);
    }
    .rotate-min {
    transform: rotate(-2deg);
    }

    /* Custom Colors */
    .bg-custom{
        background-color: #f8f5eb;
    }
    .bg-primary-custom {
    background-color: #128f8b;
    }
    .bg-nav-left-custom {
    background-color: #ff3131;
    }
    .bg-nav-bg-custom {
    background-color: #152039;
    }
    .bg-transparent-color-custom {
    background-color: rgba(255, 255, 255, 0);
    }
    .bg-white-transparent-custom {
    background-color: rgba(255, 255, 255, 0.5);
    }
    .bg-white-transparent-3-custom {
    background-color: rgba(255, 255, 255, 0.3);
    }
    .bg-primary-transparent-custom {
    background-color: rgba(18, 143, 139, 0.7);
    }
    .bg-yellow-cstm-custom {
    background-color: #ff9b25;
    }
    .text-yellow-cstm-custom {
    -webkit-text-fill-color: #febd02;
    }
    .bg-yellow-white-custom {
    background-color: #febd02;
    }
    .yellow-white-gradient {
    background: linear-gradient(to bottom,  #ff9b25, #febd02);
    }
    .bg-primary-grad-custom {
    background: linear-gradient(to right, #00cfc9, #157c7c);
    }
    /* rounded  default*/
    .rounded-card {
    border-radius: 30px;
    
    }
    
    /* navbar */
    .navbar-brand.d-lg-none {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Pastikan ketinggian sesuai dengan navbar */
    }
    .navbar-brand.d-lg-none img {
    max-height: 100px;
    padding-top: 0;
    }
    .navbar-gradient {
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)); /* Gradasi dari putih ke transparan */
    }
    @media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -95px;
        z-index: 1;
    }
    }
    .nav-link:hover {
        background-color: grey !important;
        transition: background-color 0.3s ease;
    }
    #navbar {
    transition: background-color 0.3s ease;
    }

    #navbar.scrolled {
        background-color: white !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    /* Untuk scroll pada navigasi collapse */
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    /* end navbar */

    /* footer */
    .container-footer {
        max-width: 1100px;
        /* margin: 0 40px 35px; */
        margin-left: 50px;
        margin-right: 50px;
        padding: 20px 10px;
        margin-bottom: 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .image-footer {
        width: 100%;

    }

    @media (min-width: 1200px) {
        .alamat {
            width: 300px;
            height: auto;
        }
    }
    /* Untuk layar medium */
    @media (min-width: 768px) and (max-width: 1199px) {
        .alamat {
            width: 250px;
            height: auto;
        }
    }
    /* Untuk layar kecil */
    @media (max-width: 767px) {
        .alamat {
            width: 220px;
            height: auto;
        }
    }
    /* end footer */