.custom_slider {
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
.custom_slider .arrow {
	position: absolute;
	height: 100%;
	width: 60px;
	left: 0;
	top: 0;
	font-size: 48px;
	cursor: pointer;
	z-index: 1;

}
.custom_slider .arrow .icon {
	position: absolute;
	top: calc( 50% - 14.5px );
	padding: 0 20px;
	font-size: 55px;
	background-color: rgba( 255,255,255,0.5);
    border-radius: 50%;
}
.custom_slider .arrow.left .icon {
	right: 0;
}
.custom_slider .arrow.right {
	right: 0;
	left: auto;
}
.custom_slider .track {
	width: 100000px;
	height: 100%;
}
.custom_slider .track .slide {
	float: left;
	width: 776px;
	text-align: center;
	display: block;
	background-size: cover;
	background-position: top center;
}
.custom_slider .track .slide:before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 56%;
}
.custom_slider .track .slide figure {
	width: 100%;
	height: 100%;
}
.custom_slider .track img {
	max-height: 400px;
	width: auto;
	max-width: 100%;
	display: inline-block;
	opacity: 0.5;
	margin-bottom: 0;
}
.custom_slider .track .active img {
	opacity: 1;
}
.custom_slider .track figcaption {
	text-align: center;
	font-size: inherit;
	font-style: normal;
	line-height: inherit;
	visibility: hidden;
	max-width: 500px;
	margin: auto;
}
.custom_slider .track .active figcaption {
	visibility: visible;
}
.custom_slider .track .active figcaption span {
	display: inline-block;
	max-width: calc( 100% - 80px );
	vertical-align: top;
	text-align: left;
}
@media( max-width: 1230px ){
	.custom_slider .track .slide {
		width: calc( ( 100vw - 40px ) / 1.53 );
	}
}
@media( max-width: 768px ){
	.custom_slider .track .slide {
		width: calc( 100vw - 40px );
	}
	.custom_slider .arrow {
		background-color: transparent;
	}
}
@media( max-width: 375px ){
	.custom_slider .arrow .icon {
		top: calc( 50% - 7.5px );
	    padding: 0 17px;
	    font-size: 45px
	}
}