@charset "UTF-8";



.slider-wrapper {
	position: relative;
	max-width: 100vw;
	max-height: 100vh;
	overflow: hidden;
		min-height: 700px;
	
}









/* ************************************* */
 





.slider--item {
	width: 100vw;
	height: calc(100vh);
	min-height: 700px;
	background-repeat: no-repeat;
	background-size: cover;
	  background-position: center bottom;
	
}

.slick-slide {
	position: relative;
	outline: none;
	z-index: 1;
	
}

.slick-slide.slick-current {
	z-index: 2;
}

.slick-arrow {
	position: absolute;
	width: 100px;
	top: 0;
	height: 100%;
	border: none;
	outline: none;
	background-color: rgba(255, 255, 255, 0);
	text-indent: -9999px;
	z-index: 3;
	cursor: pointer;	
}

.slick-arrow:before {
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	top: 50%;
	margin-top: -21px;
	-webkit-transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-khtml-transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-moz-transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s ease-in-out;
	-ms-transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s ease-in-out;
	-o-transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s ease-in-out;
	transition: all, 0.3s, cubic-bezier(0.55, 0, 0.1, 1) 1s ease-in-out;
	
}

.slick-arrow:after {
	content: "";
	position: absolute;
	display: block;
	height: 2px;
		width: 40px;
	
	top: 50%;
	transform: translateY(-11px);
	
	background-color: white;
	-webkit-transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-khtml-transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-moz-transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-ms-transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	-o-transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s
		ease-in-out;
	transition: all, 0.4s 0.1s, cubic-bezier(0.55, 0, 0.1, 1) 1s ease-in-out;
	opacity: 0;
}

.slick-arrow.slick-prev {
	left: 0;
}

.slick-arrow.slick-prev:before {
	border-top: 2px solid white;
	border-left: 2px solid white;
	left: 20px;
	-webkit-transform: rotate(-45deg);
	-khtml-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.slick-arrow.slick-prev:after {
	left: 300px;
}

.slick-arrow.slick-prev:hover:before {
	left: 20px;
	
}

.slick-arrow.slick-prev:hover:after {
	  left: calc(20px - 1px);
    opacity: 1;
    width: 40px;
	
}

.slick-arrow.slick-next {
	right: 0;
}

.slick-arrow.slick-next:before {
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	right: 20px;
	-webkit-transform: rotate(-45deg);
	-khtml-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.slick-arrow.slick-next:after {
	right: 300px;
	
}

.slick-arrow.slick-next:hover:before {
	right: 20px;
	
}

.slick-arrow.slick-next:hover:after {
	right: calc(20px - 1px);
    opacity: 1;
    width: 40px;
}

.slick-dots {
	padding: 0;
	margin: 0;
	width: 100%;
	position: absolute;
	bottom: 30px;
	text-align: center;
}

.slick-dots li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 6px;
}

.slick-dots li.slick-active button {
	background-color: white;
	height: 14px;
	width: 14px;
}

.slick-dots li.slick-active button:hover {
	background-color: white;
}

.slick-dots li button {
	outline: none;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid white;
	background-color: rgba(255, 255, 255, 0);
	text-indent: -9999px;
	border-radius: 100%;
	cursor: pointer;
	-webkit-transition: all, 0.2s, ease-in 1s ease-in-out;
	-khtml-transition: all, 0.2s, ease-in 1s ease-in-out;
	-moz-transition: all, 0.2s, ease-in 1s ease-in-out;
	-ms-transition: all, 0.2s, ease-in 1s ease-in-out;
	-o-transition: all, 0.2s, ease-in 1s ease-in-out;
	transition: all, 0.2s, ease-in 1s ease-in-out;
}

.slick-dots li button:hover {
	background-color: rgba(255, 255, 255, 0.5);
}



