@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: 18px;
}

.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 {
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.site-header__nav-list a:not(.site-header__demo-button) {
  display: inline-block;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.site-header__nav-list a:not(.site-header__demo-button)::after {
  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 a:hover {
  color: #ffe8e2;
  text-decoration: none;
}

.site-header__nav-list a[aria-current="page"]::after,
.site-header__nav-list a:not(.site-header__demo-button):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.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: 4px;
}

.site-header__drawer-list a:not(.site-header__demo-button) {
  border-left: 3px solid transparent;
  display: block;
  padding: 12px 14px;
}

.site-header__drawer-list 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;
  }
}
