#hero,#services {
  color: rgb(var(--pri));
}

#hero {
  padding: var(--header-padding-x);
  font-size: 1.2em;
}

#hero h1 {
  font-weight: normal;
  font-size: 2em;
}

#hero p {
  line-height: 150%;
  opacity: .8;
}

#services {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 var(--header-padding-x) var(--header-padding-x);
  gap: var(--header-padding-x);
  max-width: 1400px;
  margin: 0 auto;
}

.service {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}

.service img {
  width: 100%;
  aspect-ratio: 16 / 9;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  object-fit: cover;
  object-position: 75% 0;
}

.service h2 {
  font-weight: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.service p {
  line-height: 150%;
}

.service p+p {
  margin-top: 0.5rem;
}

.service ul {
  list-style-position: inside;
  margin: 1rem 0;
}

.service li+li {
  margin-top: 0.5rem;
}

@media (max-width:1000px) {
  #services {
    grid-template-columns: 1fr;
  }
}