@charset "ISO-8859-1";


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
    font-size: 50px;
}


.carousel-control-prev,
.carousel-control-next {
    color: black;
    font-size: 50px;

}

*


/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logos container styling */
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* Ensure logos don't get cut off on the sides */
.logos::before,
.logos::after {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

/* Styling for individual logo images */
.logos-slide {
    display: inline-flex;
    animation: scrollLogos 70s linear infinite;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide img {
    height: 60px;
    margin: 0 30px; /* Adjust space between logos */
}

/* Define the scrolling animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%); /* Move the logos by the full width */
    }
}
