/*to run in console => sass --watch hero-section.scss ../Styles/hero-section.css*/
/*
    to run in console => sass --watch header.scss ../../Styles/header.css
*/
div.bannertext h1 {
  color: #f28b00ff;
}

div.hero-column h1 {
  color: #f28b00ff;
}

h1 {
  color: #484343;
  font-weight: 600;
  font-size: 1.4em;
}

div.hero-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), white), url("../Images/hero-background.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 600px;
}
div.hero-section div.hero-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 6rem;
}
div.hero-section h1 {
  font-size: 7rem;
}
div.hero-section p {
  font-size: 2.5rem;
  color: #323e48ff;
}
@media (min-width: 1200px) {
  div.hero-section {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), white 60%), url("../Images/hero-background.jpg");
  }
}
@media (max-width: 600px) {
  div.hero-section {
    background-position: center;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.5), white), url("../Images/hero-background.jpg");
  }
  div.hero-section div.hero-column {
    padding-left: 1rem;
  }
  div.hero-section h1 {
    font-size: 5rem;
  }
  div.hero-section p {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=hero-section.css.map */
