.header-parent {
  display: inline;
}

.header {
  position: relative;
  display: flex;
  /* flex-direction: row; */
  width: 100%;
  min-height: 100px;
  padding: min(5vw, 20px) min(5vw, 50px);
  background-color: #FFFFFF;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.header2 {
  position: relative;
  display: flex;
  /* flex-direction: row; */
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: min(5vw, 20px) min(5vw, 50px);
  /* padding-top: 0; */
  background-color: transparent;
  /* box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4); */
  z-index: 10;
}

.header .logo,
.header2 .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform: translate(-50%, -50%);
}
.header .logo>img,
.header2 .logo>img {
  width: 120px;
}
/* .header2 .logo>img:first-child {
  display: block;
}

.header2 .logo>img:last-child {
  display: none;
} */
/* -----------------------------------Sticky Header----------------------------------------------- */
.header2.sticky {
  background-color: #FFFFFF;
  color: black;
}

.header.sticky, .header2.sticky {
  position: sticky;
  top: 0;
  height: 100px;
  padding: min(5vw, 10px) min(5vw, 50px);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4);
  animation-name: fadein;
  animation-duration: 0.3s;
  z-index: 10;
}
.header.sticky .logo,
.header2.sticky .logo {
  width: 120px;
}
.header.sticky .logo>img, .header2.sticky .logo>img {
  margin: auto;
  width: 120px;
}
.header2.sticky .logo>img:first-child {
  display: none;
}

.header2.sticky .logo>img:last-child {
  display: block;
}
.header .menu-links, .header2 .menu-links {
  display: none;
}


.menu li,
.menu-links li{
  list-style-type: none;
}
.menu li a,
.menu-links li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  /* text-transform: uppercase; */
  text-decoration: none;
  color: #407D96;
  font-size: 1rem;

  &:hover {
    color: #9cbeba;
  }
}

/* -----------------------------------Menu Icons----------------------------------------------- */


.header .menu-icons, .header2 .menu-icons {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  /* margin: auto;
  margin-right: 0; */
  margin-left: 2rem;
  padding-left: 0;
}
.menu li,
.menu-icons li{
  list-style-type: none;
}
.menu li a,
.menu-icons li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: black;
}

.header2 .menu li a,
.header2 .menu-icons li a {
  color: #407D96;
  &:hover {
    color: #9cbeba
  }
}
.header2.sticky .menu li a,
.header2.sticky .menu-icons li a {
  color: #407D96;

  &:hover {
    color: #9cbeba;
  }
}

.menu-icons i {
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
}
.menu-icons li:nth-last-child(2),
.menu-icons li:last-child {
  display: none;
}

#cart-icon .number-of-items{
  font-size: 0.4em;
  letter-spacing: 0.1px;
  text-align: center;
  color: #407D96;
  font-style: normal;
  position: absolute;
  top: 0;
  right: -5px;
  background-color: #FFC13E;
  border: 0.1em solid #FFC13E;
  border-radius: 50%;
  width: 1.6em;
}
.bi-ticket-perforated::before {
  transform: rotate(-20deg);
}

/* -----------------------------------Mobile Menu----------------------------------------------- */
.overflow-hide {
  overflow: hidden;
}
.menu-left {
  align-self: center;
}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}
.header2 .menu-toggle {
  color: #424242;
  padding-top: 1rem;
}
.header2.sticky .menu-toggle {
  /* color: black; */
  padding-top: 0;
  &:hover {
    color: var(--colour-4);
  }
}
.dialog__mobile-menu {
  border: none;
  background-color: rgba(232, 233, 225, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-y: hidden;
  animation: mobile-menu-slidein-left 0.5s ease-out;
}
.dialog__mobile-menu:open {
  animation: mobile-menu-slidein-left 0.5s ease-out;
  -webkit-animation: mobile-menu-slidein-left 0.5s ease-out;
}
.dialog__mobile-menu::backdrop {

}
.dialog__mobile-menu>.menu-links {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 150px;
  padding-left: 50px;
  gap: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.dialog__mobile-menu>.menu-links>li>a{
  font-size: 1.5rem;
  color: black;
  &:hover {
    color: #B59155;
  }
}

.dialog__mobile-menu .close-button {
  display: block;
  color: black;
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 100;
  font-size: 2rem;
  cursor: pointer;
  &:focus {
    outline: none;
  }
}
.cta-button {
  display: none;
}
@media screen and (min-width: 425px) {
  /* Main */
  .header .menu-links
  .header2 .menu-links {
    gap: 0.8rem;
  }
  .header .menu-icons,
  .header2 .menu-icons {
    gap: 0.8rem;
  }
  .menu-icons i {
    font-size: 1.5rem;
  }

}
@media screen and (min-width: 600px) {
  .menu-icons li:nth-last-child(2),
  .menu-icons li:last-child {
    display: block;
  }
  .cta-button {
    display: block;
    margin: auto 0;
    padding-top: 1rem;
    & a>button {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: white;
      text-transform: uppercase;
      background-color: #407D96;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      cursor: pointer;
    }
    & a>button:hover {
      background-color: #9cbeba;
    }
  }

}
@media screen and (min-width: 769px) {
  .header, .header2 {
    align-items: center;
    justify-content: center;
  }
  .header .logo, .header2 .logo{
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    width: auto;
    /* padding-top: 10px; */
  }
  .header .logo>img, .header2 .logo>img {
    width: 150px;
  }
  .header.sticky .logo,
  .header2.sticky .logo{
    padding-top: 0;
  }
  .header .menu-links, .header2 .menu-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: min(70%, 800px);
    gap: 2rem;
    font-size: 0.65rem;
    padding-left: 0;
  }
  .header .menu-icons, .header2 .menu-icons{
    gap: 1rem;
  }
  .menu-toggle {
    display: none;
  }
  .cta-button {
    padding-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .header .menu-links, .header2 .menu-links {
    gap: 1.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .header .menu-links, .header2 .menu-links {
    gap: 4rem;
  }
}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
