.opcion_seis .saber_mas .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.slides{
	width: 500%;
	height: 100%;
	display: flex;
}
.slides input{
	display:none;
}
.slider{
	width: 20%;
	transition: 2s;
}

.slider img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* movimiento manual */
.manual{
	position: absolute;
	width: 540px;
	margin-top: -30px;
	display: flex;
	justify-content: center;

}
.manual_btn{
	border: 3px solid #2986FA;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 1s;
}
.manual_btn:not(:last-child){
	margin-right: 10px;
}
.manual_btn:hover{
	background: #febf00;
}
#radio1:checked ~ .prime{
	margin-left: 0;
}
#radio2:checked ~ .prime{
	margin-left: -20%;
}
#radio3:checked ~ .prime{
	margin-left: -40%;
}
#radio4:checked ~ .prime{
	margin-left: -60%;
}

/* movimiento automatico */
.automatica{
	position: absolute;
	display: flex;
	width: 540px;
	justify-content: center;
	margin-top: -30px;
}
.automatica div{
	border: 3px solid #2986FA;
	padding: 5px;
	border-radius: 10px;
	transition: 1s;
}
.automatica div:not(:last-child){
	margin-right: 10px;
}
#radio1:checked ~ .automatica .auto_btn1{
	background: #febf00;
}
#radio2:checked ~ .automatica .auto_btn2{
	background: #febf00;
}
#radio3:checked ~ .automatica .auto_btn3{
	background: #febf00;
}
#radio4:checked ~ .automatica .auto_btn4{
	background: #febf00;
}

/*  responsive */
@media screen and (max-width:900px){
	.manual, .automatica{
		width: 800px;
	}
}

@media screen and (max-width:800px){
	.manual, .automatica{
		width: 700px;
	}
}
@media screen and (max-width:700px){
	.manual, .automatica{
		width: 500px;
	}
}
@media screen and (max-width:600px){
	.manual, .automatica{
		width: 400px;
	}
}