#download-center ul {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto 80px;
  padding: 0;
  justify-content: center;

}

#download-center li {
  position: relative;
  flex: 0 0 calc(25% - 50px);
  aspect-ratio: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 700ms;
}

#download-center li:hover {
  transform: scale(1.1);
}

#download-center li a {
  text-align: center;
  width: 70%;
  transform: translateX(-5px);
  display: block;
  text-decoration: none !important;
  position: relative;
  z-index: 2;

}

#download-center li .title {
  display: block;
  padding-top: 30px;
  text-align: center;
  color: white;
  font-size: 1rem;
}

#download-center li .icon {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 0px;
  text-align: center;
  color: white;
  font-size: 2rem;
}

#download-center li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;


  background-image: url('./dlc-item.svg');
  filter: var(--red-filter);
}



@media screen and (max-width: 1199px) {

  #download-center ul {
    gap: 25px;
  }

  #download-center li {
    flex: 0 0 calc(25% - 25px);
    max-width: 250px;
  }

  #download-center li .title {
    font-size: 0.9rem;
  }


}


@media screen and (max-width: 991px) {


  #download-center li {
    position: relative;
    flex: 0 0 calc(50% - 50px);
  }

  #download-center li .title {
    font-size: 1rem;
  }

}

@media screen and (max-width: 575px) {
  #download-center li {
    flex: 0 0 calc(100%);
  }
}