@charset "utf-8";
/* CSS Document */

#productos_destacados {
	display: flex;
	
}

.container-destacados {
  position: relative;
  width: 50%;
}

.img-home-destacados {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-home-destacados {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color:hsla(0,0%,0%,0.81);
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.container-destacados:hover .overlay-home-destacados {
  width: 100%;
}

.title-home-destacados {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-style: oblique;
  font-size: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding-bottom:25px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.title-motos-destacados {
	font-family: 'Poppins', sans-serif;
	font-weight:700;
	font-size:30px;
	color:#231F20;
	margin-top:45px;
}

.text-home-destacados {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-style: oblique;
  font-size: 16px;
  position: absolute;
  top: 55%;
  left: 50%;
	text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/******************************************/
/***    DISEÑO PARA TABLETAS 640      ****/
/******************************************/
@media only screen and (max-width:640px){
#productos_destacados {
flex-direction: column;
	 display: inline;
	
	
}

.container-destacados {
  width: 50%;
  float:left;
}
	
.title-home-destacados {
  font-size: 23px;
}
	
.title-motos-destacados {
	font-size: 18px;
}

.text-home-destacados {
  font-size: 13px;
}

}