.section-dual-media {
    min-height: 600px;
    padding-top: 6em;
    background: #eee;
}


/*********************** Dual Media SVG *********************/

.section-dual-media .dual-media-svg {
    display: block;
    font: 9em 'Raleway';
    width: 80%;
    height: 75px;
    margin: 0 auto;
}

.section-dual-media .text-copy {
    fill: none;
    stroke: lavender;
    stroke-dasharray: 6% 29%;
    stroke-width: 3px;
    stroke-dashoffset: 0%;
    letter-spacing: double;
    animation: stroke-offset 5.5s infinite linear;
}

.section-dual-media .text-copy:nth-child(1) {
    stroke: #ff6171;
    animation-delay: -1;
}

.section-dual-media .text-copy:nth-child(2) {
    stroke: #a3a3a3;
    animation-delay: -2s;
}

.section-dual-media .text-copy:nth-child(3) {
    stroke: #bf3542;
    animation-delay: -3s;
}

.section-dual-media .text-copy:nth-child(4) {
    stroke: #d75576;
    animation-delay: -4s;
}

.section-dual-media .text-copy:nth-child(5) {
    stroke: #7c7b7b;
    animation-delay: -5s;
}

@keyframes stroke-offset {
    100% {
        stroke-dashoffset: -35%;
    }
}