body:has(#wpadminbar) header {
  top: 46px;
}
@media (min-width: 783px) {
  body:has(#wpadminbar) header {
    top: 32px;
  }
}
body:has(#wpadminbar) #wpadminbar {
  position: fixed;
  top: 0;
}

header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #044722;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 10px 0;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08);
}
header .logo-container {
  padding: 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  border: solid 2px transparent;
}
header .logo-container svg {
  height: 77px;
}
header .logo-container svg .cls-1 {
  fill: #0A0A0A;
}
header .logo-container svg:hover .cls-1 {
  fill: #F5F5F5;
}
header .logo-container:hover {
  border: solid 2px #D4AF37 !important;
  border: transparent 2px solid !important;
}
header .logo-container svg {
  height: 77px;
}
@media (min-width: 768px) {
  header .logo-container svg {
    height: 100px;
  }
}
@media (min-width: 992px) {
  header .logo-container svg {
    height: 120px;
  }
}
header a {
  padding: 0 2px 3px 2px;
}
header a:hover {
  border-bottom: 2px solid #D4AF37;
  text-decoration: none;
}
@media (max-width: 768px) {
  header .wrapper {
    width: 100%;
  }
}
header .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
header .menu-toggle .burger-top,
header .menu-toggle .burger-bottom {
  display: block;
  width: 15px;
  height: 2px;
  background-color: #F5F5F5;
  margin: 10px 0;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.3s ease;
}
header .menu-toggle.clicked .burger-top {
  transform: translateY(7px) rotate(-45deg);
}
header .menu-toggle.clicked .burger-bottom {
  transform: translateY(-5px) rotate(45deg);
}
header nav:has(#header-menu) {
  display: none;
}
@media (min-width: 992px) {
  header .menu-toggle {
    display: none;
  }
  header #header-menu-mobile {
    height: 0px !important;
  }
  header nav:has(#header-menu) {
    display: block;
  }
  header nav:has(#header-menu) ul {
    display: flex;
    align-items: center;
  }
  header nav:has(#header-menu) ul li {
    margin-right: 2rem;
  }
  header nav:has(#header-menu) ul li a {
    font-size: 18px;
    font-weight: semi-bold;
  }
  header nav:has(#header-menu) ul li:last-child {
    margin-right: 0;
  }
}
header #header-menu-mobile {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out;
  background-color: #044722;
  z-index: 1000;
  width: 100vw;
  height: 0px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}
header #header-menu-mobile .switch-colour-container {
  justify-content: flex-start;
}
header #header-menu-mobile li {
  padding: 2rem 0;
  border-bottom: solid 1px #0A0A0A;
}
header #header-menu-mobile li:last-child {
  margin-right: 0;
}
header #header-menu-mobile li:first-child {
  border-top: solid 1px #0A0A0A;
}
header:has(.menu-toggle.clicked) #header-menu-mobile {
  height: 100vh;
}
header .switch-colour-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
header #switch-colour-btn, header #switch-colour-btn-mobile {
  display: none;
}
header .switch-colour-label {
  cursor: pointer;
  width: 50px;
  height: 25px;
  background-color: #0A0A0A;
  display: inline-block;
  border-radius: 25px;
  position: relative;
}
header .switch-colour-label::after {
  content: "";
  width: 21px;
  height: 21px;
  background-color: #044722;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease-in-out;
}