.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.download-list .download-item {
  position: relative;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.download-list .download-item .download-item-card {
  z-index: 2;
  opacity: 1;
  border-radius: 8px;
  transform: scale(1);
}
.download-list .download-item:hover .download-item-card {
  opacity: 0;
  transform: scale(0);
}
.download-list .download-item:hover .download-item-code {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}
.download-list .download-item-card,
.download-list .download-item-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .2s ease;
}
.download-list .download-item .download-item-code {
  z-index: 1;
  opacity: 0;
  transform: scale(0);
}
.download-list .download-item .download-item-content {
  margin-top: 10px;
  color: #646a73;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
}
.download-list .download-item .download-item-code .download-item-content {
  margin-top: 0;
}
.btn-download-wrapper  {
  display: none;
}

@media screen and (max-width: 600px) {
	.download-list {
		display: none;
	}
  .btn-download-wrapper  {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-download {
    margin: 0 auto;
    display: inline-block;
    border-radius: 40px;
    background: #fff;
    color: #646a73;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    animation: scale-animation 1.5s infinite ease-in-out;
  }
  .btn-download.btn-blue {
    background: #0f6eff;
    color: #fff;
  }
}
@keyframes scale-animation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
