header {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 25px;
  background: #16191D;
  border-bottom: 1px solid rgba(246, 204, 149, 0.25);
  font-family: "Poppins", sans-serif;
}
header a {
  text-decoration: none;
}
@media (max-width: 720px) {
  header {
    padding: 20px;
  }
}
header .logoWrap {
  display: flex;
  align-items: center;
  margin-right: 45px;
  max-width: 127px;
}
header .logoWrap img {
  width: 100%;
}
@media (max-width: 720px) {
  header .logoWrap {
    width: 107px;
  }
}
header .innerHeader {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 720px) {
  header .innerHeader {
    justify-content: space-between;
  }
}
header .menu {
  display: flex;
  align-items: center;
}
@media (max-width: 720px) {
  header .menu {
    display: none;
  }
}
header .menu .menuItem {
  margin-right: 30px;
  position: relative;
  padding: 26px 0;
}
header .menu .menuItem a {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
}
header .menu .menuItem a.selected {
  font-weight: 700;
  color: var(--mainColor);
}
header .menu .menuItem:hover .subItems {
  max-height: fit-content;
  transition: max-height 0.5s ease-in-out;
}
header .subItems {
  max-height: 0;
  transition: max-height 0.5s;
  box-sizing: border-box;
  overflow: hidden;
  background: #16191D;
  box-shadow: 2px 1px 8px rgba(246, 204, 149, 0.25);
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99999;
}
header .subItems .subMenuItem {
  margin: 12px 0 12px;
  padding: 0px 20px 0 20px;
}
header .subItems .subMenuItem a {
  font-size: 18px;
  color: #B09389;
  font-weight: 200;
  white-space: nowrap;
}
header .subItems .subMenuItem a:hover {
  color: var(--mainColor);
}

.mobileMenuWrap {
  display: none;
}
@media (max-width: 720px) {
  .mobileMenuWrap {
    width: 70px;
    display: flex;
    align-items: center;
  }
}
.mobileMenuWrap #nav-icon3 {
  width: 23px;
  height: 20px;
  position: relative;
  margin: 10px 0 10px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.mobileMenuWrap #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.mobileMenuWrap #nav-icon3 span:nth-child(1) {
  top: 0px;
}
.mobileMenuWrap #nav-icon3 span:nth-child(2), .mobileMenuWrap #nav-icon3 span:nth-child(3) {
  top: 8px;
}
.mobileMenuWrap #nav-icon3 span:nth-child(4) {
  top: 16px;
}
.mobileMenuWrap #nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mobileMenuWrap #nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobileMenuWrap #nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobileMenuWrap #nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.mobileMenu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.001s;
  transition-timing-function: linear;
  height: inherit;
  position: absolute;
  width: 100%;
  left: 0;
  top: 81px;
  background: #15191d;
  padding: 10px 20px 0;
  box-sizing: border-box;
}
.mobileMenu .mobileMenuItem {
  margin-bottom: 14px;
}
.mobileMenu .mobileMenuItem a {
  color: #FFFFFF;
}
.mobileMenu .mobileMenuItem .mobileSubItems {
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
}
.mobileMenu .mobileMenuItem .mobileSubItems .mobileSubMenuItem li {
  padding: 3px 0;
}
.mobileMenu .mobileMenuItem .mobileSubItems .mobileSubMenuItem a {
  font-size: 18px;
  color: #B09389;
  font-weight: 200;
  white-space: nowrap;
}
.mobileMenu .mobileMenuItem.open a {
  color: var(--mainColor);
  font-weight: 700;
}
.mobileMenu .mobileMenuItem.open .mobileSubItems {
  max-height: 200px;
}

.open + .mobileMenu {
  display: block;
  border-bottom: 1px solid rgba(246, 204, 149, 0.25);
  max-height: 400px;
  overflow: auto;
  z-index: 999;
}

.accessibility-btn {
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0 0 0 auto;
  overflow: visible;
  text-transform: none;
  padding: 0;
  border: unset;
  background-color: unset;
}
@media (max-width: 720px) {
  .accessibility-btn {
    margin: 0;
  }
}
@media (max-width: 720px) {
  .accessibility-btn.desktop-only {
    display: none;
  }
}
.accessibility-btn .accessibility-svg {
  fill: rgb(255, 255, 255);
  height: 20px;
  width: auto;
  cursor: pointer;
  display: flex;
}
.accessibility-btn .accessibility-svg:hover {
  fill: var(--mainColor);
}

/*# sourceMappingURL=style.css.map */
