.hero_section {
  top: 0px;
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow: hidden;
}

#hero_con_1 {
  position: absolute;
  bottom: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 800px;
  color: var(--herotext);
}

#text_div {
  margin: 40px 20px;
}

#text_div p {
  margin: 0;
  font-size: 50px;
  line-height: 0.9;
  font-weight: 200;
}

#text_div p:nth-child(2) {
  margin: 0;
  font-size: 50px;
  line-height: 0.9;
  font-weight: 600;
}

#text_div p:nth-child(3) {
  margin: 0;
  font-size: 50px;
  line-height: 0.9;
  font-weight: 400;
}

#text_div p:nth-child(4) {
  margin: 5px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
}

#text_div p:nth-child(5) {
  width: 90%;
  margin: 5px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 200;
  text-wrap: pretty;
  color: #86500e;
}

#hero_con_2 {
  top: 0;
  position: absolute;
  height: 90%;
  width: 100%;
  background-color: var(--herobackground);
  background-image: url('../Assets/Hero-images/HeroBG.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% 100%;
  overflow: hidden;
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
  #text_div {
    margin: 60px 15%;
  }

  #text_div p,
  #text_div p:nth-child(2),
  #text_div p:nth-child(3) {
    font-size: 80px;
    /* Scaled up from 50px */
  }

  #text_div p:nth-child(4) {
    font-size: 20px;
    /* Scaled up from 15px */
    margin-top: 20px;
  }

  #text_div p:nth-child(5) {
    font-size: 28px;
    /* Scaled up from 20px */
    max-width: 600px;
    background-color: #ffffff80;
    padding: 10px;
  }

  #hero_con_2 {
    background-image: url('../Assets/Hero-images/HeroBG.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: 1% 10%;
  }
}