.accordion {
    /* background-color: #eee; */
    /* color: #444; */

    cursor: pointer;
    padding: 8px;
    margin-left: 10%;
    margin-right: auto;
    background-color: hsl(228, 61%, 33%);
    border-radius: 10px;
    width: 64%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 1.5s;
  }
  
  .active, .accordion:hover {
    background-color: #ffffff;
    /* :is(.dark &)
    {
      background-color: #053ab5a9;
    } */
  }
  
  .panel {
    padding: 0 18px;
    width: 65%;
    margin-right: auto;
    margin-left: 10%;
    border-radius: 20px;
    display: none;
    background-color: #436bc2;
    overflow: hidden;
    transition: 1.5s;
  }


  
.navbar .menu-items {
  position: relative;
  padding-top: 120px;
  /* box-shadow: inset 200px 2000px 2000px rgb(154, 170, 189); */
  box-shadow: inset 200px 2000px 2000px rgb(223, 224, 226);
  /* opacity: 90%; */
  color: #ffffff;
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  /* margin-left: -40px; */
  transition: transform 0.5s ease-in-out;
  text-align: center;
  /* :is(.dark &)
  {
    
    padding-top: 120px;
    box-shadow: inset 200px 2000px 2000px rgb(34, 34, 35);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
  color: white;
  } */
}


.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgba(185, 188, 192, 0);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .nav-container li {
  list-style: none;
}

/* text */
.navbar .nav-container a {
  text-decoration: none;
  /* color: rgb(0, 0, 0); */
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
  :is(.dark &)
  {
    color: white;
  }
}

.navbar .nav-container a:hover{
    font-weight: bolder;

}


.container {
  max-width: 1050px;
  width: 100%;
  margin: auto;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox
 {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
/* menu */
.nav-container .hamburger-lines {
  display: block;
  height: 20px;
  width: 26px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: #ffffff;
}

.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 li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.2rem;
  color: #0e2431;
}

.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);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}


.mobile-menu-address
{
  position: absolute;
  bottom: 10%;
  left: 5%;
}