.marquee {
    margin-bottom: 0px;
    margin-right: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    word-spacing: 0px;
    white-space: nowrap;
    width: 100%;
    position: relative;
    text-transform: capitalize;
}


.marquee::before {
    transform: rotate(-1deg);
    z-index: -1;
}

.marquee::after {
    transform: rotate(-2deg);
    z-index: -2;
}

.marquee .inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    background-color: #191f48;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.marquee .text {
    width: 100%;
    animation: animate 40s linear infinite;
    animation-delay: 0s;
    padding-right: 20px;
}

.marquee .text:nth-child(2) {
    width: 200%;
    animation: animate2 40s linear infinite;
    animation-delay: -20s;
}

.marquee .text:nth-child(1) span:nth-child(even) {
    color: #7c01c7 !important;
    text-shadow: 1px 0 1px rgba(255, 255, 255, 0.9), 0 1px 1px rgba(255, 255, 255, 0.9), -1px 0 1px rgba(255, 255, 255, 0.9), 0 -1px 1px rgba(255, 255, 255, 0.9);
}

.marquee .text:nth-child(2) span:nth-child(odd) {
    color: #7c01c7 !important;
    text-shadow: 1px 0 1px rgba(255, 255, 255, 0.9), 0 1px 1px rgba(255, 255, 255, 0.9), -1px 0 1px rgba(255, 255, 255, 0.9), 0 -1px 1px rgba(255, 255, 255, 0.9);
}

.marquee:hover .text {
    animation-play-state: paused;
}

@keyframes animate {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes animate2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}