/****** ESTILOS MARCOS TOP OFFERS */
.marco {
  position: relative;
  overflow: hidden;
}
.esquinas:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 50px solid white;
  border-left: 50px solid transparent;
  width: 0;
  z-index: 100;
}
.esquinas:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 50px solid white;
  border-right: 50px solid transparent;
  width: 0;
  z-index: 100;
}
.marco img {
  width: 100%;
  height: 100%;
}
.marco .explicacion {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  top: 0;
  padding: 26px;
  width: calc(100% - 52px);
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #FFF;
}
.marco a {
	font-weight:normal !important;
}
.esquinas .explicacion:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 40px solid transparent;
  border-left: 40px solid transparent;
  width: 0;
}
.marco:hover .explicacion {
  visibility: visible;
  opacity: 1;
  height: calc(100% - 52px);
}
.marco:hover .textoSecundario {
	display:none;	
}
.textoSecundario {
	position:absolute;
	bottom:15px;
	left:15px;
	color:#FFF;
	font-size:16px;
}