.uta-faq {
	margin: 48px 0 0;
}

.uta-faq__title {
	margin: 0 0 16px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 700;
	color: #000;
}

.uta-faq__desc {
	margin: 0 0 22px;
	font-size: 18px;
	line-height: 1.5;
	color: #111;
	max-width: 950px;
}

.uta-faq__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.uta-faq__item {
	border-radius: 10px;
	overflow: hidden;
	background: #1f2226;
}

.uta-faq__question {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 18px 60px 18px 20px;
	border: 0;
	background: #1f2226;
	color: #fff;
	text-align: left;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
	cursor: pointer;
	transition: background .25s ease;
}

.uta-faq__question:hover {
	background: #25292e;
}

.uta-faq__question-text {
	display: block;
	width: 100%;
}

.uta-faq__icon {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.uta-faq__icon::before,
.uta-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: all .25s ease;
	border-radius: 2px;
}

.uta-faq__icon::before {
	width: 18px;
	height: 2px;
}

.uta-faq__icon::after {
	width: 2px;
	height: 18px;
}

.uta-faq__question[aria-expanded="true"] .uta-faq__icon::after {
	opacity: 0;
}

.uta-faq__answer {
	background: #1f2226;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.uta-faq__answer-inner {
	padding: 18px 20px 20px;
	font-size: 17px;
	line-height: 1.55;
	color: #fff;
}

.uta-faq__answer-inner p {
	margin: 0 0 14px;
}

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

@media (max-width: 767px) {
	.uta-faq__title {
		font-size: 30px;
	}

	.uta-faq__desc {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.uta-faq__question {
		padding: 16px 50px 16px 16px;
		font-size: 16px;
	}

	.uta-faq__icon {
		right: 16px;
		width: 16px;
		height: 16px;
	}

	.uta-faq__icon::before {
		width: 16px;
	}

	.uta-faq__icon::after {
		height: 16px;
	}

	.uta-faq__answer-inner {
		padding: 16px;
		font-size: 15px;
	}
}