#hero-section-template-1 .hero {
    max-width: 1200px;
    margin: auto;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

#hero-section-template-1 .hero pre {
    border-left: 4px solid #ffc700;
    padding: 0.5rem 0 0.5rem 0.75rem;
    color: #fff; 
    font-size: 1.75rem;       
    text-wrap: wrap;
}

#hero-section-template-1 .emphasize {
    color: #ffc700; 
    font-size: 2rem;       
    font-weight: bold;
}

#hero-section-template-1 .slogan-line {
    margin-left: -150%;
}

#hero-section-template-1 .slogan-line:nth-of-type(1) {
    animation: 0.75s ease-out 0.75s forwards slide;
}

#hero-section-template-1 .slogan-line:nth-child(3) {
    animation: 0.75s ease-out 1.5s forwards slide;
}

#hero-section-template-1 .emphasize {
    opacity: 0;
    animation: 1.5s ease-out forwards reveal;
}

@media(min-width: 500px){
    #hero-section-template-1 .hero pre {
        font-size: 5vw;
    }

    #hero-section-template-1 .emphasize {
        font-size: 5.5vw;
    }
}

@media(min-width: 1000px) {
    #hero-section-template-1 .hero pre {
        font-size: 50px;
    }

    #hero-section-template-1 .emphasize {
        font-size: 55px;
    }
}

@keyframes reveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide {
    from {
        margin-left: -150%;
    }

    to {
        margin-left: 0;
    }
}