.logosContainer {
    position: relative;
    background: #f2f2f2;
    z-index: 3;
    margin: 60px 0 min(100px, 20vh);
}

.logosContainer > * {
    z-index: 3;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    padding: 50px 0;
    background: white;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.logos::before {
    position: absolute;
    top: 0;
    left: 0;
    width: min(30vw, 200px);
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    content: '';
    z-index: 10;
}

.logos::after {
    position: absolute;
    top: 0;
    right: 0;
    width: min(30vw, 200px);
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    content: '';
    z-index: 10;
}

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

.logosSlide {
    white-space: nowrap;
    display: inline-block;
    animation: 25s slide infinite linear;
}

.logosSlide img {
    height: 75px;
    max-width: 400px;
    margin: 0 90px;
}

.headerContainerLogos {
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 50px;
}

.headerContainerLogos h1 {
    font-size: 65px;
    font-family: 'Inter', sans-serif;
    margin: 0 40px;
}

#headerResearch {
    margin: auto;
    font-size: 23px;
    margin-bottom: 3px;
}

.highlighted br {
    display: default;
}

@media screen and (max-width: 540px) {
    .headerContainerLogos h1 {
        font-size: 55px;
        overflow: wrap;
    }
}

@media screen and (max-width: 440px) {
    .headerContainerLogos h1 {
        font-size: 50px;
        overflow: wrap;
    }
}

@media screen and (max-width: 420px) {
    .headerContainerLogos h1 {
        font-size: 50px;
        overflow: wrap;
    }
}