/* FAQS */
section.faqs {
	background: var(--brand-grey-lighter);
	/* padding-top: 0; */
	/* color: #fff; */
}

section.faqs h3.title{
	margin-bottom:0;
}

section.faqs div.title p{
	color:#fff;
}

.faq-entry {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-entry .faq-entry-title {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 50px;
	transition: all 0.3s;
	cursor: pointer;
	align-items: flex-start;
	user-select: none;
}

.faq-entry .faq-entry-title:hover {
	color: var(--brand-orange);
}

.faq-entry-title h5 {
	color: inherit;
	margin: 0;
	text-transform: none;
}

.faq-entry-title .chevron {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.faq-entry-content{
	height:0;
	overflow:hidden;
	transition:all 0.5s;
}

.faq-entry-content-text {
	max-width: 720px;
	padding: 20px 0 10px 0;
}

.faq-entry-content p {
	line-height: 1.5rem;
	font-size: 1em;
	font-weight: 500;
}

.faq-entry-content ul{
	
}

.faq-entry-content ul li{
	font-weight:600;
	margin:0.25em 0;
}

