@charset "UTF-8";
header {
  position: relative;
  padding: 20px 0px;
  width: 100%;
  z-index: 10001;
}
header.sticky {
  position: absolute;
}
header.sticky.affix {
  position: fixed;
  background-color: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
header .site-branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  text-decoration: none;
}
header .site-branding__tagline {
  font-family: var(--ffont);
  font-size: 15px;
  color: var(--wp--preset--color--primary);
}
header .site-branding__title {
  font-family: var(--ffont);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wp--preset--color--heading);
}
@media only screen and (max-width: 991px) {
  header .header-cta {
    order: 9;
  }
}
@media only screen and (max-width: 991px) {
  header nav {
    width: 100%;
    order: 10;
    max-height: 0;
    overflow: hidden;
    transition-duration: 0.5s;
  }
  header nav.active {
    max-height: 100vh;
    overflow: auto;
  }
  header nav:before, header nav:after {
    content: "";
    height: 32px;
    width: 100%;
    display: block;
  }
}
header nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 24px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  header nav ul {
    flex-direction: column;
    justify-content: center;
  }
}
header nav ul li {
  text-align: center;
  display: flex;
  align-items: center;
}
header nav ul li.current_page_item > a, header nav ul li.current-menu-item > a {
  color: #a30113;
}
header nav ul li.menu-item-has-children {
  position: relative;
}
header nav ul li.menu-item-has-children > a::after {
  content: "⌄";
  margin-left: 4px;
  font-size: 1em;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  header nav ul li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 220px;
    padding: 12px 16px;
    margin: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition, 0.2s), transform var(--transition, 0.2s), visibility var(--transition, 0.2s);
    z-index: 10002;
  }
}
@media only screen and (min-width: 992px) {
  header nav ul li.menu-item-has-children:hover .sub-menu, header nav ul li.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
header nav ul li.menu-item-has-children .sub-menu li {
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}
header nav ul li a {
  font-family: var(--sfont);
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--heading);
  text-decoration: none;
  transition: var(--transition);
}
header nav ul li a:hover {
  color: #a30113;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger {
  width: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamburger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.hamburger .top {
  stroke-dasharray: 40 160;
}
.hamburger .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.hamburger .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.hamburger.active {
  transform: rotate(45deg);
}
.hamburger.active .top {
  stroke-dashoffset: -64px;
}
.hamburger.active .middle {
  transform: rotate(90deg);
}
.hamburger.active .bottom {
  stroke-dashoffset: -64px;
}
