.collections_template_custom_related_content.slider { 
	opacity: 0;
	position: relative;
}
.collections_template_custom_related_content.slider .arrow { 
	position: absolute;
	top: 85px;
	cursor: pointer;
}
.collections_template_custom_related_content.slider .arrow.prevSlide { 
	left: 0px;
}
.collections_template_custom_related_content.slider .arrow.nextSlide { 
	right: 0px;
}
.collections_template_custom_related_content .text_container { 
	padding: 5px 20px;
}
.collections_template_custom_related_content .text_container p { 
	margin: 0px;
}
.collections_template_custom_related_content img { 
	width : 100%;
}
.collections_template_custom_related_content .videoWrapper { 
	position: relative;
	padding-bottom: 50%;
	height: 0;
} 
.collections_template_custom_related_content .videoWrapper iframe { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.rel-content .title-cont {
	margin-bottom: 20px;
}

.rel-content .title-cont h3 {
	font-size: 33px;
	line-height: 39px;
	margin: 0;
}

.rel-content .slideshow {
	position: relative;
	margin: 0 -15px;
}

.rel-content .slideshow .arrows {
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.rel-content .arrows .arrow-cont {
	position: relative;
	width: 40px;
	height: 50px;
	opacity: 0;
	transition: opacity 0.6s ease-in-out; 
	cursor: pointer;
}

.rel-content .slideshow:hover .arrows .arrow-cont {
	opacity: 1;
}

.rel-content .arrows .arrow-cont::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.8;
	transition: all 0.6s ease-in-out;
	z-index: -1;
}

.rel-content .slideshow .arrows .arrow-cont:hover::before {
	opacity: 1;
	background-color: #50afad;
}

.rel-content .slideshow .arrows .arrow-cont:hover .arrow-white {
	opacity: 1;
}

.rel-content .slideshow .arrows .arrow-cont:hover .arrow-blue {
	opacity: 0;
}

.rel-content .arrows .arrow-cont img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.6s ease-in-out;
	z-index: 1;
}

.rel-content .slideshow .item {
	margin: 0 15px;
}
.rel-content .slideshow .item .img-cont {
	padding: 0;
}
.rel-content .slideshow .item .img-cont img {
	display: block;
	width: 100%;
}

.rel-content .slideshow .item .content {
	padding: 15px 0 0;
}

.rel-content .slideshow .item .content h4 {
	font-size: 24px;
	letter-spacing: 0;
	margin: 0;
}

@media (max-width: 640px) {
	.rel-content .title-cont h3 {
		font-size: 24px;
		line-height: 30px;
	}
	.rel-content .arrows .arrow-cont {
		opacity: 1;
	}
	.rel-content .slideshow .arrows .arrow-cont:hover::before {
		opacity: 0.9;
		background-color: white;
	}
	.rel-content .slideshow .arrows .arrow-cont:hover .arrow-white {
		opacity: 0;
	}
	.rel-content .slideshow .arrows .arrow-cont:hover .arrow-blue {
		opacity: 1;
	}
	.rel-content .slideshow .arrows {
		top: 20%;
	}
	.rel-content .slideshow .item .content h4 {
		font-size: 19px;
		line-height: 22px;
	}
}