/**
* Slider Main Css
*/

@font-face {
	font-family: 'Riffic';
	src: url('font/Riffic.eot?#iefix') format('embedded-opentype'),
		url('font/Riffic.woff') format('woff'),
		url('font/Riffic.ttf') format('truetype'),
		url('font/Riffic.svg#Riffic') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
}

.crop {
	width: 250px;
	height: 250px;
	overflow: hidden;
	 
	border-radius: 100%;
	background: #5e1946;
}

.crop::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('img/video_frame.png');
	background-size: cover;
}

.crop .sli {
	width: 98%;
	height: 98%;
	margin-top: 1%;
	margin-left: 1%;
	border-radius: 100%;
}

.crop .play {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 40px;
	height: 43px;
	background: url('img/play_icon.png');
	background-size: cover;
	cursor: pointer;
}

.crop .stop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 40px;
	height: 43px;
	background: url('img/stop_icon.png');
	background-size: cover;
	cursor: pointer;
}


.slider {
	background: #5e1946;
	height: auto;
	position: relative;
	overflow: hidden;
	font-family: 'Riffic';
	color: #ffffff;
}

.slider ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.slider li {
	list-style: none;
}

.slider li .slide {
	height: 550px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.slider li .slide-container {
	width: 250px;
	height: 250px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.slide {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 500ms ease;
}

.swiper-slide.swiper-slide-next .slide {
	-moz-transform: scale(2);
	-webkit-transform: scale(2);
	-o-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.slider #title {
	position: absolute;
	width: 300px;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.swiper-button-next {
	background-image: url(img/right_icon.png) !important;
}
.swiper-button-prev {
	background-image: url(img/left_icon.png) !important;
}

.details {
	position: relative;
	margin-top: -50px;
	padding: 0 25px;
	z-index: 1;
}

.details .podium,
.details .clap {
	width: 35px;
	height: 35px;
	position: relative;
}

.details .podium {
	float: left;
	background: url('img/podium_icon.png');
	background-size: cover;
}

.details .clap {
	float: right;
	background: url('img/clap_icon.png');
	background-size: cover;
}

.details .podium span,
.details .clap span {
	position: absolute;
	top: 40px;
	right: 0;
	left: 0;
	font-size: 13px;
}

.details .name {
	height: 25px;
	margin-top: 25px;
	display: inline-block;
	padding: 0 12px;
	border: 2px solid #f5d56b;
	border-radius: 12px;
	font-size: 12px;
	line-height: 25px;
	font-weight: normal;
	background: #cd0044;
}






/*------------ Media queries ------------*/
@media (max-width: 1170px) {
	.slider li .slide {
		height: 500px;
	}

	.slider li .slide-container,
	.crop {
		width: 180px;
		height: 180px;
	}

	.details {
		margin-top: -42px;
		padding: 0 10px;
	}

	.details .podium,
	.details .clap {
		width: 30px;
		height: 30px;
	}

	.details .podium span,
	.details .clap span {
		top: 34px;
		font-size: 12px;
	}

	.details .name {
		height: 20px;
		border-width: 1px;
		padding: 0 6px;
		font-size: 10px;
		line-height: 20px;
	}
}


@media (max-width: 992px) {
	.slider #title {
		position: relative;
		right: 0;
		margin: 0 auto;
		display: block;
	}

	.slider li .slide {
		height: 400px;
	}

	.slider li .slide-container,
	.crop {
		width: 140px;
		height: 140px;
	}

	.details {
		margin-top: -42px;
		padding: 0 ;
	}

	.details .podium,
	.details .clap {
		width: 26px;
		height: 26px;
	}

	.details .podium span,
	.details .clap span {
		top: 30px;
	}

	.details .name {
		margin-top: 28px;
	}
}


@media (max-width: 768px) {
	.swiper-slide.swiper-slide-active .slide {
		-moz-transform: scale(2);
		-webkit-transform: scale(2);
		-o-transform: scale(2);
		-ms-transform: scale(2);
		transform: scale(2);
	}

	.swiper-slide.swiper-slide-next .slide {
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	.slider li .slide {
		height: 480px;
	}

	.slider li .slide-container,
	.crop {
		width: 180px;
		height: 180px;
	}

	.details {
		margin-top: -42px;
		padding: 0 10px;
	}

	.details .podium,
	.details .clap {
		width: 30px;
		height: 30px;
	}

	.details .podium span,
	.details .clap span {
		top: 34px;
		font-size: 12px;
	}

	.details .name {
		height: 20px;
		border-width: 1px;
		padding: 0 6px;
		font-size: 10px;
		line-height: 20px;
	}
}


@media (min-width: 767px) {}