section.csr {
	background-color: #03589c;
	height: fit-content;
	overflow: hidden;
}

section.csr .txt-head span {
	color: white;
}

.text-sub {
	padding: 1rem 0 2rem 0;
	font-family: 'Lato', sans-serif;
}

.text-sub p {
	color: white;
}

.mySwiperCSR {
	position: relative;
	width: 80vw;
	overflow: hidden;
}

.mySwiperCSR::before,
.mySwiperCSR::after {
	content: '';
	position: absolute;
	width: 20%;
	height: 120%;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: linear-gradient(90deg, rgb(3, 88, 156) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 100;
}

.mySwiperCSR::after {
	left: auto;
	right: 0;
	background: linear-gradient(270deg, rgb(3, 88, 156) 0%, rgba(255, 255, 255, 0) 100%);
}

.mySwiperCSR .swiper-wrapper {
	transition: all 1s ease !important;
}

.mySwiperCSR .swiper-slide {
	height: 80vh;
	max-height: 650px;
	position: relative;
	display: flex;
}

.mySwiperCSR .swiper-slide img {
	width: auto;
	height: 100%;
	margin: auto;
}

.mySwiperCSR .swiper-button {
	z-index: 200;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 35px !important;
	color: #fff;
}

.swiper-pagination-CSR {
	display: flex;
	justify-content: center;
	padding-block: 1rem 0 !important;
}

.swiper-pagination-CSR .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	border-radius: 10rem;
	background-color: #fff;
	margin: 0 0.5rem !important;
	opacity: 0.5;
	top: 1rem;
}

.swiper-pagination-CSR .swiper-pagination-bullet-active {
	opacity: 1;
}

@media screen and (max-width: 550px) {

	.mySwiperCSR::before,
	.mySwiperCSR::after {
		display: none;
	}

	.mySwiperCSR .swiper-slide {
		height: auto;
	}

	.mySwiperCSR .swiper-slide img {
		width: 100%;
		height: auto;
	}
}