@media (max-width: 1139px) {
  #desNav {
    display: none;
  }
  #mobileNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 20px;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  #mobileNav.sticky .hamburger span, #mobileNav.active .hamburger span {
    background: #1F1F1F;
  }
  #mobileNav.sticky .logo .logo-light, #mobileNav.active .logo .logo-light {
    display: none;
  }
  #mobileNav.sticky .logo .logo-dark, #mobileNav.active .logo .logo-dark {
    display: block;
  }
  #mobileNav.sticky .button, #mobileNav.active .button {
    color: rgb(246, 246, 246);
    background: #004876;
  }
  #mobileNav.sticky {
    background: rgb(246, 246, 246);
    box-shadow: 0 1px 0 rgba(31, 31, 31, 0.08);
  }
  #mobileNav .hamburger {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  #mobileNav .hamburger span {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
  }
  #mobileNav .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #mobileNav .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #mobileNav .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #mobileNav .logo {
    position: absolute;
    left: 69px;
    z-index: 2;
  }
  #mobileNav .logo img {
    width: 160px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.3s ease;
  }
  #mobileNav .logo .logo-dark {
    display: none;
  }
  #mobileNav .button {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: #1F1F1F;
    background: rgba(255, 255, 255, 0.932);
    font-size: 14px;
    transition: color 0.3s ease, background 0.3s ease;
  }
  #mobileNav .button i {
    font-size: 13px;
    margin-left: 4px;
  }
  #mobileNav #sidebar {
    position: fixed;
    inset: 0;
    height: 100dvh;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 24px 40px;
    background: rgb(246, 246, 246);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
  }
  #mobileNav #sidebar.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }
  #mobileNav #sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #004876;
    margin-bottom: 18px;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 2px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.1);
    font-size: 20px;
    color: #1F1F1F;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-26px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link:first-of-type {
    border-top: 1px solid rgba(31, 31, 31, 0.1);
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link i {
    font-size: 16px;
    color: #004876;
    flex-shrink: 0;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link:active {
    color: #004876;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link.in {
    opacity: 1;
    transform: translateY(0);
  }
  #mobileNav #sidebar .sidebar-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  #mobileNav #sidebar .sidebar-footer .event-chip {
    font-size: 12px;
    font-weight: 500;
    color: #004876;
    background: rgba(0, 72, 118, 0.06);
    border: 1px solid rgba(0, 72, 118, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
  }
  #mobileNav #sidebar .sidebar-footer .button {
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    color: rgb(246, 246, 246);
    background: #004876;
    font-size: 14px;
    width: 100%;
    margin-top: 35px;
  }
  #mobileNav #sidebar .sidebar-footer .button i {
    font-size: 13px;
    margin-left: 4px;
  }
  #mobileNav #sidebar .sidebar-footer.in {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #sidebar,
  #sidebar .sidebar-link,
  #sidebar .sidebar-footer,
  .hamburger span {
    transition: none !important;
  }
}
@media only screen and (min-device-width: 1140px) {
  #mobileNav {
    display: none;
  }
  #desNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  #desNav.sticky {
    background: rgb(246, 246, 246);
    box-shadow: 0 1px 0 rgba(31, 31, 31, 0.08);
  }
  #desNav.sticky .content .links a {
    color: #1F1F1F;
  }
  #desNav.sticky .content .logo .logo-light {
    opacity: 0;
  }
  #desNav.sticky .content .logo .logo-dark {
    opacity: 1;
  }
  #desNav.sticky .content .button {
    color: rgb(246, 246, 246);
    background: #004876;
  }
  #desNav .content {
    position: relative;
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 35px;
    justify-content: space-between;
    max-width: 1460px;
    margin-inline: auto;
  }
  #desNav .content .links {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  #desNav .content .links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  #desNav .content .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #desNav .content .logo img {
    width: 240px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.3s ease;
  }
  #desNav .content .logo .logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #desNav .content .button {
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    color: #1F1F1F;
    background: rgba(255, 255, 255, 0.932);
    font-size: 15px;
    transition: color 0.3s ease, background 0.3s ease;
  }
  #desNav .content .button i {
    font-size: 14px;
    margin-left: 4px;
  }
}/*# sourceMappingURL=nav.css.map */