.owl-stage {
	display:flex;
}

.owl-item > div {
	cursor: pointer;
	margin: 6% 8%;
	transition: margin 0.4s ease;
}

.owl-item.center > div {
	cursor: auto;
	margin: 0;
	height:100%;
}

.owl-item:not(.center) > div {
	height:calc(100% - 12%);
	transition: all .5s;
}
.owl-item:not(.center) > div:hover {
	opacity: .75;
}

@media screen and (max-width:414px) {
	.owl-stage {
		margin-left: -10px;
	}
}