.hero-section {
  width: 100%;

  background: url(../images/hero/background.png) no-repeat center center / cover;
}

.hero-container {
  padding-top: 280px;
  padding-bottom: 240px;
}

.hero-title {
  text-align: center;

  font-size: 54px;
  font-weight: bold;
}

.hero-description {
  max-width: 640px;
  margin: 24px auto 64px;

  text-align: center;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-btn {
  border: 1px solid #e5e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 12px;
  padding: 0 20px;
  height: 150px;
  width: 150px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;

  border-radius: 8px;

  &:hover {
    background-color: #f7f8fa;
  }
}

.download-btn-title {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 6px;
  font-weight: bold;
}

.download-btn-version,
.download-btn-size {
  font-size: 12px;
  color: #6b7785;
}

@media screen and (max-width: 768px) {
  .hero-container {
    padding-top: 200px;
    padding-bottom: 160px;
  }
}

@media screen and (max-width: 640px) {
  .hero-container {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: 44px;
  }
}
