

 

.logo,
.content {
  color: #fafafa;
}
main{display:block  }
#mobilmenu{display: none}

@media screen and (max-width:1024px) {
  .nav{display: none}
 #mobilmenu{display: block}





.nav {
  width: 100%; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 30px 0;
}

.nav p{position: absolute;right: 33px;top:100px;color:#fff; font-size:20px;}

.logo,
#hamburger {
  margin: 10px
}

#hamburger {
 
  cursor: pointer;
  transition: opacity 0.25s linear; 
  width: 30px;
  height: 2px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}

#hamburger:hover {
  opacity: 1;
}

#hamburger div,
#hamburger div:after,
#hamburger div:before {
  background-color: #fafafa;
  border-radius: 5px;
  width: 30px;
  height: clamp(0.3rem, 0.3vw + 0.1rem, 0.8rem);
  transition: all 0.15s linear;
}

#hamburger div:before,
#hamburger div:after {
  content: "";
  position: absolute;
}

#hamburger div:before {
  transform: translateY(-200%);
}

#hamburger div:after {
  transform: translateY(200%);
}

#hamburger.open div {
  background: transparent;
}

#hamburger.open div:before {
  transform: rotate(45deg);
}

#hamburger.open div:after {
  transform: rotate(-45deg);
}

#overlay {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  background-color: #000000;
  z-index: 1;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#overlay.menu {
  transform: translateX(0%);
 
}

 



#overlay  ul{list-style: none;margin:0;padding: 0;}
#overlay  ul li{margin-bottom: 10px;}
#overlay li a {
  text-decoration: none;
  font-family: "Helvetica Neue";
  font-size: 25px;
}
#overlay .dropdown-menu {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
#overlay .dropdown-menu a {
  text-decoration: none;
  font-family: "Helvetica Neue";
  font-size: 18px; /* Adjust the font size as needed */
  color: #fff;
  margin-left: 4%;
  width: 100%;
  display: block;
  border-bottom: 0px;
}
#overlay .dropdown-menu {
  display: block !important;
}
 
#overlay.dropdown { 
  display: block;
}
#overlay .dropdown-menu a {
  font-size: 18px; /* Adjust the font size for smaller screens */
}
.hamburger-lines {
  right: 0px;
}
.dropdown-menu {
  position: absolute;
  border-radius: 0 !important;
  top: 100% !important;
  left: 10px !important;
  width: 100% !important;
  height: auto !important;
  background-color: #000 !important; /* Customize the dropdown menu background */
  padding:5px !important; /* Remove padding to eliminate the space */
  margin: 0 !important; /* Remove margin to eliminate the space */
  display: block; /* Keep the menu open when hovering over it */
} 

#overlay
.dropdown:first-child {
  margin-bottom: 4rem;
  display: block;
} 

#overlay
.dropdown {
  margin-bottom: 6rem;
  display: block;
}
.sub {
  text-align: left !important;
  padding-left: 0px !important;
  margin-left: 0px !important;
}

#overlay a:hover {
  opacity: 1;
}

}