#home-title {
  background-image: url(/img/plant.png);
  background-position: center;
  background-repeat: repeat-x;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  @media (max-width: 499px) {
    background-size: 300% auto;
  }
  @media (min-width: 500px) and (max-width: 999px) {
    background-size: 200% auto;
  }
  @media (min-width: 1000px) {
    background-size: 100% auto;
  }
  > .overlay {
    background-color: var(--colorBlue);
    inset: 0;
    opacity: 0.9;
    position: absolute;
    z-index: 1;
  }
  > .text {
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: 1100px;
    min-height: 290px;
    padding: 40px 15px 40px 15px;
    z-index: 2;
    > div {
      background-color: var(--colorGreen);
      height: 2px;
      margin: 20px 0px 20px 0px;
      width: 50px;
    }
    > h1 {
      color: white;
      margin: 0px 0px 0px 0px;
      > span {
        color: var(--colorGreen);
        font-size: 2.4rem;
      }
    }
    > p {
      color: white;
      max-width: 400px;
    }
  }
}
