/* FAQs page */
.wrapper {
	max-width: 1200px;
	margin: auto;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}
h1 span {
	font-size: 5rem;
	color: #BE8E9E;
	font-family: 'Bathilda', sans-serif;
	word-spacing: -1.5rem;
}
h2 {
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	margin:  0;
}
h3 {
	margin: 0;
	font-size: 1rem;
}

#faqs {
	display: grid;
	grid-template-columns: auto auto;
	grid-column-gap: 4rem;
	grid-row-gap: 2rem;
	margin:  6rem auto;
}
#faqs .icon {
  background: #5E2B80;
  border-radius: 5rem;
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  box-sizing: border-box;
  position: absolute;
  left: -2rem;
  top: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: .8;
  text-align: center;
}
#faqs .question {
	background: #E8DEEA;
	border-radius: 1rem;
	box-shadow: 0 0 #000;
	padding:  1rem 4rem;
	position: relative;
	max-height: 2rem;
	height:  2rem;
	transition:  .5s;
	margin-bottom: 2rem;
	cursor: pointer;
}
#faqs .inner {
	opacity: 0;
	cursor: default;
}
#faqs .question.open {
	height:  auto;
	max-height: 1000px;
}
#faqs .question.open .inner {
	opacity: 1;
}
#faqs > div:nth-child(2) > div:nth-child(1):not(.open) {
  height: 3rem;
  max-height: 3rem;
}
@media(max-width: 1280px) {
	#faqs {
		grid-template-columns: auto;
		margin:  1rem 0;
		margin-left: 2rem;
		grid-gap: 0;
		padding:  2rem 2rem;
	}
	#faqs .question {
		height: 2rem;
		max-height: 2rem;
	}
}
@media(max-width: 638px) {
	#faqs > div:nth-child(1) > div:nth-child(5):not(.open), #faqs > div:nth-child(2) > div:nth-child(1):not(.open) {
		height: 3.5rem;
		max-height: 3.5rem;
	}
}
@media(max-width: 598px) {
	#faqs > div:nth-child(2) > div:nth-child(2):not(.open) {
		height: 3.5rem;
		max-height: 3.5rem;
	}
}
@media(max-width: 549px) {
	#faqs > div:nth-child(1) > div:nth-child(4):not(.open) {
		height: 3.5rem;
		max-height: 3.5rem;
	}
}
@media(max-width: 512px) {
	#faqs > div:nth-child(1) > div:nth-child(3):not(.open),#faqs > div:nth-child(1) > div:nth-child(2):not(.open)  {
		height: 3.5rem;
		max-height: 3.5rem;
	}
}
@media(max-width: 480px) {
	#faqs > div:nth-child(1) > div:nth-child(1):not(.open) {
		height: 3.5rem;
		max-height: 3.5rem;
	}
}
@media(max-width: 438px) {
	#faqs > div:nth-child(1) > div:nth-child(5):not(.open), #faqs > div:nth-child(2) > div:nth-child(1):not(.open) {
		height: 5rem;
		max-height: 5rem;
	}
}
@media(max-width: 426px) {
	#faqs > div:nth-child(2) > div:nth-child(2):not(.open), #faqs > div:nth-child(1) > div:nth-child(4):not(.open) {
		height: 5rem;
		max-height: 5rem;
	}
}