.farm-bg {
  width: 100%;
  background-image: url(/img/hatter.svg);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.farm-bg__texts {
  max-width: 625px;
  padding-top: 6rem;
  padding-bottom: 25rem;
  margin-left: 9%;
}

.farm-bg__texts h1 {
  font-size: 3rem;
  line-height: 3.75rem;
  margin-bottom: 2rem;
  text-shadow: 2px 3px rgba(255, 255, 255, 0.25);
}

.farm-bg__texts .btns-row {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin-bottom: 1rem;
}

.order-btn {
  display: block;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  border-radius: 2rem;
}

.order-btn--green {
  background-color: #65a30d;
}

.order-btn--orange {
  background-color: orange;
}

.farm-bg__texts p {
  font-size: 1.125rem;
}

.farm-bg > img {
  position: absolute;
  bottom: -10px;
  transform: translateX(-50%);
}

.farm-bg > img:first-of-type {
  height: 200px;
  left: calc(50% - 75px);
}

.farm-bg > img:last-of-type {
  height: 175px;
  left: calc(50% + 75px);
}

@media only screen and (max-width: 768px) {
  .farm-bg {
    background-position: 35% top;
  }
  .farm-bg__texts {
    padding-top: 5rem;
    padding-bottom: 28rem;
  }
  .farm-bg__texts h1 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
}

.wood-bg {
  padding: 8rem 5rem;
  text-align: center;
  background: black;
  background-image: url(/img/wood.jpg);
  background-size: 1275px, cover;
}

.wood-bg__map {
  position: relative;
  max-width: 750px;
  margin: auto;
  padding: 3rem;
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.wood-bg__label {
  position: absolute;
  background-color: white;
  font-size: 1.375rem;
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.75);
}

.wood-bg__label:nth-of-type(1) {
  top: 8rem;
  left: -17rem;
  transform: rotate(3deg);
}

.wood-bg__label:nth-of-type(2) {
  top: 15rem;
  left: -15rem;
  transform: rotate(-2deg);
}

.wood-bg__label:nth-of-type(3) {
  top: 24rem;
  left: -14rem;
  transform: rotate(-4deg);
}

.wood-bg__label:nth-of-type(4) {
  top: 5rem;
  right: -17rem;
  transform: rotate(-3deg);
}

.wood-bg__label:nth-of-type(5) {
  top: 14rem;
  right: -16rem;
  transform: rotate(2deg);
}

.wood-bg__label:nth-of-type(6) {
  top: 21rem;
  right: -13rem;
  transform: rotate(6deg);
}

.wood-bg__map h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.wood-bg__map p {
  max-width: 550px;
  margin: auto;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  .wood-bg {
    padding: 4rem 1rem;
  }
  .wood-bg__map {
    padding: 2rem;
  }
  .wood-bg__label {
    position: static;
    transform: rotate(0) !important;
    margin-bottom: 0.25rem;
  }
  .wood-bg__label:last-of-type {
    margin-bottom: 3.5rem;
  }
}

.advantages {
  padding: 5rem;
  text-align: center;
  background-color: #f3e8d8;
}

.advantages h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.advantages__row {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin: 5rem auto 4rem;
}

.advantages__card {
  background-color: white;
  border-radius: 2rem;
  padding: 2rem;
  margin: 0 1rem;
  max-width: 375px;
  box-shadow: 0 25px 25px -12px rgb(0 0 0 / 0.125);
}

.advantages__card img {
  max-height: 75px;
  margin: -4rem 0 1rem;
}

.advantages__card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.advantages__card p {
  font-size: 1.125rem;
}

.advantages > p {
  font-size: 1.125rem;
  max-width: 750px;
  margin: auto;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 768px) {
  .advantages {
    padding: 4rem 2rem;
  }
  .advantages__row {
    flex-direction: column;
  }
  .advantages__card {
    margin: 2rem 0;
  }
}

.reasons {
  padding: 4rem 0;
}

.reasons h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reasons__row-wrap {
  width: 100%;
  overflow-x: scroll;
  padding: 3rem 1rem;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reasons__row-wrap::-webkit-scrollbar {
  display: none;
}

.reasons__row {
  display: flex;
  flex-direction: row;
  width: fit-content;
}

.reasons__card {
  border-radius: 2.5rem;
  padding: 2.5rem;
  width: 350px;
  margin: 1rem;
  background-color: #65a30d;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05),
    0 8px 10px -6px rgb(0 0 0 / 0.05);
}

.reasons__icon {
  background-color: white;
  text-align: center;
  padding: 1.25rem;
  border: 2px solid rgb(0 0 0 / 0.1);
  border-radius: 2rem;
  width: fit-content;
  margin-top: -5rem;
  margin-bottom: 1.5rem;
}

.reasons__icon img {
  height: 50px;
  -webkit-user-select: none;
  user-select: none;
}

.reasons__icon p {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: black;
  margin: 0;
  -webkit-user-select: none;
  user-select: none;
}

.reasons__card > p {
  font-size: 1.125rem;
  color: white;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 768px) {
  .reasons h2 {
    padding: 0 2rem;
  }
}

.aboutus {
  display: flex;
  flex-direction: row;
}

.aboutus__texts {
  width: 60%;
  padding: 5rem;
  background-color: #f3e8d8;
  position: relative;
}

.aboutus__texts img:first-of-type {
  position: absolute;
  width: 3rem;
  height: auto;
  right: 1rem;
  top: 1rem;
}

.aboutus__texts img:last-of-type {
  position: absolute;
  width: 7.5rem;
  height: auto;
  left: 27.5rem;
  bottom: 2rem;
  opacity: 0.5;
}

.aboutus__texts h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.aboutus__texts p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.aboutus__texts h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.aboutus__img {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  background-image: url(/img/farm.png);
  background-position: bottom;
}

.aboutus__img img {
  width: 100%;
  max-width: 500px;
  margin: 2rem 0;
}

@media only screen and (max-width: 768px) {
  .aboutus {
    flex-direction: column;
  }
  .aboutus__texts {
    width: 100%;
    padding: 5rem 2rem;
  }
  .aboutus__img {
    width: 100%;
  }
  .aboutus__texts img:last-of-type {
    width: 5rem;
    left: 15rem;
  }
}

.flow {
  padding: 5rem 2rem;
  text-align: center;
}

.flow h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

.flow__row {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin: 3rem auto;
}

.flow__row > img {
  max-width: 35px;
}

.flow__card {
  max-width: 292px;
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 1rem;
  margin: 1rem;
  background-color: #faf8f7;
}

.flow__card img {
  max-width: 75px;
  margin-bottom: 1rem;
}

.flow__card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.flow > h3 {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.flow__card p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

@media only screen and (max-width: 768px) {
  .flow__row {
    flex-direction: column;
  }
  .flow__row > img {
    display: none;
  }
}

.testimonial {
  padding: 5rem 0 7rem;
  text-align: center;
}

.testimonial h2 {
  background-color: #000000;
  color: #ffffff;
  font-size: 2rem;
  padding: 0.75rem;
}

.testimonial__row-wrap {
  width: 100%;
  overflow-x: scroll;
  padding: 2rem 1rem;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial__row-wrap::-webkit-scrollbar {
  display: none;
}

.testimonial__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
}

.testimonial__row p {
  font-size: 1.125rem;
  margin: 0 1rem;
  width: 325px;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background-color: #f3e8d8;
  height: fit-content;
  box-shadow: 0 15px 50px -12px rgb(0 0 0 / 0.075);
}

@media only screen and (max-width: 768px) {
  .testimonial {
    display: block;
  }
}

.blog {
  padding: 5rem 2rem;
  text-align: center;
}

.blog h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 3.5rem;
}

.blog__row {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin: auto;
}

.blog__card {
  max-width: 300px;
  text-align: left;
  margin: 0 1rem;
  cursor: pointer;
}

.blog__card img {
  width: 100%;
  border-radius: 0.5rem;
}

.blog__card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog__card p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

@media only screen and (max-width: 768px) {
  .blog__row {
    flex-direction: column;
  }
  .blog__card {
    margin: 0;
    margin-bottom: 2rem;
  }
}

.faq {
  padding: 7rem 5rem 12rem;
  text-align: center;
}

.faq h2 {
  font-size: 2.25rem;
  line-height: 3rem;
  margin-bottom: 3.5rem;
}

.faq__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.faq__quest {
  text-align: left;
}

.faq__quest h3 {
  font-size: 1.125rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}

.faq__quest p {
  font-size: 1.125rem;
  width: 97.5%;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .faq {
    padding: 5rem 1rem;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
}
