

.card .wrapper {
  background-color: #fff;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	margin-bottom: 50px;

}

.card .wrapper:hover .data .content{
  transform: translateY(0);
}
.card .data .content{
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(225px));
  transition: transform 0.5s;
}
.card .data .content {
  padding: 1em;
  z-index: 1;
  text-align: justify;
}
.card .title {
  margin-top: 10px;
}
.card .text {
  margin: 0;
}
.card .info{
	border-radius:10px;
	padding: 9px 26px;
	margin-left: 10px;
}
.example-1 .content {
  background-color: #fff;
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}
.example-1 a {
  color: #fff;
  background-color: #34095c;
  padding: 10px 8px;
  border-radius: 5px;
}
/*
.example-2 .wrapper {
  background: url(https://tvseriescritic.files.wordpress.com/2016/10/stranger-things-bicycle-lights-children.jpg) center / cover no-repeat;
}
.example-2 .wrapper:hover .menu-content span {
  transform: translate(-50%, -10px);
  opacity: 1;
}
.example-2 .header {
  color: #fff;
  padding: 1em;
}
.example-2 .header::before, .example-2 .header::after {
  content: '';
  display: table;
}
.example-2 .header::after {
  clear: both;
}
.example-2 .header .date {
  float: left;
  font-size: 12px;
}
.example-2 .menu-content {
  float: right;
}
.example-2 .menu-content li {
  margin: 0 5px;
  position: relative;
}
.example-2 .menu-content span {
  transition: all 0.3s;
  opacity: 0;
}
.example-2 .data {
  color: #fff;
  transform: translateY(calc(70px + 4em));
}
.example-2 .title a {
  color: #fff;
}
.example-2 .button {
  display: block;
  width: 100px;
  margin: 2em auto 1em;
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  position: relative;
  font-weight: 700;
}
.example-2 .button::after {
  content: '\2192';
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.example-2 .button:hover::after {
  transform: translate(5px, -50%);
  opacity: 1;
}
