.logo-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    align-items: center;
}

.logo-grid-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.logo-grid-item:hover {
    transform: translateY(-3px);
}

.logo-grid-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991.98px) {
    .logo-grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .logo-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .logo-grid-item {
        height: 90px;
    }
}