.download-list {
  color: #fff;
  background-color: #528FCF;
  text-align: center;
  line-height: 2rem;
  padding: 70px 20px 20px 20px;
  margin-top: 20%;
  border-radius: 5px;
  transition: all 0.7s;
  min-height: 336px;
  position: relative;
}
.download-list:hover {
  transform: scale(0.95);
  box-shadow: 0 3px 0px 0px #406991;
}
.download-list:hover .download-icon {
  background-position: 0 -64px;
}
.download-list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.download-icon {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 64px;
  height: 64px;
  transition: all 0.5s;
  background-image: url(../images/download-icon.png);
}

.download-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 20px;
}