

/*all just faq stuff*/
#faqsect {
	padding: 140px 60px 80px;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.faqhead {
	color: #e8e8e8;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
}
.faqitem {
	background-color: #1a1a1c;
	border-radius: 18px;
	padding: 24px 32px;
	margin: 0 auto 20px;
	max-width: 800px;
	cursor: pointer;
}
.faqask {
	color: #e8e8e8;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faqtext {
	color: #888890;
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	margin-top: 0;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faqitem.open .faqtext {
	opacity: 1;
}
.faqicon {
	width: 18px;
	height: 18px;
	fill: #555558;
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}
.faqitem.open .faqicon {
	transform: rotate(0deg);
}