html,
body {
  width: 100%;
}

body {
  font-family: var(--font-family-regular);
  font-size: 16px;
  color: var(--default-text-color);
}

/* DEFAULT: Mobile responsive */
/* =================================== */
.main-container button {
  all: unset;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.main-container button:hover {
  transform: scale(1.05);
}
.main-container a {
  all: unset;
  cursor: pointer;
}
.main-container {
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  margin: auto;
}
.main-container .hero-section {
  background: url("../img/hero-section/hero-background.png") lightgray 50%/cover no-repeat;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 48px;
  color: #fff;
  padding-bottom: 80px;
}
.main-container .hero-section .nav-container {
  max-width: 632px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--common-small-padding-x);
}
.main-container .hero-section .nav-container .logo-img {
  width: 160px;
}
.main-container .hero-section .nav-container .nav-a {
  text-decoration: none;
  color: var(--secondary-yellow-color);
  cursor: pointer;
  font-size: 0.8rem;
}
.main-container .hero-section .hero-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 64px;
}
.main-container .hero-section .hero-content-container .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  padding: 0 var(--common-small-padding-x);
}
.main-container .hero-section .hero-content-container .text-wrapper .title {
  font-family: var(--font-family-bold);
  font-size: 2.4rem;
  line-height: 150%;
  text-transform: uppercase;
}
.main-container .hero-section .hero-content-container .text-wrapper .sub-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.main-container .hero-section .hero-content-container .text-wrapper .sub-title-wrapper .highlight-text {
  font-family: var(--font-family-semibold);
  color: var(--secondary-yellow-color);
  text-transform: uppercase;
}
.main-container .hero-section .hero-content-container .text-wrapper .qr-link-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .hero-qr-img {
  width: 120px;
}
.main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .link-redirect-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(2.5890159607px);
}
.main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .link-redirect-wrapper .download-btn {
  min-width: 60px;
  width: 120px;
}
.main-container .hero-section .hero-content-container .phone-img {
  width: 75%;
  max-width: 500px;
}
.main-container .step-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background-color: var(--faded-green-background-color);
  padding: 48px var(--common-small-padding-x);
  position: relative;
}
.main-container .step-container .faded-logo-img {
  width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.main-container .step-container:not(.faded-logo-img) * {
  z-index: 1;
}
.main-container .step-container .text-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.main-container .step-container .text-section-wrapper .tag {
  font-size: 0.8rem;
  font-family: var(--font-family-bold);
  background-color: var(--tag-background-color);
  color: var(--tag-text-color);
  padding: 8px;
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
}
.main-container .step-container .text-section-wrapper .title {
  font-family: var(--font-family-bold);
  font-size: 2rem;
}
.main-container .step-container .text-section-wrapper .title .highlight-text {
  color: var(--primary-green-color);
}
.main-container .step-container .text-section-wrapper .description {
  color: var(--secondary-text-color);
  max-width: 660px;
  line-height: 1.5rem;
}
.main-container .step-container .card-section-wrapper {
  margin: 0 auto;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
.main-container .step-container .card-section-wrapper .step-card {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 8px;
  padding-right: var(--common-small-padding-x);
}
.main-container .step-container .card-section-wrapper .step-card .step-icon-wrapper {
  position: relative;
}
.main-container .step-container .card-section-wrapper .step-card .step-icon-wrapper > :nth-child(-n+2)::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 140, 68, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.main-container .step-container .card-section-wrapper .step-card .step-icon-wrapper .step-icon-img {
  width: 80px;
}
.main-container .step-container .card-section-wrapper .step-card:nth-child(-n+2) .step-icon-wrapper::after, .main-container .step-container .card-section-wrapper .step-card:nth-child(3) .step-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 140, 68, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.main-container .step-container .card-section-wrapper .step-card .step-text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 24px;
  padding-bottom: 48px;
  text-align: start;
}
.main-container .step-container .card-section-wrapper .step-card .step-text-wrapper .title {
  font-family: var(--font-family-semibold);
  font-size: 1.25rem;
  line-height: 125%;
}
.main-container .step-container .card-section-wrapper .step-card .step-text-wrapper .description {
  font-family: var(--font-family-light);
  color: var(--secondary-text-color);
  line-height: 1.5rem;
}
.main-container .step-container .view-instruction-btn {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #fff;
  font-family: var(--font-family-semibold);
  text-transform: uppercase;
  border-radius: 14px;
  background: var(--button-gradient-background-color);
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.25);
}
.main-container .promotion-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 24px;
  text-align: center;
}
.main-container .promotion-container .text-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.main-container .promotion-container .text-section-wrapper .tag {
  font-size: 0.8rem;
  font-family: var(--font-family-bold);
  background-color: var(--tag-background-color);
  color: var(--tag-text-color);
  padding: 8px;
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
}
.main-container .promotion-container .text-section-wrapper .title-wrapper p:nth-child(even) {
  margin-top: 16px;
}
.main-container .promotion-container .text-section-wrapper .title-wrapper .title {
  font-family: var(--font-family-bold);
  color: var(--primary-green-color);
  font-size: 2rem;
}
.main-container .promotion-container .text-section-wrapper .title-wrapper .sub-title {
  color: var(--neutral-text-color);
  font-size: 1.3rem;
}
.main-container .promotion-container .text-section-wrapper .description {
  color: var(--secondary-text-color);
  max-width: 660px;
  line-height: 1.5rem;
}
.main-container .promotion-container .card-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
.main-container .promotion-container .card-section-wrapper .promotion-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #f9fefc;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 24px;
  padding-bottom: 48px;
  text-align: start;
}
.main-container .promotion-container .card-section-wrapper .promotion-card .promotion-icon {
  width: 64px;
}
.main-container .promotion-container .card-section-wrapper .promotion-card .promotion-text-wrapper {
  display: flex;
  flex-direction: column;
  text-wrap: wrap;
  gap: 16px;
}
.main-container .promotion-container .card-section-wrapper .promotion-card .promotion-text-wrapper .title {
  font-family: var(--font-family-semibold);
  font-size: 1.25rem;
}
.main-container .promotion-container .card-section-wrapper .promotion-card .promotion-text-wrapper .description {
  font-family: var(--font-family-light);
  color: var(--secondary-text-color);
  line-height: 1.5rem;
}
.main-container .link-container {
  width: 100%;
  position: relative;
  background: url("../img/link/green-background.png") center no-repeat;
  background-size: cover;
}
.main-container .link-container .link-content-only-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 48px;
  color: #fff;
  padding: 48px 24px;
}
.main-container .link-container .link-content-only-container .faded-img {
  position: absolute;
  width: 100%;
  object-fit: contain;
  z-index: 0;
}
.main-container .link-container .link-content-only-container:not(.faded-img) * {
  z-index: 1;
}
.main-container .link-container .link-content-only-container .link-content-wrapper {
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .download-now-btn {
  width: fit-content;
  text-align: center;
  padding: 16px 24px;
  border-radius: 99px;
  background: var(--primary-yellow-color);
  color: #fff;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .text-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .text-section-wrapper .title {
  font-size: 2rem;
  font-family: var(--font-family-bold);
}
.main-container .link-container .link-content-only-container .link-content-wrapper .text-section-wrapper .description {
  line-height: 1.5rem;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .link-checklist-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .link-checklist-container .checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .link-redirect-wrapper {
  display: flex;
  gap: 16px;
}
.main-container .link-container .link-content-only-container .link-content-wrapper .link-redirect-wrapper .download-btn {
  width: 100%;
}
.main-container .link-container .link-content-only-container .link-qr-wrapper {
  flex: 1;
  margin: 0 auto;
}
.main-container .link-container .link-content-only-container .link-qr-wrapper .qr-img {
  width: 100%;
  margin: 0 auto;
}
.main-container .footer-container {
  padding: 48px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-container .footer-container .footer-section-title {
  margin-bottom: 8px;
  font-family: var(--font-family-light);
}
.main-container .footer-container .footer-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-container .footer-container .footer-main .logo-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.main-container .footer-container .footer-main .logo-social-wrapper .social-link-wrapper .social-btn-group {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.main-container .footer-container .footer-main .logo-social-wrapper .social-link-wrapper .social-btn-group .social-btn .social-icon {
  width: 32px;
}
.main-container .footer-container .footer-main .logo-social-wrapper .download-app-wrapper .download-btn-group {
  display: flex;
  gap: 16px;
}
.main-container .footer-container .footer-main .logo-social-wrapper .download-app-wrapper .download-btn-group .download-btn {
  width: 96px;
}
.main-container .footer-container .footer-main .logo-social-wrapper .hotline-wrapper {
  text-align: center;
}
.main-container .footer-container .footer-main .logo-social-wrapper .hotline-wrapper .footer-section-title {
  color: var(--primary-yellow-color);
}
.main-container .footer-container .footer-main .link-contact-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}
.main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container .extra-link-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container .extra-link-section-wrapper .group-title,
.main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container .extra-link-section-wrapper .extra-link-other-a {
  width: fit-content;
  color: var(--primary-green-color);
  font-family: var(--font-family-semibold);
  margin-bottom: 8px;
}
.main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container .extra-link-section-wrapper .extra-link-a {
  font-family: var(--font-family-light);
}
.main-container .footer-container .footer-main .link-contact-wrapper .contacts-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.main-container .footer-container .footer-main .link-contact-wrapper .contacts-container .contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main-container .footer-container .footer-main .link-contact-wrapper .contacts-container .contact-wrapper .title-section {
  color: var(--primary-yellow-color);
  font-family: var(--font-family-semibold);
  margin-bottom: 8px;
}
.main-container .footer-container .footer-main .link-contact-wrapper .contacts-container .contact-wrapper .address-section,
.main-container .footer-container .footer-main .link-contact-wrapper .contacts-container .contact-wrapper .phone-section {
  font-family: var(--font-family-light);
  line-height: 1.5rem;
  max-width: 500px;
}
.main-container .footer-container .footer-bottom {
  border-top: solid 1px var(--secondary-text-color);
  padding: 24px 8px;
  font-family: var(--font-family-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-container .footer-container .footer-bottom #copyright {
  line-height: 1.5rem;
}
.main-container .footer-container .footer-bottom .right-links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.main-container .footer-container .footer-bottom .right-links-container .right-link-a {
  padding: 4px 16px;
  white-space: nowrap;
}
.main-container .footer-container .footer-bottom .right-links-container .right-link-a:not(:first-child) {
  border-left: solid 1px gray;
}

/* Desktop responsive */
/* ============================= */
@media (min-width: 1256px) {
  .main-container .hero-section {
    gap: 64px;
  }
  .main-container .hero-section .nav-container {
    max-width: 1300px;
    padding: 48px 0;
  }
  .main-container .hero-section .nav-container .logo-img {
    width: 256px;
  }
  .main-container .hero-section .nav-container .nav-a {
    font-size: 1rem;
  }
  .main-container .hero-section .hero-content-container {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
  }
  .main-container .hero-section .hero-content-container .text-wrapper {
    max-width: 600px;
    flex: 1;
    text-align: start;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .title {
    font-size: 3.5rem;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .sub-title-wrapper {
    font-size: 1.5rem;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .qr-link-container {
    justify-content: space-between;
    gap: 40px;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .hero-qr-img {
    flex: 1;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .link-redirect-wrapper {
    flex: 1;
  }
  .main-container .hero-section .hero-content-container .text-wrapper .qr-link-container .link-redirect-wrapper .download-btn {
    width: 200px;
  }
  .main-container .hero-section .hero-content-container .phone-img {
    flex: 1;
    max-width: unset;
    width: 660px;
  }
  .main-container .promotion-container {
    padding: 80px;
  }
  .main-container .promotion-container .text-section-wrapper .title-wrapper .title {
    font-size: 3rem;
  }
  .main-container .promotion-container .text-section-wrapper .title-wrapper .sub-title {
    font-size: 2rem;
  }
  .main-container .promotion-container .card-section-wrapper {
    flex-direction: row;
  }
  .main-container .promotion-container .card-section-wrapper .promotion-card {
    max-width: 320px;
  }
  .main-container .step-container {
    padding: 80px;
  }
  .main-container .step-container .faded-logo-img {
    width: 700px;
  }
  .main-container .step-container .text-section-wrapper .title {
    font-size: 3rem;
  }
  .main-container .step-container .card-section-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .main-container .step-container .card-section-wrapper .step-card {
    width: 480px;
  }
  .main-container .step-container .card-section-wrapper .step-card:nth-child(3) .step-icon-wrapper::after {
    display: none;
  }
  .main-container .link-container .link-content-only-container {
    margin: 0 auto;
    max-width: 1440px;
    flex-direction: row;
    justify-content: center;
    padding: 48px;
  }
  .main-container .link-container .link-content-only-container .faded-img {
    height: 100%;
    margin-left: 20%;
  }
  .main-container .link-container .link-content-only-container .link-content-wrapper {
    gap: 64px;
  }
  .main-container .link-container .link-content-only-container .link-content-wrapper .text-section-wrapper .title {
    font-size: 3rem;
  }
  .main-container .link-container .link-content-only-container .link-qr-wrapper {
    display: flex;
    justify-content: end;
  }
  .main-container .link-container .link-content-only-container .link-qr-wrapper .qr-img {
    width: 400px;
  }
  .main-container .footer-container {
    max-width: 1660px;
    margin: 0 auto;
  }
  .main-container .footer-container .footer-main {
    flex-direction: row;
    gap: 120px;
  }
  .main-container .footer-container .footer-main .logo-social-wrapper {
    align-items: start;
    gap: 24px;
  }
  .main-container .footer-container .footer-main .link-contact-wrapper {
    gap: 40px;
  }
  .main-container .footer-container .footer-main .link-contact-wrapper .extra-link-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: start;
  }
  .main-container .footer-container .footer-main .link-contact-wrapper .contacts-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .main-container .footer-container .footer-main .link-contact-wrapper .contacts-container .contact-wrapper {
    align-items: start;
    text-align: start;
  }
  .main-container .footer-container .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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