.home-faqs {
  background-color: #d8cec7;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}

.home-faqs-title {
  display: flex;
  /*justify-content: flex-start;*/
  align-items: center;
  min-height: 100px;
  align-self: flex-start;
  color: #836a59
}

.faq-p {
  align-self: flex-start;
  color: #836a59
}

.home-faqs-content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding: 4rem;
}

.home-faqs-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 50%;
}

.faq-toggle {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f9f8f6;
  border-radius: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #836a59;
}

.question-div {
  display: flex;
  flex-direction: row;
  background-color: #f9f8f6;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  border-radius: 20px;
}

.answer-div {
  padding: 0.5rem;
  border-radius: 20px;
}

.faq-toggle p {
  color: #836a59;
  margin-bottom: 0px;
  margin-left: 1rem;
}

.faq-cropped-img {
  display: flex;
  align-items: flex-start;
  flex: 1 1 50%;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.faq-aspect {
  aspect-ratio: 0.88/1;
}

.faq-arrow {
  align-self: flex-end;
  color: black;
  width: 15;
  height: 10;
}

.rotated {
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .home-faqs-content {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0;
  }

  .home-faqs-title {
    align-self: center;
  }

  .home-faqs-column {
    width: 100%;
  }
}
