:root {
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Plusjakartasans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Plusjakartadisplay, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.card {
  background-color: #fff;
  border-radius: 50px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 50px;
  box-shadow: 0 2px 20px 5px rgba(0, 0, 0, .09);
}

.button {
  width: 100%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #00642c;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: Plusjakartadisplay, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.button:hover {
  background-color: #83be4d;
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.logo {
  width: 450px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading {
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  line-height: 28px;
}

.intro-text {
  text-align: center;
  font-size: 18px;
}

.section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5)), url('../images/leaves.webp');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.button-icon {
  width: 30px;
}

.qr-popup {
  z-index: 10;
  background-color: rgba(255, 255, 255, .81);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.qr {
  width: 500px;
  outline-offset: 0px;
  border-radius: 10px;
  outline: 4px solid #000;
}

.close-link {
  width: 500px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #00642c;
  border-radius: 10px;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Plusjakartadisplay, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .qr {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  .card {
    min-height: 100vh;
    border-radius: 0;
    margin-top: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .button {
    justify-content: flex-start;
    font-size: 14px;
  }

  .logo {
    width: 250px;
  }

  .button-icon {
    width: 20px;
  }

  .qr-popup {
    background-color: rgba(255, 255, 255, .95);
  }

  .close-link {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}


@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartasans';
  src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}