.home-services {
  position: relative;
  overflow: hidden;
  padding: 85px 0 115px;
  background: #fff;
}

.home-services::before {
  content: "";
  position: absolute;
  inset: 0 0 31%;
  background-color: #171717;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.home-services .container {
  position: relative;
  z-index: 1;
}

.home-services-heading {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 60px;
  margin-bottom: 72px;
  color: #fff;
}

.home-services-heading > div {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 9px;
  text-transform: uppercase;
}

.home-services-heading span {
  color: var(--yellow);
  font: 300 36px Oswald, sans-serif;
}

.home-services-heading h2 {
  margin: 0;
  font: 600 38px Oswald, sans-serif;
}

.home-services-heading i {
  width: 48px;
  height: 12px;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: skewX(-25deg);
}

.home-services-heading p {
  max-width: 720px;
  margin: 70px 0 0;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-services-grid article {
  position: relative;
  min-height: 390px;
  padding: 48px 30px 30px;
  background: #f2f3f3;
  border-top: 10px solid var(--yellow);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  transition: transform .35s, background .35s;
}

.home-services-grid article:hover {
  transform: translateY(-10px);
  background: #fff;
}

.home-services-grid b {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #e0e2e2;
  font: 700 76px/1 Oswald, sans-serif;
}

.service-symbol {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151515;
  border-bottom: 3px solid var(--yellow);
  font: 400 52px/1 Oswald, sans-serif;
}

.home-services-grid h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 16px;
  font: 600 23px/1.2 Oswald, sans-serif;
  text-transform: uppercase;
}

.home-services-grid p {
  margin: 0;
  color: #525b60;
  font-size: 13px;
}

.home-services-grid a {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-services-grid a span {
  margin-left: 8px;
  color: #111;
  font: 700 22px/1 Arial, sans-serif;
}

@media (max-width: 1050px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .home-services {
    padding: 70px 0;
  }

  .home-services::before {
    bottom: 12%;
  }

  .home-services-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .home-services-heading p {
    margin: 0;
    font-size: 18px;
  }

  .home-services-heading span,
  .home-services-heading h2 {
    font-size: 30px;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

.project-intro {
  align-items: start;
}

.project-scope {
  padding: 30px 34px;
  border-left: 5px solid var(--yellow);
  background: #f6f6f4;
}

.project-scope h3 {
  margin: 0 0 14px;
  font: 600 22px Oswald, sans-serif;
  text-transform: uppercase;
}

.project-scope p {
  margin: 0;
  color: #4f5a60;
  font-size: 15px;
}

.project-scope ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.project-scope li {
  position: relative;
  padding-left: 20px;
  color: #59646a;
  font-size: 13px;
}

.project-scope li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--yellow);
}

.fact-row div {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.fact-row span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fact-row strong {
  color: var(--ink);
  font-size: 13px;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
}

.form-status.success {
  color: #155e35;
  background: #dcf5e6;
  border-left: 4px solid #249659;
}

.form-status.error {
  color: #812828;
  background: #f9e2e2;
  border-left: 4px solid #c84b4b;
}

.map-section {
  height: 470px;
  background: #e5e7e6;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(.28);
}
