.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.polytech-swipe-container {
	display: none;
	width: 100%;
	margin: 20px 0;
}

.polytech-button-wrapper {
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 5px;
}

.polytech-swipe-content {
	display: flex;
	flex-flow: row;
	align-items: center;
	padding: 15px;
	gap: 5px;
	height: 350px;
	background-color: #DEB408;
	overflow: auto;
	position: relative;
}

.polytech-swipe-content h2 {
	line-height: normal;
	font-size: 30px;
}

.polytech-swipe-content p {
	line-height: normal;
	font-size: 20px;
}

.swiper-navigation-container {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
	position: relative;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	color: #fff;
	font-weight: bold;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
	background: #001A43;
	box-shadow: 2px 2px rgba(0,0,0,.1);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin: 0;
	transform: rotate(90deg);
	opacity: 1;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 11px;
}

.polytech-swipe-content-circle {
	width: 120px;
	height: 120px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	background-color: #001A43;
	box-shadow: 2px 2px rgba(0,0,0,.1);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.invisible {
	opacity: 0;
}

.polytech-swiper .side-image {
	display: block;
	width:200px;
	margin-left: auto;
}

@media (max-width: 1200px) {
	.polytech-swipe-content {
		flex-flow: row wrap;
	}

	.polytech-swiper {
		flex: 2;
	}

	.polytech-swipe-content h2 {
		font-size: 20px;
	}
	.polytech-swipe-content p {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.polytech-swiper .side-image {
		margin: 15px 0 0 auto;
	}
}

@media (max-width: 768px) {
	.polytech-swipe-content {
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 15px;
	}
	.swiper-navigation-container {
		width: 100%;
		flex-flow: row;
	}

	.polytech-swipe-content h2 {
		font-size: 18px;
	}

	.polytech-swipe-content p {
		font-size: 16px;
	}

	.polytech-swipe-content {
		height: 100%;
		flex-flow: row wrap;
	}

	.polytech-swipe-content-circle {
		width: 100%;
		height: auto;
		border-radius: 15px;
		padding: 15px;
		flex: 2;
	}

	.swiper-slide {
		align-items: flex-start;
	}

	.swiper-button-prev,
	.swiper-button-next {
		transform: rotate(0);
	}

	.polytech-swiper .side-image {
		width:100px;
		margin: 15px 0 0 0;
	}
}