.tape-marquee{
    background: #EEEEEE;
    padding: 100px 0;
    overflow: hidden;
}

.tape-marquee__container{

}

.tape-marquee__head{
    text-align: center;
    margin-bottom: 55px;
}

.tape-marquee__title{
    font-family: 'Geist', sans-serif;
    max-width: 1100px;
    margin: 0 auto 20px;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
    text-align: center;
}

.tape-marquee__title span {
    color: #e11d2e;
}

.tape-marquee__accent {
    color: #1C1C1C;
}

.tape-marquee__accent span {
    color: #e11d2e;
}

.tape-marquee__sub{
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin: 0 auto;
    color: #575757;
}

.tape-marquee__row{
    position: relative;
    margin-top: 10px;
}


.marquee{
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 10px;
}

.marquee__group{
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    gap: 10px;
    min-width: 100%;
    animation: scroll-x 80s linear infinite;
    will-change: transform;
}


.marquee--reverse .marquee__group{
    animation-direction: reverse;
    animation-delay: -3s;
}


.marquee:hover .marquee__group{
    animation-play-state: paused;
}

.tm-card {
    flex: 0 0 auto;
    width: 400px;
    min-height: 300px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 12px 16px -4px transparent;
    transition: all 0.3s;
}

.tm-card__logo{
    margin-bottom: 20px;
}

.tm-card__logo img{
    max-width: 100%;
    max-height: 40px;
}

.tm-card__quote{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
}

.tm-card__person{
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.tm-card__person img {
    display: flex;
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.tm-card__name{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    color: #000000;
}

.tm-card__role{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #575757;
}

@keyframes scroll-x{
    from{ transform: translateX(0); }
    to{   transform: translateX(calc(-100% - 18px)); }
}

@media (prefers-reduced-motion: reduce){
    .marquee__group{ animation-play-state: paused; }
}

@media (max-width: 768px){
    .tape-marquee__title{
        font-size: 36px;
        line-height: 44px;
    }
}