/** =========================
    Footer Base Styles
========================= */

#site-footer {
    background: #0F1011;
}

#site-footer .section-inner {
    border-top: 0.1px solid #ffffff29;
    padding-top: 15px;
    max-width: 1100px;
}

.footer-section-area {
    background: #111;
    padding: 50px 20px;
    color: #fff;
}

.footer-credits,
.to-the-top {
    color: #fff;
}

.footer-credits p {
    font-size: 16px;
    font-weight: 300;
}

.footer-copyright {
    text-transform: uppercase;
}

.footer-copyright a {
    text-decoration: underline !important;
}

.powered-by-wordpress {
    color: #ffffffa8;
}

.powered-by-wordpress:hover {
    text-decoration: underline;
}

/** =========================
    Footer Grid Layout
========================= */

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-block {
    font-size: 14px;
}

.footer-section-area li {
    list-style: none;
    margin-left: 0;
}

/** =========================
    Footer Headings & Menu
========================= */

.footer-section-area h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    margin: 0 auto 2rem;
    color: #fff;
    border-bottom: 1px solid #ffffff33;
}

.footer-section-area .widget_nav_menu ul li {
    margin-left: 5px;
}

.footer-section-area .widget_nav_menu ul li a {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.footer-section-area .widget_nav_menu ul li a:hover {
    color: #660033;
    text-decoration: none !important;
}

/** =========================
    Logo
========================= */

.footer-logo img {
    filter: brightness(0) invert(1);
    max-width: 101px !important;
    max-height: 157px !important;
    display: inline-block;
}

#site-footer .footer-logo p {
    font-size: 16px !important;
    line-height: normal !important;
}

/** =========================
    Newsletter Section
========================= */

.footer-menu-3 p {
    display: flex;
    border-bottom: 0.5px solid #fff;
}

.footer-menu-3 p input[type="email"] {
    background: transparent;
    border: none;
    padding: 15px 0;
}

.footer-menu-3 p button.newsletter-btn {
    background: transparent !important;
    padding: 0 10px;
}

.footer-menu-3 p button.newsletter-btn img {
    width: 38px;
}

.newsletter-dark input {
    color: #fff;
}

/** =========================
    Tablet Responsive
========================= */

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .powered-by-wordpress {
        display: block !important;
    }
}

/** =========================
    Mobile Responsive
========================= */

@media (max-width: 576px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #site-footer .section-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .powered-by-wordpress {
        display: block !important;
    }

    .footer-credits {
        text-align: center;
    }

    .footer-credits p {
        font-size: 14px;
        font-weight: 300;
        line-height: 30px;
    }

    a.to-the-top {
        margin-left: 0;
        margin-top: 10px;
    }
}