.question{
	padding: 2.5rem 7rem 2.5rem 3rem;
	border-bottom: 2px solid #f2f2f2;
 	cursor: pointer;
 	position: relative;
    text-indent: -2.8em;
}
.question p{
	position: relative;
    padding-left: 3em;
    text-indent: -2.8em;
}
.question:hover{
	color:#4f9344;
	transition: .3s;
	background: #fafaf2;
}
.question p:before{
	content: 'Q';
	font-weight: bold;
	font-size: 180%;
	margin-right: 1.5rem;
	vertical-align: sub;
	color: #4f9344;
	line-height: 0;
}
.question:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 30px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #dddddd;
	border-bottom: 3px solid #dddddd;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}
.ac-parent.open:after {
	transform: rotate(225deg);
}
.answer{
  	display: none;
  	padding: 2.5rem 2rem 2.5rem 3rem;
  	border-bottom: 2px solid #f2f2f2;
}
.answer p{
	position: relative;
    padding-left: 3em;
    text-indent: -2.8em;
}
.answer p:before{
	content: 'A';
	font-weight: bold;
	font-size: 180%;
	margin-right: 1.5rem;
	vertical-align: sub;
	color: #EB5353;
	line-height: 0;
}
@media screen and (max-width: 600px) {
	.question{
		padding: 2rem 4rem 2rem 1rem;
	}
	.question:after{
		right: 17px;
		width: 7px;
		height: 7px;
		border-right: 2px solid #dddddd;
    	border-bottom: 2px solid #dddddd;
	}
	.answer{
		padding: 2rem 1rem;
	}
	
}