.tis-faq {
	background: #FAFAFA;
	padding: 80px 260px;
}

.tis-faq-inner {
	max-width: 880px;
	margin: 0 auto;
}

.tis-faq-eyebrow {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	text-transform: uppercase;
	color: #FF5C1A;
	text-align: center;
	margin: 0 0 8px;
}

.tis-faq h2 {
	font-size: 40px;
	line-height: 48px;
	font-weight: 600;
	text-transform: capitalize;
	color: #142553;
	text-align: center;
	margin: 0 0 40px;
}

.tis-faq h2 em {
	color: #FF5C1A;
	font-style: italic;
}

.tis-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tis-faq-item {
	background: #fff;
	border: 1px solid #E3E7EE;
	box-shadow: 4px 4px 16px rgba( 0, 0, 0, 0.08 );
	border-radius: 4px;
	padding: 24px 32px;
	box-sizing: border-box;
}

.tis-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	text-transform: capitalize;
	color: #142553;
	cursor: pointer;
	text-align: left;
}

.tis-faq-question::after {
	content: '+';
	flex: none;
	margin-left: 16px;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	color: #FF5C1A;
	transition: transform 0.25s ease;
}

.tis-faq-item.is-open .tis-faq-question::after {
	content: '\2212';
}

.tis-faq-answer-wrap {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.tis-faq-item.is-open .tis-faq-answer-wrap {
	max-height: 300px;
}

.tis-faq-answer {
	font-size: 16px;
	line-height: 24px;
	color: #707070;
	margin: 16px 0 0;
}

@media (max-width: 768px) {
	.tis-faq {
		padding: 40px 20px;
	}

	.tis-faq h2 {
		font-size: 30px;
		line-height: 38px;
	}

	.tis-faq-item {
		padding: 20px;
	}
}
