.company {
    width: 1080px;
    margin: 0 auto;
    overflow: hidden;
}

.slideContainer {
    display: flex;
    margin: 0 auto;
    height: 200px;
    gap: 10px;
    box-sizing: border-box;
}

.img-column {
    height: 200px;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    box-sizing: border-box;

    .item {
        display: flex;
        padding: 10px;
        width: 180px;
        height: 100px;
        box-sizing: border-box;

        img {
            width: 160px;
        }
    }
}