.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  padding: 25px 0;
}

#hero-content {
  grid-column: 1;
  grid-row: 1;
  z-index: 5;

  align-self: center;
}

#hero-content h1 {
  font-size: 36pt;
}

#hero-content p {
  padding-top: 10px;
  font-size: 14pt;
  line-height: 1.5;
}

.hero-image-container {
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 4;
  height: 450px;

  background-image: linear-gradient(
      to left,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255) 60%
    ),
    url("images/stock/bryan-PD-patrol-vehicle-rain-testing.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.get-started {
  padding: 25px 0;
}

#get-started-title {
  text-align: center;
  padding-bottom: 50px;
}

#get-started-text {
  margin: auto;
  width: 65%;
  line-height: 1.5;
}

.w2w-download {
  padding-top: 35px;
  margin: auto;
  width: 60%;

  display: flex;
  flex-direction: column;
  row-gap: 25px;

  text-align: center;
}

.app-store-button {
  height: 60px;
}

@media only screen and (max-width: 780px) {
  .w2w-download {
    flex-direction: row;
    column-gap: 35px;
    padding-top: 35px;
  }

  .app-store-button {
    height: 60px;
  }

  #get-started-text {
    width: 85%;
  }
}

@media only screen and (max-width: 660px) {
  .content {
    padding: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 0),
        rgb(255, 255, 255) 60%
      ),
      url("images/stock/bryan-PD-patrol-vehicle-rain-testing.jpg");
    background-position: bottom;
    background-size: cover;
    height: 100vh;
    width: 100%;
    margin: auto;
  }

  #hero-content {
    height: 100%;
    align-items: baseline;
    text-align: center;
    width: 80%;
    margin: auto;
    padding-top: 55px;
  }

  #hero-content h1 {
    font-size: 30pt;
    line-height: 1.1;
  }

  #hero-content p {
    padding-top: 35px;
    font-size: 14pt;
    line-height: 1.5;
  }

  .hero-image-container {
    display: none;
    height: 80vh;
    border-radius: 0;

    background-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 0),
        rgb(255, 255, 255) 60%
      ),
      url("images/stock/bryan-PD-patrol-vehicle-rain-testing.jpg");
    background-position: bottom;
  }

  #get-started-title {
    text-align: left;
    padding: 0 5%;
    padding-bottom: 35px;
  }

  #get-started-text {
    width: 85%;
  }

  .app-store-button {
    height: initial;
    width: 240px;
  }

  .w2w-download {
    flex-direction: column;
    column-gap: 35px;
    padding-top: 35px;
  }
}
