.banner.inner .page-title h2::after {
    content: none;
}

.logo-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Ensure 4 columns */
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.logo-container img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 50px; */
}

.logo img {
    width: 165px;
    height: auto;
    margin: 0 10px;
    /* Adjust spacing between logos */
}

.association-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 30px;
}

.association-logo img {
    width: 125px;
    height: auto;
    margin: 0 10px;
    /* Adjust spacing if needed */
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns for larger tablets */
    }
}

@media (max-width: 768px) {
    .logo-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for smaller tablets */
    }
}

@media (max-width: 576px) {
    .logo-container {
        grid-template-columns: 1fr;
        /* 1 column for mobile devices */
    }
}


.logo-link{
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
}

#header{
    display: flex;
    align-items: center;
}