/* Question answer */
.question-answer{
	position: relative;
	overflow: hidden;
}

.question-answer .section_title{
	margin-bottom: 70px;
}

.question-answer::before{
	content: url(/local/templates/bitrix24_2023/images/cube_right.svg);
	display: block;
	position: absolute;
	right: -8px;
	top: 178px;
	z-index: -1;
}

.qa__list {
	margin-top: -14px;
}

.qa__item {
	border-radius: var(--border-radius);
	background: #FFF;
	margin-bottom: 15px;
	padding: 14px 30px 4px 45px;
}

.qa__question {
	color: var(--text-black);
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	cursor: pointer;
	transition: 0.5s;
}

.qa__item.active .qa__question {
	color: var(--blue);
}

.qa__question::after {
	content: '';
	display: block;
	min-width: 62px;
	height: 62px;
	border-radius: 100%;
	background-color: var(--dark-blue);
	background-image: url(/local/templates/.default/images/redesign-2023/qa_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	transition: 0.5s;
	margin-left: 18px;
}

.qa__item.active .qa__question::after {
	background-color: var(--bg-color);
	background-image: url(/local/templates/.default/images/redesign-2023/qa_arrow_active.svg);
}

.qa__answer {
	display: none;
	padding: 20px 0 41px;
	color: #555;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 25px;
}

.qa__item.active .qa__answer {
	display: block;
}

.qa__answer ul li b {
	color: var(--text-black);
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
}

.qa__answer ul li:not(:last-child) {
	margin-bottom: 25px;
}

@media(max-width: 1400px) {
	.qa__list {
			margin-top: 0;
	}

	.qa__item {
			margin-bottom: 10px;
	}
}

@media (max-width: 992px) {
	.qa__question {
			font-size: 18px;
			line-height: 20px;
	}
}

@media (max-width: 576px) {
	.qa__item {
			padding: 15px 22px;
			border-radius: 30px;
			margin-bottom: 15px;
	}

	.qa__question {
			padding-bottom: 0;
	}

	.question-answer__title {
			margin-bottom: 34px;
	}

	.main .question-answer ul li {
			padding-left: 30px;
	}

	.qa__answer ul li div {
			font-size: 16px;
			font-style: normal;
			font-weight: 600;
			line-height: 20px;
			margin-bottom: 15px;
			padding-left: 50px;
	}

	.qa__answer {
			font-size: 14px;
			font-style: normal;
			font-weight: 300;
			line-height: 22px;
	}
}
/*end Question answer*/