.downloadContainer,
.downloadBrowserList {
  margin: 50px auto;
}

.downloadContainer h1 {
  font-size: 3rem;
  font-family: GoogleSansBold;
  margin-bottom: 20px;
  text-align: center;
}

.downloadContainer > p {
  font-size: 18px;
  margin-bottom: 1rem;
  text-align: center;
}

.downloadBrowserList {
  max-width: 655px;
  margin: 50px auto;
  grid-gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}

.downloadBrowserItem {
  border-radius: 20px;
  background: linear-gradient(20deg, #f2ebff -39.41%, #fff 54.79%), #fff;
  box-shadow: 0 4px 12px 0 rgba(66, 80, 105, 0.15);
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  align-items: center;
}

.downloadIcon {
  width: 42px;
  height: 42px;
  max-width: 42px;
  margin-bottom: 15px;
}

.titleDownload {
  display: flex;
  flex: 1 1;
  margin-bottom: 0;
  font-size: 1.7rem;
  text-align: center;
  align-items: center;
}

.downloadVersion {
  margin-top: 30px;
  margin-bottom: 45px;
  color: #5e6278;
  text-align: center;
  font-size: 18px;
}

.downloadBrowserItem > a {
  width: 100%;
  display: inline-block;
}

.btnDownloadBlue,
.btnDownloadPurple {
  width: 100%;
  height: 55px;
  border-radius: 30px;
  justify-content: center;
  border: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.btnDownloadPurple {
  background: #7239ea;
  box-shadow: inset 0 -1px 1px 0 rgba(215, 197, 253, 0.25),
    inset 0 -2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 2px 3.8px 0 #8953fe,
    0 4px 4px 0 rgba(134, 125, 152, 0.25);
}

.btnDownloadBlue {
  box-shadow: inset 0 -1px 1px 0 rgba(197, 204, 253, 0.25),
    inset 0 -2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 2px 3.8px 0 #5393fe,
    0 4px 4px 0 rgba(145, 125, 152, 0.25);
  background: #1e4dff;
}

.btnDownloadBlue span,
.btnDownloadPurple span {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.downloadMore {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 20px 5px rgba(35, 69, 120, 0.15);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.downloadMore > p {
  margin-bottom: 0;
  color: #3f4254;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.btnContactSupport {
  border-radius: 30px;
  border: 1px solid #1e4dff;
  padding: 16px 24px;
  color: #1e4dff;
  font-family: GoogleSansBold;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 980px) {
  .downloadBrowserList {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }

  .downloadBrowserItem {
    width: 50%;
    margin: auto;
  }
}

@media (max-width: 480px) {
  .downloadContainer h1 {
    font-size: 2.1rem !important;
  }

  .downloadContainer p {
    font-size: 16px !important;
  }
}

@media (min-width: 761px) {
  .downloadMore {
    max-width: 655px;
    width: 100%;
    margin: 0 auto 50px;
  }
}

@media (max-width: 760px) {
  .downloadContainer h1 {
    font-size: 2.5rem !important;
  }

  .downloadContainer p {
    font-size: 17px !important;
  }

  .downloadMore {
    flex-direction: column;
    gap: 15px;
  }

  .btnContactSupport {
    width: 100%;
    padding: 10px 24px;
  }
}
