/** this styles in style.css*/
.faq__section {
	padding: 25px 0;
	margin: 25px 0;
}

.faq__titles {
	padding-left: 25px;
	border-left: 10px solid #77D14D;
	display: inline-block;
	margin: 0 0 30px 0;
}

.faq__title {
	display: block;
	font-family: "Days One", sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	color: #000;
}

.faq__description {
	display: block;
	font-family: "Murecho", sans-serif;
	font-size: 14px;
	color: #757777;
	text-transform: lowercase;
}

.faq__items {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding: 0 0px 0 10px;
}

.faq__section .accordion {
	position: relative;
}

.faq__section .accordion:before {
	content: '';
	position: absolute;
	left: -10px;
	top: 4px;
	width: 4px;
	height: 100%;
	border-radius: 15px;
	background: #ebe6e7;
}

.faq__section .accordion:has(.faq__trigger.open)::before {
	background: #77D14D;
}

.faq__name {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Murecho", sans-serif;
	position: relative;
	cursor: pointer;
	font-weight: 700;
	font-size: 18px;
	color: #000;
	font-style: normal;
	line-height: normal;
	padding: 15px 10px 15px 10px;
	z-index: 99;
	transition: transform 0.3s;
}

.faq-title {
	line-height: 1;
}

.faq-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 32px;
	min-width: 32px;
	height: 32px;
	background: #ebe6e7;
	border-radius: 50%;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-arrow:after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 24px;
	height: 12px;
	background-image: url(/wp-content/themes/unitbud/assets/image/faq-arrow.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq__name.open {
	color: #77D14D;
}

.faq__name.open .faq-arrow {
	background: #77D14D;
}

.faq__name.open .faq-arrow:after {
	-webkit-transform: translateY(-50%) scale(1, -1);
	-ms-transform: translateY(-50%) scale(1, -1);
	transform: translateY(-50%) scale(1, -1);
	background-image: url(/wp-content/themes/unitbud/assets/image/faq-arrow-active.svg);
}

.faq__body.faq__dropdown {
	position: relative;
	z-index: 9;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin-top: 0;
	height: 0;
	opacity: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 0 10px;
}

.faq__name.open+.faq__body.faq__dropdown {
	height: auto;
	margin: 5px 0;
	opacity: 1;
}

.faq__text {
	padding-right: 50px;
	font-size: 0.938rem;
}

@media (min-width: 992px) {
	.faq__section {
		padding: 50px 0;
		margin: 50px 0;
	}

	.faq__titles {
		margin: 0 0 50px 0;
	}

	.faq__title {
		font-size: 42px;
	}

	.faq__description {
		font-size: 18px;
	}


	.faq__name {
		font-size: 24px;
	}

	.faq__text {
		font-size: 18px;
	}
}