/* ===============================
   FOOTER
================================ */

.footer-desa {
    padding: 70px 0 25px;

    margin-top: 0;

    background:
        linear-gradient(
            135deg,
            #073a20,
            #0e5d32
        );

    color: white;
}

.footer-brand h4 {
    margin-bottom: 18px;

    font-family: 'Poppins', sans-serif;

    font-size: 25px;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    margin-bottom: 22px;

    font-size: 17px;
    font-weight: 700;
}

.footer-list,
.footer-menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

    color: rgba(255,255,255,.70);

    font-size: 14px;
    line-height: 1.6;
}

.footer-list i {
    margin-top: 3px;

    color: #70d99a;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,.70);

    font-size: 14px;

    transition: .3s;
}

.footer-menu a:hover {
    padding-left: 5px;

    color: white;
}

/* SOCIAL MEDIA */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.10);

    color: white;

    transition: .3s;
}

.footer-social a:hover {
    background: white;

    color: var(--primary);

    transform: translateY(-3px);
}

.footer-line {
    margin: 45px 0 22px;

    border-color:
        rgba(255,255,255,.15);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .footer-desa {
        padding: 55px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 7px;
    }

}