/* line 1, home/static/css/header.scss */
header {
  height: 104px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out;
  z-index: 1; }
  /* line 15, home/static/css/header.scss */
  header.nav-up {
    transform: translateY(-100%);
    opacity: 0; }
  /* line 19, home/static/css/header.scss */
  header::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(to top, rgba(23, 23, 23, 0), rgba(23, 23, 23, 0.8) 40%, rgba(23, 23, 23, 0.9) 50%);
    opacity: 0;
    transition: opacity 0.75s linear; }
  /* line 37, home/static/css/header.scss */
  header.background-header::before {
    opacity: 1; }
  /* line 40, home/static/css/header.scss */
  header .home-link {
    height: 40px;
    cursor: pointer; }
    /* line 43, home/static/css/header.scss */
    header .home-link .sparkup-logo {
      height: 100%;
      width: auto;
      pointer-events: none; }
  /* line 49, home/static/css/header.scss */
  header nav {
    display: flex;
    align-items: center; }
  /* line 53, home/static/css/header.scss */
  header .nav-item {
    display: inline-block;
    color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 60px;
    padding: 0 10px;
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat; }
    /* line 67, home/static/css/header.scss */
    header .nav-item:hover {
      text-decoration: underline #ffffff; }
  /* line 71, home/static/css/header.scss */
  header .nav-item-icon {
    padding: 1px 0 0 0;
    height: 60px;
    width: 32px;
    display: inline-flex;
    align-items: center; }
    /* line 77, home/static/css/header.scss */
    header .nav-item-icon * {
      cursor: pointer; }
  /* line 81, home/static/css/header.scss */
  header .dropdown-menu,
  header .dropdown .nav-item:not(.nav-item-icon)::after {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-duration: 500ms;
    transition-property: opacity,transform; }
  /* line 87, home/static/css/header.scss */
  header .dropdown {
    position: relative;
    margin-right: 20px; }
    /* line 90, home/static/css/header.scss */
    header .dropdown .nav-item:not(.nav-item-icon) {
      margin-right: 12px; }
      /* line 92, home/static/css/header.scss */
      header .dropdown .nav-item:not(.nav-item-icon)::after {
        content: "";
        display: block;
        height: 18px;
        width: 18px;
        position: absolute;
        right: 0;
        top: 22px;
        background-color: #ffffff;
        mask-size: cover;
        mask: url("/static/img/chevron-down.svg?e0ba17737d55"); }
    /* line 105, home/static/css/header.scss */
    header .dropdown .nav-item-icon {
      margin-right: 0; }
    /* line 109, home/static/css/header.scss */
    header .dropdown:hover .nav-item {
      text-decoration: underline #ffffff; }
      /* line 111, home/static/css/header.scss */
      header .dropdown:hover .nav-item::after {
        transform: translateY(2px); }
    /* line 115, home/static/css/header.scss */
    header .dropdown:hover .dropdown-menu {
      visibility: visible;
      opacity: 1;
      transform: scale(1) translateY(0); }
  /* line 122, home/static/css/header.scss */
  header .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.99) translateY(-0.7em);
    transform-origin: top;
    position: absolute;
    left: -11px;
    padding: 8px 0 14px 0;
    min-width: 220px;
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); }
    /* line 139, home/static/css/header.scss */
    header .dropdown-menu a {
      display: block;
      font-style: normal;
      font-weight: 500;
      font-size: 15px;
      line-height: 40px;
      text-decoration: none;
      white-space: nowrap;
      color: #ffffff;
      padding: 0 20px;
      cursor: pointer; }
      /* line 150, home/static/css/header.scss */
      header .dropdown-menu a:hover {
        text-decoration: underline; }
  /* line 179, home/static/css/header.scss */
  header .nav-item-icon + .dropdown-menu {
    left: -21px; }
  /* line 182, home/static/css/header.scss */
  header .button.CTA-small {
    color: transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  /* line 188, home/static/css/header.scss */
  header button.menu-button {
    display: none; }
  @media (max-width: 1180px) {
    /* line 194, home/static/css/header.scss */
    header .nav-item {
      display: none; }
    /* line 197, home/static/css/header.scss */
    header button.menu-button {
      display: block;
      width: 40px;
      height: 40px;
      margin: -4px -7px -4px 8px;
      background: url("/static/img/menu.svg?e0ba17737d55");
      background-size: 24px 24px;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer; } }
  @media (max-width: 840px) {
    /* line 1, home/static/css/header.scss */
    header {
      height: 64px;
      padding: 0 15px; }
      /* line 212, home/static/css/header.scss */
      header.nav-up {
        top: -64px; }
      /* line 215, home/static/css/header.scss */
      header .home-link {
        height: 24px;
        align-self: center; }
      /* line 219, home/static/css/header.scss */
      header .button.CTA-small {
        font-size: 12px;
        line-height: 32px;
        padding: 0 12px; } }
