.landing-header {
  position: relative;
  height: 70px;
  background-color: $white;
  margin-bottom: 8px;

  @include sm {
    height: 54px;
  }

  &__content {
    width: 100%;
    height: 100%;
    max-width: $max-width;
    margin: auto;
    padding: 0 $gutter;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    @include sm {
      padding: 0 $gutter-mobile;
    }
  }

  .link-right-arrow {
    justify-self: flex-start;
  }

  &__logo-mask {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    svg {
      display: block;
      width: 218px;
      height: 45px;

      @include sm {
        width: 135px;
        height: 28px;
      }
    }
  }

  .mobile-back-button {
    margin-left: -10px;
  }
}
