footer {
    background-color: #000;
    padding-top: 50px;
}

footer .supporting-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between logos */
    padding: 20px; /* Optional padding around the container */
}

footer h1, footer h2, footer h3, footer h4 {
    color: #fff;
}

footer .supporting-logos .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 30%; /* Basis of 30% to allow a minimum of 3 logos per row */
    max-width: calc(100% / 6 - 20px); /* Maximum width to allow a maximum of 6 logos per row, considering gap */
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    height: 125px;
}

footer .supporting-logos .logo img {
    width: 100%; /* Make logos responsive */
    height: auto;
}

@media (max-width: 768px) {
    footer .supporting-logos .logo {
        flex: 1 1 45%; /* Adjust the basis to fit 2-3 logos per row on smaller screens */
        max-width: calc(100% / 3 - 20px);
    }
}
@media (max-width: 480px) {
    footer .supporting-logos .logo {
        flex: 1 1 100%; /* Full width for very small screens */
        max-width: 100%;
    }
}

/* program tabs */
.program_ap .nav-tabs li:not(.active) {
    background-color: rgba(255,255,255,0.8);
}