.stepostin-header {
  background: #070707;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  width: 100%;
  box-sizing: border-box;
}

.stepostin-header-wrapper {
  max-width: 1140px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stepostin-burger-menu {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 6px;
  cursor: pointer;
  background: transparent;
}

.stepostin-burger-line {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 11px;
}

.stepostin-header-nav {
  display: none;
}

.stepostin-overlay.stepostin-active {
  display: block;
  opacity: 1;
}

.stepostin-sidebar.stepostin-active {
  left: 0;
}

.stepostin-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.stepostin-7);
  z-index: 999;
  transition: opacity 0.3s ease;
}

.stepostin-sidebar {
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  background: #f4f4f4;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  z-index: 1000;
  transition: left 0.3s ease;
}

.stepostin-close-sidebar {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stepostin-close-sidebar:hover {
  color: rgb(97, 93, 93);
  transition: all 0.3s ease;
}

.stepostin-sidebar-content {
  color: white;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.stepostin-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stepostin-header-nav-link {
  color: black;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

@media (min-width: 1024px) {

  .stepostin-header {
    padding: 15px 0;
  }

  .stepostin-header-wrapper {
    flex-direction: row-reverse;
  }

  .stepostin-burger-menu {
    display: none;
  }

  .stepostin-header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .stepostin-header-nav-link {
    color: #ffffff;
  }
}
