.footer {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

@media(min-width: 690px) {
    .footer {
        max-width: 690px
    }
}

.footer .content {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem;
}

.footer .content p {
    margin-bottom: 1.3rem;
}

.footer .content a {
    text-decoration: none;
    color: #fefefe;
}

.footer .content a:hover {
    cursor: pointer;
    transition: filter 0.3s ease 0.3s;
}

@media (max-width: 767px) {
    .footer .content {
        display: flex;
        flex-direction: column;
    }

    .footer {
        position: unset;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .footer .content,
    .footer {
        font-size: 16px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        position: unset;
    }
}

.m-bottom-footer {
    margin-bottom: 0px;
}

@media(max-width: 690px) {
    .m-bottom-footer {
        margin-bottom: 32px;
    }
}

.title-footer {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

.subtitle-footer {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;

}

/* DROPDOWN MENU NAVBAR */
.dropdown-menu {
    float: left;
    overflow: hidden;
}

.dropdown-menu .dropbtn {
    padding-top: 2px;
    padding-bottom: 2px;
}

.dropdown-menu:hover .dropbtn {
    text-decoration: underline;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-menu:hover .dropdown-content {
    display: block;
}


/* Accordion Menu Mobile */
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.accordion-menu {
    width: 100%;
    margin: 1rem auto;
}

.accordion-menu li.active .dropdownHeader {
    color: black;
    background: #fff;
}

.accordion-menu li.active .dropdownHeader .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownHeader {
    border-bottom: 0;
}

w-fit text-22 leading-24 text-black font-lightbold .dropdownHeader {
    width: fit-content;
    line-height: 24;
    font-size: 22;
    color: black;
    cursor: pointer;
    display: block;
    position: relative;
    transition: all 0.4s ease-out;
    display: flex;
    align-items: center;
}

.dropdownHeader .fa-chevron-down {
    position: absolute;
    right: 12px;

}

.submenuItems {
    display: none;
    transition: 3s ease-in-out;
    animation: anime 0.4s ease-in;
    padding-top: 20px;
    padding-bottom: 20px;
}

@keyframes anime {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    98% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.submenuItems li {
    border-bottom: 1px solid #fff;
}

.submenuItems a {
    display: block;
    padding: 12px 12px 12px 12px;
    transition: all 1s ease-out;
}

.submenuItems a:hover {
    background-color: #fff;
    color: #000
}

.footer-web {
    visibility: visible;
  }
  
  .footer-mobile {
    display: none;
  }
  
  @media screen and (max-width: 767px) {
  
    /* Sembunyikan tombol prev dan next pada tampilan mobile */
    .footer-web {
      display: none;
    }
  
    .footer-mobile {
      display: contents;
    }
  }