*{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin:0;
padding: 0;
box-sizing: border-box;
border-radius: 50px;
}
header{
  position: fixed;
background-color: rgb(43, 201, 50);
  width: 100%;
  height: 40px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 30px;  
  padding-top: 0.5rem;
  display: flex;
  flex-direction: row;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
}




.nav-container {
  display: block;
  align-items: center;
  position: relative;
  height: 62px;
}

.menu-items {
  display: block;
}

.nav-container li {
  list-style: none;
  width: 100%;
}
.nav-container a {
  text-decoration: none;
  color: #263b3f;
  font-weight: 500;
  font-size: 1rem;
  padding-left: -12px
  
}
.menu-items li a:hover{
    font-weight: bolder;
    color: rgb(41, 160, 77);
}

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

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  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: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0a525f;
}

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

.menu-items {
  padding-top: 80px;
  height: 430px;
  width: 100px;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 30px;
  padding-right: 20px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-color: rgb(60, 184, 190);
}

.menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500px;
  text-align: left;
}

.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;
}
@media only screen and (min-width:761px){
  .nav-container{
    display:none;
  }
}
@media only screen and(max-width:760px){
  .nav-container{
    display: block;
    width: 60%;
    margin: auto;
  }
}





#navbar{
  display: flex;
  align-items: center;
  background-color: #53b1b1;
}

#homepage-logo{
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#navbar a{
  color: #3e5553;
  font-size:20px;
  margin: 0 1.5rem;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
  cursor: pointer;
}
#navbar a:hover{
  color: rgb(0, 255, 85);
  background-color: #5396b1;
}

#nav_btn{
  color: #5396b1;
  width: 120px;
  height: 50px;
  background-color: #0a525f;
  padding: 15px 10px 15px 10px;
  margin-top: -5px;
  padding-left: -10px;
  cursor: pointer;
}

#homepage-icons{
  display: flex;
  gap: 30px;
}
#homepage-cart{
  font-size: 30px;
  margin-top: 2px;
  color: #0a525f;
  cursor: pointer;
}
@media screen and (max-width:760px){
  .navbar-anchors{
    display: none;
  }
}