/* video carousel style */
.swiperVideo {
	width: 450px !important;
	height: 450px !important;
	animation: floatX 6s ease-in-out infinite;
}

.swiperVideo .swiper-wrapper {
	width: 100% !important;
	height: 100% !important;
}

.swiperVideo .swiper-wrapper .swiper-slide,
.swiperVideo .swiper-wrapper .swiper-slide .swiper-no-swiping {
	background-position: center;
	background-size: cover;
	height: 100%;
	display: flex;

}

.swiperVideo .swiper-wrapper .swiper-slide img,
.swiperVideo .swiper-wrapper .swiper-slide .swiper-no-swiping video {
	display: block;
	width: 100%;
}

.video-container {
	display: flex;
	justify-content: center;
	width: 450px;
	height: 450px;
	overflow: hidden;
}

@keyframes floatX {
	0% {
		transform: translatey(0px);
	}

	50% {
		transform: translatey(-20px);
	}

	100% {
		transform: translatey(0px);
	}
}

.video-work-next {
	background: url('../images/bullet-right.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.video-work-next.swiper-button-disabled {
	background: url('../images/bullet-active-right.png');
}

.video-work-prev {
	background: url('../images/bullet-left.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.video-work-prev.swiper-button-disabled {
	background: url('../images/bullet-active-left.png');
}

.video-container-center {
	display: flex;
	justify-content: center;
	align-items: center;
}