body {
    margin: 0;
    padding: 0;
    font-family: 'FontAwesome';
}

.ticker-tapeLMA {
    background-color: black;
    overflow: hidden;
    white-space: nowrap;
}

.services-listLMA {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    animation: marquee linear infinite;
}

.services-listLMA li {
    display: inline-block;
    margin-right: 50px; /* Adjust the spacing between services */
    font-size: 21px; /* Adjust the font size to fit your design */
    color: gold; /* Initial gold color for the first service */
}

.services-listLMA li:nth-child(2n) {
    color: white; /* Blue color for even-numbered services */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}