/* Header */

.nx3-header,
.nx3-header *,
.nx3-header *::before,
.nx3-header *::after {
    box-sizing: border-box;
}

.nx3-header {

    --lime: greenyellow;
    --black: #080A08;
    --dark: #101310;
    --dark2: #171B17;
    --text: white;
    --muted: #899188;
    width: 100%;
    position: relative;
    z-index: 999999;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    background: #2a2d32;
}

/* =========================================================
   TOP LINE
========================================================= */

.nx3-top {
    height: 38px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    border-bottom:
        1px solid
        rgba(255,255,255,.08);
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.nx3-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nx3-status {
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow:
        0 0 12px
        rgba(173,255,47,.7);
}

.nx3-top strong {
    color: var(--lime);
    font-weight: 800;
}

.nx3-top-right {
    color: #596159;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.nx3-main {
    width: 100%;
    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.nx3-main-inner {
    width: 92%;
    max-width: 1450px;
    min-height: 100px;
    margin: auto;
    display: grid;
    grid-template-columns:220px 1fr auto;
    align-items: center;
    gap: 40px;
}

/* =========================================================
   LOGO AREA
========================================================= */

.nx3-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.nx3-brand img {
    width: 90px;
    height: 250px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    /* background-color: #ADFF2F; */
}

.nx3-brand-name {
    display: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.nx3-brand-name span {
    color: var(--lime);
}

/* =========================================================
   NAV
========================================================= */

.nx3-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nx3-nav-item {
    position: relative;
}

.nx3-nav-link,
.nx3-nav-button {
    position: relative;
    height: 45px;
    padding:0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
    background: transparent;
    border: 0;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    transition: .25s ease;
}

.nx3-nav-link::after,
.nx3-nav-button::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s ease;
}

.nx3-nav-link:hover,
.nx3-nav-button:hover {
    color: var(--lime);
}

.nx3-nav-link:hover::after,
.nx3-nav-button:hover::after {
    transform: scaleX(1);
}

.nx3-nav-active {
    color: var(--lime) !important;
}

.nx3-nav-active::after {
    transform: scaleX(1) !important;
}

/* =========================================================
   DROPDOWN
========================================================= */

.nx3-dropdown {
    position: relative;
}

.nx3-nav-button span {
    font-size: 12px;
    color: white;
    transition: .25s ease;
}

.nx3-dropdown:hover
.nx3-nav-button span {
    color: var(--lime);
    transform: rotate(180deg);
}

.nx3-dropdown-box {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 300px;
    padding: 10px;
    background: var(--dark2);
    border:
        1px solid
        rgba(173,255,47,.14);
    box-shadow:
        0 30px 80px
        black;
    opacity: 0;
    visibility: hidden;
    transform:translateY(10px);
    transition: .25s ease;
}

.nx3-dropdown:hover
.nx3-dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nx3-dropdown-box a {
    display: block;
    padding: 15px;
    color: var(--text);
    text-decoration: none !important;
    border-left:2px solid transparent;
    transition: .2s ease;
}

.nx3-dropdown-box a:hover {
    background:rgba(173,255,47,.05);
    border-left-color: var(--lime);
}

.nx3-dropdown-box strong {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
}

.nx3-dropdown-box a:hover strong {
    color: var(--lime);
}

/* =========================================================
   RIGHT CTA - BUTTON
========================================================= */

.nx3-action{
padding:14px 28px;
background:yellowgreen;
/* border:2px #a68c55 solid; */
/* color:white; */
border-radius:50px;
font-weight:600;
transition:.3s;
}

.nx3-cta{
    color:black;
    font-size: 11px;
}
.nx3-action:hover{
background:greenyellow;
color: black;
transform:translateY(-1px);
box-shadow:0 10px 45px #adff2f;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.nx3-mobile-button{
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    background: transparent;
    border:1px solid rgba(255,255,255,.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nx3-mobile-button span {
    width: 18px;
    height: 2px;
    background: var(--lime);
    transition: .3s ease;
}

.nx3-mobile-button.open
span:nth-child(1) {
    transform:translateY(7px) rotate(45deg);
}

.nx3-mobile-button.open
span:nth-child(2) {
    opacity: 0;
}

.nx3-mobile-button.open
span:nth-child(3) {
    transform:translateY(-7px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.nx3-mobile-menu {
    display: none;
    width: 100%;
    padding: 15px 5% 25px;
    /* background: #2f322a; */
    border-bottom:1px solid rgba(173,255,47,.15);
}

.nx3-mobile-menu.open {
    display: block;
}

.nx3-mobile-menu > a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 10px;
    color: white;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 700;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nx3-mobile-menu > a:hover {
    color: var(--lime);
}

/* MOBILE PROGRAMS */

.nx3-mobile-programs button {
    width: 100%;
    min-height: 50px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.nx3-mobile-programs button span:last-child {
    color: var(--lime);
    font-size: 16px;
}

.nx3-mobile-submenu {
    display: none;
    padding:5px 10px;
}

.nx3-mobile-programs.open
.nx3-mobile-submenu {
    display: block;
}

.nx3-mobile-submenu a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none !important;
    font-size: 9px;
}

.nx3-mobile-submenu a:hover {
    color: var(--lime);
}

/* MOBILE CTA */

.nx3-mobile-cta {
    margin-top: 18px;
    min-height: 50px !important;
    justify-content: center;
    background: var(--lime);
    color: black !important;
    border: 0 !important;
    border-radius:50px;
    /* width:50%;
    transform: translate(50%, 0%); */
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nx3-main-inner {
        grid-template-columns: 150px 1fr auto;
        gap: 15px;
    }

    .nx3-nav-link,
    .nx3-nav-button {
        padding: 0 9px;
        font-size: 9px;
    }

    .nx3-contact {
        display: none;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .nx3-top {
        padding: 0 5%;
    }

    .nx3-top-right {
        display: none;
    }

    .nx3-main-inner {
        min-height: 72px;
        display: flex;
        width: 90%;
    }

    .nx3-nav,
    .nx3-action {
        display: none;
    }

    .nx3-mobile-button {
        display: flex;
    }
    
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .nx3-top {
        height: 32px;
        font-size: 8px;
    }

    .nx3-brand img {
        width: 78px;
    }

    .nx3-main-inner {
        min-height: 65px;
    }

}

.announcement-container{
    overflow:hidden;   
}

.announcement-scroll{
    white-space:nowrap;
    display:inline-block;
    animation:scrollText 18s linear infinite;
}

.announcement-scroll a{
    color: white;
    text-decoration:none;
    font-size: 14px;
    /*font-weight:600;*/
}

.announcement-scroll strong{
    color:greenyellow;
    font-size: 13px;
    font-family: 'Arial';
}

@keyframes scrollText{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }

}