/* Animation CSS */

.moving-text-section {
    background: #000;
    padding: 13px 0;
    overflow: hidden;
    position: relative;
}

.moving-text-container {
    display: flex;
    width: max-content;
    animation: scrollRightToLeft 40s linear infinite;
    align-items: center;
}

.moving-text {
    color: #fff;
    font-family: 'PT Sans Caption', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    animation-delay: 0s !important;
}
.text-item{
    padding: 0 25px;
}
.card{
    --bs-card-border-color: none !important;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.moving-text-container:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .moving-text {
        font-size: 1rem;
    }
    .icon-minus {
        font-size: 1.2rem;
        margin: 0 15px;
    }
}
