@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap');

.nk-marquee-wrapper {
    background-color: #2F3642;
    height: 70px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nk-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nk-marquee-track {
    display: flex;
    width: max-content;
    animation: nk-marquee-scroll 34s linear infinite;
}

.nk-marquee-wrapper:hover .nk-marquee-track {
    animation-play-state: paused;
}

.nk-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nk-marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    text-transform: none;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

.nk-marquee-diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #FEDC01;
    transform: rotate(45deg);
    margin: 0 45px;
    flex-shrink: 0;
}

@keyframes nk-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .nk-marquee-wrapper {
        height: 65px;
    }
    .nk-marquee-item {
        font-size: 18px;
    }
    .nk-marquee-diamond {
        margin: 0 35px;
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 767px) {
    .nk-marquee-wrapper {
        height: 60px;
    }
    .nk-marquee-item {
        font-size: 16px;
    }
    .nk-marquee-diamond {
        margin: 0 25px;
        width: 4px;
        height: 4px;
    }
}
