/* FAQ Section*/
.faq_block {
	padding: 70px 0;
}
.faq_block_body {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 25px;
}
.faq_block_item {
	background: #FBFBFB;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	padding: 24px;
	gap: 16px;
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(230, 230, 230, 0.45);
	border-radius: 16px;
}
.faq_block_que {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}
.faq_block_body_que {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 135%;
	color: #040404;
	letter-spacing: 0.02em;
}
.faq_block_down {
	border-radius: 50%;
	min-width: 24px;
	height: 24px;
	background: #FFFFFF;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 5px;
}
.faq_block_body_answer {
	font-size: 16px;
	display: none;
	padding: 16px;
	background: #FBFBFB;
	border-radius: 10px;
	line-height: 140%;
	letter-spacing: 0.01em;
	color: #454545;
}
.faq_block_item.active > .faq_block_body_answer {
	display: block;
}
.faq_block_item.active > .faq_block_que > .faq_block_down > .dashicons {
	color: #FF6321;
	font-weight: bold;
}
.faq_block_img_2  {
	display: flex; 
	height: auto;
}
/* FAQ Section END*/

@media (max-width: 768px) {
	.faq_block_item {
		padding: 15px;
	}
	.faq_block_que {
		gap: 10px;
	}
	.faq_block_body_que {
		font-family: 'Gilroy';
		font-style: normal;
		font-weight: 600;
		font-size: 20px;
		line-height: 135%;
	}
	.faq_block_body_answer {
		width: 100%;
		font-size: 14px;
		padding: 10px;
	}
}