/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:var(--kgv-green-dark);

    color:#ffffff;

    padding:60px 0 25px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:40px;
}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

    font-size:26px;
}

.footer-column h4{

    color:#ffffff;

    margin-bottom:15px;

    font-size:22px;
}

.footer-column p{

    margin-bottom:12px;

    color:#f0f0f0;

    line-height:1.7;
}


/* ==========================
   LINKS
========================== */

.footer-column a{

    display:inline-block;

    color:#d4af37;          /* Gold */

    text-decoration:none;

    margin-bottom:10px;

    transition:.25s;
}

.footer-column a:hover{

    color:#ffffff;

    padding-left:6px;
}


/* ==========================
   TRENNLINIE
========================== */

.footer-bottom{

    margin-top:35px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.25);

    text-align:center;

    color:#e6e6e6;

    font-size:15px;
}
/* ==========================================
   Footer Links überschreiben
========================================== */

footer a,
footer a:visited{

    color:#d4af37 !important;

    text-decoration:none;
}

footer a:hover{

    color:#ffffff !important;

    text-decoration:underline;
}

footer a:active{

    color:#ffe08a !important;
}