.accordion {
	margin-bottom: 80px;
}
.accordion__item {
	padding: 25px 25px 0 25px;
	position: relative;
	border-top: 2px solid transparent;
	border-bottom: 2px solid #ECECEC;
	box-shadow: 0 8px 16px 0 rgba(61, 107, 148, .16);
	cursor: pointer;
	border-radius: 8px;
}
.accordion__h {
	font-size: 20px;
	border-bottom: 1px solid #8EB743;
}
.accordion_item-question {
	margin-top: 0;
	margin-bottom: 10px;
	text-align: left;
	font-size: 20px;
	line-height: 27px;
	position: relative;
}
.accordion_item-question span {
	padding-right: 30px;
}
.accordion_item-toggle {
	width: 30px;
	height: 30px;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url("images/icon-arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .5s;
}
.accordion__item.show .accordion_item-toggle {
	transform: rotate(-90deg);
}
.accordion_item-b {
	max-height: 0;
	overflow: hidden;
	transition: max-height .8s;
}
.accordion__item.show .accordion_item-b {
	max-height: 1500px;
}

@media screen and (max-width: 800px) {
	.accordion {
		margin-bottom: 40px;
	}
}