header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transition: 0.4s;
}

header.scrolled {
  background-color: #fdebd7;
  padding-bottom: 20px;
  box-shadow: 0px 26px 84px -12px rgba(0, 0, 0, 0.53);
}

.header_top-bar > div {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header_top-bar {
  background-color: var(--color-red);
  padding: 5px 0;
}

.header_top-bar_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_top-bar_right a:first-child,
.header_top-bar_right a:nth-child(2) {
  height: 13px;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.header_inner .logo img {
  height: auto;
  border-radius: 0;
}

.header_inner .main_btn {
  max-width: 200px;
}

.header_nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.8812rem + 1.2422vw, 1.875rem);
  list-style: none;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.header_nav ul li {
  color: var(--color-red);
}
/* .header_nav ul li:nth-child(2) a,
.header_nav ul li:first-child a {
  color: var(--color-red);
} */

.header_nav a {
  text-transform: capitalize;
  transition: 0.2s;
  font-family: "Montserrat", sans-serif;
}
/* .header_nav a:hover {
  color: var(--color-red);
} */

.header_top-bar,
.header_mobile {
  display: none;
}
