/* ==========================================================================
   AAPOLIX FOOTER
========================================================================== */
.apx-footer{

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(at top left,#950EDB55 0%,transparent 40%),
        radial-gradient(at bottom right,#C084FC44 0%,transparent 45%),
        radial-gradient(at top right,#FFFFFF0D 0%,transparent 30%),
        linear-gradient(
            240deg,
            #1F1B2E,
            #2E1A47,
            #4B1D74,
            #950EDB
        );

    border-top:1px solid rgba(255,255,255,.08);
    margin-top:var(--apx-10);
    color:#FFFFFF;
}
.apx-footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.06),
            transparent 25%
        );

    pointer-events:none;
}
.apx-footer{

    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 -20px 60px rgba(149,14,219,.08);
}

/* =========================
   FOOTER INNER WRAPPER
========================= */
.apx-footer-inner {
    max-width: var(--apx-container);
    margin: 0 auto;
    padding: 60px 16px 30px;
}

/* =========================
   FOOTER GRID
========================= */
.apx-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Tablet */
@media (min-width: 768px) {
    .apx-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Desktop */
@media (min-width: 992px) {
    .apx-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =========================
   FOOTER WIDGET BOX
========================= */
.apx-footer-widget {
    font-size: var(--apx-text-sm);
    color: rgba(255,255,255,0.75);
}

/* Titles */
.apx-footer-widget h4,
.apx-footer-widget .widget-title {
    font-size: var(--apx-text-lg);
    font-weight: 600;
    margin-bottom: 12px;
    color:#FFFFFF;
}

/* =========================
   WIDGET LISTS
========================= */
.apx-footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apx-footer-widget ul li {
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.apx-footer-widget ul li:last-child {
    border-bottom: none;
}

.apx-footer-widget ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: color .2s ease;
}

.apx-footer-widget ul li a:hover {
    color:#FFFFFF;
}

/* =========================
   FOOTER BOTTOM
========================= */
.apx-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: var(--apx-text-sm);
    color: rgba(255,255,255,0.6);
}

/* Desktop */
@media (min-width: 768px) {
    .apx-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* =========================
   FOOTER MENU
========================= */
.apx-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.apx-footer-menu a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: var(--apx-text-sm);
    transition: color .2s ease;
}

.apx-footer-menu a:hover {
    color:#FFFFFF;
}

/* =========================
   COPYRIGHT
========================= */
.apx-copyright {
    line-height: 1.5;
}