.Item {
  position: relative
  display: inline-block;
  width: 320px;
  height: 320px;
  padding: 24px;
  box-sizing: border-box;
  margin: 0 16px 32px;
  text-align: left;
  vertical-align: top;
  overflow: hidden;


  border-radius: 3px;
  color: #fff;
  cursor: pointer;

  &Small {
    width: 240px;
    height: 240px;
  }

  &Title {
    font-family: "Proxima Nova";
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: absolute;
    transform: translateY(-100%);
    top: -25px;
    transition: transform .5s, top .5s;
  }

  &Img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
  }

  &:after {
    content: '';
    position: absolute;
    background: #111;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity .4s;
  }

  &Control {
    position: absolute;
    left: 0;
    font-size: 10px;
    text-transform: uppercase;
    bottom: -60px;
    transition: bottom .5s;


    &Icon {
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
    }
  }

  &Wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
  }

  &:hover {
    &:after {
      opacity: 0.7;
    }
  }

  &:hover &Control {
    bottom: 0;
  }

  &:hover &Title {
    transform: translateY(0);
    top: 0;
  }
}
