/*
Theme Name: Vertex
Theme URI: https://nestinfotechnologies.com
Author URI: Nest Info Technologies
Description: Business and Technology Solutions
Version: 1.6
Text Domain: Vertex System
*/

@keyframes marqueeAnimation-6082968 {
    100% {
        transform: translateX(-1815.24px)
    }
}

/* Full-Screen Marquee Container */
.full-screen-marquee {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100vw;
    height: 10vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center content vertically */
}

/* Marquee Content */
.marquee-content {
    display: inline-block;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

/* Individual Items in the Marquee */
.marquee-content .item {
    display: inline-block;
    margin-right: 50px;
    /* Space between items */
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    /*line-height: 24px;*/
    color: var(--zefxa-white);
    font-family: var(--zefxa-font-two);
}

/* Animation Keyframes for Scrolling */
@keyframes scroll {
    from {
        transform: translateX(100vw);
        /* Start off-screen to the right */
    }

    to {
        transform: translateX(-100%);
        /* End off-screen to the left */
    }
}

/* Pause Animation on Hover */
.marquee-content:hover {
    animation-play-state: paused;
}

.managed-services {
    display: flex;
}