#imaging {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

#imaging-main {
	min-height: 100vh;
	width: 35%;
	background-image: url(../images/portfolio/imaging-main-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 30px 0px #000;
}
#imaging-effects {
	min-height: 100vh;
	background-color: #fff;
	width: 65%;
}

#imaging-effects .samples, #imaging-effects .sample {
    position: relative;
    height: 100%;
}

#imaging-effects .owl-stage-outer, #imaging-effects .owl-stage, #imaging-effects .owl-item {
	height: 100%;
}

#imaging-effects .sample {
	overflow: hidden;
}

#imaging-effects .sample .before, #imaging-effects .sample .after {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#imaging-effects .sample .after {
	position: absolute;
	left: 0;
	top: 0;
	transform-origin: left;
	will-change: transform;
	transform: scaleX(0.5);
}

#imaging-effects .sample .inner {
	height: 100%;
	transform-origin: left;
    display: flex;
    justify-content: center;
}

#imaging-effects .sample .after .inner {
	will-change: transform;
	transform: scaleX(2.0);
}

#imaging-effects .sample .bg {
	background-position: center;
	background-size: cover;
	filter: blur(30px);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

#imaging-effects .sample .slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: 1;
    transform-origin: left;
    will-change: transform;
    transform: translateX(50%);
}

#imaging-effects .sample .slider-wrapper {
	position: absolute;
    height: 100%;
    width: 6px;
    background: #000;
    top: 0;
    left: -3px;
    cursor: pointer;
}


#imaging-effects .sample .slider .slider-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translateY(50%);
}

#imaging-effects .sample .slider .slider-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    top: calc(0% - 25px);
    left: calc(50% - 25px);
    background-image: url(../images/portfolio/slider-indicator.png);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

#imaging-effects .sample .slider .slider-button:active {
    transform: scale(0.9);
}

#imaging-effects .sample img {
	height: 100%;
	width: auto;
	position: absolute;
	user-select: none;
}

.samples .owl-dots {
	display: none;
}

.samples .owl-nav {
	position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    pointer-events: none;
}

.samples .owl-nav button {
	outline: none;
	pointer-events: all;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 60px;
	background-color: #000 !important;
	box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
}

.samples .owl-nav .owl-prev {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    transform: translateX(-15px);
}

.samples .owl-nav .owl-next {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: translateX(15px);
}

.samples .owl-nav .owl-prev:hover, .samples .owl-nav .owl-next:hover {
	transform: translateX(0);
}

.samples .owl-nav button.disabled {
	opacity: 0.5;
}


.samples .owl-nav.inactive .owl-prev {
	transform: translateX(-100%);
	opacity: 0;
}

.samples .owl-nav.inactive .owl-next {
	transform: translateX(100%);
	opacity: 0;
}

.owl-carousel .owl-nav button svg {
	height: 50px;
	color: #828282;
	transition: color 0.3s;
}

.owl-carousel .owl-nav button:hover svg {
	color: #fff;
}

@media (max-width: 992px) {
	#imaging-main {
		min-height: 0;
		width: 100%;
	}

	.info {
		flex-direction: column;
	}

	.info .info-wrapper {
	    width: 100%;
	    padding: 54px 25px;
	}

	.info .effect-tools {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.info .effect-tools .tool {
		flex: 1;
	}

	.info .effect-tools .tool .icon {
	    width: 60%;
    	max-width: 60px;
	}

	#imaging-effects {
		min-height: 0;
		width: 100%;
	}

	#imaging-effects .sample {
		display: block;
	}

	#imaging-effects .sample .inner {
		display: block;
	}

	#imaging-effects .sample img {
		width: 100%;
		height: auto;
		position: relative;
	}
}