.text-carousel {
	position: relative;
	z-index: 0;
}

.text-carousel .content {
	position: relative;
	background-color: var(--blue2);
	width: 50%;
}

.text-carousel .text {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px;
}

.text-carousel .title {
	color: var(--blue3);
	margin: 0;
}

.text-carousel .subtitle {
	text-transform: uppercase;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 1px;
}

.text-carousel .text p {
	margin-bottom: 40px;
}

.text-carousel .cta-btn:hover {
	background: var(--white);
	color: var(--blue2);
}

.text-carousel .swiper {
	width: 50%;
}

.text-carousel .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.text-carousel .swiper-pagination {
	top: 0;
	left: 0;
	text-align: left;
	padding: 40px;
	pointer-events: none;
	z-index: 0;
}

.text-carousel.reverse .swiper-pagination {
	text-align: right;
}

.text-carousel .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: none;
	border: 1px solid var(--white);
	opacity: 1;
}

.text-carousel .swiper-pagination-bullet-active {
	background: var(--white);
}

@media only screen and (max-width: 900px) {
	.text-carousel {
		flex-direction: column;
	}

	.text-carousel.reverse {
		flex-direction: column-reverse;
	}

	.text-carousel .content,
	.text-carousel .swiper {
		width: 100%;
	}

	.text-carousel .text {
		padding: 80px 40px 40px;
	}
}
