.theme-title-h2 {
    position: relative;
    text-transform: uppercase;
    padding-bottom: 22px;
}


.fs-style-justify {
    text-align: justify;
}

.scroll-top {
    bottom: 25px;
    width: 35px;
    height: 35px;
}

/* Tombol Contact Us */
.contact-us-button {
    position: fixed;
    /* tetap di layar saat scroll */
    bottom: 20px;
    /* jarak dari bawah layar */
    right: 55px;
    /* jarak dari kanan layar */
    background-color: #007BFF;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.2s;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-us-button:hover {
    background-color: #007BFF;
        color: #fff;
    transform: scale(1.05);
}

/* Ikon chat sederhana */
.contact-us-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* nav menu */
#mega-menu-holder>ul>li>a {
    padding: 27px 25px 27px 25px;
}

#mega-menu-holder li .sub-toggle {
    right: 10px;
}


.center-logo{
    justify-content: center;
        align-items: center;
        display: flex;
}

.image-logo {
    width: 49px;
}


@media (max-width: 991px) {
    #mega-menu-holder>ul>li>a {
            padding: 0 15px !important;
        }
    .center-logo {
        display: block;
    }

        .image-logo {
            position: absolute;
            top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
        }
}