.footer-container {
    background-color: #0f5300;
    display: none;
}

footer {
    margin: 0 1rem;
    max-width: 1300px;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 1rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.8;
}

/* For Tablet design */

@media(min-width: 768px) {
    .footer-container {
        display: block;
        padding-top: 2rem;
    }
    
    footer .left-column {
        text-align: center;
    }
    
    .footer-title,
    .footer-sub-title,
    .footer-footer-notes {
        margin: 0;
        color: #fffa00;;
    }
    
    footer .right-column {
        display: flex;
    }
    
    .left-footer-links,
    .right-footer-links {
        width: 45%;
        margin: 0 auto;
    }
    
    .footer-links,
    .sub-footer-links {
        list-style: none;
    }
    
    .footer-links-item {
        padding: 0.25rem
    }
    
    .footer-link {
        text-decoration: none;
        color: white;
        font-weight: bold;
    }
    
    .sub-footer-links .footer-link {
        font-weight: lighter;
    }
    
    .copyright {
        text-align: center;
        padding: 1.5rem;
        background-color: #0b3801;
    }
    
    .copyright-title {
        color: white;
    }
}

/* For Desktop design */

@media(min-width: 992px) {
    footer {
        margin: 0 auto;
    }
    
    footer .column-container {
        display: flex;
    }
    
    footer .left-column {
        text-align: left;
        padding-left: 1rem;
        width: 45%;
        margin: 0 1rem;
    }
    
    footer .right-column {
        width: 45%;
        margin: 0 1rem;
    }
}