.downloads-section {
  padding: 120px 0;
}
@media screen and (max-width: 1440px) {
  .downloads-section {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1023px) {
  .downloads-section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .downloads-section {
    padding: 50px 0;
  }
}

.downloads-section__base {
  margin-bottom: 40px;
}

.download-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #575756;
  padding: 19.5px 16px 19.5px 16px;
}
.download-item:hover .download-item__title {
  color: var(--highlight);
  transition: color 0.12s ease-in;
}
.download-item__title {
  position: relative;
  display: flex;
  padding-right: 40px;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.22px;
  transition: color 0.12s ease-in;
}
.download-item__title:hover {
  cursor: pointer;
}
.download-item__title::after {
  position: absolute;
  font-family: "icomoon";
  content: "\e904";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  right: 0;
  top: 1px;
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
}
.download-item.download-link .download-item__title::after {
  content: "\e905";
  font-size: 15px;
}