.btn.btn-download-ios,
.btn.btn-download-android {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  box-shadow: 0 8px 24px rgba(10,20,30,0.06);
  background-color: #499dca;
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
}

.btn.btn-download-ios i,
.btn.btn-download-android i {
  font-size: 18px;
  line-height: 1;
}

.btn.btn-download-android i {
  margin-right: 6px;
}

.btn.btn-download-ios:hover,
.btn.btn-download-ios:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10,20,30,0.12);
  background-color: #000000;
  color: #ffffff;
}

.btn.btn-download-android:hover,
.btn.btn-download-android:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 11, 16, 0.12);
  background-color: #92D977;
  color: #ffffff;
}

@media (max-width: 767px) {
  .btn.btn-download-ios,
  .btn.btn-download-android {
    width: 60%;
    justify-content: center;
    padding: 0 20px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .download-cta {
    margin-bottom: 18px !important;
  }

  .download-cta-inner {
    gap: 8px;
  }
}

.btn.btn-download-ios:focus,
.btn.btn-download-android:focus {
  outline: 3px solid rgba(89,183,233,0.22);
  outline-offset: 3px;
}

.download-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.download-cta {
  text-align: left;
}

.download-cta-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.download-btns {
  gap: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0;
}

.download-btns .btn {
  font-size: 15px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 18px;
}

.download-btns .btn i {
  display: inline-block;
  line-height: 1;
}