@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}
body,
html {
  background-color: whitesmoke;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.header-list li {
  position: relative;
  height: 100%;
}

.header-list li div {
  background-color: white;
  height: auto;
  opacity: 0;
  width: 300px;
  position: absolute;
  top: 100%;
  transform: translateY(20px);
  visibility: hidden;
  left: 0;
  border-radius: 0px 0px 5px 5px;
  transition: 0.5s transform ease, 0.5s opacity ease;
}
.header-list li:hover div {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  top: 100%;
}

/* Class for the menu when it is open */
.menu-open {
  transition: 0.4s max-height ease-in-out;
  max-height: 400px;
  overflow: hidden;
}

/* Class for the menu when it is closed */
.menu-closed {
  transition: 0.2s max-height ease-in-out;
  max-height: 0px;
  overflow: hidden;
}
