.header-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-content .content-image {
  width: 60%;
  height: auto;
  padding: 80px;
}
.header-content .content-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.header-content .content-text {
  width: 30%;
  height: auto;
}
.header-content .content-text h1 {
  color: var(--color-orange);
  font-size: 50px;
  line-height: 50px;
  font-weight: 100;
  margin: 0 0 24px;
}
.header-content .content-text .content-text-subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.benefits-list {
  width: 100%;
  margin: 0 auto 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 10%;
}
.benefits-list .benefit {
  width: 24%;
  background-color: var(--color-white);
  margin: 0 0 8px;
  padding: 40px;
  border-radius: 8px;
  line-height: 20px;
  font-size: 13px;
}
.benefits-list .benefit h3 {
  color: var(--color-orange);
  font-size: 24px;
  line-height: 28px;
}

.home-services {
  background-color: var(--color-orange);
  width: 100%;
  height: auto;
  padding: 10%;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.home-services .service {
  background-color: #ffffff;
  width: 42%;
  font-size: 14px;
  height: auto;
  padding: 64px;
  text-align: center;
  border-radius: 8px;
}
.home-services .service h2 {
  color: #f08624;
}
.home-services .service img {
  width: 40%;
  margin: auto;
}
.home-services .service .cta-primary,
.home-services .service .cta-secondary,
.home-services .service .cta-tertiary {
  margin: 20px auto 0;
}

.content-mid {
  width: 100%;
  height: auto;
  color: #ffffff;
  position: relative;
}
.content-mid .detail-image {
  width: 100%;
  height: auto;
}

.cta-full {
  width: 100%;
  height: auto;
  padding: 0 0 40px;
  display: flex;
  justify-content: center;
}

.gallery {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto;
}
.gallery img {
  width: 33%;
  height: auto;
}

@media (max-width: 900px) {
  .header-content {
    flex-wrap: wrap;
  }
  .header-content .content-image {
    width: 100%;
    padding: 0;
  }
  .header-content .content-image img {
    border-radius: 0;
  }
  .header-content .content-text {
    width: 100%;
    padding: 40px;
  }
  .header-content .content-text h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .benefits-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .benefits-list .benefit {
    width: 100%;
  }

  .home-services .service {
    width: 100%;
    padding: 24px;
  }

  .gallery {
    width: 100%;
    height: auto;
    margin: 0
  }
}