.section-faq {
	margin: 32px 0;
}
.faq-title {
	padding: 10px 12px;
	background-color: rgb(30, 81, 145);
	/*modified 2022-05.17
	margin-bottom: 43px; */
	margin-bottom: 10px;
}
.faq-title h2 {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 1.1;
	font-weight: 400;
	color: #fefefe;
	margin: 0;
}
.faq {
	display: flex;
	flex-wrap: wrap;
	margin: -19px -14px;
	padding: 0 10px;
}
.faq-col {
	flex-basis: 33.333%;
	max-width: 33.333%;
	/* modified 2022.05.17
	padding: 19px 14px;*/
	padding: 5px 14px;
}
.faq-block {
	/*modified 2022.05.17
	padding: 15px 5px 15px 20px;*/
	padding: 15px 15px 15px 20px;
	border-radius: 10px;
	height: 100%;
	display: flex;
	cursor: pointer;
	transition: all 300ms linear;
	border: 1px solid;
	background-color: #ffffff;
	border-color: #7a8691;
}
.faq-block:hover {
	background-color: rgb(30, 81, 145);
	border-color: rgb(30, 81, 145);
}

.faq-block img {
	display: none;
}
.faq-block img:first-of-type {
	opacity: 1;
	display: block;
}
.faq-block:hover img:first-of-type {
	display: none;
}
.faq-block:hover img:last-of-type {
	display: block;
}
.faq-block:hover h3 {
	color: #ffffff;
}
.faq-block:hover span {
	color: #ffffff;
}

.faq-block h3 {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	/*modified 17.05.2022 
	line-height: 20px;*/
	line-height: 16px;
	font-weight: 700;
	color: rgb(30, 81, 145);
	margin-top: 0;
	/*modified 2022.05.17
	margin-bottom: 8px;*/
	margin-bottom: 0px;
}

.faq-block span {
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	line-height: 13px;
	font-weight: 400;
	color: #717171;
}
.faq-img {
	width: 30px;
	margin-right: 11px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 1284px) {
	.faq-block span br {
		display: none;
	}
	
	.faq-title {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 992px) {
	.faq-col {
		flex-basis: 50%;
		max-width: 50%;
	}
	
	.faq-title {
		margin-bottom: 20x;
	}
}

@media only screen and (max-width: 500px) {
	.faq-col {
		flex-basis: 100%;
		max-width: 100%;
		padding: 0;
	}
	.faq-col img {
		opacity: 1;
		width: 19px;
		height: auto;
	}
	.faq-col span {
		display: none;
	}
	.faq-col h3 {
		font-size: 14px;
		line-height: 16px;
		font-weight: 400;
		color: #1f1f1f;
		margin-bottom: 0;
	}
	.faq-block {
		padding: 10px 15px;
		background-color: #ffffff;
		border-color: #7a8691;
		border-radius: 0;
		border-bottom: none;
		position: relative;
	}
	.faq-block:after {
		content: "";
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		width: 17px;
		height: 17px;
		background-image: url(../img/right-arrow.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	.faq-col:first-of-type .faq-block {
		border-radius: 20px 20px 0 0;
	}
	.faq-col:last-of-type .faq-block {
		border-radius: 0 0 20px 20px;
		border-bottom: 1px solid;
		border-color: #7a8691;
	}
	.faq-img {
		width: 19px;
		margin-right: 13px;
		margin-bottom: 0;
	}

	.faq {
		margin: 0;
		padding: 0;
	}
	.section-faq {
		margin: 10px 0 20px;
	}
	.faq-title {
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 10px;
	}
}
