.download-list {
  background-color: #f8f9fa;
  text-align: center;
  line-height: 2rem;
  padding: 20px;
  margin-bottom: 60px;
  border-radius: 7px;
  min-height: 228px;
  box-shadow: 0 2px 0px 0px #485CB3;
  transition: all 0.7s;
  position: relative;
}
.download-list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.download-list a:hover + .download-icon:before {
  transform: translateY(5px);
}
.download-list:hover {
  background: linear-gradient(0deg,#51B383, #1d35a1);
  color: #fff;
  transform: scale(0.95);
  box-shadow: 0px 5px 21px -5px rgba(0, 0, 0, 0.3);
}
.download-list:hover .download-icon {
  background-color: #fff;
}
.download-list:hover .download-icon:before {
  background: url(icons/icon-download-2.svg) no-repeat;
}

.download-icon {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  background-color: #51B383;
  border-radius: 50%;
  transition: all 0.7s;
}
.download-icon:before {
  content: "";
  position: absolute;
  top: 23%;
  left: 23%;
  transition: all 0.5s;
  background: url(icons/icon-download.svg) no-repeat;
  width: 39px;
  height: 39px;
}