.df-faq {
	background: #fff;
	font-family: "Montserrat", sans-serif;
	color: #000;
}

.df-faq *,
.df-faq *::before,
.df-faq *::after {
	box-sizing: border-box;
}

.df-faq__inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: var(--df-section-y, 72px) var(--df-section-x, 24px);
}

.df-faq__title {
	margin: 0 0 32px;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-size: var(--df-title-size, 50px);
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	text-transform: none;
}

.df-faq__list {
	width: 100%;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.df-faq__item {
	background: #fff;
	border-top: 1px solid #e5e5e5;
}

.df-faq__item:first-child {
	border-top: none;
}

.df-faq__item--alt {
	background: #f4f4f4;
}

.df-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 22px 27px;
	border: none !important;
	background: transparent !important;
	color: #000 !important;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
	box-shadow: none !important;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
}

.df-faq__question:hover,
.df-faq__question:focus,
.df-faq__question:focus-visible,
.df-faq__question:active {
	color: #000 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

.df-faq__icon {
	position: relative;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
}

.df-faq__question:hover .df-faq__icon,
.df-faq__question:focus .df-faq__icon,
.df-faq__question:active .df-faq__icon {
	border: none !important;
	background: transparent !important;
	transform: none !important;
	box-shadow: none !important;
}

.df-faq__icon::before,
.df-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #131313;
	transform: translate(-50%, -50%);
	transition: opacity 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.df-faq__icon::before {
	width: 20px;
	height: 2.5px;
}

.df-faq__icon::after {
	width: 2.5px;
	height: 20px;
}

.df-faq__item.is-open .df-faq__icon,
.df-faq__item.is-open .df-faq__question:hover .df-faq__icon,
.df-faq__item.is-open .df-faq__question:focus .df-faq__icon,
.df-faq__item.is-open .df-faq__question:active .df-faq__icon {
	background: transparent !important;
	border: none !important;
	transform: none !important;
}

.df-faq__item.is-open .df-faq__icon::before,
.df-faq__item.is-open .df-faq__icon::after {
	background: #131313;
}

.df-faq__item.is-open .df-faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.df-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease;
}

.df-faq__item.is-open .df-faq__answer {
	grid-template-rows: 1fr;
}

.df-faq__answer-inner {
	overflow: hidden;
	padding: 0 27px;
	color: #131313;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

.df-faq__answer-inner p {
	margin: 0 0 10px;
}

.df-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.df-faq__bullets {
	margin: 0 0 10px;
	padding: 0 0 0 18px;
}

.df-faq__bullets:last-child {
	margin-bottom: 0;
}

.df-faq__bullets li + li {
	margin-top: 6px;
}

.df-faq__bullets strong,
.df-faq__answer-inner p strong {
	font-weight: 600;
}

.df-faq__item.is-open .df-faq__answer-inner {
	padding-bottom: 20px;
}

@media (max-width: 600px) {
	.df-faq__question {
		padding: 18px 16px;
		font-size: 16px;
	}

	.df-faq__icon {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.df-faq__answer-inner {
		padding: 0 16px;
		font-size: 16px;
	}

	.df-faq__item.is-open .df-faq__answer-inner {
		padding-bottom: 16px;
	}
}
