* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/* body {
    font-family: Arial, sans-serif;
    background: #f6f8fc
} */

.affiliated-section {
    padding-bottom: 80px;
}

/* .container {
    max-width: 1280px;
    margin: auto
} */

/* h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0F2D5C
} */

/* .divider {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 45px
}

.divider span {
    height: 4px;
    width: 36px;
    background: #d9dde7;
    border-radius: 20px
}

.divider .active {
    width: 60px;
    background: #0f4bd8
} */

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.logo-card {
    /* height: 170px; */
    height: 100%;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .3s
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12)
}

.logo-card img {
    max-width: 100%;
    /* max-height: 80px; */
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .3s
}

.logo-card:hover img {
    filter: none;
    transform: scale(1.05)
}

@media(max-width:992px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:576px) {
    .logo-grid {
        grid-template-columns: 1fr
    }

    .logo-card {
        height: 140px
    }
}