@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");

:root {
  --site-header-height: 80px;
}

html body {
  margin-top: var(--site-header-height) !important;
}

.site-header,
.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
}

.site-header {
  background: #308d85;
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  height: var(--site-header-height);
  left: 0;
  line-height: 1.42857143;
  padding: 0 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: var(--site-header-height);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0;
  width: 100%;
}

.site-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-header__logo img {
  display: block;
  height: auto;
  max-width: 174px;
  width: 100%;
}

.site-header__desktop-nav {
  display: block;
  margin: 0;
  padding: 0;
}

.site-header__nav-list,
.site-header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-list {
  align-items: center;
  display: flex;
  gap: 28px;
}

.site-header__nav-list li,
.site-header__drawer-list li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header a,
.site-header a:visited,
.site-header button {
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.site-header__nav-group {
  position: relative;
}

.site-header__nav-trigger,
.site-header__drawer-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
}

.site-header__nav-trigger {
  display: inline-block;
  padding: 10px 18px 10px 0;
  position: relative;
  white-space: nowrap;
}

.site-header__nav-trigger::before {
  background: #ffffff;
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
  width: 100%;
}

.site-header__nav-trigger::after,
.site-header__drawer-trigger::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 7px;
}

.site-header__nav-trigger::after {
  right: 1px;
  top: 14px;
}

.site-header__nav-trigger[aria-expanded="true"]::after,
.site-header__drawer-trigger[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.site-header a:hover,
.site-header button:hover {
  color: #ffe8e2;
  text-decoration: none;
}

.site-header__nav-trigger[data-current="true"]::before,
.site-header__nav-trigger[aria-expanded="true"]::before,
.site-header__nav-trigger:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__submenu {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(14, 55, 52, 0.22);
  left: -18px;
  list-style: none;
  margin: 0;
  min-width: 180px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
}

.site-header__submenu::before {
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: -12px;
}

.site-header__submenu a,
.site-header__submenu a:visited {
  border-radius: 6px;
  color: #275f5a;
  display: block;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 12px;
  white-space: nowrap;
}

.site-header__submenu a:hover,
.site-header__submenu a[aria-current="page"] {
  background: #e9f5f3;
  color: #194e4a;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.site-header__demo-button,
.site-header__demo-button:visited {
  background: linear-gradient(90deg, #f24e2a 0%, #f06e51 100%);
  border-radius: 40px;
  color: #ffffff;
  display: inline-block;
  min-height: 40px;
  padding: 10px 18px;
  text-align: center;
  white-space: nowrap;
}

.site-header__demo-button:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__menu-toggle,
.site-header__menu-close {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font: inherit;
  justify-content: center;
  margin: 0;
}

.site-header__menu-toggle {
  border: 1px solid #ffffff;
  border-radius: 4px;
  height: 42px;
  padding: 5px;
  width: 42px;
}

.site-header__menu-toggle img {
  display: block;
  height: 30px;
  width: 30px;
}

.site-header__backdrop {
  background: rgba(14, 39, 37, 0.5);
  height: 100vh;
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 200ms ease;
  width: 100vw;
  z-index: 9999;
}

.site-header__backdrop.is-open {
  opacity: 1;
}

.site-header__drawer {
  background: #308d85;
  box-shadow: -5px 0 12px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  height: 100vh;
  max-width: 86vw;
  overflow-y: auto;
  padding: 24px 20px;
  position: fixed;
  right: -340px;
  top: 0;
  transition: right 220ms ease-in-out, visibility 0s linear 220ms;
  visibility: hidden;
  width: 320px;
  z-index: 10000;
}

.site-header__drawer.is-open {
  right: 0;
  transition-delay: 0s;
  visibility: visible;
}

.site-header__menu-close {
  display: flex;
  height: 38px;
  margin: 0 0 18px 0;
  padding: 6px;
  width: 38px;
}

.site-header__menu-close img {
  display: block;
  height: 25px;
  width: 25px;
}

.site-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-header__drawer-trigger {
  border-left: 3px solid transparent;
  display: block;
  font-size: 16px;
  padding: 12px 42px 12px 14px;
  position: relative;
  text-align: left;
  width: 100%;
}

.site-header__drawer-trigger::after {
  right: 18px;
  top: 17px;
}

.site-header__drawer-trigger[data-current="true"],
.site-header__drawer-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ffffff;
}

.site-header__drawer-submenu {
  list-style: none;
  margin: 4px 0 6px;
  padding: 0 0 0 18px;
}

.site-header__drawer-submenu a:not(.site-header__demo-button) {
  border-left: 3px solid transparent;
  display: block;
  font-size: 15px;
  padding: 10px 14px;
}

.site-header__drawer-submenu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ffffff;
}

.site-header__drawer-list .site-header__demo-button {
  margin: 12px 14px 0;
}

.site-header__sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body.site-header-menu-open {
  overflow: hidden;
}

@media only screen and (max-width: 1100px) {
  .site-header__desktop-nav {
    display: none;
  }

  .site-header__menu-toggle {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header *,
  .site-header *::before,
  .site-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
