@media (max-width: 1139px) {
  body {
    padding-top: 78px;
  }
  #desNav {
    display: none;
  }
  #mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    background: #F2F2ED;
    z-index: 1000;
    transition: background 0.3s ease;
  }
  #mobileNav.sticky {
    background: #F2F2ED;
  }
  #mobileNav .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
  }
  #mobileNav .content .logo img {
    width: 60px;
    height: auto;
    object-fit: cover;
  }
  #mobileNav .content .hamburger {
    width: 36px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    cursor: pointer;
  }
  #mobileNav .content .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #1F1F1F;
    border-radius: 999px;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #mobileNav .content .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #mobileNav .content .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #mobileNav .content .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  #sidebar {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
  }
  #sidebar .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  #sidebar .panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #F2F2ED;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #sidebar.active {
    pointer-events: auto;
  }
  #sidebar.active .overlay {
    opacity: 1;
  }
  #sidebar.active .panel {
    transform: translateX(0);
  }
  #sidebar .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  }
  #sidebar .top .brand {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1F1F1F;
    opacity: 0.85;
  }
  #sidebar .top .close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1F1F1F;
  }
  #sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
  }
  #sidebar .sidebar-links .sidebar-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 13px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
    color: #1F1F1F;
    font-family: "Jost", sans-serif !important;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease, color 0.3s ease;
  }
  #sidebar .sidebar-links .sidebar-link i {
    font-size: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #sidebar .sidebar-links .sidebar-link.in {
    opacity: 1;
    transform: translateY(0);
  }
  #sidebar .sidebar-footer {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  #sidebar .sidebar-footer.in {
    opacity: 1;
    transform: translateY(0);
  }
  #sidebar .sidebar-footer .contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    padding-block: 18px;
  }
  #sidebar .sidebar-footer .contact div {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  #sidebar .sidebar-footer .contact div .label {
    font-size: 10px;
    color: #1F1F1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
  }
  #sidebar .sidebar-footer .contact div a {
    color: #1F1F1F;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.9;
  }
  #sidebar .sidebar-footer .button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 22px;
    border-radius: 2px;
    color: white;
    background: #363637;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 4px;
  }
  #sidebar .sidebar-footer .button i {
    margin-left: 12px;
  }
  #sidebar .sidebar-footer .bottom-tag {
    margin-top: 18px;
    text-align: center;
    color: #1F1F1F;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  #sidebar,
  #sidebar .sidebar-link,
  #sidebar .sidebar-footer,
  .hamburger span {
    transition: none !important;
  }
}
@media only screen and (min-width: 1140px) {
  #mobileNav {
    display: none;
  }
  #desNav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    background: transparent;
    z-index: 1000;
    background: #F2F2ED;
  }
  #desNav.sticky {
    position: fixed;
  }
  #desNav .content {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 35px;
    justify-content: space-between;
    max-width: 1475px;
    margin-inline: auto;
  }
  #desNav .content .logo {
    position: relative;
  }
  #desNav .content .logo img {
    width: 85px;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }
  #desNav .content .logo .logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  #desNav .content .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  #desNav .content .links span {
    display: block;
    height: 30px;
    width: 1px;
    background: #1F1F1F;
    opacity: 0.3;
  }
  #desNav .content .links .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  #desNav .content .links .left a {
    color: #1F1F1F;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline;
    opacity: 0.88;
  }
  #desNav .content .links .left span {
    display: inline;
    width: 4px;
    height: 4px;
    background: #1F1F1F;
    border-radius: 30px;
    opacity: 0.6;
  }
  #desNav .content .links .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  #desNav .content .links .right a {
    color: #1F1F1F;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline;
    opacity: 0.88;
  }
  #desNav .content .links .right a i {
    color: #1F1F1F;
    font-size: 15px;
    margin-right: 10px;
    opacity: 0.88;
  }
  #desNav .content .links .right .hamburger {
    width: 51px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
  }
  #desNav .content .links .right .hamburger span {
    width: 100%;
    height: 2px;
    flex: 0 0 2px;
    background-color: #1F1F1F;
    border-radius: 999px;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #desNav .content .links .right .hamburger.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }
  #desNav .content .links .right .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #desNav .content .links .right .hamburger.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
  }
  #sidebar {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
  }
  #sidebar .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  #sidebar .panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 620px;
    max-width: 90vw;
    background: #F2F2ED;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px 60px 50px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #sidebar.active {
    pointer-events: auto;
  }
  #sidebar.active .overlay {
    opacity: 1;
  }
  #sidebar.active .panel {
    transform: translateX(0);
  }
  #sidebar .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  }
  #sidebar .top .brand {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1F1F1F;
    opacity: 0.85;
  }
  #sidebar .top .close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #1F1F1F;
  }
  #sidebar .heading {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding-block: 34px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
  }
  #sidebar .heading h2 {
    color: #1F1F1F;
    font-size: 64px;
    font-weight: 200 !important;
    text-transform: uppercase;
    line-height: 1;
  }
  #sidebar .heading .tagline {
    display: flex;
    flex-direction: row;
    gap: 14px;
    text-align: right;
  }
  #sidebar .heading .tagline .index {
    font-size: 13px;
    color: #1F1F1F;
    opacity: 0.7;
  }
  #sidebar .heading .tagline .lines p {
    font-size: 12px;
    color: #1F1F1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.7;
    opacity: 0.85;
  }
  #sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
  }
  #sidebar .sidebar-links .sidebar-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 15px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.12);
    color: #1F1F1F;
    font-family: "Jost", sans-serif !important;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease, color 0.3s ease;
  }
  #sidebar .sidebar-links .sidebar-link i {
    font-size: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #sidebar .sidebar-links .sidebar-link:hover {
    opacity: 0.7;
  }
  #sidebar .sidebar-links .sidebar-link:hover i {
    opacity: 1;
    transform: translateX(0);
  }
  #sidebar .sidebar-links .sidebar-link.in {
    opacity: 1;
    transform: translateY(0);
  }
  #sidebar .sidebar-footer {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  #sidebar .sidebar-footer.in {
    opacity: 1;
    transform: translateY(0);
  }
  #sidebar .sidebar-footer .contact {
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding-block: 24px;
  }
  #sidebar .sidebar-footer .contact div {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  #sidebar .sidebar-footer .contact div .label {
    font-size: 11px;
    color: #1F1F1F;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
  }
  #sidebar .sidebar-footer .contact div a {
    color: #1F1F1F;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.9;
  }
  #sidebar .sidebar-footer .button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 26px;
    border-radius: 2px;
    color: white;
    background: #363637;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 6px;
  }
  #sidebar .sidebar-footer .button i {
    margin-left: 12px;
  }
  #sidebar .sidebar-footer .bottom-tag {
    margin-top: 22px;
    text-align: center;
    color: #1F1F1F;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
  }
}

/*# sourceMappingURL=nav.css.map */
