.ce_slider {
	position: relative;
	/* padding: 3rem 0 3rem; */
	margin-bottom: 5rem;
}
.ce_slider__content {
	position: relative;
	overflow:hidden;
	visibility:hidden;
	/* margin-bottom: 8rem; */
	/* border: 1px solid red; */
}
.ce_slider__slides {
	position: relative;
	overflow: hidden;
	
	
}
.ce_slider__slides img {
	width: 100%;
	
}
.ce_slider__slides > * {
	float: left;
	width: 100%;
	position: relative;
	
}
.ce_slider__control {
	display: flex;
	/* justify-content: space-between; */
	/* align-items: center; */
	position: absolute;
	right: var(--indent);
	bottom: -3rem;
}
.ce_slider__nav {
	padding: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.ce_slider__nav:hover svg {
	stroke: var(--color1);
}
.ce_slider__nav svg {
	width: 1.5rem;
	height: auto;
	stroke: var(--color2);
	-webkit-transition: stroke .3s;
	-moz-transition: stroke .3s;
	transition: stroke .3s;
	
}
.ce_slider__prev {
	left: 0;
}
.ce_slider__next {
	right: 0;
}
.ce_slider__menu {
	display: flex;
	justify-content: center;
	display: none;
}
.ce_slider__menu b {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	background-color: #bbb;
	color: transparent;
	border-radius: 50%;
	margin: 0.4rem;
	overflow: hidden;
	text-indent: -20rem;
	
}
.ce_slider__menu b.active {
	background-color: var(--color1);
	
}
@media screen and (min-width: 768px){
	.ce_slider__nav {
		padding: 1rem;
		
	}
	.ce_slider__nav svg {
		width: 2rem;
		
	}
	.ce_slider__menu b {
		width: .6rem;
		height: .6rem;
		margin: .5rem;
		
	}
	
}
@media screen and (min-width: 1400px){
	.ce_slider__control {
		position: absolute;
		bottom: 1rem;
		right: 3rem;
		/* width: 100%; */
		/* height: 100%; */
		/* display: flex; */
		/* flex-direction: row-reverse; */
	}
	.ce_slider__nav {
		/* position: absolute; */
		/* width: 7rem; */
		/* height: 100%; */
		padding: 1rem;
	}	
	.ce_slider__prev {
		/* left: -7rem; */
	}
	.ce_slider__next {
		/* right: -7rem; */
	}
	.ce_slider__menu {
		bottom: -3rem;
		position: absolute;
		width: 100%;
		left: 0rem;
		display: none;
		justify-content: center;
	}
		
}

