.FaqList {
	margin-top: 22px;
}
.FaqTitle {
	margin: 0 0 18px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 400;
	color: #444444;
}
.FaqItem {
	border: 1px solid #1763A9;
	border-radius: 4px;
	margin-bottom: 12px;
	background: #fff;
	overflow: hidden;
}
.FaqItem summary {
	list-style: none;
}

.FaqItem summary::-webkit-details-marker {
	display: none;
}
.FaqQuestion {
	position: relative;
	display: block;
	padding: 20px 56px 20px 20px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	cursor: pointer;
	user-select: none;
}

.FaqQuestion::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2px solid #1763A9 ;
	border-bottom: 2px solid #1763A9 ;
	transform: translateY(-65%) rotate(45deg);
	transition: transform 0.2s ease;
}

.FaqItem[open] .FaqQuestion::after {
	transform: translateY(-35%) rotate(-135deg);
}

.FaqAnswer {
	margin: 0 20px 20px;
	padding-top: 19px;
	border-top: 2px solid #1763A9;
	font-size: 15px;
	line-height: 1.7;
}

.FaqAnswer p {
	margin: 0 0 12px;
}

.FaqAnswer p:last-child {
	margin-bottom: 0;
}
@media (max-width: 760px) {
    .FaqTitle {
		margin: 0 0 14px;
		font-size: 20px;
		line-height: 1.25;
	}

    .FaqIntro {
		line-height: 1.55;
	}

    .FaqQuestion {
		padding: 12px 38px 12px 12px;
		line-height: 1.35;
		font-weight: 500;
	}

	.FaqQuestion::after {
		right: 14px;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid #1763A9;
		border-bottom: 1.5px solid #1763A9;
	}

	.FaqAnswer {
		margin: 0 12px 12px;
		padding-top: 12px;
		line-height: 1.55;
	}
}