.download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  padding: 10px 40px;
  margin-bottom: 60px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 17px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 17px -5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.download-list:hover {
  background: #75c265;
  color: #fff;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.download-list a {
  color: #04caf7;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.download-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.download-icon:before {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: url(icons/icon-download.svg) no-repeat;
  width: 39px;
  height: 39px;
}