.intro {
  margin-top: var(--section-spacing);
  padding-inline: calc(calc(100vw - var(--website-width)) / 2);

  h1 {
    font-size: 5vh;
    line-height: 1.2;
    font-weight: 900;
    color: var(--color-neutral-900);
  }

  p {
    margin-top: calc(var(--section-spacing) / 4);
    opacity: 0.5;
    font-size: 1.25rem;
    font-weight: 300;
  }

  strong {
    font-weight: 600;
    text-transform: uppercase;
  }
}

.services {
  display: grid;
  padding-inline: calc(calc(100vw - var(--website-width)) / 2);

  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  margin-block: 8vh;

  @media screen and (width<800px) {
    grid-template-columns: 1fr;
    gap: 6vh;
    width: 90%;
    margin-inline: auto;
  }

  h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
  }

  h3 {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
  p {
    margin-top: 0.8rem;
    font-size: 1.25rem;
    font-weight: 200;
  }

  img {
    width: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  }
}

.info {
  margin-top: var(--section-spacing);
  margin-bottom: calc(var(--section-spacing) + 48px);
  padding-inline: calc(calc(100vw - var(--website-width)) / 2);
  display: flex;
  flex-direction: column;
  gap: 3vh;

  div {
    padding: 1.5vh 5vw;
    border-radius: 1rem;
    background-repeat: no-repeat;
    background-position: right 6vw center;
    background-size: 4.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);

    h2 {
      font-size: 3rem;
      font-weight: 500;
    }

    p {
      font-size: 1.25rem;
      letter-spacing: 1px;
      font-weight: 300;

      @media screen and (width<800px) {
        padding-right: 5rem;
      }
    }
  }

  .revenue {
    background-color: #2b2b2b;
    color: white;
    background-image: url(images/ico-growth.svg);
    h2 {
      color: #c6ff09;
    }
  }

  .experience {
    background-color: white;
    background-image: url(images/ico-experience.svg);
    h2 {
      color: #3498db;
    }
  }

  .delivery {
    background-color: #2b2b2b;
    color: white;
    background-image: url(images/icon-delivery.svg);
    h2 {
      color: #ffc11a;
    }
  }
}
