/*-----Hightlights-----*/
.three-col-highlights .highlights {
	position: relative;
	overflow: hidden;
	margin-bottom: 100px;
}
.three-col-highlights .highlights .arrow {
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	width: 45px;
	height: 55px;
	background-color: #7db3b4;
	font-size: 42px;
    color: white;
    cursor: pointer;
}
.three-col-highlights .highlights .arrow .fa {
	vertical-align: middle;
}
.three-col-highlights .highlights .arrow.prevSlide {
	left: 0;
	width:
}
.three-col-highlights .highlights .arrow.nextSlide {
	right: 0
}
.three-col-highlights .highlights .arrow.prevSlide .fa {
	padding-left: 12px;
}
.three-col-highlights .highlights .arrow.nextSlide .fa {
	padding-left: 17px;
}
.three-col-highlights .highlights-cont {
	margin: 0;
	max-width: none;
}
.three-col-highlights .highlights .slick-list {
	padding: 0;
	margin: 0 -3px;
}
.three-col-highlights .highlight {
    position: relative;
    overflow: hidden;
}

.three-col-highlights .highlight .bg-image {
    transition: transform 0.4s;
}
.three-col-highlights .highlight .bg-image img {width: 100%;}

.three-col-highlights .highlight .bg-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.3;
}

.three-col-highlights .highlight {
    margin: 0 3px;
    padding: 0;
    min-height: 310px;
}
.three-col-highlights .highlight .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: transform 0.4s;
}
.three-col-highlights .highlight:hover .bg-image {
    transform: scale(1.05);
}

.three-col-highlights > h2 {
    font-weight: 300;
    text-align: center;
    margin: 50px auto 50px;
    color: #565555;
}

.three-col-highlights .highlight .content-wrapper {
    position: absolute;
	z-index: 2;
    top: 50%;
    left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    transform: translate(-50%, -50%);
}

.three-col-highlights .highlight .content {
    position: relative;
	height: 100%;
    max-height: 250px;
	width: 100%;
    max-width: 250px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}
 
.three-col-highlights .highlight .title,
.three-col-highlights .highlight .desc {
	position: relative;
	display: block;
    width: 100%;
    color: white;
    text-align: center;
}
.three-col-highlights .highlight .title a {
	color: white !important;
	border-bottom: none;
	z-index: 10;
}

.three-col-highlights .highlight .title {
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 5px;
    top: 50%;
	transform: translateY(-50%);
	transition: transform 0.4s, top 0.4s;
	z-index: 10;
}

@media (min-width: 1025px) {
	.three-col-highlights .highlight:hover .title {
	    transform: none;
	    top: 0;
	}

	.three-col-highlights .highlight:hover .desc {
	    opacity: 1;
		flex: none;
	}
}

.three-col-highlights .highlight .desc {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
    opacity: 0;
    font-size: 18px;
    line-height: 22px;
	transition: all 0.4s;
}

.three-col-highlights .highlight .content .desc a {
    display: inline-block;
    margin-left: 5px;
    border-bottom: 1px solid white;
    color: white !important;
    line-height: 16px;
    z-index: 10
}

.three-col-highlights .highlight .content-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid white;
    border-radius: 100%;
    transition: all 0.4s;
    transform: scale(0.6);
    opacity: 0;
}

@media (min-width: 1025px) {
	.three-col-highlights .highlight:hover .content-inner {
	    transform: scale(1);
	    opacity: 1;
	}

	.three-col-highlights .highlight:hover .content-overlay {
	    transform: scale(1);
	    opacity: 0.5;
	}
}

.three-col-highlights .highlight .content-overlay {
    position: absolute;
    top: 4%;
    left: 4%;
    width: 92%;
    height: 92%;
    border: 2px solid white;
    border-radius: 100%;
    z-index: -1;
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.6);
}

.three-col-highlights .highlight .content-overlay.green {
    background-color: #4d972d;
}

.three-col-highlights .highlight .content-overlay.blue {
    background-color: #336394;
}

.three-col-highlights .highlight .content-overlay.purple {
    background-color: #68478e;
}
.three-col-highlights .highlight .content-overlay.orange {
    background-color: #dc582a;
}

@media screen and (max-width: 1024px){
	.three-col-highlights > h2{
		margin-bottom: 15px;
		font-size: 44px;
	}
	.three-col-highlights .highlights {
		margin-bottom: 80px;
	}
	.three-col-highlights .highlight {
	    min-height: 188px;
	}
}
@media screen and (max-width: 640px){
	.three-col-highlights > h2{
		font-size: 38px;
	}
	.three-col-highlights .highlights {
		margin-bottom: 50px;
	}
	.three-col-highlights .highlight {
	    min-height: 310px;
	}
}
