.apf-image-expand .apf-image-expand-item {
	position: relative;
	height: 500px;
}

.apf-image-expand .apf-image-expand-item .apf-item-image,
.apf-image-expand .apf-image-expand-item .apf-image-expand-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.apf-image-expand .apf-image-expand-item .apf-item-image:after {
	content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000 0%, #000000 100%);
    opacity: 0.4;
}

.apf-image-expand .apf-image-expand-item .apf-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.apf-image-expand .apf-image-expand-item .apf-image-expand-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.apf-image-expand .apf-image-expand-item .apf-image-expand-content > * {
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
}



.apf-image-expand .apf-image-expand-item .apf-image-expand-content .apf-image-expand-text *:last-child {
	margin-bottom: 0;
}

.apf-image-expand .apf-image-expand-item .apf-image-expand-content .image-accordion-item-color:after{
	content: '';
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-bottom: 32px;
}

.apf-image-expand .apf-image-expand-title,
.apf-image-expand .apf-image-expand-text {
	color: #ffffff;
}

.apf-image-expand .apf-image-expand-title {
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.apf-image-expand .apf-image-expand-container {
		display: flex;
	}

	.apf-image-expand .apf-image-expand-container .apf-image-expand-item {
		flex: 1;
		transition: flex .4s;		
	}

	.apf-image-expand .apf-image-expand-container .apf-image-expand-item:hover {
		flex: 4;
	}

	.apf-image-expand .apf-image-expand-item .apf-image-expand-content {
		padding: 48px;
	}

	.apf-image-expand .apf-image-expand-item:hover .apf-image-expand-content > * {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: all .3s ease;
	}

	.apf-image-expand .apf-image-expand-item:hover .apf-image-expand-content > *:nth-child(1) {
		transition-delay: .5s;
	}

	.apf-image-expand .apf-image-expand-item:hover .apf-image-expand-content > *:nth-child(2) {
		transition-delay: .7s;
	}

	.apf-image-expand .apf-image-expand-item:hover .apf-image-expand-content > *:nth-child(3) {
		transition-delay: .9s;
	}

}

@media (max-width: 767px) {

	.apf-image-expand .slick-list {

		padding-right: 15%;
	}

	.apf-image-expand .apf-image-expand-item .apf-image-expand-content .image-accordion-item-color:after{
		width: 32px;
		height: 32px;
		margin-bottom: 24px;
	}

	.apf-image-expand .apf-image-expand-item.slick-current .apf-image-expand-content > * {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: all .3s ease;
	}

	.apf-image-expand .apf-image-expand-item.slick-current .apf-image-expand-content > *:nth-child(1) {
		transition-delay: .5s;
	}

	.apf-image-expand .apf-image-expand-item.slick-current .apf-image-expand-content > *:nth-child(2) {
		transition-delay: .7s;
	}

	.apf-image-expand .apf-image-expand-item.slick-current .apf-image-expand-content > *:nth-child(3) {
		transition-delay: .9s;
	}
}