.changer-wrapper {
	box-sizing: border-box;
	height: 100vh;
	width: 100%;
}

.changer {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}

.changer .changer-item {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.5s ease;
}

.changer .changer-item.anim-start {
	opacity: 0;
	transition-duration: 0s;
}

.changer .changer-item.top { z-index: 2; }

.changer .changer-item.hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.changer .changer-item:before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	/*background: url("img/changer-shadow.png") bottom left no-repeat;*/
	/*background-size: 100% auto;*/
	/*background: linear-gradient(to top,  rgba(68,45,38,1) 0%, rgba(68,45,38,0) 40%);*/
	background: linear-gradient(to top,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 40% , rgba(0,0,0,0) 60% , rgba(0,0,0,0.8) 100% );
}

.changer .changer-image {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.changer .changer-image video, .changer .changer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.changer .changer-item .changer-image img {
	transform: scale(1.01);
	transition: transform 6s ease;
}

.changer .changer-item.scale .changer-image img {
	transform: scale(1.06);
}

.changer .changer-item.scale-left .changer-image img {
	transform: scale(1.06) translateX(2.5%);
}

.changer .changer-item.scale-right .changer-image img {
	transform: scale(1.06) translateX(-2.5%);
}


.dots {
	position: absolute;
	bottom: 100px;
	left: 50%;
	height: 15px;
	padding: 2px;
	width: 100%;
	transform: translateX(-50%) translateY(10%);
	margin: 0;
	z-index: 4;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;

	display: none;
}

.dots a {
	position: relative;
	width: 15px;
	height: 15px;
	border-radius: 1000px;
	margin-right: 10px;
	background-color: rgba(255,255,255,0.5);
	transition-duration: 0.2s;
}

.dots a:last-of-type { margin-right: 0; }

.dots a, .dots a:hover { text-decoration: none; }

.dots a.active { background-color: rgba(255,255,255,1); }


.changer-logo {
	position: absolute;
	z-index: 6;
	bottom: 90px;
	left: 0%;
	width: 100%;
	text-align: center;
}

.changer-logo img {
	width: 63.5%;
}

.fp-responsive .changer {
	height: 100vh;
}

.changer-logo .mobile {
	display: none;
}

.changer-arrow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 7;
}

@media screen and (max-width: 800px) {
	.changer-logo img {
		width: 80%;
	}
}

@media screen and (max-width: 700px) {
	.changer-wrapper {
		height: 100vw;
	}
}

@media screen and (max-width: 600px) {
	.changer-logo .desktop {
		display: none;
	}

	.changer-logo .mobile {
		display: initial;
	}
	.changer-logo img {
		width: 70%;
	}
	.changer-arrow img {
		width: 60px;
	}
}
