html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background-image: url(/static/img/download-bg.jpg);
  background-size: cover;
  overflow-y: auto;
}
@media screen and (max-width: 750px) {
  body {
    padding: 20px;
    align-items: flex-start;
  }
}

.mobile-wrapper {
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 23px;
}
.mobile-wrapper .download-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-wrapper .download-box img {
  width: 200px;
  height: auto;
}
.mobile-wrapper .header {
  color: white;
  gap: 10px;
  display: flex;
}
.mobile-wrapper .header h2 {
  font-size: 20px;
  margin: 0;
  width: 100%;
  gap: 5px;
  display: flex;
  font-weight: bold;
}
.mobile-wrapper .header h2 img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
.mobile-wrapper .header p {
  margin-top: 7px;
  padding-left: 30px;
  font-size: 14px;
}
.mobile-wrapper .header .info-img {
  width: 72px;
  height: 72px;
}
.mobile-wrapper .left-img {
  width: calc(100vw - 40px);
  max-height: 90vh;
  height: auto;
  object-fit: contain;
}

.desktop-wrapper {
  width: 89.6%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1450px) {
  .desktop-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    box-sizing: border-box;
  }
}
.desktop-wrapper .left-img {
  max-width: 852px;
  height: auto;
  max-height: 95vh;
  padding-top: 40px;
  aspect-ratio: 852/812;
  object-fit: contain;
}
.desktop-wrapper .right-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0;
}
.desktop-wrapper .right-content .header {
  color: white;
}
.desktop-wrapper .right-content .header h2 {
  font-size: 38px;
  margin: 0;
  width: 100%;
  gap: 19px;
  display: flex;
  font-weight: bold;
}
.desktop-wrapper .right-content .header h2 img {
  height: 78px;
  width: 78px;
  object-fit: contain;
}
.desktop-wrapper .right-content .header p {
  margin-top: 22px;
  padding-left: 78px;
  font-size: 30px;
}
.desktop-wrapper .right-content .info-img {
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 556px;
  width: auto;
  margin-top: -50px;
  object-fit: cover;
}
.desktop-wrapper .right-content .download-box {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  border-radius: 25px;
  border: solid 1px white;
  display: flex;
  align-items: center;
  padding: 64px;
  gap: 36px;
}
@media screen and (max-width: 1800px) {
  .desktop-wrapper .right-content .download-box {
    flex-direction: column;
  }
}
.desktop-wrapper .right-content .download-box .qr-img {
  width: 200px;
  height: 200px;
}
.desktop-wrapper .right-content .download-box .downloads {
  display: grid;
  grid-row-gap: 32px;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
}
.desktop-wrapper .right-content .download-box .downloads img {
  object-fit: cover;
}
.desktop-wrapper .right-content .download-box .downloads > * {
  width: 204px;
  height: 68px;
  cursor: pointer;
}
.desktop-wrapper .right-content .download-box .downloads > * img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .mobile-wrapper {
    display: flex;
  }
  .desktop-wrapper {
    display: none;
  }
}

.-banner {
  position: absolute;
  width: calc(100vw + 40px);
}

/*# sourceMappingURL=download.css.map */