.ticker-tape-desktop {
    display: none;
}

.ticker-tape-mobile {
    display: block;
}

.ticker-tape h1 {
    font-family: 'Adieu-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 100px;
    line-height: 90px;
    /* or 90% */
    text-transform: uppercase;
    color: #D8D8D8;
}

.ticker-item {
    padding-left: 25px;
    padding-right: 25px;
}

@media only screen and (min-width: 992px) {
    .ticker-tape-desktop {
        display: block;
    }
    .ticker-tape-mobile {
        display: none;
    }
    .ticker-tape h1 {
        font-family: 'Adieu-Regular';
        font-style: normal;
        font-weight: normal;
        font-size: 180px;
        line-height: 180px;
        /* or 100% */
        text-transform: uppercase;
        color: #D8D8D8;
    }
    .ticker-item {
        padding-left: 50px;
        padding-right: 50px;
    }
}