.display {
  display: flex;
  flex-direction: column;
  max-width: 260px;
  transition: box-shadow .3s linear
}
.display:hover {
  box-shadow: rgba(100,100,111,.2) 0 7px 29px 0
}
.display_dark .display__bottom {
  background-color: #242424
}
.display_dark .display__icon svg {
  color: #86b9ba
}
.display_dark .display__title {
  color: #fff
}
.display_green .display__img::after {
  background-color: #fff
}
.display_green .display__bottom {
  background-color: #86b9ba
}
.display_green .display__icon svg,
.display_green .display__title {
  color: #fff
}
.display__img {
  display: block;
  position: relative
}
.display__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 6px;
  background-color: #86b9ba
}
.display__img img {
  width: 100%;
  display: block
}
.display__bottom {
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 20px;
  background-color: #ebebeb
}
.display__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  margin-right: 6px
}
.display__icon {
  margin-left: auto
}
.display__icon svg {
  width: 40px;
  height: 40px
}