.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  background: black;
  z-index: -1;
}

#main-menu {
  display: flex;
  justify-content: space-between;
  margin: 0px;
  padding: 30px 165px !important;
}

#main-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

#main-menu li {
  list-style-type: none;

  max-width: fit-content;
}

#main-menu a {
  color: #b9faf8;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

#contact {
  padding: 16px 40px;
  background-color: white;
  text-decoration: none;
  color: #09466F!important;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 19px;
  font-family: "Inter", sans-serif;
  margin: auto;
}

#main-menu a:hover {
  text-decoration: underline;
}

#hamburger-input {
  display: none;
}

#hamburger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: none;
  border: none;
  padding: 0px;
  margin: 0px;
  background: url("/assets/imgs/hamburguer.svg");
  background-position: center;
  background-repeat: no-repeat;
}

#hamburger-menu #sidebar-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: -250px;
  width: 200px;
  height: 100%;
  background-color: #09466f;
  transition: 0.3s;
  padding: 40px;
  box-sizing: border-box;
}

#hamburger-menu ul {
  padding-left: 0px;
}

#hamburger-menu li {
  list-style-type: none;
  line-height: 3rem;
}

#hamburger-menu a {
  font-family: "Inter";
  font-size: 16px;
  line-height: 19px;
  color: white;
  text-align: center;
  text-decoration: none;
}

#hamburger-menu a:hover {
  text-decoration: underline;
}

#hamburger-input:checked + #hamburger-menu #sidebar-menu {
  visibility: visible;
  left: 0;
}
#hamburger-input:checked ~ .overlay {
  visibility: visible;
  opacity: 0.4;
}

@media screen and (max-width: 750px) {
  #main-menu {
    display: none;
  }
  #hamburger-menu {
    display: flex;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  #logoMobile {
    display: none;
  }
}
