@layer components.page-strategy {

	[data-c-page-strategy] {
		background-color: rgba(var(--color-light-blue-rgb), 0.4);
		padding-top: 50px;
		padding-bottom: 80px;

		h2 {
			font-family: var(--font-family-serif);
			font-weight: var(--font-weight-heavy);
			color: var(--color-dark-blue);
			font-size: var(--font-size-4xl);
			margin-bottom: var(--space-10);
			line-height: 110%;
			text-align: center;

			@media screen and (max-width: 1199px) {
				font-size: var(--font-size-3xl);
				margin-bottom: var(--space-8);
			}

			@media screen and (max-width: 767px) {
				font-size: var(--font-size-2xl);
				margin-bottom: var(--space-6);
			}
		}

		.swiper-container {
			padding: 0 0 50px 0;
			position: relative;

			.swiper-row {
				max-width: 1400px;
				margin: 0 auto;

				.container {
					position: relative;

					&>div {
						margin: 0 auto;
					}
				}
			}

			.swiper-slide {
				user-select: none;
				padding: 30px 20px 40px;

				.title {
					color: var(--color);
					font-size: var(--font-size-4xl);
					line-height: 115%;
					font-weight: var(--font-weight-extra-bold);

					@media screen and (max-width: 1399px) {
						font-size: var(--font-size-3xl);
					}

					@media screen and (max-width: 991px) {
						font-size: var(--font-size-2xl);
					}

					@media screen and (max-width: 767px) {
						font-size: var(--font-size-xl);
					}
				}

				.number {
					color: var(--color);
					font-family: var(--font-family-serif);
					font-weight: var(--font-weight-extra-bold);
					font-size: var(--font-size-5xl);
					line-height: 85%;

					@media screen and (max-width: 991px) {
						font-size: var(--font-size-4xl);
					}

					@media screen and (max-width: 767px) {
						font-size: var(--font-size-3xl);
						line-height: 100%;
					}
				}

				.text {
					color: var(--color-dark-blue);
					font-size: var(--font-size-base);
					line-height: 130%;
					padding-top: var(--space-5);

					@media screen and (max-width: 1399px) {
						font-size: var(--font-size-lg);
					}

					@media screen and (max-width: 991px) {
						font-size: var(--font-size-md);
					}

					@media screen and (max-width: 767px) {
						padding-top: var(--space-3);
					}
				}
			}
		}
	}
}




[data-slider="strategy"] {
	.swiper-wrapper {
		display: flex !important;
		align-items: stretch;
	}

	.swiper-slide {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		background-color: var(--color-white);
		flex-direction: column;
		text-align: center;
		transition: transform 0.3s ease;
		height: auto;
		transform: scale(0.8);
	}

	.swiper-slide-active {
		transform: scale(1);
	}
}

.swiper-pagination {
	bottom: 0;

	.swiper-pagination-bullet {
		border-radius: 0;
		width: 30px;
		height: 6px;
		background-color: var(--color-white);
		opacity: 1;
		transition: background-color 0.3s ease;

		&:hover {
			background-color: var(--color-red);
		}
	}

	.swiper-pagination-bullet-active {
		background-color: var(--color-dark-blue);
	}
}

.swiper-button-prev,
.swiper-button-next {
	color: var(--color-dark-blue);
	width: 66px;
	height: 45px;
	transition: color 0.3s ease;

	&:hover {
		color: var(--color-red);
	}

	@media screen and (max-width: 1399px) {
		width: 40px;
		height: auto;
	}

	@media screen and (max-width: 991px) {
		display: none;
	}

	svg {
		width: 100%;
		height: auto;
	}
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}
