
#sections_company {
    height: 85vh;
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 1rem;

}

.cardCompany{
    /*background: red;*/
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: #FFFFFF;

}

.cardCompany a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imgCompany{
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.infoGroup{
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    color: var(--color_icons);
    height: 50%;
}

.cardCompany:hover .infoGroup{
    color: var(--color_icons_hover)
}

@media (max-width: 991px) {
    #sections_company{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    #sections_company{
        grid-template-columns: repeat(2, 1fr);
        height: 100%;
    }
}

@media (max-width: 575px) {
    #sections_company{
        grid-template-columns: repeat(1, 1fr);
        height: 100%;
    }
}
