.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* prevent line breaks */
  border: 0;
}
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu{ display: none; }
    .navbar .nav-item:hover .nav-link{   }
    .navbar .nav-item:hover .dropdown-menu{ display: block; }
    .navbar .nav-item .dropdown-menu{ margin-top:0; }

}


@media only screen and (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
}

@media only screen and (min-width: 1500px) {
    .container.narrow {
        max-width: 1400px;
    }
}
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}
@media only screen and (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}
.mobile {
    display: none;
}
.navbar-expand-lg {
    justify-content: center;
}
:root {
    --nav-gap: 3rem;
    --header-height: 140px;
    --header-mobile-height: 87px;
}
body {
    padding-top: var(--header-height);
}
#nav-wrapper {
    padding-block: 19px;
    background-color: white;
    height: var(--header-height);
    display: flex;
}
#nav-wrapper .brand-logo {
    width: 356px;
    flex-shrink: 0;
}
#nav-wrapper .navbar-nav {
    width: 45vw;
    justify-content: space-between;
}
#nav-wrapper img {
    max-width: 100%;
}
#nav-wrapper .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
}
#nav-wrapper .container .right {
    display: flex;
    gap: 9px;
}
#nav-wrapper .container .right a {
    width: 45px;
    flex-shrink: 0;
}
#nav-wrapper .navbar {
    margin-left: auto;
}
#nav-wrapper .nav-link {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: normal;
    font-size: 1.25em;
    text-transform: uppercase;
}
#nav-wrapper .nav-link.active {
    color: #0F7273;
    position: relative;
}
#nav-wrapper .nav-link.active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 7px;
    bottom: -49px;
    left: 0;
    background-color: #CE972C;
}
@media only screen and (max-width: 1699px) {
    #nav-wrapper .brand-logo {
        width: 310px;
    }
    #nav-wrapper .container {
        gap: 1vw;
    }
}
@media only screen and (max-width: 1199px) {
    #nav-wrapper .brand-logo {
        width: 170px;
    }
    #nav-wrapper .navbar-nav {
        width: auto;
        gap: 1rem;
    }
    #nav-wrapper .container {
        gap: 1rem;
    }
    #nav-wrapper .container .right {
        gap: 6px;
    }
    #nav-wrapper .container .right a {
        width: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: flex;
    }
    .navbar-toggler {
        width: 30px;
        height: 30px;
        background-color: #C6540C;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-toggler svg {
        fill: white;
        width: 16px;
    }
    #nav-wrapper {
        height: var(--header-mobile-height);
    }
    body {
        padding-top: var(--header-mobile-height);
    }
    #navbar-wrapper .container.mobile {
        background-color: white;
    }
    .sub-items {
        padding-left: 1rem;
    } 
    #mobile-navbar {
        .nav-link, .dropdown-item {
            font-family: "Space Mono", monospace;
            font-weight: 700;
            font-style: normal;
            text-transform: uppercase;
        }
        .nav-linnk {
            font-size: 1.25em;
        }
        .dropdown-item {
            font-size: 1em;
        }
        .nav-link.active, .dropdown-item.active {
            color: #C6540C;
        }
    }
}