.tabs-title--image {
	position: relative;
	height: 360px;
	overflow: hidden;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform .3s;
}
/* .tabs-title--mobile {
	display: none;
} */
.tabs-title--image:hover,
li.uk-active .tabs-title--image {
	transform: scale(1.02);
}

.tabs-title--overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
360deg,#2D4E135E 0%,#000 90%);
	z-index: 1;
	opacity: 0;
	transition: .3s;
}

.tabs-title--wording {
	position: relative;
	height: 100%;
	padding: 20px;
	z-index: 2;
	opacity: 0;
	transition: .3s;
}

.tabs-title--wording h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.tabs-title--image:hover .tabs-title--overlay,
li.uk-active .tabs-title--overlay {
	opacity: .3;
}

.tabs-title--image:hover .tabs-title--wording,
li.uk-active .tabs-title--wording {
	opacity: 1;
}

/* Responsive */
@media only screen and (max-width: 1024px){
	.ks-tabs {
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		padding: 0;
	}
	.ks-tabs::-webkit-scrollbar {
		display: none;
	}
	.ks-tabs li {
		display: inline-block;
		vertical-align: top;
	}
	.tabs-title--image {
		width: 200px;
		height: 150px;
	}
	.tabs-title--wording {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.tabs-title--wording h5 {
		white-space: break-spaces;
		text-align: center;
	}
}
@media only screen and (max-width: 768px){
	.tabs-title--wording {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.ks-tabs-illustration img {
		max-width: 400px;
	}
}

@media only screen and (max-width: 480px){
	.ks-tabs-illustration img {
		width: 80%;
	}
}