

.container {
  max-width: 1050px;
  width: 90%;
  margin: auto;
  background: transparent;
}
/* 
.navbar {
  width: 250px;
  position: fixed;
  z-index: -1;
} */

/* .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  background: transparent;
} */

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  font-family: "Bai Jamjuree", sans-serif;
  text-decoration: none;
  color: #827f7b;
  color: #3e3f3f;
  /* font-weight: 500; */
  font-size: 1.2rem;
  padding: 0.7rem;
  background: transparent;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
    color: #3e3f3f;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.358);
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
  background: transparent;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  top: 10px;
  left: 15px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  background: transparent;
}

.nav-container .hamburger-lines {
  display: block;
  height: 17px;
  width: 20px;
  position: absolute;
  top: 10px;
  left: 19px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #3e3f3f;
  /* background: #827f7b; */
  /* box-shadow: 4px 4px 2px rgba(153, 151, 151, 0.6); */
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 50px;
  /* box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.8); */
  /* box-shadow: inset 0 0 2000px rgba(15, 53, 105, 0.8); */
  /* color: rgb(255, 215, 0); */
  /* height: 300vh; */
  height:fit-content;
  width: 90%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -50px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: left;
}

.navbar .menu-items li {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 500;
  /* writing-mode: vertical-lr; */
  /* text-orientation: sideways; */
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

