.main {
  margin: 2em 0;
}

@media screen and (min-width: 40rem) {
  .inner > header {
    /* border: 2px solid blue; */
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
  }
}

.services h2 {
  margin-bottom: 1em;
  text-align: center;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  justify-content: center;
  padding: 1em;
  text-align: center;
  background-color: transparent;
}

.card {
  box-shadow: 0px 0px 5px white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0.9375rem;
}

.card i {
  font-size: 2.5rem;
}

.card > p {
  text-align: left;
}

.hero-wrapper {
  background-image: url(/images/hero-image-bobby.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top 1.25rem center;
  height: 100vh;
}

.sub-inner-text {
  margin: 0em auto;
}

.header-two {
  padding: 2em;
  display: grid;
  gap: 1.5625rem;
}

.header-two > h1 {
  margin-bottom: 0;
}
