/* ========================================
   CARXIS TOOLKIT
   Footer Module v1.0
======================================== */

.cx-footer{
    background:#111827;
    color:#ffffff;
    margin-top:60px;
}

.cx-footer-container{
    max-width:1200px;
    margin:0 auto;
    padding:60px 20px;
}

.cx-footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.cx-footer-col{
    min-width:0;
}

.cx-footer-title{
    font-size:18px;
    font-weight:700;
    margin:0 0 18px;
    color:#ffffff;
}

.cx-footer-desc{
    margin:0;
    line-height:1.8;
    color:#cbd5e1;
    font-size:15px;
}

.cx-footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.cx-footer-links li{
    margin-bottom:12px;
}

.cx-footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:color .25s ease;
}

.cx-footer-links a:hover{
    color:#ffffff;
}