.item-card{
  padding-bottom: 140%;
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  pointer-events: auto;
}
.item-card:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.item-card.item-card--large{
  padding-bottom: 55%;
}
.item-card img{
  border-radius: 16px;
  transition: all .2s linear;
}
.item-card .item-card__blur{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 71.4%);
  border-radius: 16px;
}
.item-card .item-card__blur:hover img{
  transform: scale(1.05);
  filter: blur(8px);
}
#page-description{
  font-size: 14px;
  line-height: 22px;
  color: #252525;
  max-height: 85px;
  overflow: hidden;
  -webkit-transition: max-height .5s;
  transition: max-height .5s;
}
#page-description p {
  font-size: 14px;
  line-height: 22px;
  color: #252525;
}
#page-description.opened {
  max-height: 900px;
}
