/* FAQ : BIGIN */
.faq-block{
	display: block;
	position: relative;
}
.accordion .question-block:last-child .btn-link{
	border-bottom: none;
}
.question-block{
	border: none;
	border-radius: 0;
}
.question-block .card-header{
	border-radius: 0;
	border: none;
	padding:0;
	background: none;
}
.question-block .btn-link{
	color: #CCAA69;
	text-decoration: none;
	border: none;
	outline: none;
	font-size: 18px;
	font-weight: 700;
	padding: 15px 50px;
	border-bottom: 1px solid #EFEFEF;
	border-radius: 0;
	width: 100%;
	text-align: left;
	position: relative;
}
.question-block .btn-link::before{
	content:'';
	position: absolute;
	background-image: url('./../../images/faq-question.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-size: 26px;
	width: 30px;
	height: 30px;
	left: 5px;
	top: 13px;
	margin-top: 0;
}
.question-block .btn-link::after{
	content:'';
	position: absolute;
	background-image: url('./../../images/minus.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-size: 16px;
	width: 20px;
	height: 20px;
	right: 15px;
	top: 16px;
	margin-top: 0;
}
.question-block .btn-link.collapsed::after{
	background-image: url('./../../images/plus.svg');
}

.question-block .card-body{
	padding: 20px 15px;
	font-size: 15px;
	line-height: 1.5;
	color: #121212;
	border-bottom: 1px solid #EFEFEF;
}
/* FAQ : END */
/* AR LANG :BEGIN */
.direction-rtl .question-block .btn-link{
	text-align: right;
}
.direction-rtl .question-block .btn-link::after{
	right: auto;
	left: 15px;
}
.direction-rtl .question-block .btn-link::before{
	right: 5px;
	left: auto;
}
/* AR LANG :END */


@media only screen and (max-width: 767px){
	.question-block .btn-link{
		font-size: 15px;
		padding: 12px 45px;
	}
	.question-block .btn-link::before{
		width: 22px;
		height: 22px;
		left: 5px;
		top: 12px;
		background-size: 20px;
	}
	.question-block .btn-link::after{
		width: 22px;
		height: 22px;
		right: 5px;
		top: 12px;
		background-size: 15px;
	}
}