/* =====================================================
11. FOOTER
===================================================== */

footer {

    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0;
    transition: background-color .3s ease, color .3s ease;

}

.eas-footer {

    background:
        url('/assets/img/main/background-footer.png') top / cover no-repeat,
        #0c1224;

    color: #fff;

}

.eas-footer .row {

    align-items: flex-start !important;

}

.footer-title {

    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #eceff3;

}

[data-theme="dark"] .footer-title {

    color: #ffffff;

}

.footer-description {

    font-size: .9rem;
    color: #cfcfcf;
    line-height: 1.6;

}

.footer-links,
.footer-social {

    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-links li,
.footer-social li {

    margin-bottom: 8px;

}

.footer-links a,
.footer-social a {

    text-decoration: none;
    color: #d6d6d6;
    font-size: .9rem;
    transition: .3s;

}

.footer-links a:hover,
.footer-social a:hover {

    color: #ffffff;
    padding-left: 4px;

}

/* RESPONSIVO FOOTER */

@media (max-width:991px) {

    .eas-footer {
        text-align: center;
    }

}