.home-page .hero-section {
  height: 100vh;
  background: var(--gradient);
}
.home-page .hero-section .content {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.home-page .hero-section h1 {
  max-width: 700px;
  text-transform: uppercase;
}
.home-page .right-side {
  padding-left: 25px;
}
.home-page .left-side {
  padding-right: 25px;
}

#home-hero-background {
  position: absolute;
  top: -1%;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 102%;
  opacity: 0.1;
}
#home-hero-background .home-hero-background-piece {
  fill: none;
  stroke: var(--white);
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}

.about-section {
  background-color: var(--gray);
}
.about-section p {
  margin-top: 0;
}
.about-section .single-about-bullet {
  margin-bottom: 30px;
}
.about-section .lead-bullet {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  #home-hero-background {
    position: absolute;
    top: -1%;
    right: 0;
    left: -50%;
    margin: 0 auto;
    height: 102%;
    opacity: 0.1;
  }
}
@media screen and (max-width: 885px) {
  .home-page .right-side {
    padding-left: 0px;
  }
  .about-section {
    padding-top: 120px;
  }
  .about-section .left-side {
    margin-bottom: 40px;
  }
}