
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
  margin:0;
  padding:0;
  font-family: 'Noto sans', sans-serif;
  text-decoration: none;
/*   box-sizing: border-box; */
}

header {
  display: flex;
  justify-content: space-between;
  color: #131212;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  transition: all 300ms ease;
  z-index: 10;
}

.logo  {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width:75%;
  margin-top: 5px;
  color: #444444;
}

.navbar {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 3vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.navbar p{
    letter-spacing:.02vw;
    font-size: 1rem;
    font-weight: 400;
}

.nav-container {
position: fixed; 
left: 80%;
height: 60px;
}

.menu-items {
  border-radius: 25px;
  width: 60vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  margin-top: -1vw;;
  padding-top: 60px;
  margin-left: 40px;
  padding-left: 10vw;
  padding-right: 8vw;
  background-color: rgb(248, 240, 240);
  background-size: 50vw 100vw;
  transform: translate(100%);
  transition: transform 0.5s ease-in-out;
  opacity: 0;
}

.navbar .menu-items li {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8rem;

}

.navbar .nav-container a {
  text-decoration: none;
  color: #a87171;
  font-weight: 800;
  font-size: max(1.6vw, 1rem);
/*   padding: 0.7rem; */
}

.navbar .nav-container a:hover{
    font-weight: 900;
    color:#cc1717;
}

.nav-container a:active ~ .menu-items {
  transform: translateX(300%);
  opacity: 0;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 7px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 22px;
  width: 27px;
  position: absolute;
  top: 7px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #979797;
}

.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;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(-98%);
  opacity: 100;
}

.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);
}

/* .nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
} */

@media screen and (max-width:990px) {
  .navbar p{
    letter-spacing:.02vw;
    font-size: .8rem;
    font-weight: 400;
  }
}

@media screen and (max-width:768px) {
  .navbar p{
    font-size: .1rem;
    opacity:0;

  }
  .navbar .menu-items li {
    letter-spacing:-0.05rem;
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: .6rem;
  
  }

}

