/* ------------------------------------------Index Page------------------------------------------------------- */
.main-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #573236;
  height: 400px;
}

.main-banner h1 {
  color: #279e9b;
}

.hero {
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* background-position: 20%; */
  background-size: cover;
  height: 700px;
}
.hero1 {
  position: relative;
  width: 100%;
  margin: auto;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero1 .hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  z-index: -1;
}

.hero1 .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90vw;
  height: 100%;
  padding: 20px;
  margin: auto;
  color: white;
  text-align: center;
}
.hero1 .text h1 {
  font-family: 'Avenir Heavy', sans-serif;
  color: white;
  font-weight: 800;
  font-size: 2.8rem;
  font-style: bold;
  line-height: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px black;
}
.hero1 .text .sub-head {
  margin-bottom: 30px;
}
.hero1 .text p {
  font-size: 1rem;
  text-shadow: 2px 2px 4px black;
}

.hero1 .text button {
  background-color: rgb(237,205,31);
  font-family: 'Avenir Light', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  color: rgb(30,45,59);
  border: none;
  cursor: pointer;
  &:hover {
    /* background-color: #c8d4d2; */
  }
}
/* .hero1 img {
  position: relative;
  height: 490px;
  width: 90vw;
  object-fit: cover;
  object-position: 40% 0;
} */
.hero1 img {
}
.index__section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  overflow: hidden;
}
.grey__bg {
  background-color: white;
  margin: 0;
  padding: 50px 0;
}

.yellow__bg {
  background-color: rgb(237,205,31);
  margin: 0;
  padding: 10px 0;
  &>h2 {
    color: rgb(61,89,117);
  }
}

.index__problems {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 50px;
}
.index__problems>.problem__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f2f2f2;
  max-width: 300px;

  &>h3 {
    line-height: 1.5rem;
    min-height: 80px;
    margin: 0;
    padding: 20px;
    padding-bottom: 0;
    color:rgb(61,89,117);
  }
  &>p {
    margin: 0;
    padding: 20px;
    padding-top: 0;
  }
}

.flex__section {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  height: 100%;
  gap: 2rem;
}
.flex__section.section__reverse {
  flex-direction: column-reverse;
}

.section__feature_image {
  width: min(100vw, 500px);
  min-height: 600px;
  /* background-attachment: scroll; */
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: cover;
}
.section__text {
  width: 90vw;
  margin: 0 2rem;
}

.quick__view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.quick__point {
  text-align: center;
  width: min(90vw, 200px);
  &>h3 {
    color: rgb(61,89,117);
  }
}
.quick__border {
  display: none;
}



.profile_image {
  border-radius: 50%;
  width: min(90vw, 500px);
}
.why__doterra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: min(90vw, 1200px);
}
.why__doterra>img {
  width: min(90vw, 500px);
}

.index__founder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
.index__founder>.founder__content {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: min(90vw, 1200px);
  &>img {
    width: min(90vw, 500px);
  }
}


@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 768px) {
  .hero1 {
    /* flex-direction: row; */
  }
  .hero1 .text {
    width: 50vw;
    height: 100%;
    padding: 50px;
  }
  .hero1 .text h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  .hero1 .hero__image {
    background-attachment: fixed;
  }
  .flex__section.section__reverse {
    flex-direction: row;
  }
  .section__feature_image {
    width: 60%;
  }
  .section__text {
    width: 40%;
  }
  .quick__view {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .quick__point {
    width: min(20%, 200px);
  }
  .quick__border {
    display: block;
    border-left: 2px solid white;
    height: 50px;
    margin: 0 50px;
  }
  .why__doterra {
    flex-direction: row;
  }
  .why__doterra>img {
    width: 50%;
  }
  .index__founder>.founder__content {
    flex-direction: row;
    &>img {
      width: 50%;
    }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
@media screen and (min-width: 2000px) {}
