@import url("https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&family=Manrope:wght@200..800&display=swap");
body.modal-open {
  overflow: hidden;
}

header {
  width: 100%;
}

header .container-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  transition: background 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  right: 0;
  font-family: "Handjet", system-ui;
}

header .logo-header img {
  max-width: 100%;
}

header .close-icon {
  color: white;
}

header .menu-burger {
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-right: 112px;
  width: 100%;
  margin-top: 10px;
}

header .menu-burger img {
  width: 32px;
  height: 100%;
}

header .menu-container {
  height: 100%;
}

header .drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #d6645d;
  border: 1px solid #d6645d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header .hidden {
  display: none;
}

header .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

header .drawer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header .menu-item {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

header .item-id {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  margin-right: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  header .container-header {
    padding: 16px 10px;
  }
  header .logo-header {
    width: 190px !important;
  }

  header .menu-burger img {
    width: 32px;
  }
}

/* BETWEEN 768px and 1024px */

@media (min-width: 768px) and (max-width: 1024px) {
  header .logo-header {
    width: 120px !important;
  }
}

@media (min-width: 1024px) {
  header .container-header {
    padding: 20px;
  }
}
