.marquee-wrapper {
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0px 4px;
}

.marquee-content {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 20s linear infinite;
}

.marquee-wrapper p {
    font-weight: 100;
    color: #959595;
    font-family: serif;
}

.marquee:hover {
    animation-play-state: paused
}

/* Make it move */

@keyframes marquee {
    0% {
        text-indent: 27.5em
    }

    100% {
        text-indent: -50em
    }
}

/* Make it pretty */

.marquee-icon {
    padding-left: 1.5em;
    position: relative;
    font: 16px 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
    background-repeat: no-repeat;
}

/* ::before was :before before ::before was ::before - kthx */

.marquee-icon:before, .marquee-icon::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: -1em;
    left: -1em;
    width: .5em;
    height: .5em;
}

.marquee-icon:after, .marquee-icon::after {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
}