.contentWrapper{
	margin: 20px;
}

.questionClassificationWrapper{
	background-color: transparent;
}

.questionClassificationTitle{
	display: flex;
}

.questionClassTitle{
	color: #000;
	padding: 10px;
	font-weight: bold;
	font-size: 16px;
}

.questionClassificationTitle img{
	width: 30px;
	height: 30px;
	align-self: center;
}

.tab {
	width: 100%;
}

.tab button{
	width: 100%;
	background-color: transparent;
	border: none;
	color: #000;
	padding: 10px;
	text-align: left;
}

.tab button:focus{
	outline: none;
}

.tab button.active{
	background-color: transparent;
	color: #309050;
}

.tabcontent{
	display: none;
	background-color: transparent;
	padding: 10px;
}

.tabContentWrapper hr{
	margin: 10px 0;
	border-color: grey;
}

.pagination {
	display: inline-block;
	justify-content: center;
}

.pagination a {
	color: black;
	float: left;
	padding: 5px 16px;
	text-decoration: none;
}

.pagination a.active {
	background-color: #309050;
	color: #fff;
}

.pagination a:hover{
	text-decoration: none;
	color: #000;
}

.questionHolder{
	display: flex;
}

.QText{
	font-size: 25px;
	font-weight: 600;
	color: #309050;
	margin-right: 25px;
}

.questionTitle{
	align-self: center;
	font-weight: bold;
	font-size: 14px;
}

.answerHolder{
	display: flex;
}

.answerText{
	align-self: center;
}

.answerText p{
	margin-bottom: 0;
	font-size: 12px;
}

.learnMoreBtn{
	display: flex;
	justify-content: flex-end;
}

.learnMore{
	text-align: center;
	padding: 5px 10px;
	border: none;
	background: linear-gradient(to top, #055938 0%, #309050 70%);
	color: #fff;
	clip-path: polygon(0% 0, 100% 0, 100% 78%, 90% 100%, 100% 100%, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0% 0, 100% 0, 100% 78%, 90% 100%, 100% 100%, 100% 100%, 0 100%);
}

a.learnMore:hover{
	text-decoration: none;
	color: #fff;
}

.qnaTitle{
	background-color: transparent;
	padding: 10px;
	border-bottom: 1px solid #000;
	padding-left: 0;
}

.qnaTitle h4{
	margin-bottom: 0;
	color: #000;
}

.mobileQuestionClassification{
	background: linear-gradient(to right, #055938 0%, #309050 70%);
	padding: 10px;
	display: none;
}

.mobileQuestionClassification select{
	width: 100%;
	border-radius: 25px;
	padding: 3px 5px;
}

.mobileQuestionClassification label.wrap {  
	position: relative;
	display: block;
	width: 100%;
}

.mobileQuestionClassification select.dropdown{              
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	width: 100%;
}
.mobileQuestionClassification label.wrap:after {
	content:"\f13a";
	font-family: 'Font Awesome 5 Free';
	color: #000;
	position: absolute; 
	right: 12px; 
	top: 3px;
	z-index: 1; 
	pointer-events: none;   
	font-weight: 900; 
}

.tabBorder{
	border-right: 1px solid #000;
}

@media only screen and (max-width: 991px){
	.questionClassificationWrapper{
		margin-bottom: 10px;
	}

	.mobileQuestionClassification{
		display: block;
	}

	.questionClassificationWrapper{
		display: none;
	}

	.tabBorder{
		border-right: none;
	}
}

@media only screen and (max-width: 576px){
	.learnMoreBtn {
		margin-top: 10px;
		justify-content: flex-start;
	}
}