@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
  
.ticker_wrap {
    width: 100%;
    overflow: hidden;
    height: 160px;
    background-color: transparent;
    box-sizing: content-box;
    position: absolute;
    bottom: 0;
}

.ticker_wrap .ticker {
    display: flex; 
    width: max-content; 
    white-space: nowrap;
    line-height: 200px;
    animation: ticker 60s linear infinite;
}

.ticker_group {
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

.ticker_wrap .ticker_item {
    display: inline-block;
    color: var(--white);
}

.ticker_title {
    color: var(--white);
    font-style: normal;
    font-family: 'classic_bronzeregular';
    font-weight: 400;
    font-size: 200px;
}

.ticker_wrap .ticker_icon {
    height: 150px;
    margin: 0 30px;
}

.ticker_wrap .ticker_icon svg {
    height: 100px;
}

@media (max-width: 550px) {
    .ticker_wrap {
        height: 139px;
    }

    .ticker_title {
        font-size: 130px;
    }

    .ticker_wrap .ticker_icon {
        height: 100px;
        padding-bottom: 70px;
        margin: 0px;
    }

    .ticker_wrap .ticker_icon svg {
        height: 60px;
    }
}