#box {
  position: fixed;
  top: 50%;
  right: 30%;
  width: 0;
  height: 80vh;
  background-color: black;
  overflow: hidden;
  transition: width 0.5s ease-in-out;
  transform: translateY(-50%);
  z-index: 1; /* Place the boxes behind the button */
}

#box.show{
  width: 20vw; /* Set desired width when the box is visible */
}

/* Styling for the content inside the box */
#box a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 10px 20px;
}t
      
#box a:hover {
  text-decoration: underline;
}

.industries-section{
  height: 25%;
  width: 25%; 
}