/* ------------------------------------------------------------------------------------------------- */


.m_slider-frame {
	width: 100%;
    height: 50%;
	/* margin:50px auto 0; */
	margin:0px;
	overflow: hidden;
	align-items: center;
}

.m_slider-frame ul {
	display: flex;
	padding: 0;
	width: 400%;
	
	animation: m_slide 15s infinite alternate ease-in-out;
}

.m_slider-frame li {
	width: 100%;
	list-style: none;
}

.m_slider-frame img {
	width: 100%;
}

@keyframes m_slide {
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

.m_boton{
  margin: 20px;
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #5b9dc0;
  color: white;
  transition: background-color 300ms ease;
  border-radius: 0.5rem;
  font-size: clamp(.5rem, 1.5vw, 1rem);
  cursor: pointer;
}
.m_boton:hover{
  background-color: #003464;
}
