.downloads-page .page-title {
  margin-top: 62px;
}

.downloads {
  margin-top: 76px;
  margin-bottom: 20px;
  min-height: 380px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 57px;
  background: #282625;
  padding: 8.5px 10px 8.5px 20px;
  color: #fff;
  min-height: 50px;
}
.download-item:not(:last-child) {
  margin-bottom: 10px;
}
.download-item .download-item__info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.download-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
}

.download-info__name {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.download-button {
  font-family: "icons";
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  font-size: 15px;
  transition: all 0.12s linear;
}
.download-button:hover {
  background: var(--accentColor);
  color: #fff;
  transition: all 0.12s linear;
}

@media screen and (max-width: 1023px) {
  .downloads-page .page-title {
    margin-top: 0px;
  }
}