/* ==========================================
   FOOTER
========================================== */
.footer{
    background: #0B6B3A;
    color: #fff;
    margin-top: 60px;
    padding-top: 50px;
}

.footer-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px 40px;
}

.footer-col h3{
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col a{
    font-size: 14px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col a:hover{
    color: #fff;
}

.social{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social a{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    color: #fff;
    transition: .3s;
}

.social a:hover{
    background: #fff;
    color: #0B6B3A;
}

/* ==========================================
   FOOTER BOTTOM
========================================== */
.footer-bottom{
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: 13px;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 992px){
    .footer-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .footer-wrapper{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social{
        justify-content: center;
    }
}