.faq-list {
  list-style: none;
  margin: 85px 0;
  padding: 0;
}
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid black;
}
.faq-item .question {
  cursor: pointer;
  padding: 3px 0 10px;
  font-weight: 100;
  font-family: "Haboro Serif";
  font-size: 14px;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
}
.faq-item .question svg {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s;
}
.faq-item.active .question svg {
  rotate: 180deg;
}
.faq-item .answer {
  display: none;
  padding: 10px 0;
}
.faq-item.active .answer {
  display: block;
}
.faq-item .answer p {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.17px;
  margin:0;
}
.faqs {
  border-bottom: 1px solid black;
}
.faqs .flex {
  justify-content: space-between;
  display: flex;
  align-items: stretch;
}
.faqs .flex .left {
  width: 50%;
  border-right: 1px solid black;
  padding: 73px 56px 0 65px;
  display: flex;
  flex-direction: column;
}
.faqs .flex .left .small-titles {
  display: flex;
  justify-content: space-between;
}
.faqs .flex .left h2 {
  color: #C78E76;
  font-size: 100px;
  font-style: normal;
  font-weight: 100;
  line-height: 1.1;
  letter-spacing: -2px;
}
.faqs .flex .left .mask {
  width: 100%;
}
.faqs .flex .left h2 em {
  font-style: inherit;
  display: block;
  text-align: right;
  width: 100%;
  padding: 0 8px 0 0;
  margin-top: -19px;
}
.faqs .flex .right {
  background: #F7EFE8;
  width: 50%;
  padding: 50px 94px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.faqs .flex .right .button {
  display: flex;
      height: 25px;
}
.faqs .flex .right .button:hover {
  background:#E4C9B1; 
}
.faqs .flex .right .button img {
  width: 31px;
  height: 15px;
  margin: 0 0 0 9px;
}

@media all and (max-width:1200px) {
  .faqs .flex .right {
    padding: 50px 35px;
  }
  .faqs .flex .left h2 {
    font-size:80px;
  }
  .faq-item .question {
    padding: 3px 20px 10px 0;
  }
}
/* Responsive Styles */
@media (max-width: 1024px) {
	.faqs .flex .left {
		padding: 50px 40px 0 40px;
	}
	.faqs .flex .left h2 {
		font-size: 70px;
	}
	.faqs .flex .right {
		padding: 40px 60px;
	}
	.faq-list {
		margin: 60px 0;
	}
}

@media (max-width: 767px) {
	.faqs .flex {
		flex-direction: column;
	}
	.faqs .flex .left {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid black;
		padding: 30px 20px;
	}
	.faqs .flex .left h2 {
		font-size: 50px;
	}
	.faqs .flex .left h2 em {
		text-align: right;
		padding: 0;
		margin-top: 0;
	}
  .faqs .flex .left h2 {
      font-size: 65px;
      max-width: 357px;
      margin: 30px auto 15px;
  }
	.faqs .flex .right {
      width: 100%;
      padding: 10px 20px 30px;
  }
	.faq-list {
		margin: 30px 0;
	}
	.faq-item .question {
		font-size: 12px;
		padding-right: 30px;
	}
	.faq-item .answer p {
		font-size: 15px;
	}
}
@media all and (max-width:450px) {
  .faqs .flex .left h2 {
      font-size: 55px;
      max-width: 357px;
      margin: 30px auto 15px;
  }
}