/*banner slider*/


.slider {
	position: relative;
	height: 100vh;
	width: 100%;
	background: antiquewhite;
}

.slider-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	z-index: 0;
	display: flex;
	align-items: flex-end;
}
.slider-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%); 
}

.slider-content {
	width: 100%;
	font-size: 2.6rem;
	color: #fff;
	position: relative;
	z-index: 7;
	padding: 0 0 21rem;
	font-weight: 400;
}

.slider-content .wrapper {
	display: flex;
	align-items: baseline;
}

.slider-item h2 {
	color: #fff;
	font-size: 4rem;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	display: inline-block;
 
	font-weight: 400;
}
 


.slider-item p {
	padding: 0;
	margin: 1rem 0;
}

.slider-panel {
	position: absolute;
	bottom: 15px;
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	color: rgba(255, 255, 255, 0.7);
	z-index: 20;
}

.slider-panel__navigation {
	margin: 0 auto;
	padding: 10px;
	width: 70%;
	text-align: center;

}

.slider-panel__navigation i {

	font-size: 0;
	line-height: 0;
	position: relative;
	display: inline-block;

	width: 12px;
	height: 12px;
	padding: 0;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	border: 3px #CCECFF solid;
	border-radius: 10px;
	transition: all .3s ease;
	margin: 0 1rem;

}

.slider-panel__navigation i.far {
	width: 20px;
	background-color: #CCECFF;
}

.slider-panel__navigation i:hover,
.slider-panel__navigation i:active {
	color: white;
	cursor: pointer;
}

.slider-panel__controls {
	margin: 0 auto;
	padding: 10px;
	width: 70%;
	text-align: center;
	display: none;
}

.slider-panel__controls i {
	margin: 0 4%;
	font-size: 40px;
}

.slider-panel__controls i:hover,
.slider-panel__controls i:active {
	color: white;
	cursor: pointer;
}

.slider .active {
	z-index: 10;
	-webkit-animation: 0.2s blur ease-in;
	animation: 0.2s blur ease-in;
}

.slider .active .slider-content {
	-webkit-animation: 0.5s fadeInUp ease-in;
	animation: 0.5s fadeInUp ease-in;
}

@-webkit-keyframes circle {
	0% {
		-webkit-clip-path: circle(75%);
		clip-path: circle(75%);
	}

	100% {
		-webkit-clip-path: circle(0%);
		clip-path: circle(0%);
	}
}

@keyframes circle {
	0% {
		-webkit-clip-path: circle(75%);
		clip-path: circle(75%);
	}

	100% {
		-webkit-clip-path: circle(0%);
		clip-path: circle(0%);
	}
}

@-webkit-keyframes blur {
	0% {
		-webkit-filter: blur(10px);
		filter: blur(10px);
	}

	100% {
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@keyframes blur {
	0% {
		-webkit-filter: blur(10px);
		filter: blur(10px);
	}

	100% {
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

@keyframes fadeInUp {
	from {
		transform: translate3d(0, 150px, 0)
	}

	to {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@-webkit-keyframes fadeInUp {
	from {
		transform: translate3d(0, 150px, 0)
	}

	to {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}


@media(min-width:769px) {

	.slider-content {
		font-size: 4rem;
	text-align: center;
	}

	.slider-item h2 {
		font-size: 6.5rem;
	}

	

}