.side-menu ul li a {
  text-shadow: 0 0 3px #fff;

  @media only screen and (min-width: 768.2px) {
    &:hover {
      text-shadow: none;
    }
  }
}

@media only screen and (min-width: 1501px) {
  .side-menu ul li a.work {
    color: #fff;
    text-shadow: none;

    &:hover {
      color: var(--primary-color);
    }
  }
}

.header.scrolled {
  .side-menu ul li a {
    &.work {
      color: #000;

      &:hover {
        color: var(--primary-color);
      }
    }
  }
}
/*  */

.logo {
  & img.dark {
    opacity: 0;
  }

  & img.light {
    opacity: 1;
  }
}

/*  */

.hero-banner {
  position: relative;
}

.hero-content {
  position: absolute;
  right: 4rem;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);

  h1 {
    font-size: clamp(3.4rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -5px;
    line-height: 0.9;
  }

  button {
    background-color: var(--primary-color);
    border: 0;
    color: #fff;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s all;

    & a {
      display: inline-block;
      padding: 0.8rem 2rem;
    }

    &:hover {
      background-color: #fff;
      color: #000;
    }
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .hero-content {
    right: 2rem;

    h1 {
      letter-spacing: -4px;
    }
  }
}

@media only screen and (max-width: 767px) {
  .hero-content {
    right: 1rem;
    text-align: right;
    top: 35%;

    h1 {
      letter-spacing: -3px;
    }

    & button {
      & a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
    }
  }
}
