.highlight-slider {
	background: url("../png/geo-latte-tan.png") repeat-x center 100px, rgba(244, 242, 240, 1);
	padding: 50px 15px;
	margin-bottom: 40px;
}

.highlight-slider .slideshow {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.highlight-slider .arrows {
	position: absolute;
	bottom: 0;
	right: calc(25% - 25px);
	display: flex;
	z-index: 1;
	transform: translateX(100%);
	cursor: pointer;
}

.highlight-slider .arrows .custom-next,
.highlight-slider .arrows .custom-prev {
	position: relative;
	width: 40px;
	height: 50px;
}

.highlight-slider .arrows .custom-next::after,
.highlight-slider .arrows .custom-prev::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.75;
	z-index: -1;
}

.highlight-slider .arrows .custom-next img,
.highlight-slider .arrows .custom-prev img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.highlight-slider .arrows .custom-prev {
	margin-right: 8px;
}

.highlight-slider .item .flex-wrapper {
	display: flex;
}

.highlight-slider .item .img-cont img {
	display: block;
	width: 100%;
}

.highlight-slider .item .img-cont {
	width: 75%;
	opacity: 0;
	transform: translateX(-70px);
	transition: opacity ease-in-out 0.5s 0s, transform ease-in-out 0.5s 0s;
}

.highlight-slider .item.slick-current .img-cont {
	opacity: 1;
	transform: translateX(0px);
	transition: all ease-in-out 0.5s 0.25s;
}

.highlight-slider .item .content {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 25px 0 50px 25px;
}

.highlight-slider .item .content .title {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.5s ease-in-out 0.15s, transform 0.5s ease-in-out 0.15s;
	font-size: 40px;
	margin-bottom: 13px;
}

.highlight-slider .item .content a:hover {
	text-decoration: none;
}
.highlight-slider .item.slick-current .content .title {
	opacity: 1;
	transform: translateX(0);
}

.highlight-slider .item .content .desc {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.5s ease-in-out 0.25s, transform 0.5s ease-in-out 0.25s;
}

.highlight-slider .item.slick-current .content .desc {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 1024px) {
	.highlight-slider {
		background: url("../png/geo-latte-tan.png") repeat-x center 25px, rgba(244, 242, 240, 1);
		padding: 100px 0px 15px;
		margin-bottom: 10px;
	}
	.highlight-slider .item .content .title {
		font-size: 34px;
		line-height: 42px;
	}
	.highlight-slider .item .content {
		width: 38%;
	}
	.highlight-slider .item .img-cont {
		width: 62%;
	}
	.highlight-slider .arrows {
		right: calc(38% - 25px);
		transform: translateX(100%);
	}
}

@media (max-width: 750px) {
	.highlight-slider .slideshow {
		padding: 0 15px;
	}
	.highlight-slider .item .flex-wrapper {
		flex-direction: column;
	}
	.highlight-slider .item .content {
		width: 100%;
		padding: 20px 0 0 0;
	}
	.highlight-slider .item .img-cont {
		width: 100%;
		height: 100%;
		transition: opacity 0.5s;
		transform: translateX(0);
	}
	.highlight-slider .item.slick-current .img-cont {
		transition: opacity 0.5s;
	}
	.highlight-slider .item .content .title {
		transition: opacity 0.5s;
		transform: translateX(0);
	}
	.highlight-slider .item .content .desc {
		transition: opacity 0.5s;
		transform: translateX(0);
	}

	.highlight-slider .arrows {
		right: 0;
		top: 30%;
		width: 100%;
		justify-content: space-between;
		pointer-events: none;
		transform: translateX(0);
	}
	.highlight-slider .arrows .custom-next,
	.highlight-slider .arrows .custom-prev {
		pointer-events: all;
	}
	.highlight-slider .item .content .title {
		font-size: 30px;
		line-height: 34px;
		margin-bottom: 5px;
	}
	.highlight-slider .item .content .desc {
		margin: 0;
	}
}
@media (max-width: 450px) {
	.highlight-slider .arrows {
		top: 20%;
	}
}