/* =========================================
   COMPANY INFO MARQUEE
========================================= */

.nm-company-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: #transparent;
    color: #071d4a;
}


/* TRACK */

.nm-company-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;

    will-change: transform;
}


/* GROUP */

.nm-company-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;

    width: max-content;
}


/* INDIVIDUAL ITEM */

.nm-company-marquee__item {
    position: relative;

    display: flex;
    align-items: flex-end; /* align number + subtitle to bottom */

    flex-shrink: 0;

    gap: 20px;

    padding-left: 55px;
    margin-right: 55px;

    white-space: nowrap;
}


/* VERTICAL DIVIDER */

.nm-company-marquee__item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 76px;

    background: currentColor;

    transform: translateY(-50%);
}


/* NUMBER */

.nm-company-marquee__number {
    font-family: "Bebas Neue", sans-serif;

    font-weight: 500 !important;

    line-height: 0.9;

    letter-spacing: 0px;

    white-space: nowrap;
}


/* SUBTITLE */

.nm-company-marquee__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0px;
    white-space: nowrap;

    margin-bottom: 11px;
}


/*
IMPORTANT:
Do NOT add animation-play-state: paused here.

Hover intentionally does nothing so the marquee
continues moving.
*/

.nm-company-marquee:hover .nm-company-marquee__track {
    animation-play-state: running;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .nm-company-marquee__item {
        gap: 16px;

        padding-left: 35px;
        margin-right: 35px;
    }

    .nm-company-marquee__item::before {
        height: 60px;
        width: 2px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .nm-company-marquee__item {
        gap: 12px;

        padding-left: 25px;
        margin-right: 25px;
    }

    .nm-company-marquee__item::before {
        height: 45px;
        width: 2px;
    }

}