.rt-faq-section {
	background: var(--rt-bg-light);
}

.rt-faq {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.rt-faq__side {
	flex: 1 1 320px;
}

.rt-faq__side img {
	margin-bottom: 20px;
}

.rt-faq__list {
	flex: 1 1 480px;
}

.rt-faq__item {
	border-bottom: 2px solid var(--rt-primary);
	margin-bottom: 8px;
}

.rt-faq__q {
	width: 100%;
	text-align: left;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	cursor: pointer;
	padding: 18px 45px 18px 15px;
	position: relative;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	color: var(--rt-muted);
	transition: color .2s, background .2s;
	font-family: var(--rt-font);
}

.rt-faq__q:hover {
	color: var(--rt-dark);
	background: transparent;
}

.rt-faq__item.is-open .rt-faq__q {
	background: var(--rt-dark);
	color: #fff;
}

.rt-faq__item.is-open .rt-faq__qmark,
.rt-faq__item.is-open .rt-faq__arrow {
	color: var(--rt-primary);
}

.rt-faq__q .rt-faq__qmark {
	color: var(--rt-primary);
	margin-right: 10px;
	font-weight: 700;
}

.rt-faq__arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--rt-primary);
	transition: transform .25s;
	font-weight: 700;
	font-size: 18px;
}

.rt-faq__item.is-open .rt-faq__arrow {
	transform: translateY(-50%) rotate(90deg);
}

.rt-faq__a {
	display: none;
	padding: 0 0 20px;
	color: var(--rt-muted);
	font-size: 15px;
}

.rt-faq__a p {
	margin: 0 0 12px;
}

.rt-faq__a p:last-child {
	margin-bottom: 0;
}

.rt-faq__item.is-open .rt-faq__a {
	display: block;
}
