@import url('https://fonts.googleapis.com/css?family=Nunito');
.fade-in {
  display: none;
  transition: all 1s ease;
}
.wrap.normal {
  margin-top: 3rem;
}
.wrapper {
  width: 100%;
  height: 28em;
  box-shadow: 5px 5px 30px #bbb;
  font-family: 'Nunito', sans-serif;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.h-link{
  text-decoration: none;
  color:black;
}
.h-link:hover{
  color:#d7a823;
}
.container-fluid {
  width: 100%;
  height: 10em;
  padding: 0;
}

figure {
  overflow: hidden;
  width: 100%;
	height: 10em;
	margin: 0;
	padding: 0;
	background: #fff;
  transition: all .4s ease-in-out;
}
.normal figure img {
  -webkit-transform: scale(1);
	transform: scale(1);
  width:100%;
  transition: all .4s ease-in-out;
}
.hover figure img {
  -webkit-filter: grayscale(0.7);
  filter: grayscale(0.7);
}
.normal:hover figure {
  height: 17em;
  width: 100%;
}
.normal:hover figure img {
  -webkit-filter: grayscale(0.7);
  filter: grayscale(0.7);
  -webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.content p {
  max-height: 10em;
  overflow-y: hidden;
}

.normal:hover .content {
  position: relative;
  top: 7.42222em;
}

.normal:hover .content p {
  max-height: 0;
}
.content {
  padding: 2em;
  background: #fff;
}
.content h1 {
  font-size: 1.5em;
  font-weight: bold;
}
.content h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #C33232;
  font-weight: bold;
}

