/**
 *  Styling for the Header Section
**/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  margin: auto;
  padding: 1rem 0;
  border-top: solid 6px var(--wp--preset--color--primary);
  border-bottom: solid 1px var(--wp--preset--color--black);
  background-color: var(--wp--preset--color--white);
  transition: all 150ms ease-out;
}
.admin-bar .header {
  margin-top: 2.875rem;
}
@media (min-width: 48.875rem) {
  .admin-bar .header {
    margin-top: 2rem;
  }
}
.header:before, .header:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  background-color: var(--wp--preset--color--black);
  transition: all 150ms ease-out;
}
@media (min-width: 60rem) {
  .header:before, .header:after {
    width: calc(50% - 10rem);
    bottom: 2.75rem;
  }
}
.header:before {
  left: 0;
}
.header:after {
  right: 0;
}
@media (min-width: 60rem) {
  .header {
    padding: 1.25rem 0;
    border-bottom: none;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  }
}
.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-left: var(--wp--preset--spacing--30) !important;
  padding-right: var(--wp--preset--spacing--30) !important;
}
.header a {
  font-family: var(--wp--preset--font-family--montserrat);
  color: var(--wp--preset--color--black);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.125rem;
  text-decoration: none;
}
.header .logo {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
  left: 0;
  top: 0;
  transition: all 150ms ease-out;
}
.header .logo.desktop {
  opacity: 0;
}
@media (min-width: 60rem) {
  .header .logo.desktop {
    opacity: 1;
    top: 0;
  }
}
@media (min-width: 60rem) {
  .header .logo.mobile {
    opacity: 0;
    top: 1rem;
  }
}
.header__links {
  display: none;
  position: relative;
  padding: 0;
}
.header__links li {
  margin: 0;
  display: flex;
  align-items: center;
}
.header__links > *:not(:last-child) {
  margin-right: 1.25rem;
}
@media (min-width: 75rem) {
  .header__links {
    display: flex;
    list-style: none;
    margin-bottom: 0;
  }
}
.header__links .title:hover, .header__links .title:active {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--primary) !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3125rem;
}
.header__links--sign-in ul {
  display: none;
}
.header__links--sign-in.logged-in:hover ul {
  display: block;
}
.header__section--navigation {
  width: calc(50% - 4rem);
  display: flex;
  align-items: center;
  transition: all 150ms ease-out;
}
@media (min-width: 60rem) {
  .header__section--navigation {
    width: calc(50% - 6rem);
    margin-bottom: 2.5rem;
  }
}
.header__section--branding .site-branding {
  position: relative;
  width: 8rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease-out;
}
@media (min-width: 48rem) {
  .header__section--branding .site-branding {
    width: 12.5rem;
  }
}
@media (min-width: 60rem) {
  .header__section--branding .site-branding {
    width: 14rem;
    min-height: 6rem;
  }
}
.header__section--links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(50% - 4rem);
  transition: all 150ms ease-out;
}
@media (min-width: 60rem) {
  .header__section--links {
    width: calc(50% - 6rem);
    margin-bottom: 2.5rem;
  }
}
.header__search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 75rem) {
  .header__search-wrapper {
    margin-right: 1.25rem;
  }
  .header__search-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    height: 2.25rem;
    width: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--wp--preset--color--black);
  }
}
.header__search {
  position: absolute;
  right: 0.75rem;
  z-index: 9;
  right: 3rem;
  width: 12.5rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 100ms ease, transform 100ms ease;
}
.header__search-btn {
  position: relative;
  padding: 0;
  background-color: transparent;
  min-height: 2.75rem;
  min-width: 2.75rem;
  z-index: 1;
}
.header__search-btn path {
  transition: all 100ms ease;
}
.header__search-btn:hover, .header__search-btn:focus-visible {
  background-color: transparent;
}
.header__search-btn:hover path, .header__search-btn:focus-visible path {
  fill: var(--wp--preset--color--tertiary);
}
.header__search-field {
  border: solid 1px var(--wp--preset--color--black);
  width: 10rem;
  line-height: 2rem;
  padding: 0 1.75rem 0 0.6rem;
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--wp--preset--color--white);
  width: 100%;
}
.header__search-field::placeholder {
  color: #999999;
}
.header__search-field:focus {
  cursor: auto;
  outline: none;
}
@media (min-width: 60rem) {
  .header.scroll-down {
    padding: 0;
  }
  .header.scroll-down:before, .header.scroll-down:after {
    width: 50%;
    bottom: 0;
  }
  .header.scroll-down .desktop.logo {
    top: -1rem;
    opacity: 0;
  }
  .header.scroll-down .mobile.logo {
    top: 0;
    opacity: 1;
  }
  .header.scroll-down .site-branding {
    min-height: 5rem;
  }
  .header.scroll-down .header__section--links,
  .header.scroll-down .header__section--navigation {
    margin-bottom: 0;
  }
}
.header .user-links {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: var(--wp--preset--color--white);
  border: solid 1px #d2d2d2;
  padding: 0.5rem;
  min-width: 9.375rem;
  z-index: 99;
  margin: 0;
}
.header .user-links li {
  padding: 0.5rem;
}
.header .user-links a:hover, .header .user-links a:active {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--black);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem);
}

.toggled {
  opacity: 1 !important;
  overflow-y: scroll !important;
  visibility: visible !important;
  display: grid !important;
}

#wpadminbar {
  position: fixed !important;
  top: 0;
}
