@charset "utf-8";

.mask1 {
	position: absolute;
	height: 100%;
	width: 0;
	background-color: rgba(25, 171, 255, 0.63);
	transition: width 1s ease-in-out;
}

.mask1 p {
	margin: 90px;
}

.swiper-slide div {
	height: 260px;
	line-height: 80px;
	overflow: hidden;
	color: #fff;

	font-size: 24px;
}

.swiper-slide div p {
	opacity: 0;
	transition: opacity 1s ease-in-out 0.8s;
}

div.swiper-slide:hover p {
	opacity: 1;
}

div.swiper-slide:hover .mask1 {
	width: 100%;
}

.c1 {
	border-radius: 0rem;
	width: 100%;
	transition: transform 0.3s linear;
}

.swiper-button-next {
	position: absolute;
	height: 10%;
	width: 5%;
	top: 80%;
	right: 25%;
}

.swiper-button-prev {
	position: absolute;
	height: 10%;
	width: 5%;
	top: 80%;
	left: 25%;
}

.swiper-container {
	position: absolute;
	width: 100%;
	height: 30%;
	top: 5%;
}

.swiper-slide {
	color: #fff;
	text-align: center;
	font-size: 24px;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
	transition: transform 0.1s linear;
}

