.header {
  display: flex;
  margin: 30px;
  justify-content: space-between;
  background-color: transparent;
}

.header-logo-wrapper {
  align-content: center;
}

.header-logo {
  align-self: center;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 140px;
  cursor: pointer;
}

.header-button {
  align-items: center;
  background-color: transparent;
  border: none;
  color: var(--primary-purple-color);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: var(--font-size-exit-button);
  font-weight: var(--font-weight-semi-bold);
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  line-height: 11px;
  align-content: center;
  width: 73px;
}

.menu-hamburguer {
  align-self: start;
  margin: auto 0;
  width: 31.06px;
  height: 24px;
}

.menu-box {
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  border-radius: 10px;
  z-index: 998;
}

.top-menu-items {
  width: 100%;
  background: #e7d8d8;
  position: absolute;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
  list-style: none;
  text-align: start;
}

.top-menu-items li {
  padding: 8px 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.top-menu-items li:hover {
  background: #c2cfcf;
}

.top-menu-exit-button {
  position: fixed;
  top: 20px;
  right: 20px;

  color: white;
  padding: 5px 9px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
}

#menu-box {
  display: none;
}

#menu-box.visible {
  display: block;
}

.exit-button-icon {
  align-items: center;
  display: flex;
  height: 25.07px;
  width: 25.07px;
}

@media (min-width: 1024px) {
  .header {
    margin: 35px 13%;
  }

  .header-logo {
    width: 160px;
    height: auto;
  }

  .header-exit-button {
    gap: 8px;
    font-size: var(--font-size-text);
    line-height: 10px;
  }

  .exit-button-icon {
    height: 25px;
    width: 25px;
  }
}

@media (min-width: 1440px) {
  .header {
    margin: 57px 13% 20px;
  }

  .header-logo {
    width: 180px;
    height: auto;
  }

  .header-exit-button {
    gap: 8px;
    font-size: var(--font-size-exit-button-desktop);
    line-height: 21px;
  }

  .exit-button-icon {
    height: 30px;
    width: 30px;
  }
}
