.footer-box {
    background-color: #8c012c;
}

.footer-grid {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-left: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.footer-logo-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 24px;
}

.footer-logo-container img {
    max-width: 100%;
    height: auto;
    width: 15vh;
    min-width: 6vh;
}
.footer-logo {
    width: auto; /* Adjust width as needed */
    max-height: 150px; /* Limit maximum height */
    border-radius: 15px;
}


@media (max-width: 500px) {

    .footer-grid {
        display: flex;
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* Adjusted to span half (6 columns -> 3 columns) */
        justify-content: center; /* Evenly distribute items */
    }

    .footer-logo-container {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        
    }

    .footer-logo-container img {
        width: 300px;
        height: auto; 
        max-height: 90px;
    }

    .footer-logo {
        width: auto;
        max-height: auto;
        border-radius: 15px;
    }

}
