#wrapper{
	position: relative;
	width: 100%;
	min-height: 25vw;
}

.layer{
	position: absolute;
	width: 60vw;
	min-height: 25vw;
	overflow: hidden;
}

.layer .content-wrap{
	position: absolute;
	width: 60vw;
	min-height: 25vw;
	
}

.layer .content-body{
	width: 25%;
	position: absolute;
	top: 0%;
	text-align: center;
	transform: translateY(-50%);
	color: #fff;
}

.layer img{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.layer h1{
	font-size: 2em;

}

.bottom{
	
	z-index: 1;
}

.bottom .content-body{
	right: 5%;
}

.bottom h1{
	color: #fdab00;
}

.top{
	background-color: #000;
	color: #222;
	z-index: 2;
	width: 50vw;
}

.top .content-body{
	left: 5%;
	color: #222;
}

.handle{
	position: sticky;
	height: 100%;
	display: block;
	background-color:#fdab00;
	width: 5px;
	top: 0;
	left: 50%;
	z-index: 3;
}


.skewed .handle{
	top: 50%;
	transform: rotate(30deg) translateY(-50%);
	height: 200%;
	transform-origin: top;
}

.skewed .top{
	transform: skew(-30deg);
	margin-left: -1000px;
	width: calc(30vw + 1000px);
}

.skewed .top .content-wrap{
	transform: skew(30deg);
	margin-left: 1000px;
}




.content-wrap img:hover{
	cursor: pointer;
}



/* Interaktivni deo 2 */
#wrapper1{
	position: relative;
	width: 100%;
	min-height: 25vw;
}



/* MOBILE */

@media screen and (max-width: 1024px){

	.layer{
		width: 85vw;
	}
	.layer .content-wrap{
        width: 85vw!important;
    }

	.skewed .top{
		width: calc(43vw + 1000px);
	}

}