.custom_slider { visibility: hidden; position: relative; }
.custom_slider .arrow { position: absolute; top: 125px; cursor: pointer; }
.custom_slider .arrow.prevSlide { left: 0px; }
.custom_slider .arrow.nextSlide { right: 0px; }
.custom_slider .text { padding: 5px 20px; }
.custom_slider .text p { margin: 0px; }
.slider {
	position: relative;
	margin-bottom: 60px;
	overflow: hidden;
}
.slider .title-cont {
	text-align: center;
	padding: 0 15px 20px;
}
.slider .title-cont a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f2685e;
}
.slider .title-cont a i {
	font-size: 20px;
	color: #ffd86a;
	margin-left: 5px;
}
.slider .arrows {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 1;
	pointer-events: none;
}
.slider .fa {
	font-family: fontAwesome;
}
.slider .arrows .custom-prev,
.slider .arrows .custom-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 80px;
	background-color: #f2685e;
	pointer-events: all;
	cursor: pointer;
}
.slider .arrows .custom-prev i,
.slider .arrows .custom-next i {
	font-size: 18px;
	color: white;
}
.slider .slideshow {
	padding: 0 15px;
	margin: 0 -5px;
}
.slider .slideshow .item {
	margin: 0 5px;
}
.slider .slideshow .item .img-cont {
	position: relative;
}
.slider .slideshow .item .img-cont img {
	display: block;
	width: 100%;
}
.slider .slideshow .item .img-cont .dates {
	position: absolute;
	top: 0;
	left: 0;
	padding: 12px;
	display: flex;
	flex-direction: column;
	background-color: #263d7b;
	text-align: center;
	font-family: "mark_pro_bold";
	color: white;
}
.slider .slideshow .item .img-cont .dates span:first-child {
	font-family: "mark_pro";
	font-size: 13px;
	text-transform: uppercase;
}
.slider .slideshow .item .img-cont .dates span:last-child {
	font-size: 26px;
}
.slider .slideshow .item .content {
	padding: 15px 0;
}
.slider .slideshow .item .content.center {
	text-align: center;
}
.slider .slideshow .item .content h4 {
	font-size: 19px;
	line-height: 23px;
	color: #f2685e;
	margin-bottom: 5px;
}
.slider .slideshow .item .content .date-range {
	display: block;
	color: black;
	font-size: 16px;
	font-family: "mark_pro_bold";
	margin-bottom: 5px;
}
.slider .slideshow .item .content .desc {
	color: black;
	font-size: 13px;
}
@media (min-width: 1025px) {
	.slider .title-cont h3 {
		font-size: 40px;
		line-height: 42px;
		margin-bottom: 10px;
	}
	.slider .title-cont a i {
		font-size: 26px;
		font-weight: bold;
		margin-left: 8px;
	}
	.slider .slideshow {
		width: 100%;
		max-width: 1330px;
		margin: 0 auto;
	}
	.slider .slideshow .item {
		margin: 0 15px;
	}
	.slider .arrows .custom-prev,
	.slider .arrows .custom-next {
		width: 80px;
		height: 95px;
	}
	.slider .arrows .custom-prev i,
	.slider .arrows .custom-next i {
		font-size: 40px;
		font-weight: bold;
	}
	.slider .slideshow .item .content h4 {
		font-size: 22px;
		line-height: 25px;
	}
	.slider .slideshow .item .content .date-range {
		font-size: 18px;
	}
	.slider .slideshow .item .content .desc {
		font-size: 15px;
	}
	.slider .slideshow .item .img-cont .dates {
		padding: 12px 16px;
	}
	.slider .slideshow .item .img-cont .dates span:first-child {
		font-size: 15px;
	}
	.slider .slideshow .item .img-cont .dates span:last-child {
		font-size: 30px;
	}
}