
.other-industries-section {
    padding-top: 70px;
    padding-bottom: 90px;
}
.other-industries-section .cards-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 9px;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}

.other-industries-section .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F6F8FB;;
    border-radius: 8px;
    height: 75px;
    text-decoration: none;
    transition: all 0.2s;
}

.other-industries-section .card:hover:not(.active) {
    background: #eaecf1;
}

.other-industries-section .card img {
    width: 100%;
    max-height: 30px;
    max-width: 56px;
    object-fit: contain;
}

.other-industries-section .card h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    margin-top: 3px;
    letter-spacing: 0;
}

.other-industries-section .card.active {
    background: #EE3235;
}

.other-industries-section .card.active h5 {
    color: white;
}

.other-industries-section .card.active img {
    filter: invert(1);
}


.other-industries-section h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    letter-spacing: 0.02em;
    color: #000000;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .other-industries-section {
        display: none;
    }
}