/* */

.custom_slider_menu {
	position: relative;
	display: block;
	color: #d89133;
	background-color: #212529;
	width: 100%;
    min-height: 10px; 
	overflow: hidden;
}

.custom_slider_menu span {
	position: absolute;
	color: #d89133;
	background-color: #212529;
}

.custom_slider {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	/*min-height: 70rem;*/
	overflow: hidden;
	transition: height 3s;
}
.mobile .custom_slider {
	min-height: 40rem;
}

.custom_slider span {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	/*min-height: 80rem;*/
	background-size: cover;
	background-position: center;
	transition: left 1s;
}
.mobile .custom_slider span {
	min-height: 41rem;
}

.custom_slider ol {
	position: absolute;
	bottom: -10px;
	left: 50%;
	z-index: 15;
	width: 60%;
	padding-left: 0;
	margin-left: -30%;
	text-align: center;
	list-style: none;
}

.custom_slider ol li {
	display: inline-block;
	width: 17px;
	height: 17px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	background-color: rgba(0,0,0,0);
	border: 3px solid #fff;
	border-radius: 10px;
	margin: 0 4px;
}

.custom_slider ol li.active {
	width: 19px;
	height: 19px;
	margin: 0 3px;
	background-color: #fff;
}


.custom_slider ul {
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

.custom_slider ul li {
	list-style: none;
	display: inline-block;
	position: absolute;
	cursor: pointer;
	font-size: 3rem;
	color: #fff;
	opacity: 0.47;
	transition: 0.3s opacity linear;
}

.custom_slider ul li:hover {
	opacity: 0.9;
}
.custom_slider ul li:nth-child(1) {
	left: 1.3rem;
}
.custom_slider ul li:nth-child(2) {
	right: 2rem;
}
