.download {
  padding-bottom: 30px;
}

.download__list {
  width: 66.66666%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.download__item {
  width: 31.25%;
  margin-bottom: 70px;
}

.download__item--empty {
  width: 31.25%;
}

.download__title {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.download__img {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.download__img>.download__title {
  color: #fff;
  font-weight: 500;
  position: absolute;
  font-size: 18px;
  top: calc(50% + 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  width: 100%;
}

.download__img img {
  display: block;
  margin: 0 auto;
}

.download__text {
  font-size: 14px;
  margin-bottom: 30px;
}

.download__btn a {
  position: relative;
}

.download__btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0092d3 0%, #0bc2d9 100%);
  border-radius: 90px;
  width: 196px;
  height: 46px;
  margin: 0 auto;
}

.download__btn a:hover {
  background: linear-gradient(135deg, #0bc2d9 0%, #0092d3 100%);
}

.download__btn a::before {
  position: absolute;
  content: "";
  background-image: url(/deepread/assets/img/seminar/news_link_icon_w.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (max-width: 680px) {
  .download {
    padding-bottom: 20px;
  }

  .download__list {
    width: 80%;
    display: block;
  }

  .download__item {
    width: 100%;
    margin-bottom: 80px;
  }

  .download__item--empty {
    width: 100%;
  }
}