/**
 * Values Zigzag styles.
 *
 * @package NexioEducation
 */

.values-zigzag {
	padding: 246px 142px 120px;
	background: #FFFEFA !important;
	position: relative;
}

.values-zigzag::before {
	content: "";
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1440px;
	height: 1px;
	background-image: repeating-linear-gradient(to right, transparent, transparent 6px, rgba(6, 77, 142, 0.25) 6px, rgba(6, 77, 142, 0.25) 12px);
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.2) 100%);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.2) 100%);
}

.values-zigzag::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1440px;
	height: 1px;
	background-image: repeating-linear-gradient(to right, transparent, transparent 6px, rgba(6, 77, 142, 0.25) 6px, rgba(6, 77, 142, 0.25) 12px);
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.2) 100%);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.2) 100%);
}


.values-zigzag-title {
	font-family: var(--wp--preset--font-family--body);
	color: #064d8e;
	font-size: 48px;
	font-weight: 700;
	line-height: 58px;
	margin: 0 0 63px;
}

.values-zigzag-items {
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.values-zigzag-item {
	gap: 46px;
}

.values-zigzag-image {
	margin: 0;
	flex-shrink: 0;
}

.values-zigzag-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

.values-zigzag-content-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0;
}

.values-zigzag-item-title {
	font-family: var(--wp--preset--font-family--heading, 'Apris Trial', serif);
	color: #064d8e;
	font-size: 48px;
	font-weight: 400;
	line-height: 58px;
	margin: 0 0 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #064d8e;
}

.values-zigzag-item-text {
	font-family: var(--wp--preset--font-family--body, 'Manrope', sans-serif);
	color: rgba(6, 77, 142, 0.75);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	margin: 0 0 18px;
}

.values-zigzag-item-text:last-child {
	margin-bottom: 0;
}

.values-zigzag-item-text strong {
	font-weight: 700;
	color: #064d8e;
}

/* Responsive */
@media (max-width: 1200px) {
	.values-zigzag {
		padding: 170px 80px;
	}

	.values-zigzag::before {
		top: 95px;
	}

	.values-zigzag-items {
		gap: 80px;
	}

	.values-zigzag-item-title {
		font-size: 36px;
		line-height: 44px;
	}
}

@media (max-width: 900px) {
	.values-zigzag {
		padding: 60px 24px;
	}

	.values-zigzag::before {
		display: none;
	}

	.values-zigzag-title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 48px;
	}

	.values-zigzag-items {
		gap: 48px;
	}

	.values-zigzag-item,
	.values-zigzag-item-reverse {
		flex-direction: column;
	}

	.values-zigzag-item-reverse {
		flex-direction: column-reverse;
	}

	.values-zigzag-item-title {
		font-size: 28px;
		line-height: 36px;
	}

	.values-zigzag-image img {
		height: 200px;
	}
}
