#desktopNavigation {
    position: fixed;
    width: 100%;
    padding-top: 0.75rem;
    z-index: 600;
    padding-bottom: 0.75rem;
}

#mobileNavigation {
    display: none;
}


#navItems {
    display: flex;
    position: relative;
    z-index: 2000;
}

#navContainer {
    display: flex;
    justify-content: center;
}

.navLink {
    font-family: 'Barb';
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.navLink:hover {
    color: var(--redcolor);
}


#mobileMenu {
    position: fixed;
    z-index: 2100;
    top: 0.55%;
    left: 3%;
    cursor: pointer;
    display: none;
    font-family: 'Barb';
    color: var(--redcolor);
    font-size: 32px;
}


.nav-logo img {
    width: 80%;
}

.swapDown {
    transform: translateX(0)!important;

}


@media screen and (max-width: 991px) {

    .form-check-input:checked {
        background-color:  rgba(248, 79, 37)!important;
        cursor: pointer;
        margin-top: 2px;
    }

     .form-check-input {
        background-color:  rgb(255, 255, 255)!important;
        cursor: pointer;
        margin-top: 2px!important;
    }

    #desktopNavigation {
        display: none;
    }
    #mobileNavigation {
        display: initial;
        min-height: 48px;
        background-image: url("./assets/massmob.jpg");
        background-size: 100%;
        position: fixed;
        z-index: 2100;
        width: 100%;
        max-height: 64px;
    }
    #mobileNavContainer {
        padding-top: 64px;
        height: 100vh;
        transform: translateX(100vw);

    }
    #mobileMenu {
        display: initial;
    }
    .navLink {
    line-height: 24px;
    font-size: 1.5rem;
   
    }

}