.mobile-contact-banner {
    width: 100%;
    font-size: 11px;
    line-height: 2;
    background: #323232;
    border-top: 1px solid #434343;
    overflow: hidden;
    text-align: center;
}
.mobile-contact-banner .container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 15px;
}
.slider-container {
   position: relative;
   overflow: hidden;
   height: auto;
   min-height: 40px;
}
.slider-track {
   animation: slide 15s linear infinite;
   display: flex;
   flex-direction: column;
}
.slide {
   height: auto;
   min-height: 40px;
   opacity: 0;
   position: absolute;
   width: 100%;
   animation: fadeInOut 15s infinite;
   white-space: normal;
   overflow: visible;
   text-overflow: clip;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 5px 0;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

.slide p {
   max-width: 100%;
   margin: 0;
   line-height: 1.4;
}

.mobile-contact-banner i {
   color: white;
   margin: 0 4px;
}

.mobile-contact-banner {
   color: white;
   text-decoration: none;
}

.mobile-contact-banner strong {
   color: var(--primary-contrast-color);
}

@keyframes fadeInOut {
   0%, 100% {
       opacity: 0;
       transform: translateY(40px);
   }
   3%, 30% {
       opacity: 1;
       transform: translateY(0);
   }
   33%, 100% {
       opacity: 0;
       transform: translateY(-40px);
   }
}

.slider-container:hover .slider-track {
   animation-play-state: paused;
}

@media (min-width: 992px) {
   .mobile-contact-banner {
       display: none;
   }
}

@media (max-width: 360px) {
   .mobile-contact-banner {
       font-size: 12px;
   }
   .container {
       padding: 0 8px;
   }
}