/* FAQ : BIGIN */
.faq-block{
	display: block;
	position: relative;
}
.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: #111;
	text-decoration: none;
	border: none;
	outline: none;
	font-size: 17px;
	font-weight: 600;
	padding: 12px 0;
	border-bottom: 2px solid #a2a2a2;
	border-radius: 0;
	width: 100%;
	text-align: left;
	position: relative;
	text-transform: capitalize;
}
.question-block .btn-link.collapsed{
	color: #a2a2a2;
	font-weight: 500;
}
.question-block .btn-link::after{
	content: '';
	position: absolute;
	background-image: url(./../../images/minus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
	width: 25px;
	height: 25px;
	right: 0;
	bottom: 10px;
	margin-top: 0;
	border: 1px solid #000000;
	border-radius: 40px;
}
.question-block .btn-link.collapsed::after{
	background-image: url('./../../images/plus.svg');
}

.question-block .card-body{
	padding: 20px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #121212;
}
/* FAQ : END */
/* AR LANG :BEGIN */
.direction-rtl .question-block .btn-link{
	text-align: right;
}
.direction-rtl .question-block .btn-link::after{
	right: auto;
	left: 0;
}
.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 30px 12px 0;
		white-space: pre-line;
	}
	.question-block .btn-link::before{
		width: 25px;
		height: 25px;
		left: 5px;
		top: 12px;
		background-size: 8px;
	}
	.question-block .btn-link::after{
		width: 25px;
		height: 25px;
		right: 5px;
		top: 12px;
		background-size: 8px;
	}
	.question-block .card-body{
		padding: 15px 0;
	}
}