* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	
    overflow-x: hidden;
    
    /*para que me pueda dejar poner mas cosas
    display: flex;
	min-height:80vh;
	*/
}

#c-slider{
	margin: auto;
	width: 90%;
	max-width: 1200px;
	position: relative;
    overflow: hidden;  
	box-shadow: 0 0 0 20px #080808,
				0 15px 50px;	
}

#c-slider1{
	margin: auto;
	width: 90%;
	max-width: 1200px;
	/*position: relative;*/
    /*overflow: hidden; */ 
	box-shadow: 0 0 0 0px #7777,
				0 15px 50px;	
}

#slider {
	display: -webkit-flex;
     display: -moz-flex;
     display: -ms-flex;
     display: -o-flex;   
     display: flex;
	width: 900%;
}

}

#slider2 {
	/*display: -webkit-flex;
     display: -moz-flex;*/
     display: -ms-flex;
     display: -o-flex;   
     display: flex;
	width: 900%;
}






#slider section {
	with: 100%;
}

#slider img {
	display: block;
	width: 100%;
	height: 100%;
}


#btn-prev, #btn-next {
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,0.5);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	line-height: 40px;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	border-radius: 50%;
    font-family: monospace;
	cursor: pointer;
}

#btn-prev:hover, #btn-next:hover {
	background: rgba(255,255,255, 1);
}

#btn-prev {
	left: 10px;
	
}
#btn-next {
	right: 10px;
}