.marquee {
    overflow: hidden;
    white-space: nowrap;
    margin: 22px 0;
}

.track {
    display: inline-flex;
    animation: scrollLeft 46s linear infinite;
}

.marquee-right .track {
    animation: scrollRight 46s linear infinite;
}

.tech-slider:hover .track {
    animation-play-state: paused;
}

.tech-slider:hover .track {
    animation-play-state: paused;
}

.track span {
    line-height: normal;
    font-weight: 700;
    position: relative;
    flex-shrink: 0;
    text-transform: none;
    letter-spacing: -.028em;
}

.marquee-left .track span {
    font-size: 68px;
    color: #ffffff;
}

.marquee-right .track span {
    font-size: 45px;
    color: #8C8C88;
}

.track span:not(:last-child)::after {
    content: "/";
    color: #2A8DC0;
    font-style: normal;
    font-weight: 400;
    padding: 0 20px;
}

.tech-slider:hover .track {
    animation-play-state: paused;
}

/* accordion style*/
.xts-accordion-item .xts-header-title {
    color: #fff;
    font-size: 50px;
}

.xts-accordion-item .xts-header-subtitle {
    color: #fff;
}

.xts-industries-list {
    position: relative;
}

.xts-accordion-item {
    position: relative;
    z-index: 2;
}

.xts-accordion-item {
    border-top: 1px solid #464646;
}

.corp_overview:hover .hover_text h2 {
    background: linear-gradient(110deg, #9B6CF0, #DD8A4E) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* .kings_overview:hover .hover_text_red h2 {
    color: #C8102E !important;
    transition: color 0.3s ease;
} */

.kings_overview:hover .hover_text_red h2 {
    background: linear-gradient(90deg, #C8102E, #DD8A4E) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}