.section__main .container {
    padding: 0;
}

.faq-title {
	display: flex;
	align-items: center;
	color: #ffffff;
	background: #222938;
	border-radius: 12px;
	padding: 12px 16px;
	font-weight: 600;
	cursor: pointer;
}

.faq-section {
	max-height: 0px;
	overflow: hidden;
	margin-bottom: 12px;
	transition: 0.3s;
	padding: 0;
}

.faq-section.active {
	max-height: 2000px;
	padding: 10px 0 10px;
}

.faq-title img:first-child {
	width: 20px;
	margin-right: 10px;
}

.faq-title img:last-child {
	height: 14px;
	width: 14px;
	margin-left: auto;
	transform: rotate(-90deg);
	transition: 0.3s;
}

.faq-title.active img:last-child {
	transform: rotate(90deg);
}

.section__main.white-bg .faq-item.active {
	max-height: 420px;
}

.section__main.white-bg .faq-item p,
.section__main.white-bg .faq-item.active p {
	color: #fff !important;
}

.faq-item {
	width: 100%;
	max-height: 62px;
	overflow: hidden;
	transition: 0.3s;
    margin-bottom: 5px;
    padding-bottom: 0 !important;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item b {
	display: flex;
	align-items: center;
	padding: 15px;
	font-weight: 700;
	width: 100%;
	cursor: pointer;
    border-radius: 12px;
	background: #222938;
	color: #fff;
}

.faq-item b::after {
	content: '+';
	margin-left: auto;
	font-size: 32px;
    line-height: 1;
	color: #fff;
}

.faq-item.active b::after {
	content: '-';
}

.faq-item p {
	padding: 0 35px 0 16px;
	margin-bottom: 15px;
	margin-top: 15px;
}
