        .smigacz {
            overflow: hidden;
            display: flex;
            white-space: nowrap;
            border-radius: 20px;
            box-shadow: #0000009c 0 4px 13px;
            border:solid 5px #938c8c;
            background: #fff;
        }

        .marka {
            flex: 0 0 150px;
            /* Każdy div 'marka' ma stałą szerokość 300px */
            width: 150px;
            /*            height: 100px;*/
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: white;
            background: #ccc;
            /* Tło dla lepszej widoczności */
            box-shadow: inset #000 10px 10px;
            margin: -1px;
            border: none;
        }

        .marka img {
            width: 150px !important;
            height: 150px !important;
            border: none;
        }

        @media (max-width:768px) {
            .marka {
                flex: 0 0 80px;
                /* Każdy div 'marka' ma stałą szerokość 300px */
                width: 80px;
            }

            .marka img {
                width: 80px !important;
                height: 80px !important;
                margin: -1px
            }

        }
