.faq{
	margin-top: 35px;
	margin-bottom: 100px;
}
.faq > div{
	margin-bottom: 20px;
}
.faq > div > div:first-child img{
	transform: rotate(180deg);
}
.faq > div > div:first-child{
	background-color: #468755;
	display: flex;
	justify-content: space-between;
	padding: 15px 30px;
	cursor: pointer;
}
.faq > div > div:first-child p{
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
}
.faq > div > div:last-child{
	background-color: white;
	overflow: hidden;
	height: 0;
	transition: 0.4s;
}
.faq > div > div:last-child > div{
	padding: 30px;
}
.faq > div > div:last-child > div p{
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 28px;
	color: #333333;
}
@media(max-width:460px)
{
	.faq > div > div:first-child p{
		font-weight: bold;
		font-size: 16px;
		line-height: 140%;
	}
	.faq > div > div:last-child > div p{
		font-weight: normal;
		font-size: 16px;
		line-height: 140%;
	}
	.faq > div > div:last-child > div{
		padding: 15px;
	}
}