@keyframes brandFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.brand-container {
    /*border-bottom: 1px solid black;*/
    width: 100%;
}

.brand-wheel {
    flex-direction: row;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    height: 100px;
    --animationspeed: 10s;
    --animationdelay: calc(var(--animationspeed) / 2);
}

.brand-wheel::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 5%;
    z-index: 2;
    pointer-events: none;
}

.brand-wheel::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 5%;
    z-index: 2;
    pointer-events: none;
    right: 0;
}

.brand-slide {
    flex-shrink: 0;
    position: absolute;
    animation-name: brandSlidelogo;
    animation-duration: var(--animationspeed);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    min-width: 100%;
    display: flex;
    justify-content: space-around;
}

.brand-slide.delay {
    transform: translateX(100%);
    animation-name: brandSlidelogo2;
}

.brand-div {
    display: inline-flex;
    align-self: center;
    animation: brandFadeIn 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    padding: 0 20px 0 20px;
}

.brand-div img {
    width: 150px;
    filter: grayscale(10%) contrast(90%);
    cursor: pointer;
}

.brand-div img:hover {
    filter: grayscale(0%) contrast(100%);
}

@keyframes brandSlidelogo {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes brandSlidelogo2 {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}