.highlights {
	margin-bottom: 60px;
	overflow: hidden;
	padding: 0 15px;
}

.highlights .title-cont {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	text-align: center;
}

.highlights .title-cont h3 {
	font-size: 50px;
	margin: 0 0 15px;
}

.highlights .title-cont p {
	width: 70%;
	margin: 0 auto;
}

.highlights .item-cont {
	width: 100%;
	max-width: 1200px;
	display: flex;
	margin: 0 auto;
	padding: 15px 0;
	flex-wrap: wrap;
}

.highlights .item-cont .item {
	position: relative;
	flex-grow: 0;
	flex-shrink: 1;
    flex-basis: calc(25% - 2px);
	margin: 0 1px 2px;
}

.highlights .item-cont .item .content {
	display: flex;
	flex-direction: column;
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	text-align: center;
	padding: 0 10px;
	z-index: 10;
}

.highlights .item-cont .item .content span {
	position: relative;
	display: inline-block;
	align-self: center;
	color: white;
	font-size: 27px;
	font-weight: 300;
	text-transform: uppercase;
	max-width:90%;
}

.highlights .item-cont .item .content span::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%) scale(0);
	width: 100%;
	height: 2px;
	background-color: white;
	transition: all 0.35s ease;
}

.highlights .item-cont .item:hover .content span::after {
	transform: translateX(-50%) scale(1);
}

.highlights .item-cont .item .content .icon {
	align-self: center;
	transition: all 0.5s ease 0s;
	transform: scale(0.9) translateY(10px);
	opacity: 0;
	margin-bottom: 10px;
	margin: auto;
	display: block;
	width: 40px;
	height: auto;
}

.highlights .item-cont .item:hover .content .icon {
	transition: all 0.5s ease 0.45s;
	opacity: 1;
	transform: scale(1) translateY(-10px);
}

.highlights .item-cont .item .img-cont {
	position: relative;
	overflow: hidden;
	transition: all 0.25s ease 0s;
	animation: slide-shrink 0.5s forwards;
	transform: scale(1);
}

.highlights .item-cont .item:hover .img-cont {
	transform: scale(1.07);
	transition: all 0.5s ease 0.25s;
	animation: slide-grow 0.5s forwards;
}

@keyframes slide-shrink {
	0% {
		z-index: 3;
	}
	50% {
		z-index: 2;
	}
	100% {
		z-index: 1;
	}
}

@keyframes slide-grow {
	0% {
		z-index: 1;
	}
	50% {
		z-index: 2;
	}
	100% {
		z-index: 3;
	}
}

.highlights .item-cont .item .img-cont img {
	display: block;
	width: 100%;
}

.highlights .item-cont .item .img-cont::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05) 35%);
}


.highlights .item-cont .item .overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 9;
	pointer-events: none;
}
.highlights .item-cont .item:hover .overlay {
	opacity: 0.9;
	transform: scale(1.07);
    transition: all 0.5s ease 0.25s;
    animation: slide-grow 0.5s forward;
}

@media (max-width: 1024px) {
	.highlights {
		margin-bottom: 30px;
	}
	.highlights .item-cont .item .content span {
		font-size: 22px;
	}
}

@media (max-width: 800px) {
	.highlights {
		padding: 0;
	}
	.highlights .item-cont {
		flex-wrap: wrap;
		margin: 0 -1px;
	}
	.highlights .item-cont .item {
		flex-grow: 0;
		flex-shrink: 1;
		flex-basis: calc(50% - 2px);
	}
	.highlights .item-cont .item:hover .img-cont {
		transform: scale(1);
	}
	.highlights .item-cont .item:hover .overlay {
		opacity: 0;
	}
	.highlights .item-cont .item .content .icon {
		opacity: 1;
		margin-bottom: 13px;
		transform: scale(1) translateY(0);
	}
	.highlights .item-cont .item:hover .content .icon {
		transform: scale(1) translateY(0);
	}
	.highlights .item-cont .item .content span::after {
		display: none;
	}
}

@media (max-width: 640px) {
	.highlights {
		margin-bottom: 30px;
	}
	.highlights .item-cont .item .content {
		bottom: 15px;
		padding: 0 20px;
	}
	.highlights .item-cont .item .content span {
		font-size: 18px;
		line-height: 21px;
	}
	.highlights .item-cont .item .img-cont::before {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05) 50%);
	}
	.highlights .title-cont h3 {
		font-size: 40px;
		line-height: 44px;
	}
	.highlights .title-cont p {
		width: 100%;
	}
	.highlights .title-cont {
		margin: 0 auto 20px;
	}
}