/* Feature Section */
.feature-section {
	margin: 60px 0;
	text-align: center;
}
.feature-section .content {
	max-width: 720px;
	margin: 0 auto 40px;
}
.feature-section .content h2 {
	margin-bottom: 15px;
}
.feature-section .content p:last-child {
	margin-bottom: 0;
}
.feature-section .features {
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
.feature-section .features>.feature {
	flex: 1 1 calc((100% / 3) - 20px);
	max-width: calc((100% / 3) - 20px);
	padding: 30px 20px;
	background-color: #fff;
	position: relative;
}
.feature-section .features>.feature>*:first-child {
	font-family: var(--font_heading);
	font-size: 36px;
	line-height: 1;
	color: var(--color-1);
	margin-bottom: 15px;
	font-weight: 700;
}
.feature-section .features>.feature h3 {
	margin: 0 0 10px;
	font-size: 24px;
}
.feature-section .features>.feature p:last-child {
	margin-bottom: 0;
}
.feature-section .features>.feature:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(100% + 15px);
	transform: translateX(-50%);
	width: 1px;
	background-color: var(--color-3);
}
.feature-section .features>.feature:nth-child(3n):after {
	display: none;
}

@media screen and (max-width: 991px) {
	.feature-section .features>.feature {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.feature-section .features>.feature:after {
		width: 100%;
		height: 1px;
		left: 0;
		right: 0;
		top: calc(100% + 20px);
		transform: translateY(-50%);
	}
}
@media screen and (max-width: 767px) {
	.feature-section {
		margin: 40px 0;
	}
	.feature-section .features {
		gap: 20px;
	}
	.feature-section .features>.feature {
		flex: 1 1 100%;
		max-width: 100%;
	}
}