@charset "UTF-8";
/* CSS Document */

/* NAVBAR */
.mss-navbar {
  position: sticky;
  top: 110px;
  width: 100%;
  background: #6666ff;
  border-bottom: 1px solid #ddd;
  z-index: 9000;
}

.mss-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.mss-logo {
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: #333;
}

/* DESKTOP MENU */
.mss-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mss-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 15px;
}

/* HAMBURGER */
.mss-hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE MENU */
.mss-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #ddd;
}

.mss-mobile a {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .mss-menu {
    display: none;
  }

  .mss-hamburger {
    display: block;
  }

  .mss-mobile.active {
    display: flex;
  }
}

/* OFFSET FOR FIXED NAV */
mmsbody {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .mss-nav-inner {
    justify-content: space-between;
  }

  .mss-logo {
    order: 1;
    font-size: 15px;
  }

  .mss-hamburger {
    order: 2;
  }
	
  .mss-navbar {
    top: 70px; 
	z-index: 10000;
  }
}