@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
.global-font {
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 100vw;
  font-size: 18px;
  line-height: 1.5em;
  background-color: #FFE9CC;
}
@media only screen and (max-width: 800px) {
  html, body {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
}

h1 {
  display: block;
  text-align: left;
  width: 100%;
}

h1, h2 {
  color: #3a230c;
}

.v-space-20 {
  padding: 20px 0;
}

.m-left-20 {
  margin-left: 20px;
}

.h-center {
  justify-content: center;
  text-align: center;
}

.cta {
  padding: 10px 25px;
  background-image: linear-gradient(180deg, #1fa623, #0c400d);
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  font-size: 1.25em;
  line-height: 2em;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
}

.sig-terms {
  font-size: 0.8em;
}

.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.col-2.auto-width {
  grid-template-columns: auto auto;
}
@media only screen and (max-width: 800px) {
  .col-2 {
    grid-template-rows: auto auto;
    grid-template-columns: unset;
  }
  .col-2.auto-width {
    grid-template-columns: unset;
  }
}
.col-2 .col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.col-2 .col.text-left {
  align-items: flex-start;
}

.col-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 800px) {
  .col-3 {
    grid-template-columns: unset;
    grid-template-rows: unset;
    gap: 10px;
  }
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
}
@media only screen and (max-width: 800px) {
  .section {
    padding: 20px 10px;
  }
}
.section .inner-width {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {
  .section .inner-width {
    width: 100%;
    max-width: unset;
    padding: 0 5px;
  }
}

.section.header {
  background-color: #3a230c;
  color: #fff;
  font-weight: 500;
  font-size: 1.1em;
  padding: 10px 0;
}
.section.header a {
  color: inherit;
  cursor: pointer;
}
.section.header a:visited {
  font-style: italic;
  color: inherit;
  text-decoration: none;
}
.section.header .inner-width {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section.header .utility {
  flex: 1 1 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.section.header .logo {
  flex: 1 1 auto;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
}
.section.header .logo img {
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .section.header .logo {
    max-width: 120px;
  }
}
.section.header .cta {
  max-height: 40px;
}
.section.header .burger-icon {
  display: none;
}
@media only screen and (max-width: 800px) {
  .section.header .burger-icon {
    display: block;
    max-width: 30px;
  }
}
.section.header .burger-icon svg {
  fill: #fff;
  width: 100%;
}
.section.header .burger-icon {
  cursor: pointer;
}
.section.header .navigation {
  display: flex;
  flex: 1 1 100%;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.section.header .navigation img {
  display: none;
}
.section.header .navigation .btn-close {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.section.header .navigation .btn-close svg {
  fill: #fff;
}
@media only screen and (max-width: 800px) {
  .section.header .navigation {
    display: none;
  }
  .section.header .navigation.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #3a230c;
  }
  .section.header .navigation.open img {
    display: block;
    width: 100%;
    max-width: 120px;
  }
  .section.header .navigation.open .btn-close {
    display: block;
  }
}

.section.intro {
  padding: 100px 30px;
  background-color: #3a230c;
  background-image: linear-gradient(0deg, #ffe9cc, transparent 80%, transparent), url(/images/pattern-c.png);
  background-repeat: repeat-x;
}
.section.intro .col.left {
  background-color: #FFE9CC;
  padding: 10px;
  border-radius: 12px;
}
.section.intro .hero-image img {
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .section.intro {
    padding: 10px 5px;
  }
  .section.intro .hero-image {
    order: 1;
  }
  .section.intro .text-left {
    order: 2;
  }
}

.section.games .col-2 {
  grid-template-columns: auto auto;
}
.section.games .col-2 .col.left {
  width: 100%;
  max-width: 300px;
}
.section.games .col-2 .col.left img {
  width: 100%;
  max-width: 300px;
}
@media only screen and (max-width: 800px) {
  .section.games .col-2 {
    grid-template-columns: unset;
    grid-template-rows: unset;
  }
  .section.games .col-2 .col.left {
    max-width: unset;
  }
}

.section.alt-panels .panel {
  padding: 15px 20px;
  border-radius: 20px;
}
.section.alt-panels:nth-of-type(odd) .panel {
  border: 2px solid #c79f5c;
  background-color: #f9f9f9;
}
.section.alt-panels:nth-of-type(even) .panel {
  background-color: #c79f5c;
  color: #fff;
}
.section.alt-panels:nth-of-type(even) .panel h1, .section.alt-panels:nth-of-type(even) .panel h2 {
  color: inherit;
}

.section.ukk {
  flex-direction: column;
}
.section.ukk .ukk-item {
  margin: 10px 0;
  background: #c79f5c;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.section.ukk .ukk-item .question {
  font-size: 1.2em;
  font-weight: 700;
  padding: 10px;
}
.section.ukk .ukk-item .answer {
  background-color: #f9f9f9;
  color: #3a230c;
  padding: 10px;
}

.section.footer {
  background-color: #3a230c;
  background-image: url(/images/pattern-e.png);
  background-repeat: repeat-x;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 20px;
}
@media only screen and (max-width: 800px) {
  .section.footer {
    flex-direction: row;
  }
}
.section.footer a {
  color: #fff;
}
.section.footer a:visited {
  color: #fff;
}
.section.footer .col-3 {
  align-items: flex-start;
  justify-content: center;
}
.section.footer .col-3 p {
  margin: 0;
  padding: 0;
}
.section.footer .col {
  margin: 30px 0;
}
@media only screen and (max-width: 800px) {
  .section.footer .col {
    margin: 10px 0;
  }
}
.section.footer .col.links {
  display: flex;
  flex-direction: column;
}
.section.footer .ext-branding {
  flex: 0 0 auto;
}
.section.footer .ext-branding img {
  height: 40px;
  width: auto;
}
.section.footer .logo {
  flex: 1 1 auto;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
}
.section.footer .logo img {
  width: 100%;
}

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