@import url("main.inc.css");

/*
This stylesheet handles styles specific for home.inc.php.
It is included by index.php.


***************************
** Begin Default Styling **
*/

#hero {
  display: flex;
  min-height: 950px;
  align-items: center;
  background-color: var(--color1);
  color: var(--color2);
}

#hero div:first-child {
  padding: 70px 0;
  margin: 0 auto;
}

#hero div:last-child {
  display: none;
}

#hero .cta {
  margin-top: 43px;
}

#hero p, #hero .cta {
  margin-left: 10px;
}

#hero p {
  max-width: 320px;
  color: var(--color5);
  font-size: 125%;
}

#hero .notice {
  margin-left: 10px;
}

#intro .image-container li {
  margin-bottom: unset;
}

#intro .image-container > div {
  margin-bottom: 46px;
}

#intro .image-container p {
  margin-top: unset;
  margin-bottom: unset;
}

#reviews {
  position: relative;
  padding-top: 140px;
}

#reviews h2 {
  margin-bottom: 128px;
}

#reviews > img {
  position: absolute;
  top: -70px;
  right: 0px;
  height: 140px;
}

.review{
  margin: 114px auto;
}

.review li {
  margin-bottom: 107px;
}

@media screen and (min-width: 1200px) {

  #hero {
    min-height: 100vh;
  }

  #hero div:first-child {
      padding-left: 9.5%;
      width: 50%;
  }

  #hero div:last-child {
      display: block;
      width: 50%;
      height: 100vh;
      background-image: url(../images/hero.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }

  #intro > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  #intro > .content > div {
    display: flex;
  }

  #intro .image-container {
    width: 50%;
    max-width: 550px;
  }

  #intro .content-container {
    flex-direction: column;
    width: 50%;
    max-width: 500px;
    margin-top: 92px;
  }

  #intro .image-container > div {
    margin-bottom: unset;
  }
  
  #intro > .content > div > div {
    width: 50%;
    max-width: 422px;
  }

  #reviews {
    width: 1200px;
  }

  #reviews > h2 {
      margin-top: 70px;
      max-width: 700px;
  }

  #reviews > img {
      top: -183px;
      right: 5px;
      width: 543px;
      height: 410px;
  }

}  /*  End of 1200px  */