body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  background-attachment: fixed;
}

.header {
  background-color: #f2f2f2;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 2px 2px 6px 2px #0000004d;
}

main {
  margin-top: 4%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-sizing: border-box;
}

.logo-img {
  height: 60%;
  width: 200px;
}

.logo-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
  font-weight: normal;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 16px;
  color: rgb(36, 36, 36);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.459);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.nav-menu a:hover {
  color: rgb(126, 126, 126);
  transform: translateY(-1.5vh);
  filter: brightness(1.5);
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-right: 50px;
}

.Logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0.1px solid rgba(0, 0, 0, 0.486);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.Logo:hover {
  background-color: rgb(163, 161, 161);
  transform: translateY(-1.5vh);
  filter: brightness(1.5);
}

nav {
  display: flex;
  color: rgb(46, 46, 46);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  padding: 2vh;
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
}

nav ul li a {
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  color: rgb(46, 46, 46);
}

nav ul li a:hover {
  color: rgb(163, 161, 161);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: rgb(36, 36, 36);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f2f2f2;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
  padding: 0;
  left: -10px;
  margin-top: 15%;
  border: 0.1px solid white;
  border-radius: 8px;
}

.dropdown-content :hover {
  color: rgb(163, 161, 161);
}

.nested-dropdown a {
  width: 100px;
  text-align: left;
}

.nested-dropdown-content {
  display: none;
  position: absolute;
  left: 140px;
  top: 0;
  background-color: #f2f2f2;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 0.1px solid white;
  padding-left: 10px;
  margin: 0;
  border-radius: 8px;
}

.nested-dropdown-content li {
  left: 0px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nested-dropdown:hover .nested-dropdown-content {
  display: block;
  color: rgb(163, 161, 161);
}

.dropdown-content a,
.nested-dropdown-content a {
  color: rgb(36, 36, 36);
  text-decoration: none;
  display: block;
  padding: 0.7vh;
}

.dropdown-content a:hover,
.nested-dropdown-content a:hover {
  color: rgb(163, 161, 161);
}

#navToggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  margin: 0 10px;
}

.logoImage {
  display: none;
  height: 12vh;
  width: 20vw;
  float: left;
  padding: 0.5vh;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icon {
  font-size: 1.5em;
  color: #666;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.social-icons a:hover .social-icon {
  color: #007bff;
  transform: translateY(-2px);
}










@media (max-width: 900px) {
  .newBoy p {
    width: auto;
  }

  .social-icons {
    display: none;
  }

  .logoImage {
    width: 30%;
    height: auto;
  }

  .header-container {
    justify-content: space-between;
  }

  .heading {
    width: 90%;
    height: 3%;
    left: 5%;
    top: -1%;
    font-size: 5vw;
    border-radius: 2vh;
  }

  #navToggle {
    display: block;
    padding-right: 30px;
  }

  nav {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    background-color: #f2f2f2;
    color: rgb(36, 36, 36);
    width: 100%;
    height: auto;
    padding: 1rem;
    z-index: 120;
    margin-left: 0;
    flex-direction: column;
  }

  nav.show {
    display: flex;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  nav ul li {
    padding: 2vh;
    padding-top: 1vh;
    text-decoration: none;
    font-weight: bold;
    font-size: 2vh;
    z-index: 120;
    flex-direction: column;
  }

  nav ul li a {
    font-family: "Mulish", sans-serif;
    text-decoration: none;
    color: rgb(36, 36, 36);
    flex-direction: column;
  }

  nav.show {
    display: block;
  }

  .dropdown-content {
    background-color: #f2f2f2;
    display: none;
    flex-direction: column;
    position: static;
    margin: 0px;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown-content li {
    display: block;
    width: 100%;
  }

  .nested-dropdown {
    position: relative;
    left: 0vw;
  }

  .nested-dropdown-content {
    display: none;
    position: static;
    left: 28vw;
    top: 0;
    background-color: #f2f2f2;
    min-width: 10vw;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    padding-inline-start: 10px;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown.show .dropdown-content {
    display: flex;
  }

  .nested-dropdown.show .nested-dropdown-content {
    display: flex !important;
  }

  .dropdown > a::after {
    content: " ▾";
    font-size: 0.8em;
  }


.show-products > .dropdown-content {
  display: flex;
  flex-direction: column;
}

.show-recycleprox > .nested-dropdown-content {
  display: flex !important;
  flex-direction: column;
}

.show-amplo > .nested-dropdown-content {
  display: flex !important;
  flex-direction: column;
}

}