/* DESKTOP VIEW */
.nav-top {
  background: black;
  border-bottom: solid #181818;

}

.nav-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.nav-top img {
  display: block;
  width: 200px;
}


.nav-top ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-top a {
  font-size: 1.2rem;
  font-weight: 600;
}


.nav-top #navTopMenuMobile a {
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-top #navTopCloseBtnMobile {
  margin-bottom: 30px;
}






/* Mobile menu */
.nav-top .menu-mobile {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 70vw;
  background: #181818;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
}



/* Active = slide in */
.nav-top .menu-mobile.active {
  transform: translateX(0);
}

/* Optional: disable transition on page load */
.nav-top .menu-mobile.no-transition {
  transition: none !important;
}

/* Close button */

#navTopCloseBtnMobile {
  background: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;

}


#navTopMenuMobile ul {
  flex-direction: column;
}




.nav-top #navTopMenuDesktop {
  display: block;
}


.nav-top .hamburger-button {
  display: none;
}




@media (max-width: 1200px) {

  .nav-top .container {}


}



@media (max-width: 720px) {

  .nav-top .container {
    height: 80px;
    padding: 0 40px;
  }

  .nav-top #navTopMenuDesktop {
    display: none;
  }

  .nav-top .hamburger-button {
    display: block;
    font-size: 2.2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-top img {
    width: 140px;

  }

  .nav-top a {
    color: white;
  }

  .nav-top ul {
    gap: 20px;
  }

}




  /* MOBILE VIEW */
  @media (max-width: 480px) {}