@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-SemiboldItalic.otf') format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-HeavyItalic.otf') format("opentype"), url('../fonts/SF-Pro-Text-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Black.otf') format("opentype"), url('../fonts/SF-Pro-Text-Heavy.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sf Pro Text;
  src: url('../fonts/SF-Pro-Text-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-mode-5: #0c1136;
  --gray-0: #fcfcfc;
  --blue-40: #59a0ff;
  --dark-mode-80: #84a3e1;
  --blue-80: #0e39cb;
  --dark-mode-40: #374ca9;
  --dark-mode-20: #192360;
  --white: white;
  --yellow-60: #f2a400;
  --gray-10: #dee2e6;
  --gray-30: #a7acba;
  --gray-80: #3d3d4c;
  --black: #111314;
  --gray-100: #1a1920;
  --dark-mode-0: #080c29;
  --dark-mode-10: #0f1643;
  --blue-70: #0b50ff;
  --blue-100: #0e1a5d;
  --red-40: #e02c33;
  --red-60: #bc0006;
  --red-80: #840003;
  --green-60: #02990d;
  --green-70: #017f09;
  --green-100: #004901;
  --yellow-40: #ffc52f;
  --yellow-80: #d27d00;
  --orange-50: #ff8517;
  --orange-60: #f26d09;
  --orange-80: #d34100;
  --pink-50: #ff3a8b;
  --pink-70: #e71468;
  --pink-90: #b60455;
  --dark-mode-30: #273583;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--dark-mode-5);
  color: var(--gray-0);
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5em;
}

a {
  color: var(--blue-40);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
}

li {
  margin-bottom: 4px;
}

img {
  width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

blockquote {
  border-left: 5px solid var(--dark-mode-80);
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.5em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
  line-height: 14px;
}

.sg-nav {
  border-right: 1px solid #ced5db;
  width: 240px;
  height: 0;
  position: fixed;
  inset: 0% auto 0 0;
}

.sg-menu-brand {
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: 30px;
  padding-left: 0;
}

.sg-menu {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.sg-menu-link {
  color: var(--dark-mode-80);
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 20px;
  transition: background-color .2s, color .2s;
}

.sg-menu-link:hover {
  color: var(--gray-0);
}

.sg-menu-link.w--current {
  background-color: var(--blue-80);
  color: var(--gray-0);
  border-radius: 8px;
  padding-right: 0;
  font-weight: 600;
}

.horizontal-line {
  background-color: var(--dark-mode-40);
  opacity: .2;
  width: 100%;
  height: 1px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.horizontal-line.design-system {
  position: relative;
}

.sg-block {
  margin-bottom: 32px;
}

.sg-description {
  color: var(--gray-0);
  max-width: 420px;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.grid.desk-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid.desk-3.tab-2 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-columns: minmax(30%, 1fr) minmax(30%, 1fr) minmax(30%, 1fr);
}

.grid.desk-3.steps {
  border: 1px solid var(--dark-mode-20);
  border-radius: 8px;
  align-content: center;
  padding: 28px;
  display: flex;
}

.grid.desk-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid.desk-4.tab-4 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}

.grid.desk-4.tab-2 {
  grid-template-columns: minmax(23%, 1fr) minmax(23%, 1fr) minmax(23%, 1fr) minmax(23%, 1fr);
}

.grid.desk-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.grid.desk-2.tab-2 {
  grid-column-gap: 20px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
}

.grid.desk-2.tab-2.banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/placeholder_460x215.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 8px;
  height: auto;
  min-height: 300px;
  padding: 40px;
  overflow: hidden;
}

.grid.desk-2.tab-2.landscape-2 {
  grid-template-columns: minmax(49%, 1fr) minmax(49%, 1fr);
}

.grid.desk-2.tab-2.row-28px {
  grid-row-gap: 28px;
}

.grid.desk-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid.desk-6.tab-4.mob-2 {
  grid-row-gap: 40px;
  align-items: start;
}

.grid.desk-5 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
}

._1-2-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.tab-link {
  box-shadow: inset 0 0 0 2px var(--dark-mode-20);
  color: #fcfcfc99;
  text-align: center;
  background-color: #0000;
  border-radius: 4px;
  flex: 0 auto;
  margin-right: 0;
  padding: 8px 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
}

.tab-link:hover {
  box-shadow: inset 0 0 0 2px var(--gray-0);
  opacity: 1;
  color: #fcfcfc;
}

.tab-link.w--current {
  background-color: var(--gray-0);
  box-shadow: none;
  opacity: 1;
  color: var(--dark-mode-40);
}

.tab-link.big {
  padding: 20px 40px;
  font-size: 20px;
}

._2-1-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-3 {
  flex: none;
  width: 25%;
}

.column.desk-9 {
  width: 75%;
}

.spacer {
  background-color: #ece7e0;
  height: 48px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._120 {
  background-color: #0000;
  width: 120px;
  height: 120px;
}

.spacer._96 {
  background-color: #0000;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.spacer._60 {
  background-color: #0000;
  width: 60px;
  height: 60px;
}

.spacer._8 {
  background-color: #0000;
  width: 8px;
  height: 8px;
}

.spacer._12 {
  background-color: #0000;
  width: 12px;
  height: 12px;
}

.spacer._20 {
  text-transform: uppercase;
  background-color: #0000;
  width: 20px;
  height: 20px;
}

.spacer._28 {
  text-transform: uppercase;
  background-color: #0000;
  width: 28px;
  height: 28px;
}

.spacer._40 {
  background-color: #0000;
  border-radius: 6px;
  width: 40px;
  height: 40px;
}

.paragraph {
  margin-bottom: 16px;
}

.paragraph.small {
  opacity: .75;
  font-size: 14px;
}

.paragraph.large {
  font-size: 20px;
}

.visible-spacer {
  background-color: var(--dark-mode-20);
  border-radius: 5px;
  display: inline-block;
}

.rich-text {
  text-align: left;
}

.rich-text img {
  border-radius: 6px;
}

.ds-module {
  background-color: var(--dark-mode-20);
  border-radius: 5px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

.icon {
  margin-right: 0;
  position: static;
}

.icon._32px {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 32px;
}

.icon._24px {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
}

.icon._24px.white {
  color: var(--white);
}

.icon._24px.yellow {
  color: var(--yellow-60);
}

.icon._16px {
  width: 16px;
  height: 16px;
  line-height: 16%;
}

.ds-icon-grid {
  margin-top: 24px;
}

.vertical-tab {
  width: 100%;
}

.tabs-menu {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--dark-mode-5);
  border-radius: 8px;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 8px;
  display: flex;
}

.tabs-menu.center {
  justify-content: center;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.color-block {
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.gray-0 {
  background-color: var(--gray-0);
}

.color-block.gray-10 {
  background-color: var(--gray-10);
}

.color-block.gray-30 {
  background-color: var(--gray-30);
}

.color-block.gray-80 {
  background-color: var(--gray-80);
}

.color-block.black {
  background-color: var(--black);
}

.color-block.gray-100 {
  background-color: var(--gray-100);
}

.color-block.dark-mode-0 {
  background-color: var(--dark-mode-0);
}

.color-block.dark-mode-5 {
  border: 1px solid var(--dark-mode-20);
  background-color: var(--dark-mode-5);
}

.color-block.dark-mode-10 {
  background-color: var(--dark-mode-10);
}

.color-block.dark-mode-20 {
  background-color: var(--dark-mode-20);
}

.color-block.dark-mode-40 {
  background-color: var(--dark-mode-40);
}

.color-block.dark-mode-80 {
  background-color: var(--dark-mode-80);
}

.color-block.blue-40 {
  background-color: var(--blue-40);
}

.color-block.blue-70 {
  background-color: var(--blue-70);
}

.color-block.blue-80 {
  background-color: var(--blue-80);
}

.color-block.blue-100 {
  background-color: var(--blue-100);
}

.color-block.red-40 {
  background-color: var(--red-40);
}

.color-block.red-60 {
  background-color: var(--red-60);
}

.color-block.red-80 {
  background-color: var(--red-80);
}

.color-block.green-60 {
  background-color: var(--green-60);
}

.color-block.green-70 {
  background-color: var(--green-70);
}

.color-block.green-100 {
  background-color: var(--green-100);
}

.color-block.yellow-40 {
  background-color: var(--yellow-40);
}

.color-block.yellow-60 {
  background-color: var(--yellow-60);
}

.color-block.yellow-80 {
  background-color: var(--yellow-80);
}

.color-block.orange-50 {
  background-color: var(--orange-50);
}

.color-block.orange-60 {
  background-color: var(--orange-60);
}

.color-block.orange-80 {
  background-color: var(--orange-80);
}

.color-block.pink-50 {
  background-color: var(--pink-50);
}

.color-block.pink-70 {
  background-color: var(--pink-70);
}

.color-block.pink-90 {
  background-color: var(--pink-90);
}

.color-block.dark-mode-30 {
  background-color: var(--dark-mode-30);
}

.sg-content {
  background-color: var(--gray-0);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
}

.sg-section {
  z-index: 0;
  background-color: var(--dark-mode-5);
  text-align: left;
  padding: 60px 80px 60px 60px;
  position: relative;
}

.sg-section.header {
  background-color: var(--blue-70);
  color: #fff;
}

.ds-icon {
  margin-right: 24px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.btn {
  color: #fff;
  text-align: center;
  border-radius: 4px;
  flex: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: all .2s;
  box-shadow: 0 4px 4px #0003;
}

.btn.outline.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.secondary {
  background-color: var(--dark-mode-30);
  background-image: linear-gradient(to bottom, var(--dark-mode-30), var(--dark-mode-20));
  color: var(--gray-0);
  transition: all .3s;
}

.btn.secondary:hover {
  background-image: linear-gradient(to bottom, var(--dark-mode-30), var(--dark-mode-30));
  box-shadow: 0 0 40px #27358333, 0 4px 4px #0003;
}

.btn.secondary.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.secondary.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.primary {
  background-color: var(--blue-70);
  background-image: linear-gradient(to bottom, var(--blue-70), var(--blue-80));
  color: var(--gray-0);
}

.btn.primary:hover {
  background-image: none;
  box-shadow: 0 0 40px #0b50ff33, 0 4px 4px #0003;
}

.btn.primary.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.primary.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.light {
  background-color: var(--gray-0);
  background-image: linear-gradient(to bottom, var(--gray-0), var(--gray-10));
  color: var(--gray-100);
  transition: all .3s;
}

.btn.light:hover {
  background-image: none;
  box-shadow: 0 0 40px #fcfcfc33, 0 4px 4px #0003;
}

.btn.light.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.light.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.outline {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #fcfcfc;
  background-color: #fcfcfc1a;
  transition: all .3s;
  box-shadow: inset 0 0 0 1px #fcfcfc33, 0 4px 4px #0003;
}

.btn.outline:hover {
  background-color: #fcfcfc33;
  box-shadow: 0 0 40px #fcfcfc33, inset 0 0 0 1px #fcfcfc4d;
}

.btn.outline.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.buy {
  background-color: var(--red-40);
  background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  color: var(--gray-0);
}

.btn.buy:hover {
  background-image: none;
  box-shadow: 0 0 40px #e02c3366, 0 4px 4px #0003;
}

.btn.buy.big {
  background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  padding: 20px 40px;
  font-size: 20px;
}

.btn.buy.big:hover {
  background-image: none;
}

.btn.buy.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.google {
  color: var(--white);
  background-color: #0f9d58;
  transition: all .3s;
}

.btn.google:hover {
  background-image: none;
  box-shadow: 0 0 40px #fcfcfc33, 0 4px 4px #0003;
}

.btn.google.big {
  padding: 20px 40px;
  font-size: 20px;
}

.btn.google.small {
  padding: 6px 16px;
  font-size: 14px;
}

.btn.pokemon {
  color: var(--white);
  background-color: #0f9d58;
  transition: all .3s;
}

.btn.pokemon:hover {
  background-image: none;
  box-shadow: 0 0 40px #fcfcfc33, 0 4px 4px #0003;
}

.btn.pokemon.big {
  background-color: #2549ad;
  padding: 20px 40px;
  font-size: 20px;
}

.btn.pokemon.small {
  padding: 6px 16px;
  font-size: 14px;
}

.ds-section-header {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  display: flex;
}

.text-box {
  max-width: 1300px;
}

.text-box._640px {
  max-width: 640px;
  min-height: 64px;
}

.text-box._640px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._420px {
  max-width: 420px;
  min-height: 64px;
}

.text-box._420px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._310px {
  max-width: 310px;
  min-height: 64px;
}

.text-box._310px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._1300px {
  max-width: 1300px;
  min-height: 64px;
}

.text-box._1300px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._860px {
  max-width: 860px;
  min-height: 64px;
}

.text-box._860px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.text-box._530px {
  max-width: 530px;
  min-height: 64px;
}

.text-box._530px.visible {
  background-color: var(--dark-mode-20);
  border-radius: 6px;
}

.sg-label {
  color: var(--dark-mode-80);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
}

.white-link {
  color: #9ec5fa;
}

.sg-nav-container {
  border-right: 1px solid var(--dark-mode-20);
  background-color: var(--dark-mode-5);
  width: 240px;
  height: 100vh;
}

.subtittle {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.display {
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 86px;
}

.brand {
  width: 178px;
  display: flex;
  position: relative;
}

.brand.symbol {
  width: 40px;
}

.content-wrap {
  grid-row-gap: 28px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.content-wrap.center {
  grid-row-gap: 28px;
  text-align: center;
  align-items: center;
  max-width: 1300px;
}

.content-wrap.tab {
  grid-column-gap: 60px;
  flex-direction: row;
  align-items: stretch;
}

.twitch-video-wrapper {
  text-align: left;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding-top: 56.25%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  display: flex;
}

.header.center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.header._640px {
  max-width: 640px;
}

.header.faq-header {
  width: 100%;
  max-width: 310px;
  font-size: 20px;
}

.header.center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header.center._860px {
  max-width: 860px;
}

.header.giftcard {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-flow: row;
  width: 100%;
}

.header.home {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.header._580px.gray {
  color: #3c4043;
}

.container {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.container.footer {
  border-top: 1px solid var(--dark-mode-20);
  padding-top: 80px;
}

.container.highlight {
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
}

.container.highlight.apple {
  padding-right: 0;
  overflow: hidden;
}

.container.highlight.text-black {
  color: var(--black);
}

.container.highlight.text-grey {
  color: #5d5d5d;
}

.container.coupon {
  padding-top: 60px;
  padding-bottom: 60px;
}

.container.nav {
  flex-flow: row;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.section {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
}

.section.highlight {
  background-image: linear-gradient(#0f1643a3, #141f66), url('../images/placeholder_460x215.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.section.game-tabs {
  padding-top: 120px;
}

.section.hero {
  padding-top: 0;
  padding-bottom: 60px;
}

.section.popular {
  position: relative;
}

.section.popular.first {
  padding-top: 140px;
}

.section.fold {
  padding-top: 120px;
}

.section.fold-home {
  padding-top: 140px;
  padding-bottom: 60px;
}

.twitch-wrapper {
  text-align: left;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
}

.twitch-chat-wrapper {
  text-align: left;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding-top: 56.25%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-body {
  grid-row-gap: 20px;
  text-align: left;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
}

.card-body.small {
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.clock-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: -5px;
}

.clock-number {
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}

.clock {
  width: 60px;
}

.box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  max-width: 80px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.card {
  background-color: var(--dark-mode-20);
  border-radius: 8px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.card:hover {
  outline-offset: 0px;
  outline: 3px solid #fff;
  transform: scale(1.03);
}

.discount {
  color: #fcfcfc;
  background-color: #f54f4f;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 20px;
}

.discount.small {
  padding: 2px 4px;
  font-size: 14px;
}

.price-area {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  display: flex;
}

.price-value {
  grid-column-gap: 8px;
  text-align: left;
  flex: 1;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
}

.price-value.big {
  justify-content: center;
}

.price-value.highlight {
  flex: 0 auto;
  width: auto;
  font-size: 24px;
}

.price-value.small {
  font-size: 14px;
}

.card-header {
  width: 100%;
}

.disclaimer {
  border-radius: 5px;
  font-size: 12px;
  font-style: italic;
  line-height: 150%;
}

.disclaimer.small {
  font-size: 8px;
  line-height: 12px;
}

.product-label {
  z-index: 2;
  grid-column-gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #192360;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.product-label.steam {
  background-image: linear-gradient(41deg, #142e4c, #12456f);
}

.product-label.ubisoft {
  z-index: 2;
  background-image: linear-gradient(41deg, #242424, #222);
}

.product-label.nintendo {
  background-image: linear-gradient(to right, #c01523, #e41727);
}

.product-label.epic-games {
  color: var(--black);
  background-image: linear-gradient(to right, #e7e7e7, #efeeee);
}

.product-label.playstation {
  background-image: linear-gradient(to right, #064ed5, #005ed1);
}

.product-label.xbox {
  background-image: linear-gradient(to right, #107f10, #139113);
}

.product-label.rockstar {
  color: var(--black);
  background-color: #ffab00;
  background-image: none;
}

.product-label.microsoft {
  background-image: linear-gradient(90deg, #004b84, #0063b3);
}

.icon-wrapper {
  align-items: stretch;
  width: 20px;
  height: 20px;
  display: flex;
}

.icon-wrapper.highlight {
  width: 18px;
  height: 18px;
}

.preorder-tag-block {
  z-index: 5;
  grid-column-gap: 8px;
  align-items: center;
  margin-top: -12px;
  margin-left: 20px;
  display: flex;
  position: absolute;
}

.preorder-tag-block.small {
  margin-left: 12px;
}

.preorder-tag {
  grid-column-gap: 10px;
  background-color: var(--blue-70);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 30px;
  padding: 8px;
  font-family: Work Sans, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  display: flex;
}

.arrow-slider {
  border: 1px solid var(--gray-30);
  background-color: var(--gray-0);
  color: #505162;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transition: all .2s;
  inset: auto;
}

.arrow-slider:hover {
  border-color: var(--blue-70);
  background-color: var(--blue-70);
  color: #fcfcfc;
}

.arrow-slider.right {
  top: auto;
  bottom: 0%;
  right: 0;
}

.arrow-slider.right.highlight {
  margin-right: 40px;
  bottom: -48px;
}

.arrow-slider.right.popular {
  opacity: 0;
}

.arrow-slider.left {
  top: auto;
  bottom: 0%;
  left: 0%;
}

.arrow-slider.left.highlight {
  margin-left: 40px;
  bottom: -48px;
}

.arrow-slider.left.popular {
  opacity: 0;
  display: block;
}

.card-gradient {
  background-image: linear-gradient(#fff0, #0e184e);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.card-product-link {
  grid-row-gap: 20px;
  border: 1px solid var(--dark-mode-20);
  -webkit-text-stroke-color: #0d191f;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  position: static;
  overflow: hidden;
  box-shadow: 0 8px 40px #0003;
}

.card-product-link:hover {
  border-width: 3px;
  border-color: var(--gray-0);
}

.carousel-mask {
  width: 23.8%;
  max-width: 310px;
  height: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: visible;
}

.carousel-mask.col-6 {
  width: 100%;
  max-width: 200px;
}

.card-long {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-long:hover {
  transform: scale(1.03);
}

.game-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 480px;
}

.price-long {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  display: flex;
}

.slider-dot {
  text-align: center;
  width: 100%;
  max-width: 1380px;
  padding-top: 14px;
  font-size: 12px;
  line-height: 12px;
  inset: auto 0% 0%;
}

.slider-dot.highlight {
  bottom: -48px;
}

.carousel-slider-long {
  margin-right: 20px;
}

.card-long-body {
  z-index: 1;
  grid-row-gap: 16px;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.carousel {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel.is_contained {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  position: relative;
}

.carousel.highlight {
  justify-content: center;
  align-items: center;
  min-height: 600px;
  display: flex;
}

.long-card-title {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.tag-wrapper {
  grid-column-gap: 10px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 6px;
  display: flex;
}

.counter {
  grid-column-gap: 5px;
  align-items: flex-end;
  width: 100%;
  max-width: 420px;
  display: flex;
}

.counter.center {
  justify-content: center;
}

.counter.right {
  justify-content: flex-end;
}

.tabs-content {
  width: 100%;
  overflow: visible;
}

.tabs {
  width: 100%;
  max-width: 1300px;
  margin-top: 20px;
}

.image-tab {
  justify-content: center;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.games-preview {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.select-game {
  border-radius: 8px;
  transition: all .2s;
}

.video {
  background-image: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px #0000004d;
}

.classind {
  grid-column-gap: 12px;
  color: var(--black);
  background-color: #fcfcfc;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.classind-tittle {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.classind-content {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.classind-img {
  width: 100%;
  max-width: 40px;
}

.product-tag-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  position: static;
}

.product-tag {
  grid-column-gap: 8px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #192360;
  border-radius: 5px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 6px 8px;
  font-family: Work Sans, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  display: flex;
  overflow: auto;
}

.product-tag.steam {
  background-image: linear-gradient(41deg, #142e4c, #12456f);
}

.product-tag.ubisoft {
  background-image: linear-gradient(41deg, #242424, #222);
}

.product-tag.epic-games {
  color: var(--black);
  background-image: linear-gradient(41deg, #e7e7e7, #efeeee);
}

.product-tag.nintendo {
  background-image: linear-gradient(41deg, #c11623, #e41727);
}

.product-tag.playstation {
  background-image: linear-gradient(41deg, #064ed4, #005ed0);
}

.product-tag.xbox {
  background-image: linear-gradient(41deg, #118011, #139013);
}

.product-tag.preorder {
  background-color: var(--blue-70);
  align-self: stretch;
}

.product-tag.genre {
  background-color: var(--dark-mode-20);
  align-self: stretch;
}

.product-tag.rockstar {
  color: var(--black);
  background-color: #ffab00;
}

.product-tag.ms-store {
  background-image: linear-gradient(to right, #004b84, #0063b3);
}

.drops-area {
  grid-column-gap: 4px;
  color: var(--yellow-40);
  border-radius: 4px;
  align-items: center;
  padding: 4px 4px 4px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.footer-social-nav {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  display: flex;
}

.btn-socialmedia {
  border: 1px solid var(--dark-mode-20);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.btn-socialmedia:hover {
  background-color: #5865f2;
}

.btn-socialmedia.twitter {
  display: none;
}

.btn-socialmedia.twitter:hover {
  background-color: #1d9bf0;
}

.btn-socialmedia.youtube:hover {
  background-color: red;
}

.btn-socialmedia.twitch:hover {
  background-color: #9146ff;
}

.btn-socialmedia.facebook:hover {
  background-color: #1778f2;
}

.btn-socialmedia.instagram:hover {
  background-color: #f00075;
}

.btn-socialmedia.x:hover {
  background-color: #242424;
}

.btn-socialmedia.tiktok:hover {
  background-color: #010101;
}

.btn-socialmedia.threads:hover {
  background-color: #0a0a0a;
}

.btn-socialmedia.bluesky:hover {
  background-color: #0085ff;
}

.footer-title {
  color: #fff;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.company {
  max-width: 310px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.brand-footer {
  padding-top: 0;
  padding-bottom: 15px;
  display: flex;
}

.footer-nav {
  flex-direction: column;
  display: flex;
}

.copyright {
  color: #fff;
  align-self: center;
  margin-left: 10px;
  font-size: 14px;
}

.footer-link {
  color: var(--blue-40);
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.footer-link:hover {
  color: #fcfcfc;
}

.social-icon {
  height: 16px;
}

.social-icon.twitch, .social-icon.instagram, .social-icon.youtube {
  width: 18px;
  height: 18px;
}

.social-icon.discord {
  width: 19px;
  height: 18px;
}

.social-icon.facebook {
  width: 18px;
  height: 18px;
}

.social-icon.tiktok {
  width: 16px;
  height: 19px;
}

.social-icon.x {
  width: 18px;
  height: 16px;
}

.social-icon.threads {
  width: 18px;
  height: 18px;
}

.social-icon.bluesky {
  width: 18px;
  height: 16px;
}

.brand-white {
  color: var(--gray-0);
  height: 30px;
}

.video-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.video-wrap.right {
  padding-left: 60px;
}

.video-wrap.left {
  padding-right: 60px;
}

.video-wrap._550px {
  max-width: 550px;
}

.price-wrap {
  grid-column-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 12px;
  display: flex;
}

.buy-wrap {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.btn-area {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.btn-area._310px {
  max-width: 310px;
}

.btn-area._420px {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  max-width: 420px;
}

.btn-area._420px.select {
  max-width: none;
}

.image-wrap {
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.image-wrap.right {
  width: 100%;
  max-width: 500px;
  padding-left: 60px;
}

.image-wrap.right.render {
  padding-left: 0;
}

.image-wrap.right.cyber-deals {
  padding-left: 0;
  box-shadow: 0 5px 10px #0006;
}

.image-wrap.left {
  padding-right: 60px;
}

.image-wrap.product-cover {
  border: 1px solid var(--dark-mode-20);
  border-radius: 8px;
  max-width: 110px;
}

.image-wrap.apple {
  max-width: 230px;
}

.image-wrap.apple.mobile {
  display: none;
}

.image-wrap.center {
  width: 80%;
}

.description-text {
  grid-row-gap: 8px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.logo-wrap {
  align-self: flex-start;
  max-width: 320px;
  max-height: 200px;
}

.logo-wrap.center {
  justify-content: center;
  align-self: center;
}

.logo-wrap.small {
  max-width: 180px;
}

.logo-img {
  max-height: 200px;
}

.logo-img.pokemon {
  margin-bottom: -12px;
  margin-left: -12px;
}

.content {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  display: flex;
  position: relative;
}

.content.center {
  text-align: center;
  align-items: center;
}

.content.coupon {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  font-size: 16px;
  display: grid;
}

.content._530px {
  margin-right: 20%;
}

.mask {
  width: 100%;
  overflow: visible;
}

.bg {
  background-image: url('../images/noping-bg_1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.bg.apple {
  background-color: var(--white);
  background-image: none;
}

.bg.google {
  background-image: linear-gradient(274deg, #ffffff40, #ffffffd1), url('../images/google-play-bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.pokemon {
  background-image: linear-gradient(104deg, #ffffffc4 14%, #fff0), url('../images/poke-pattern-2x.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, contain;
}

.bg.sony {
  background-image: linear-gradient(255deg, #210c3654 17%, #230b44fc 99%, #230b44), url('../images/BG-para-LP.jpg');
  background-position: 0 0, 30%;
  background-size: auto, auto;
}

.bg.noping-valorant {
  background-image: url('../images/noping-bg_1.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.bg.valorant {
  background-image: linear-gradient(275deg, #0c113600 35%, #020e13), url('../images/valorant-background-compressed.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.playstation {
  background-image: linear-gradient(157deg, #171615 24%, #3f3c3a);
}

.bg.spotify {
  background-image: linear-gradient(225deg, #00f4b300 55%, #00f4b3), url('../images/spotify-highlight.jpg');
  background-position: 0 0, 39%;
}

.bg.geforce {
  background-image: url('../images/highlight-geforce.jpg');
  background-position: 50% 100%;
}

.bg.googleplay {
  background-image: url('../images/highlight.jpg');
  background-position: 50% 100%;
}

.bg.genshin {
  background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/bg-genshin-4.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.honkai-bg {
  background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/honkai-bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.marvel-rivals-bg {
  background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/highlight-mr.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.blood-strike-bg {
  background-image: url('../images/highlight_1.jpg');
  background-position: 70%;
  background-repeat: repeat;
  background-size: cover;
}

.bg.zzz-bg {
  background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/zzz-bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.honkai3-bg {
  background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/honkai3-bg.jpg');
  background-position: 0 0, 20%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.bg.promo-playstation {
  background-image: linear-gradient(105deg, #010236 27%, #2f044400), url('../images/PS---BG.avif');
  background-position: 0 0, 50%;
  background-size: auto, auto;
}

.bg.google-bg {
  background-image: linear-gradient(#fff, #fff);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.bg.gamepass {
  background-image: linear-gradient(90deg, #000 30%, #0000), url('../images/Artwork_otimizado.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bg.eafc26 {
  background-image: linear-gradient(105deg, #030327e0, #104185b5), url('../images/eafc26-bg.jpg');
  background-position: 0 0, 50% 20%;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.bg._2xko {
  background-image: linear-gradient(270deg, #0c113630, var(--dark-mode-10)), url('../images/2xko-bg.jpg');
}

.bg.gamepass-2 {
  background-image: linear-gradient(90deg, #000000f2 30%, #0000004f), url('../images/Artwork_otimizado.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bg.cyberdeals {
  background-image: linear-gradient(90deg, #0006, #0000), url('../images/cyber-deal-pattern.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.credit-btn {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--dark-mode-40);
  color: var(--gray-0);
  text-align: left;
  background-color: #0000;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-family: Work Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
  display: flex;
  position: relative;
}

.credit-btn:hover {
  background-color: #59a0ff33;
}

.credit-btn:active {
  color: #0b50ff;
  background-color: #fcfcfc;
  border-color: #fcfcfc;
}

.credit-btn.credit-btn--active {
  border-color: var(--gray-0);
  background-color: var(--gray-0);
  color: var(--blue-70);
}

.credit-btn.credit-btn--active:hover {
  color: var(--blue-70);
  background-color: #fcfcfc;
}

.illustration-wrap {
  width: 100%;
  position: relative;
}

.illustration-wrap.banner {
  justify-content: flex-end;
  display: flex;
}

.image-illustration {
  height: 200px;
}

.carousel-slider {
  margin-right: 20px;
}

.box-content {
  background-color: var(--dark-mode-20);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 200px;
  padding: 40px 20px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.box-content:hover {
  color: #000;
  background-color: #fcfcfc;
  transform: scale(1.03);
}

.container-2 {
  grid-column-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.carousel-genres {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel-genres.is_contained {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-bottom: 60px;
  position: relative;
  overflow: visible;
}

.genre-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.publisher--con {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 0;
  display: flex;
}

.publisher--con.ci-games {
  height: 100px;
}

.publisher--con.warner {
  height: 120px;
}

.publisher--con.ubisoft {
  height: 100px;
}

.coupon-wrap {
  border: 2px dashed var(--yellow-60);
  text-align: center;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 20px;
}

.coupon-wrap.black {
  border-color: var(--black);
  color: var(--black);
}

.coupon-code {
  color: var(--yellow-60);
}

.coupon-code.black {
  color: var(--black);
}

.step {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.step-number {
  background-color: var(--blue-70);
  color: var(--gray-0);
  border-radius: 999px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  display: flex;
}

.faq-body-cont {
  color: var(--dark-mode-80);
  padding: 0 30px 30px;
}

.faq-content {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-content._860px {
  width: 100%;
  max-width: 860px;
}

.faq-answer {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 32px;
}

.faq-img {
  z-index: 2;
  color: var(--gray-0);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
}

.container-3 {
  grid-column-gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.social-faq {
  grid-column-gap: 12px;
  padding-top: 20px;
  padding-left: 32px;
  display: flex;
}

.toggle-text {
  z-index: 2;
  color: var(--gray-0);
  white-space: normal;
  width: 100%;
  max-width: 640px;
  margin-left: 8px;
  position: relative;
}

.faq-icon {
  z-index: 2;
  color: var(--dark-mode-40);
  width: 32px;
  height: 32px;
  margin-right: 16px;
  position: absolute;
  inset: auto 0% auto auto;
}

.faq-p {
  background-color: var(--dark-mode-20);
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.faq {
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 20px;
  line-height: 24px;
  display: flex;
}

.faq-body {
  z-index: 1;
  background-color: #0000;
  display: block;
  position: relative;
}

.faq-body.w--open {
  background-color: #0000;
}

.btn-socialmedia-faq {
  background-color: var(--gray-80);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.btn-socialmedia-faq:hover {
  background-color: #5865f2;
}

.btn-socialmedia-faq.x:hover {
  background-color: #242424;
}

.btn-socialmedia-faq.youtube:hover {
  background-color: red;
}

.btn-socialmedia-faq.twitch:hover {
  background-color: #9146ff;
}

.btn-socialmedia-faq.facebook:hover {
  background-color: #1778f2;
}

.btn-socialmedia-faq.instagram:hover {
  background-color: #f00075;
}

.btn-socialmedia-faq.tiktok:hover {
  background-color: #111314;
}

.navigation {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0c1136cc;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
}

.navlinks {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #0000;
  align-items: center;
  display: flex;
  position: static;
}

.navlinks.w--open {
  display: flex;
}

.navlink {
  grid-column-gap: 8px;
  color: #fcfcfc80;
  text-align: center;
  padding: 28px 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.navlink:hover {
  color: var(--gray-0);
}

.navlink.w--current {
  border-bottom: 4px solid var(--blue-70);
  color: var(--gray-0);
  padding-bottom: 24px;
}

.navlink.w--open {
  z-index: 1;
  background-color: var(--gray-0);
  color: var(--gray-100);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.navlink.dropdown-link {
  grid-column-gap: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: space-between;
  display: none;
}

.navlink.dropdown-link.w--open {
  z-index: 1;
  background-color: var(--gray-0);
  color: var(--gray-100);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown {
  display: none;
}

.dropdown.menu.w--open {
  background-color: var(--gray-0);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-bottom: 20px;
  padding-right: 20px;
  box-shadow: 0 2px 20px #0003;
}

.navlink-dropdown {
  color: var(--gray-80);
  text-align: left;
  width: 100%;
  padding: 14px 20px 14px 40px;
  text-decoration: none;
  transition: all .3s;
}

.navlink-dropdown:hover {
  color: #1a1920;
}

.navlink-dropdown.w--current {
  border-left: 4px solid var(--blue-70);
  color: var(--gray-100);
  padding-left: 36px;
}

.image-content {
  font-size: 16px;
  line-height: 150%;
}

.btn-buyarea {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch stretch;
  min-width: 150px;
  display: grid;
  position: relative;
}

.btn-buyarea._200px {
  width: 100%;
  max-width: 200px;
}

.btn-buyarea._250px {
  width: 100%;
  max-width: 250px;
}

.game-title {
  white-space: nowrap;
  align-self: stretch;
}

.game-tabs {
  width: 100%;
}

.container-4 {
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 40px;
  display: flex;
  position: relative;
}

.game-bg {
  background-image: linear-gradient(#0f1643, #0f1643cc 50%, #0f1643), url('../images/placeholder_460x215.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.tab-content {
  padding-bottom: 0;
}

.card-2 {
  background-color: #2a2838;
  border-radius: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
}

.card-2:hover {
  outline-offset: 0px;
  outline: 3px solid #fff;
  transform: scale(1.02);
  box-shadow: 8px 8px #717079;
}

.game-tab {
  color: #fcfcfc;
  text-align: left;
  background-color: #0000;
  border-radius: 8px;
  flex: 0 auto;
  align-items: flex-end;
  width: 100%;
  height: 200px;
  margin-left: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 0 2px #fff3;
}

.game-tab:hover {
  box-shadow: 0 0 0 3px var(--gray-0);
}

.game-tab.w--current {
  z-index: 1;
  box-shadow: 0 0 0 2px var(--gray-0);
  background-color: #fcfcfc;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  transform: scale(1.15);
}

.game-tab._2, .game-tab._4, .game-tab._1, .game-tab._3 {
  background-image: url('../images/placeholder_600x900.png');
  background-position: 50%;
  background-size: cover;
}

.game-tab._3.w--current {
  max-width: 400px;
}

.tab-game-info {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
  display: flex;
}

.tab-overlay {
  color: var(--gray-0);
  background-image: linear-gradient(#0205284d, #08080a99);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.game-tabs-menu {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
}

.game-tabs-content {
  text-align: left;
  width: 100%;
  overflow: visible;
}

.jogos {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.jogos.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.fold {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.fold.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.conteudo {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.conteudo.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.seletores {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.seletores.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.galeria {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.galeria.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.banners {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.banners.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.categorias-publishers {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.categorias-publishers.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.elementos-diversos {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.elementos-diversos.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.se-o-faq {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.se-o-faq.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.rodap {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.rodap.divider {
  background-image: linear-gradient(212deg, var(--blue-80), var(--blue-100));
}

.coupon-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--gray-0);
  flex-flow: column;
  display: flex;
}

.coupon-block.black {
  color: var(--black);
  justify-content: flex-start;
  align-items: flex-start;
}

.fullprice {
  color: #fcfcfca3;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.bundle-price {
  grid-column-gap: 10px;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.bundle-game {
  border-radius: 8px;
  transition: all .2s;
  box-shadow: 4px 4px 5px #0003;
}

.bundle-wrapper {
  grid-row-gap: 20px;
  -webkit-text-stroke-color: #0d191f;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  position: static;
}

.bundle-wrapper.locked {
  filter: blur(5px);
}

.bundle-card-gradient {
  background-image: linear-gradient(#080c2966 8%, #080c29e6 89%);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.bundle-card-gradient.locked {
  background-image: linear-gradient(to bottom, #0c11364d, var(--dark-mode-10));
}

.bundle-title {
  text-align: center;
  white-space: normal;
}

.bundle-card {
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px #fcfcfc33;
}

.bundle-card.locked:hover {
  outline-offset: 0px;
  background-color: #0d191f00;
  outline: 3px #fcfcfc;
}

.bundle-card.unlocked {
  outline-offset: 0px;
  outline: 3px solid #fcfcfc;
}

.bundle-bg {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-height: 250px;
}

.bundle-bg.finished {
  filter: grayscale();
}

.lock-wrapper {
  width: 100%;
  max-width: 70px;
}

.bundle-info {
  grid-row-gap: 4px;
  text-align: left;
  white-space: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}

.bundle-card-body {
  z-index: 1;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 20px 30px;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.bundle-date {
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
}

.product-name {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

.product-name.small {
  font-size: 16px;
}

.blue-40 {
  color: var(--blue-40);
}

.breadcrumb {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--blue-40);
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  display: flex;
}

.div-block {
  align-self: center;
}

.card-select {
  grid-row-gap: 28px;
  background-color: var(--dark-mode-20);
  text-align: left;
  border-radius: 8px;
  flex-direction: column;
  padding: 28px;
  display: flex;
  position: sticky;
  top: 120px;
}

.card-select.center {
  text-align: center;
  align-items: center;
}

.card-select.coupon {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  font-size: 16px;
  display: grid;
}

.card-select._530px {
  margin-right: 20%;
}

.caption {
  font-size: 14px;
  line-height: 16px;
}

.steps {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--dark-mode-20);
  border-radius: 8px;
  flex-flow: column;
  padding: 28px;
  font-weight: 400;
  display: flex;
}

.credit-description {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.text-span {
  display: inline-block;
}

.site-background {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/bg.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  height: 100%;
  max-height: 600px;
  position: absolute;
  inset: 0% 0% auto;
}

.site-background.pubg {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/pubg-bg.jpg');
}

.site-background.lol {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/lol-bg.jpg');
}

.site-background.valorant {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/valorant-bg.jpg');
}

.site-background.freefire {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/free-fire-bg.jpg');
}

.site-background.nintendo {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/nintendo-bg.jpg');
}

.site-background.playstation {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/playstation-bg.jpg');
}

.site-background.xbox {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/xbox-bg.jpg');
}

.site-background.roblox {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/roblox-bg.jpg');
}

.site-background.bomb-me {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/love-and-deepspace-bg.jpg');
}

.site-background.avakin-life {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/avakin-life-bg.jpg');
}

.site-background.tinder {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/tinder-bg.jpg');
}

.site-background.office {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/office-bg.jpg');
}

.site-background.google {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/google-play-bg_1.jpg');
}

.site-background.apple {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/apple-bg.jpg');
}

.site-background.minecraft-jb {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/minecraft-jb-bg.jpg');
}

.site-background.minecoins {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/minecoins-bg.jpg');
}

.site-background.spotify {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/background.jpg');
}

.site-background.battlenet {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/battlenet-bg.jpg');
}

.site-background.ea-app {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/eaplay-bg.jpg');
}

.site-background._3dmark {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/3dmark-bg.jpg');
}

.site-background.perfectworld {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/perfect-world-bg.jpg');
}

.site-background.ragnarok {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/ragnarok-bg.jpg');
}

.site-background.muonline {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/mu-online-bg.jpg');
}

.site-background.honorofkings {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/honor-of-kings-bg.jpg');
}

.site-background.honkai-starrail {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/honkai-bg.jpg');
  background-position: 0 0, 50%;
}

.site-background.genshin-impact {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/genshin-bg.jpg');
}

.site-background.bloodstrike {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/rainbow-six-mobile-bg.jpg');
  background-position: 0 0, 50% 0;
}

.site-background.marvel-rivals {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/bg-mr.jpg');
}

.site-background.honkai-3rd {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/honkai3-bg.jpg');
  background-position: 0 0, 20%;
}

.site-background.zzz {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/afk-journey-bg.jpg');
  background-position: 0 0, 50%;
}

.site-background.state-of-survival {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/state-of-survival_bg.jpg');
  background-position: 0 0, 40% 0;
}

.site-background._2xko {
  background-image: linear-gradient(180deg, #0c113680, var(--dark-mode-5)), url('../images/2xko-bg.jpg');
  background-position: 0 0, 50%;
}

.credit-description-wrap {
  justify-content: flex-end;
  align-items: center;
  min-height: 38px;
  display: flex;
}

.discount-wrap {
  background-color: var(--pink-70);
  color: var(--gray-0);
  background-image: linear-gradient(90deg, #ff2475, #f26d09);
  border-radius: 4px 4px 4px 0;
  flex-flow: column;
  order: 0;
  align-self: auto;
  width: auto;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  position: absolute;
  top: -14px;
  left: -1px;
  overflow: visible;
}

.btn-back {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--gray-0);
  align-self: flex-start;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.icon-wrap {
  border: 1px solid var(--gray-0);
  color: var(--gray-0);
  border-radius: 4px;
  padding: 4px;
  transition: all .2s;
}

.icon-wrap:hover {
  background-color: var(--gray-0);
  color: var(--dark-mode-10);
}

.brand-label {
  background-color: var(--pink-90);
  color: var(--gray-0);
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 130%;
  display: flex;
  position: absolute;
  bottom: -12px;
  right: 0;
}

.heading {
  font-size: 57px;
}

.paragraph-2 {
  font-size: 10px;
}

.region-lock {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  font-weight: 500;
  display: flex;
}

.yellow-40 {
  color: var(--yellow-40);
}

.text-block, .text-block-2 {
  font-size: 15px;
}

.scroll {
  width: 100%;
  max-width: 80px;
}

.paragraph-1000 {
  font-size: 18px;
}

.green {
  color: #aef55c;
}

.content-apple-destaque {
  grid-row-gap: 30px;
  color: #9b9b9b;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 550px;
  font-size: 21px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
}

.content-apple-destaque.second-title {
  grid-row-gap: 40px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 30px;
}

.image-app-store-card {
  vertical-align: baseline;
  display: block;
}

.image-app-store-card.genshin {
  width: 30%;
}

.image-app-store-card.genshin.mobile-landscape {
  width: 25%;
  display: none;
}

.image-app-store-card.genshin.desktop-mobile {
  width: 25%;
}

.secondary-heading-destaque {
  color: #000;
  letter-spacing: -2px;
  margin-bottom: 40px;
  font-family: Sf Pro Text, sans-serif;
  font-weight: 600;
}

.description-apple-destaque {
  max-width: 600px;
}

.description-apple-destaque.tablet {
  display: none;
}

.description-apple-destaque.desktop-tablet {
  color: #9b9b9b;
  font-family: Sf Pro Text, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 110%;
}

.description-apple-destaque.mobile {
  color: #9b9b9b;
  font-family: Sf Pro Text, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 110%;
  display: none;
}

.grid-apple-destaque {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.disclaimer-destaque {
  color: #9b9b9b;
  text-align: left;
  max-width: 600px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
}

.disclaimer-destaque.mobile {
  display: none;
}

.image-wrap-apple {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-wrap-apple.genshin {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-conte-do.apple-genshin-mktp-tablet {
  width: 80%;
  margin-left: 0;
  display: none;
}

.image-conte-do.apple-genshin-mktp-desktop {
  margin-left: 0;
  display: block;
}

.image-conte-do.apple-genshin-mktp-mobile {
  width: 80%;
  margin-left: 0;
  display: none;
}

.heading-apple-destaque {
  color: #000;
  letter-spacing: -2px;
  max-width: 610px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 120%;
}

.container-apple-destaque {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  display: flex;
  position: relative;
}

.bold-text {
  font-family: Sf Pro Text, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.btn-apple {
  color: #fff;
  text-align: center;
  border-radius: 100px;
  flex: none;
  padding: 14px 30px;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.btn-apple.primary {
  background-color: #1d76f2;
  padding-left: 36px;
  padding-right: 36px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 17px;
}

.btn-apple.primary:hover {
  background-image: none;
  box-shadow: 0 4px 4px #0003;
}

.btn-apple.primary.tablet {
  display: none;
}

.div-block-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.google-green {
  color: #0f9d58;
  font-weight: 700;
}

.brand-link {
  width: 100%;
  max-width: 138px;
  height: 30px;
}

.red {
  color: #ff4655;
}

.pink {
  color: #f05aff;
}

.apple {
  color: #1d76f2;
  font-weight: 700;
}

.yellow-ps {
  color: #fcc211;
}

.image-2 {
  border-radius: 16px;
}

.white {
  color: var(--white);
}

.blue-googleplay {
  color: #4486f6;
}

.blue-80 {
  color: var(--blue-80);
}

.yellow {
  color: var(--blue-40);
}

.purple {
  color: #5f37af;
}

.text-span-2 {
  color: #26fe96;
}

.text-span-3 {
  color: var(--yellow-40);
}

.text-span-4, .text-span-5 {
  color: var(--yellow-60);
}

.price {
  flex: none;
}

.text-block-3 {
  font-size: 10px;
}

.bold-text-2, .bold-text-3 {
  color: var(--yellow-60);
}

.text-block-4 {
  font-size: 15px;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex !important;
}

.input {
  color: var(--gray-100);
  background-color: #f2f2f4;
  border-radius: 4px;
  height: 40px;
  margin-bottom: 0;
  padding: 10px 16px;
  line-height: 20px;
}

.error-message {
  color: #ff6ca3;
  background-color: #0000;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

.success-message {
  background-color: #0000;
  padding: 8px 0 0;
}

.combination-text {
  text-align: left;
}

.content-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-top: 1px solid var(--dark-mode-5);
  flex-flow: column;
  padding-top: 28px;
  display: flex;
}

.content-block.no-border-top {
  border-top-style: none;
  padding-top: 0;
}

.variable-value-form {
  margin-bottom: 0;
}

.prices {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.buy-combination-area {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.suggestion-total {
  color: #26fe96;
  text-align: left;
  line-height: 24px;
}

.suggestion-remaining-value {
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}

.div-block-5 {
  font-size: 14px;
  line-height: 20px;
}

.div-block-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.alpha-tag {
  background-color: #ff2475;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.bold-text-4 {
  text-align: right;
}

.bold-text-5, .bold-text-6 {
  color: var(--yellow-60);
}

.text-span-6 {
  color: var(--yellow-40);
}

.bold-text-7, .bold-text-8, .text-span-7, .text-span-8, .bold-text-9 {
  color: var(--yellow-60);
}

.intro-title {
  font-size: 40px;
  line-height: 1.3em;
}

.new-tag {
  background-color: var(--pink-70);
  color: var(--gray-0);
  border-radius: 4px;
  flex-flow: column;
  order: 0;
  align-self: auto;
  width: auto;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  position: absolute;
  top: -10px;
  left: auto;
  right: -8px;
  overflow: visible;
}

@media screen and (min-width: 1280px) {
  .sg-nav {
    width: 280px;
  }

  .sg-content {
    margin-left: 280px;
  }

  .sg-nav-container {
    width: 280px;
  }

  .header._580px {
    max-width: 580px;
  }

  .container.hidden {
    overflow: hidden;
  }

  .container.nav {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.highlight {
    z-index: 1;
    position: relative;
  }

  .section.fold {
    background-image: none;
  }

  .clock-label {
    font-weight: 500;
  }

  .card {
    flex-direction: column;
    align-items: stretch;
  }

  .price-area {
    align-items: center;
  }

  .price-value {
    color: #fff;
  }

  .preorder-tag {
    display: block;
  }

  .arrow-slider.right {
    bottom: 0;
  }

  .arrow-slider.right.highlight, .arrow-slider.left.highlight {
    width: 40px;
    height: 60px;
    bottom: auto;
  }

  .card-product-link {
    z-index: 0;
    background-image: none;
  }

  .carousel-mask {
    width: 32.3%;
    min-height: 500px;
  }

  .carousel-mask.col-6 {
    max-width: 200px;
    min-height: auto;
  }

  .card-long {
    max-width: 500px;
    margin-right: 0;
  }

  .game-cover {
    object-fit: cover;
    background-image: linear-gradient(#000 22%, #fff);
  }

  .carousel-slider-long {
    margin-right: 20px;
  }

  .card-long-body {
    background-image: none;
  }

  .tabs {
    width: 100%;
    max-width: 1300px;
  }

  .image-tab {
    max-width: 550px;
  }

  .games-preview {
    flex-direction: column;
    display: flex;
  }

  .video, .classind {
    max-width: 580px;
  }

  .bg.valorant {
    background-image: url('../images/valorant-background-compressed.jpg');
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
  }

  .bg.spotify {
    background-color: #00cf6f;
    background-image: linear-gradient(225deg, #00f4b300 55%, #00f4b3), url('../images/spotify-highlight.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, contain;
  }

  .bg.geforce {
    background-repeat: no-repeat;
  }

  .bg.googleplay {
    background-image: url('../images/highlight.jpg'), linear-gradient(#fff, #fff);
    background-position: 50% 100%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: contain, auto;
  }

  .bg.genshin {
    background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/bg-genshin-4.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.zzz-bg {
    background-image: linear-gradient(275deg, #0c113600, #020e13), url('../images/zzz-bg2.jpg');
  }

  .bg.honkai3-bg {
    background-position: 0 0, 10%;
  }

  .container-2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .carousel-genres.is_contained {
    overflow: hidden;
  }

  .genre-icon {
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    display: flex;
  }

  .publisher--con {
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 150px;
    display: flex;
  }

  .coupon-code.black {
    color: var(--black);
  }

  .container-3 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .faq-icon {
    max-width: none;
    display: block;
    overflow: visible;
  }

  .game-tabs {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .tab-game-info {
    color: #fff;
  }

  .game-tabs-menu {
    max-width: 1380px;
    inset: 0% auto auto;
  }

  .game-tabs-content {
    flex-direction: column;
    display: flex;
  }

  .bundle-wrapper {
    z-index: 0;
    background-image: none;
  }

  .bundle-card {
    max-width: 500px;
    margin-right: 0;
  }

  .bundle-bg {
    object-fit: cover;
    background-image: linear-gradient(#000 22%, #fff);
  }

  .bundle-info {
    text-align: center;
    align-items: center;
  }

  .bundle-card-body {
    background-image: none;
  }

  .site-background.honkai-3rd {
    background-position: 0 0, 50%;
  }

  .site-background.state-of-survival {
    background-position: 0 0, 0 0;
  }

  .content-apple-destaque.second-title {
    padding-left: 0;
  }

  .description-apple-destaque {
    max-width: 600px;
  }

  .grid-apple-destaque {
    grid-column-gap: 40px;
    grid-template-columns: 1fr .75fr;
  }

  .image-wrap-apple {
    text-align: center;
  }

  .image-conte-do {
    margin-left: 0;
  }

  .image-conte-do.apple-genshin-mktp-tablet {
    display: none;
  }

  .image-conte-do.apple-genshin-mktp-desktop {
    display: block;
  }

  .image-conte-do.apple-genshin-mktp-mobile {
    display: none;
  }

  .container-apple-destaque {
    max-width: none;
  }

  .red {
    color: #ff4655;
    -webkit-text-stroke-color: #ff4655;
  }

  .yellow-ps {
    -webkit-text-stroke-color: #ff4655;
  }

  .yellow {
    color: var(--yellow-40);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 52px;
    line-height: 110%;
  }

  p {
    font-size: 18px;
  }

  .sg-nav {
    z-index: 10;
    background-color: #f0f2f3;
    border-right-style: none;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .sg-menu-brand {
    margin-top: 4px;
    margin-bottom: 16px;
  }

  .sg-menu {
    z-index: 500;
    background-color: #f0f2f3;
    border-bottom: 1px solid #e1e5e7;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
    box-shadow: 0 3px 5px #0000000d;
  }

  .sg-menu-button {
    margin-right: 12px;
    padding: 15px;
    top: -10px;
  }

  .sg-menu-button.w--open {
    color: #356af0;
    background-color: #d0e8ff;
    border-radius: 40px;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  .grid {
    margin-left: 0;
  }

  .grid.desk-3.tab-2, .grid.desk-4.tab-2 {
    grid-template-columns: minmax(48%, 1fr) minmax(48%, 1fr);
  }

  .grid.desk-2.tab-2 {
    grid-row-gap: 28px;
  }

  .grid.desk-2.tab-2.banner {
    height: auto;
    min-height: 300px;
  }

  .grid.desk-2.tab-2.landscape-2 {
    grid-template-columns: minmax(48%, 1fr) minmax(48%, 1fr);
  }

  .grid.desk-2.tab-2.row-60px {
    grid-row-gap: 60px;
  }

  .grid.desk-6.tab-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-6.tab-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid.desk-5.tab-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-5.tab-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  ._1-2-grid {
    margin-left: 0;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  ._2-1-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: 0;
  }

  .column {
    width: 50%;
  }

  .column.desk-3 {
    flex-wrap: nowrap;
    width: 33.33%;
  }

  .tabs-menu {
    justify-content: flex-start;
    align-items: center;
  }

  .sg-content {
    border-left-style: none;
    width: 100%;
    margin-left: 0;
    position: static;
  }

  .btn {
    position: relative;
  }

  .btn.buy {
    background-color: var(--red-40);
    background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  }

  .sg-menu-icon {
    font-size: 32px;
  }

  .sg-nav-container {
    width: auto;
    height: auto;
  }

  .content-wrap {
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    font-size: 20px;
  }

  .content-wrap.tab {
    flex-direction: column;
    align-items: center;
  }

  .twitch-video-wrapper {
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    font-size: 20px;
  }

  .header {
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header.faq-header {
    text-align: left;
  }

  .header.left {
    text-align: left;
    align-items: flex-start;
  }

  .header.home {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    text-align: left;
  }

  .header._580px {
    justify-content: flex-start;
    align-items: center;
  }

  .container.highlight {
    justify-content: center;
    align-items: center;
  }

  .twitch-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    font-size: 20px;
  }

  .twitch-chat-wrapper {
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
    align-items: center;
    width: 100%;
    height: 400px;
    margin-bottom: 0;
    font-size: 20px;
  }

  .price-value.highlight {
    justify-content: center;
    width: auto;
  }

  .arrow-slider.right {
    opacity: 1;
    bottom: -50px;
    right: -28px;
  }

  .arrow-slider.right.popular {
    opacity: 100;
  }

  .arrow-slider.left {
    opacity: 1;
    bottom: -50px;
    left: -28px;
  }

  .arrow-slider.left.popular {
    opacity: 100;
  }

  .carousel-mask {
    width: 31%;
  }

  .carousel-slider-long {
    margin-right: 20px;
  }

  .carousel.is_contained {
    overflow: visible;
  }

  .carousel.highlight {
    min-height: 500px;
  }

  .tag-wrapper {
    grid-row-gap: 10px;
    flex-direction: row;
  }

  .counter {
    justify-content: center;
    width: 100%;
  }

  .counter.right {
    justify-content: center;
  }

  .image-tab {
    justify-content: center;
    width: 100%;
    max-width: 400px;
    display: none;
  }

  .games-preview {
    align-items: center;
  }

  .video {
    margin-bottom: 0;
    margin-right: auto;
  }

  .classind {
    text-align: left;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
  }

  .product-tag-wrap {
    justify-content: center;
  }

  .product-tag.steam {
    margin-right: 10px;
  }

  .company {
    text-align: left;
    max-width: none;
  }

  .footer-nav {
    text-align: left;
  }

  .video-wrap {
    max-width: 530px;
    padding-left: 0;
  }

  .video-wrap.right {
    padding-left: 0;
  }

  .video-wrap.left {
    padding-right: 0;
  }

  .price-wrap {
    align-self: center;
    width: 100%;
  }

  .buy-wrap {
    width: 100%;
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-area._310px.banner {
    align-self: flex-start;
    max-width: 200px;
  }

  .btn-area._420px {
    max-width: 420px;
  }

  .image-wrap.right {
    padding-left: 0;
    display: none;
  }

  .image-wrap.right.bundle {
    display: none;
  }

  .image-wrap.left {
    padding-right: 0;
  }

  .image-wrap.center {
    display: none;
  }

  .description-text {
    text-align: center;
  }

  .logo-wrap {
    justify-content: center;
    align-self: center;
  }

  .logo-wrap.small {
    max-width: 150px;
  }

  .logo-img {
    max-height: 180px;
  }

  .content {
    justify-content: flex-start;
    align-self: stretch;
    align-items: flex-start;
  }

  .content.banner {
    font-size: 16px;
  }

  .content._530px {
    margin-right: 0%;
  }

  .bg {
    background-image: linear-gradient(#1616165e, #161616b5), url('../images/noping-bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.valorant {
    background-image: linear-gradient(275deg, #020e13b3, #020e13b3), url('../images/valorant-background-compressed.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.spotify {
    background-image: linear-gradient(225deg, #00f4b300 23%, #00f4b3), linear-gradient(#00ce75e6, #00ce75e6), url('../images/spotify-highlight.jpg');
    background-position: 0 0, 0 0, 70%;
    background-repeat: repeat, repeat, repeat;
    background-size: auto, auto, cover;
  }

  .bg.geforce {
    background-image: linear-gradient(#75ba001a, #1e1f1d 100%, #1d1d1dcc), url('../images/highlight-geforce.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.googleplay {
    background-image: linear-gradient(#ffffffb3, #ffffffe6), url('../images/highlight.jpg');
    background-position: 0 0, 100% 100%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.genshin {
    background-image: linear-gradient(275deg, #020e13b3, #020e13b3), url('../images/genshin-bg_1.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.honkai-bg, .bg.marvel-rivals-bg {
    background-image: linear-gradient(275deg, #020e13b3, #020e13b3), url('../images/honkai-bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.blood-strike-bg {
    background-image: linear-gradient(#fffc, #fffc), url('../images/highlight_1.jpg');
    background-position: 0 0, 100%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.zzz-bg, .bg.honkai3-bg {
    background-image: linear-gradient(275deg, #020e13b3, #020e13b3), url('../images/honkai-bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.promo-playstation {
    background-image: linear-gradient(15deg, #010236 27%, #2f044400), url('../images/PS---BG.avif');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, repeat;
    background-size: auto, auto;
  }

  .bg.gamepass {
    background-image: linear-gradient(45deg, #000 30%, #0000), url('../images/Artwork_otimizado.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .bg._2xko {
    background-image: linear-gradient(0deg, #0c113682, var(--dark-mode-10)), url('../images/2xko-bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.gamepass-2 {
    background-image: linear-gradient(45deg, #000 30%, #0000), url('../images/Artwork_otimizado.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .bg.cyberdeals {
    background-image: url('../images/cyber-deal-pattern.jpg');
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .credit-btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .illustration-wrap {
    justify-content: center;
    display: flex;
  }

  .box-content {
    min-height: 180px;
    max-height: 180px;
  }

  .carousel-genres.is_contained {
    overflow: visible;
  }

  .genre-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .publisher--con {
    width: 120px;
    height: 120px;
  }

  .publisher--con.ci-games {
    width: 100px;
    height: 80px;
  }

  .faq-answer {
    padding-left: 32px;
    font-size: 14px;
    line-height: 150%;
  }

  .faq-img {
    width: 24px;
    height: 24px;
  }

  .toggle-text {
    margin-right: 20px;
    font-size: 18px;
    line-height: 150%;
  }

  .faq-icon {
    width: 24px;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
  }

  .menu, .navigation {
    order: 1;
  }

  .navbar {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 4px 16px 4px 40px;
  }

  .btn-droparea {
    width: 100%;
    padding-left: 20px;
    display: flex;
  }

  .navlinks {
    display: none;
  }

  .navlinks.w--open {
    background-color: #fcfcfc;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    display: flex;
    position: absolute;
    right: 0;
    box-shadow: 0 2px 20px #0003;
  }

  .navlink {
    color: var(--gray-80);
    text-align: left;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
  }

  .navlink:hover {
    color: #3d3d4c;
  }

  .navlink.w--current {
    border-left: 4px solid var(--blue-70);
    color: var(--gray-100);
    border-bottom-style: none;
    padding-bottom: 14px;
    padding-left: 36px;
  }

  .navlink.dropdown-link {
    display: inline-block;
  }

  .dropdown {
    z-index: 1;
    grid-column-gap: 20px;
    color: #fcfcfc;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    display: flex;
  }

  .dropdown.w--open {
    color: var(--blue-70);
    background-color: #fcfcfc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .dropdown-select {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: none;
  }

  .navlink-dropdown {
    color: #3d3d4cb3;
    text-align: left;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
    display: none;
  }

  .navlink-dropdown:hover {
    color: #3d3d4c;
  }

  .btn-buyarea {
    grid-template-columns: 1fr .5fr;
  }

  .btn-buyarea._200px {
    max-width: none;
  }

  .btn-buyarea._420px {
    max-width: 420px;
  }

  .btn-buyarea._510px {
    grid-template-columns: 1fr 1fr;
    max-width: 510px;
  }

  .container-4 {
    align-self: center;
  }

  .game-tab._1.w--current {
    max-width: 400px;
  }

  .tab-game-info {
    text-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 120%;
  }

  .tab-overlay {
    align-items: center;
    padding: 12px;
  }

  .game-tabs-menu {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .coupon-block.black {
    justify-content: flex-start;
    align-items: center;
  }

  .fullprice {
    font-size: 18px;
  }

  .bundle-info {
    width: 100%;
  }

  .card-select {
    align-self: stretch;
    position: static;
  }

  .card-select.banner {
    font-size: 16px;
  }

  .steps {
    align-items: flex-start;
    width: 100%;
  }

  .site-background.honkai-starrail {
    background-position: 0 0, 70%;
  }

  .site-background.honkai-3rd {
    background-position: 0 0, 40%;
  }

  .site-background.zzz {
    background-position: 0 0, 70%;
  }

  .site-background.state-of-survival {
    background-position: 0 0, 40% 0;
  }

  .site-background._2xko {
    background-position: 0 0, 70%;
  }

  .content-apple-destaque {
    text-align: left;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    max-width: none;
  }

  .content-apple-destaque.second-title {
    grid-row-gap: 30px;
    text-align: left;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-app-store-card.genshin.mobile-landscape, .image-app-store-card.genshin.desktop-mobile {
    width: 25%;
    max-width: 25%;
    margin-right: 50px;
  }

  .secondary-heading-destaque {
    margin-bottom: 0;
    font-size: 26px;
  }

  .description-apple-destaque {
    text-align: center;
    max-width: 750px;
    font-size: 17px;
  }

  .description-apple-destaque.tablet {
    text-align: left;
    font-size: 17px;
    line-height: 110%;
    display: block;
  }

  .description-apple-destaque.desktop-tablet, .description-apple-destaque.mobile {
    text-align: left;
  }

  .grid-apple-destaque {
    grid-column-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: .75fr;
    grid-auto-columns: .5fr;
  }

  .disclaimer-destaque {
    max-width: 700px;
  }

  .disclaimer-destaque.mobile {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
  }

  .image-wrap-apple {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .image-wrap-apple.genshin {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: auto;
  }

  .image-conte-do {
    display: none;
  }

  .image-conte-do.apple-genshin-mktp-tablet {
    width: 100%;
    display: block;
  }

  .image-conte-do.apple-genshin-mktp-desktop {
    display: none;
  }

  .image-conte-do.apple-genshin-mktp-mobile {
    width: 100%;
  }

  .heading-apple-destaque {
    text-align: left;
  }

  .container-apple-destaque {
    padding-top: 20px;
    padding-left: 0;
  }

  .btn-apple {
    position: relative;
  }

  .btn-apple.primary {
    max-width: 300px;
  }

  .btn-apple.primary.tablet {
    max-width: 150px;
    display: block;
  }

  .slide {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 110%;
  }

  h2 {
    font-size: 40px;
    line-height: 46px;
  }

  h3 {
    font-size: 24px;
    line-height: 28px;
  }

  h4 {
    font-size: 28px;
    line-height: 34px;
  }

  h5 {
    font-size: 24px;
    line-height: 28px;
  }

  h6 {
    font-size: 20px;
    line-height: 24px;
  }

  .sg-menu-brand.w--current {
    margin-top: 14px;
  }

  .sg-menu {
    background-color: #fff;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .grid.desk-3 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-3.tab-2 {
    grid-template-columns: minmax(48%, 1fr) minmax(48%, 1fr);
  }

  .grid.desk-3.steps {
    grid-template-columns: 1fr;
  }

  .grid.desk-4.tab-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-2.tab-2 {
    grid-column-gap: 12px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .grid.desk-2.tab-2.banner {
    grid-template-rows: auto auto;
  }

  .grid.desk-2.tab-2.landscape-2 {
    grid-template-rows: auto;
    grid-template-columns: minmax(48%, 1fr) minmax(48%, 1fr);
  }

  .grid.desk-2.tab-2.row-28px {
    grid-row-gap: 20px;
  }

  .grid.desk-2.mob-2, .grid.desk-6.tab-4 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  ._1-2-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .tab-link {
    font-size: 14px;
  }

  .tab-link.big {
    padding: 16px 28px;
  }

  ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .spacer {
    height: 32px;
  }

  .spacer._60 {
    height: 48px;
  }

  .paragraph {
    font-size: 15px;
  }

  .icon._24px {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .ds-colour-block {
    width: 25%;
  }

  .sg-content {
    margin-left: 0;
  }

  .sg-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .btn.outline.big {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .btn.primary.big {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .btn.light.big {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .btn.outline.big {
    width: 100%;
  }

  .btn.buy {
    padding: 6px 16px;
    font-size: 14px;
  }

  .btn.buy.big {
    width: 100%;
  }

  .btn.google.big, .btn.pokemon.big {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .subtittle {
    font-size: 16px;
    line-height: 20px;
  }

  .display {
    font-size: 60px;
    line-height: 72px;
  }

  .brand {
    width: 133.5px;
  }

  .content-wrap {
    grid-row-gap: 20px;
    height: 100%;
    font-size: 16px;
  }

  .twitch-video-wrapper {
    align-items: center;
  }

  .header {
    font-size: 14px;
  }

  .header.faq-header {
    text-align: center;
    max-width: 640px;
    font-size: 24px;
  }

  .header.left {
    text-align: center;
    align-items: center;
  }

  .header.giftcard {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .header.apple {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .container {
    grid-row-gap: 28px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.highlight {
    font-size: 14px;
  }

  .container.highlight.apple {
    padding-right: 20px;
  }

  .container.nav {
    justify-content: space-between;
    align-items: center;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .section.popular.first {
    padding-top: 80px;
  }

  .section.fold {
    padding-top: 100px;
  }

  .twitch-wrapper, .twitch-chat-wrapper {
    align-items: center;
  }

  .card-body {
    padding: 18px 12px 16px;
    font-size: 14px;
    line-height: 18px;
  }

  .clock-number {
    font-size: 42px;
  }

  .box {
    margin-left: 5px;
    margin-right: 5px;
  }

  .card {
    padding-bottom: 0;
  }

  .price-area {
    flex-flow: wrap;
    align-items: center;
    height: auto;
  }

  .price-value {
    font-size: 24px;
  }

  .price-value.big {
    font-size: 14px;
  }

  .price-value.highlight {
    justify-content: flex-start;
  }

  .disclaimer {
    font-size: 10px;
  }

  .preorder-tag-block {
    margin-top: -14px;
    margin-left: 12px;
  }

  .arrow-slider.right {
    right: -8px;
  }

  .arrow-slider.right.highlight {
    margin-right: 20px;
  }

  .arrow-slider.left {
    left: -8px;
  }

  .arrow-slider.left.highlight {
    margin-left: 20px;
  }

  .card-product-link {
    font-size: 14px;
    line-height: 18px;
  }

  .carousel-mask {
    width: 36%;
    max-width: 400px;
    height: auto;
  }

  .carousel-mask.col-6 {
    max-width: 160px;
  }

  .card-long {
    font-size: 14px;
    line-height: 18px;
  }

  .carousel-slider-long {
    margin-right: 12px;
  }

  .card-long-body {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .carousel.highlight {
    min-height: 440px;
  }

  .tag-wrapper {
    flex-direction: row;
  }

  .counter {
    grid-column-gap: 0px;
    justify-content: center;
  }

  .image-tab {
    max-width: 400px;
  }

  .product-tag.preorder.product-card {
    height: 24px;
  }

  .drops-area {
    font-size: 12px;
  }

  .footer-social-nav {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .company {
    flex-direction: column;
    display: flex;
  }

  .brand-footer {
    justify-content: flex-start;
    align-items: stretch;
  }

  .video-wrap {
    max-width: 420px;
  }

  .buy-wrap {
    align-items: stretch;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-area {
    max-width: 420px;
  }

  .btn-area._310px.banner {
    align-self: center;
  }

  .image-wrap.right {
    max-width: 400px;
  }

  .image-wrap.left {
    max-width: 500px;
  }

  .image-wrap.left.giftcard {
    max-width: 400px;
  }

  .image-wrap.product-cover {
    max-width: 67px;
  }

  .image-wrap.apple.mobile {
    max-width: 160px;
    display: block;
  }

  .logo-wrap {
    max-width: 220px;
  }

  .logo-wrap.center {
    align-self: center;
  }

  .logo-img, .logo-img.pokemon {
    max-height: 160px;
  }

  .content.banner {
    align-items: center;
  }

  .bg.valorant {
    background-position: 0 0, 60%;
  }

  .bg.googleplay {
    background-position: 0 0, 90% 100%;
  }

  .bg.genshin, .bg.honkai-bg, .bg.marvel-rivals-bg {
    background-position: 0 0, 60%;
  }

  .bg.blood-strike-bg {
    background-image: linear-gradient(to bottom, null, null), url('../images/highlight_1.jpg');
    background-position: 0 0, 100%;
  }

  .bg.zzz-bg, .bg.honkai3-bg {
    background-position: 0 0, 60%;
  }

  .credit-btn {
    font-size: 16px;
  }

  .illustration-wrap.banner {
    max-width: 350px;
  }

  .box-content {
    min-height: 160px;
    max-height: 160px;
  }

  .container-2 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .genre-icon {
    width: 70px;
    height: 70px;
    display: flex;
  }

  .publisher--con {
    width: 100px;
  }

  .coupon-wrap {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .coupon-wrap.black {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }

  .step {
    text-align: left;
  }

  .container-3 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .toggle-text {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
  }

  .navbar {
    grid-template-columns: 1fr max-content;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
    top: 0;
  }

  .btn-droparea {
    flex-direction: column;
    padding-top: 20px;
    display: flex;
  }

  .btn-navarea {
    display: none;
  }

  .navlinks.w--open {
    margin-top: -2px;
  }

  .dropdown {
    padding: 13px;
    top: -2px;
  }

  .btn-buyarea {
    grid-template-columns: 1fr .75fr;
  }

  .container-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-content {
    padding-top: 360px;
  }

  .card-2 {
    padding-bottom: 0;
  }

  .game-tab {
    height: 160px;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
  }

  .game-tab.w--current {
    height: 160px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .game-tab._2 {
    background-position: 50% 10%;
  }

  .game-tab._2.w--current, .game-tab._4.w--current, .game-tab._1.w--current, .game-tab._3.w--current {
    transform: none;
  }

  .tab-game-info {
    grid-row-gap: 12px;
    text-align: center;
    align-items: center;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
  }

  .game-tabs-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
  }

  .bundle-wrapper {
    font-size: 14px;
    line-height: 18px;
  }

  .bundle-title {
    overflow: hidden;
  }

  .bundle-card {
    max-height: 180px;
  }

  .lock-wrapper {
    max-width: 60px;
  }

  .bundle-info {
    width: 100%;
    font-size: 16px;
  }

  .bundle-card-body {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .bundle-date {
    font-size: 12px;
    overflow: hidden;
  }

  .product-name {
    font-size: 16px;
  }

  .product-name.small {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .card-select {
    padding: 20px;
  }

  .card-select.banner {
    align-items: center;
  }

  .steps {
    padding: 20px;
  }

  .credit-description {
    font-size: 12px;
    line-height: 120%;
  }

  .site-background.honkai-starrail {
    background-position: 0 0, 60%;
  }

  .site-background.honkai-3rd {
    background-position: 0 0, 40%;
  }

  .site-background.zzz {
    background-position: 0 0, 60%;
  }

  .site-background.state-of-survival {
    background-position: 0 0, 40% 0;
  }

  .site-background._2xko {
    background-position: 0 0, 60%;
  }

  .credit-description-wrap {
    min-height: 30px;
  }

  .btn-back.w--current {
    font-size: 12px;
  }

  .brand-label {
    font-size: 8px;
    bottom: -8px;
  }

  .region-lock {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-items: center;
    font-size: 14px;
  }

  .content-apple-destaque {
    grid-row-gap: 14px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .content-apple-destaque.second-title {
    justify-content: center;
    align-self: center;
    align-items: center;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-app-store-card {
    width: 100%;
  }

  .image-app-store-card.genshin.mobile-landscape {
    width: 170px;
    max-width: none;
    margin-right: 0;
    display: block;
  }

  .image-app-store-card.genshin.desktop-mobile {
    width: 170px;
    display: none;
  }

  .image-app-store-card.mobile {
    display: block;
  }

  .secondary-heading-destaque {
    letter-spacing: -1px;
    font-size: 21px;
    line-height: 24px;
  }

  .description-apple-destaque.tablet {
    display: none;
  }

  .description-apple-destaque.desktop-tablet {
    text-align: center;
    font-size: 21px;
    line-height: 110%;
    display: none;
  }

  .description-apple-destaque.mobile {
    text-align: center;
    font-size: 21px;
    line-height: 110%;
  }

  .grid-apple-destaque {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .disclaimer-destaque {
    padding-left: 0;
    padding-right: 0;
    font-size: 9px;
  }

  .disclaimer-destaque.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-wrap-apple {
    width: 80%;
    display: none;
  }

  .image-wrap-apple.genshin {
    width: 100%;
  }

  .image-conte-do {
    margin-left: 0;
  }

  .image-conte-do.apple-genshin-mktp-tablet {
    display: none;
  }

  .image-conte-do.apple-genshin-mktp-desktop {
    margin-left: 25px;
  }

  .image-conte-do.apple-genshin-mktp-mobile {
    display: block;
  }

  .heading-apple-destaque {
    text-align: center;
    font-size: 25px;
  }

  .container-apple-destaque {
    flex-flow: column;
  }

  .btn-apple.primary {
    max-width: 150px;
    display: block;
  }

  .div-block-3, .div-block-4 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  p {
    font-size: 16px;
  }

  .sg-menu-brand {
    margin-left: 16px;
  }

  .sg-menu-button {
    margin-right: 4px;
  }

  .grid.desk-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .grid.desk-3.tab-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: minmax(100%, 1fr);
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid.desk-4.tab-2 {
    grid-template-columns: minmax(100%, 1fr);
  }

  .grid.desk-2.tab-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .grid.desk-2.tab-2.landscape-2 {
    grid-template-columns: minmax(100%, 1fr);
  }

  .grid.desk-2.tab-2.row-28px {
    grid-row-gap: 20px;
  }

  .grid.desk-6.tab-4.mob-2 {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-5.tab-3.mob-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tab-link {
    flex: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tab-link.big {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desk-3 {
    width: 100%;
  }

  .tabs-menu {
    flex-flow: row;
    overflow: auto;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .content-wrap {
    grid-row-gap: 28px;
    height: auto;
  }

  .twitch-video-wrapper {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .header.center {
    padding-left: 0;
    padding-right: 0;
  }

  .header.giftcard {
    text-align: left;
  }

  .header._580px {
    grid-row-gap: 12px;
  }

  .container.highlight.apple {
    padding-left: 16px;
    padding-right: 16px;
  }

  .twitch-chat-wrapper {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .card-body {
    padding-bottom: 16px;
  }

  .clock-number {
    font-size: 28px;
  }

  .box {
    max-width: 60px;
    margin-left: 0;
    margin-right: 0;
  }

  .price-value.highlight {
    justify-content: center;
  }

  .carousel-mask {
    min-width: 250px;
  }

  .carousel-mask.col-6 {
    min-width: 160px;
  }

  .slider-dot {
    display: none;
  }

  .slider-dot.highlight {
    display: block;
  }

  .carousel-slider-long {
    margin-right: 6%;
  }

  .carousel.highlight {
    min-height: 500px;
  }

  .counter {
    flex-flow: wrap;
    justify-content: center;
  }

  .counter.center {
    justify-content: center;
  }

  .games-preview {
    text-align: center;
  }

  .classind {
    grid-column-gap: 12px;
    padding: 12px;
  }

  .classind-tittle {
    font-size: 14px;
  }

  .classind-img {
    max-width: 40px;
  }

  .drops-area {
    justify-content: center;
  }

  .footer-social-nav {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto auto auto;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: flex;
  }

  .btn-socialmedia.tiktok:hover {
    background-color: #111314;
  }

  .price-wrap {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .btn-area._420px {
    grid-template-columns: 1fr;
  }

  .image-wrap.right.giftcard, .image-wrap.left.giftcard, .image-wrap.product-cover {
    display: none;
  }

  .logo-wrap.small {
    max-width: 120px;
  }

  .logo-img {
    max-height: 120px;
  }

  .logo-img.pokemon {
    max-height: 150px;
    margin-top: -20px;
    margin-bottom: -8px;
  }

  .bg {
    background-image: linear-gradient(#1616169e, #161616cc), url('../images/noping-bg.jpg');
    background-position: 0 0, 64%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .bg.googleplay {
    background-position: 0 0, 74% 100%;
  }

  .credit-btn {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    padding-left: 4px;
    padding-right: 4px;
  }

  .carousel-slider {
    margin-right: 12px;
  }

  .coupon-wrap.white {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
  }

  .faq-body-cont {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-img {
    display: none;
  }

  .social-faq {
    grid-row-gap: 12px;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .toggle-text {
    max-width: 230px;
    margin-left: 0;
  }

  .btn-buyarea {
    grid-template-columns: 1fr;
  }

  .tab-content {
    padding-left: 0;
    padding-right: 0;
  }

  .game-tab {
    margin-right: 0;
    padding: 8px;
    transform: scale(1);
  }

  .game-tab.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .tab-game-info {
    font-size: 14px;
  }

  .tab-overlay {
    padding: 16px 8px;
  }

  .game-tabs-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    justify-items: center;
    display: grid;
  }

  .fullprice, .bundle-title {
    font-size: 14px;
  }

  .bundle-card {
    max-height: 140px;
  }

  .lock-wrapper {
    max-width: 40px;
  }

  .bundle-info {
    font-size: 20px;
  }

  .bundle-card-body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .bundle-date {
    font-size: 10px;
  }

  .card-select {
    grid-row-gap: 20px;
  }

  .credit-description {
    text-align: center;
  }

  .site-background.honkai-3rd {
    background-position: 0 0, 40%;
  }

  .site-background.state-of-survival {
    background-position: 0 0, 45% 0;
  }

  .description-text-home {
    text-align: left;
  }

  .content-apple-destaque {
    font-size: 15px;
  }

  .content-apple-destaque.second-title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-app-store-card.genshin.mobile-landscape, .image-app-store-card.genshin.desktop-mobile {
    width: 120px;
  }

  .secondary-heading-destaque {
    font-size: 19px;
  }

  .description-apple-destaque.desktop-tablet {
    max-width: 380px;
    font-size: 15px;
  }

  .description-apple-destaque.mobile {
    max-width: 380px;
    font-size: 17px;
  }

  .disclaimer-destaque {
    text-align: left;
    font-size: 8px;
  }

  .disclaimer-destaque.mobile {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .image-conte-do.apple-genshin-mktp-tablet {
    display: none;
  }

  .heading-apple-destaque {
    font-size: 23px;
  }

  .btn-apple {
    width: 100%;
    font-size: 14px;
  }

  .btn-apple.primary {
    max-width: 130px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .form {
    flex-flow: column;
    display: flex !important;
  }

  .buy-combination-area {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

#w-node-ba911b45-123d-afd4-cf58-8647e563ed85-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-ba911b45-123d-afd4-cf58-8647e563ed94-00cb4fc5, #w-node-ba911b45-123d-afd4-cf58-8647e563eda1-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ba911b45-123d-afd4-cf58-8647e563eda2-00cb4fc5, #w-node-ba911b45-123d-afd4-cf58-8647e563eda5-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ba911b45-123d-afd4-cf58-8647e563eda8-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-b4dc3297-b393-7798-a2a1-e67e4d86c373-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-b4dc3297-b393-7798-a2a1-e67e4d86c38d-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-b4dc3297-b393-7798-a2a1-e67e4d86c38f-00cb4fc5, #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c398-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-b4dc3297-b393-7798-a2a1-e67e4d86c399-00cb4fc5, #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c39c-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b4dc3297-b393-7798-a2a1-e67e4d86c39f-00cb4fc5 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf62-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf7c-00cb4fc5 {
  grid-area: 1 / 2 / 4 / 3;
  justify-self: end;
}

#w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf7e-00cb4fc5, #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf87-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf88-00cb4fc5, #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf8b-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49da8283-0327-584f-11ba-73bfdfec2bf8-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_49da8283-0327-584f-11ba-73bfdfec2c03-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_49da8283-0327-584f-11ba-73bfdfec2c04-00cb4fc5, #w-node-_49da8283-0327-584f-11ba-73bfdfec2c07-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49da8283-0327-584f-11ba-73bfdfec2c0a-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570e3-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570ff-00cb4fc5, #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157108-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157109-00cb4fc5, #w-node-_3b2f3c11-2d48-3959-22f6-c0ea9915710c-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570f4-00cb4fc5 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_3b2f3c11-2d48-3959-22f6-c0ea9915710f-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-c07f9402-230d-df8e-96ab-1f15552dc4bd-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-c07f9402-230d-df8e-96ab-1f15552dc4d2-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-c07f9402-230d-df8e-96ab-1f15552dc4d4-00cb4fc5, #w-node-c07f9402-230d-df8e-96ab-1f15552dc4dd-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-c07f9402-230d-df8e-96ab-1f15552dc4de-00cb4fc5, #w-node-c07f9402-230d-df8e-96ab-1f15552dc4e1-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c07f9402-230d-df8e-96ab-1f15552dc4e4-00cb4fc5 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_3b5b57ab-d2c8-3425-363e-606e95220a6f-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_56a537d2-2e3f-1e09-3052-5a6665d4ec6b-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
}

#w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7c-00cb4fc5 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7d-00cb4fc5, #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a80-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b5b57ab-d2c8-3425-363e-606e95220a83-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6b3-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6bd-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6be-00cb4fc5, #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6c1-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6c4-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95c4-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95cf-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d0-00cb4fc5, #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d3-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d6-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6c6-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6d5-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6de-00cb4fc5 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6df-00cb4fc5, #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6e2-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6e9-00cb4fc5 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_144b1701-0b53-06c0-2003-812f52154de1-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_144b1701-0b53-06c0-2003-812f52154df6-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  justify-self: end;
}

#w-node-_144b1701-0b53-06c0-2003-812f52154e01-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_144b1701-0b53-06c0-2003-812f52154e02-00cb4fc5, #w-node-_144b1701-0b53-06c0-2003-812f52154e05-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_144b1701-0b53-06c0-2003-812f52154e08-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_5a47e342-485d-c9b2-3f75-7f5e055829e8-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_2fa2b530-63b1-73e5-d3d5-f3f6d3de0c0d-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
}

#w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f3-00cb4fc5 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f4-00cb4fc5, #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f7-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e89-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e93-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e94-00cb4fc5, #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e97-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e9a-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-e99d076f-cd52-2b02-9c6b-f8097d869f12-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1c-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1d-00cb4fc5, #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f20-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e99d076f-cd52-2b02-9c6b-f8097d869f23-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17a2-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ac-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ad-00cb4fc5, #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17b0-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17b3-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_12800e21-434f-95a0-89fd-b3b6a882a39f-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ac-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ad-00cb4fc5, #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3b0-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12800e21-434f-95a0-89fd-b3b6a882a3b3-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-b3d1382a-ac36-0883-51ba-324cb227cd09-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-b3d1382a-ac36-0883-51ba-324cb227cd16-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-b3d1382a-ac36-0883-51ba-324cb227cd17-00cb4fc5, #w-node-b3d1382a-ac36-0883-51ba-324cb227cd1a-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3d1382a-ac36-0883-51ba-324cb227cd1d-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-e3443880-63ef-38de-5abe-223de9c5ce45-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-e3443880-63ef-38de-5abe-223de9c5ce58-00cb4fc5 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e3443880-63ef-38de-5abe-223de9c5ce59-00cb4fc5, #w-node-e3443880-63ef-38de-5abe-223de9c5ce5c-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e3443880-63ef-38de-5abe-223de9c5ce5f-00cb4fc5 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: center end;
}

#w-node-_313952ce-327a-702c-f73f-90108230dc24-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e47-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e4b-00cb4fc5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e4e-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-_269e502d-e911-55b6-1e5c-59a1faebc095-00cb4fc5 {
  grid-area: 1 / 1 / 2 / 3;
  place-self: center;
}

#w-node-_269e502d-e911-55b6-1e5c-59a1faebc09b-00cb4fc5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d1babad4-1591-5091-f74a-b150c7bebb54-00cb4fc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-_3b08624a-d673-be1b-30fb-13cee9a3df8b-e9a3df88 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f8c13518 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f8c13518 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f8c13518 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f8c13518 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f8c13518 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f8c13518 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f8c13518 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-c0f84e61 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-c0f84e61 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-c0f84e61 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-c0f84e61 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-c0f84e61 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-c0f84e61 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-c0f84e61 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5f53768 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5f53768 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-fe8e6087-630d-de3b-580b-e1ec693b1654-f5f53768 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5f53768 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f5f53768 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5f53768 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f5f53768 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d070a8ff {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d070a8ff {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d070a8ff {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d070a8ff {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_04ce52a7-d18b-b96f-727c-5b45026905e8-d070a8ff {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_04ce52a7-d18b-b96f-727c-5b45026905e9-d070a8ff {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d070a8ff {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-d070a8ff {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-03084c22 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-03084c22 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-03084c22 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-03084c22 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-03084c22 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-03084c22 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-4ff0e9e8 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-4ff0e9e8 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-4ff0e9e8 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-4ff0e9e8 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-4ff0e9e8 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-4ff0e9e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1d3672a2 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1d3672a2 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1d3672a2 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1d3672a2 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1d3672a2 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-1d3672a2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9247f589 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9247f589 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9247f589 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9247f589 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9247f589 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-9247f589 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e62209c9 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e62209c9 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-e62209c9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e62209c9 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-e62209c9 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e62209c9 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-e62209c9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-100c8fb7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-100c8fb7 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-100c8fb7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-100c8fb7 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-100c8fb7 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-100c8fb7 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-100c8fb7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f510f95d {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f510f95d {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f510f95d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f510f95d {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f510f95d {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f510f95d {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f510f95d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-10dda0fd {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-10dda0fd {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-10dda0fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-10dda0fd {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-10dda0fd {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-10dda0fd {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-10dda0fd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-96faed75 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-96faed75 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-96faed75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-96faed75 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-96faed75 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-96faed75 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-96faed75 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1bb3e2f0 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1bb3e2f0 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-1bb3e2f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1bb3e2f0 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1bb3e2f0 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1bb3e2f0 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-1bb3e2f0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9a663170 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9a663170 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9a663170 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9a663170 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9a663170 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-9a663170 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-7e918934 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-7e918934 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-7e918934 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-7e918934 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-7e918934 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-7e918934 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0d08585 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0d08585 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0d08585 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d0d08585 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0d08585 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-d0d08585 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cea1bc3 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cea1bc3 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cea1bc3 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9cea1bc3 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cea1bc3 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-9cea1bc3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cec1eec {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cec1eec {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cec1eec {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9cec1eec {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cec1eec {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-9cec1eec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-12814178 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-12814178 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-12814178 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-12814178 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-12814178 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-12814178 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f6280f3c {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f6280f3c {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f6280f3c {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f6280f3c {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f6280f3c {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f6280f3c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ea62c196 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ea62c196 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ea62c196 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-ea62c196 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ea62c196 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-ea62c196 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-78ccf0ba {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-78ccf0ba {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-78ccf0ba {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-78ccf0ba {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_483c8fc5-7ef3-6e25-0615-923a596ba984-78ccf0ba, #w-node-ab085e16-35f9-4ccd-391b-f6dcb4fb8d80-78ccf0ba {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-78ccf0ba {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-78ccf0ba {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-a48a8750 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-a48a8750 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-a48a8750 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-a48a8750 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-a48a8750 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-a48a8750 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-a48a8750 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-af56d592 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-af56d592 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-af56d592 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-af56d592 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-af56d592 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-af56d592 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-af56d592 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-46c88339 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-46c88339 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_60097f6a-4124-6f0e-a5b4-77d20dd99814-46c88339 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-46c88339 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-46c88339 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-46c88339 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-46c88339 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-26e43adc {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-26e43adc {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-26e43adc {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-26e43adc {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_483c8fc5-7ef3-6e25-0615-923a596ba984-26e43adc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-26e43adc {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-26e43adc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2a05327f {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2a05327f {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_76005a06-e50f-0846-f650-8137d108a656-2a05327f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2a05327f {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-2a05327f {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2a05327f {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-2a05327f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5c39d7e {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5c39d7e {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_76005a06-e50f-0846-f650-8137d108a656-f5c39d7e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5c39d7e {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f5c39d7e {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5c39d7e {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f5c39d7e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1b3f0013 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1b3f0013 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1b3f0013 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1b3f0013 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_483c8fc5-7ef3-6e25-0615-923a596ba984-1b3f0013, #w-node-ab085e16-35f9-4ccd-391b-f6dcb4fb8d80-1b3f0013 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1b3f0013 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-1b3f0013 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-88f29526 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-88f29526 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-88f29526 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-88f29526 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-88f29526 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_49507180-7cfd-838f-ad14-b2c94dbb93cd-88f29526, #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-88f29526 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-88f29526 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-88f29526 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f689a375 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f689a375 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f689a375 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f689a375 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f689a375 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-c00d47e1-e101-3a6e-b917-5857b39d1031-f689a375 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6c77e083-8fd4-af06-5a6f-c7ade40fe09a-f689a375 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_6c77e083-8fd4-af06-5a6f-c7ade40fe09b-f689a375 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-72e0a175 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-72e0a175 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-72e0a175 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-72e0a175 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-72e0a175 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-72e0a175 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-72e0a175 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e3d6df3e {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e3d6df3e {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_60097f6a-4124-6f0e-a5b4-77d20dd99814-e3d6df3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e3d6df3e {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-e3d6df3e {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e3d6df3e {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-e3d6df3e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-3700a913 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-3700a913 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-3700a913 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-3700a913 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-3700a913 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_49507180-7cfd-838f-ad14-b2c94dbb93cd-3700a913, #w-node-_201bb8dc-72cf-6b64-d990-25e8fee01290-3700a913 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-3700a913 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-3700a913 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-3700a913 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-22cacac9 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-22cacac9 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-22cacac9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-22cacac9 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-22cacac9 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_49507180-7cfd-838f-ad14-b2c94dbb93cd-22cacac9, #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-22cacac9, #w-node-_208a4031-36ca-fa51-d254-0d395b3b1b75-22cacac9, #w-node-a5fd26e1-10f6-11bc-2ae6-a04b3651f59a-22cacac9, #w-node-bbadd485-bad6-3bce-d80d-556e9ecf5e7e-22cacac9, #w-node-_81cad58b-eece-3cb3-f18c-97ccc4a53a08-22cacac9, #w-node-_87875a38-f738-6429-e750-f9aa637b3787-22cacac9, #w-node-_81cad58b-eece-3cb3-f18c-97ccc4a53a24-22cacac9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-22cacac9 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-22cacac9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f7efe4f6 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f7efe4f6 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f7efe4f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f7efe4f6 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f7efe4f6 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_201bb8dc-72cf-6b64-d990-25e8fee01290-f7efe4f6, #w-node-_49507180-7cfd-838f-ad14-b2c94dbb93cd-f7efe4f6, #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-f7efe4f6, #w-node-_021a3025-0508-bb4f-2e44-175e7cd232ad-f7efe4f6, #w-node-_2314cef7-5345-68a2-1fc5-3da8e0a84779-f7efe4f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f7efe4f6 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-f7efe4f6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ad4b4447 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ad4b4447 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-ad4b4447 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ad4b4447 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-ad4b4447 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ad4b4447 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-ad4b4447 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0e5a72c {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0e5a72c {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_6de87bfa-ced4-b6b8-e27d-724e0c9c7b1e-d0e5a72c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0e5a72c {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d0e5a72c {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0e5a72c {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-d0e5a72c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-b428ce94 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-b428ce94 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-b428ce94 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-b428ce94 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-b428ce94 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_49507180-7cfd-838f-ad14-b2c94dbb93cd-b428ce94 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-b428ce94 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-b428ce94 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-910718ee {
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-910718ee {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-910718ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-910718ee {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-910718ee {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-910718ee {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-910718ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2e4cbaea {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2e4cbaea {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-2e4cbaea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2e4cbaea {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-2e4cbaea {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_0e6a9d2b-b208-9ca7-0f38-13e4f61690c6-2e4cbaea, #w-node-f5c08980-c3cb-b14a-981a-b9f453030a19-2e4cbaea {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2e4cbaea {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab465-2e4cbaea {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1280px) {
  #w-node-ba911b45-123d-afd4-cf58-8647e563eda2-00cb4fc5, #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c399-00cb4fc5, #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf88-00cb4fc5, #w-node-_49da8283-0327-584f-11ba-73bfdfec2c04-00cb4fc5, #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157109-00cb4fc5, #w-node-c07f9402-230d-df8e-96ab-1f15552dc4de-00cb4fc5, #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7d-00cb4fc5, #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6be-00cb4fc5, #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d0-00cb4fc5, #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6df-00cb4fc5 {
    grid-column: span 1 / span 1;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154de1-00cb4fc5 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: end;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e02-00cb4fc5, #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f4-00cb4fc5, #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e94-00cb4fc5, #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1d-00cb4fc5, #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ad-00cb4fc5, #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ad-00cb4fc5, #w-node-b3d1382a-ac36-0883-51ba-324cb227cd17-00cb4fc5, #w-node-e3443880-63ef-38de-5abe-223de9c5ce59-00cb4fc5 {
    grid-column: span 1 / span 1;
  }

  #w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e47-00cb4fc5, #w-node-_269e502d-e911-55b6-1e5c-59a1faebc095-00cb4fc5 {
    align-self: end;
  }

  #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-3700a913 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-22cacac9, #w-node-_208a4031-36ca-fa51-d254-0d395b3b1b75-22cacac9, #w-node-a5fd26e1-10f6-11bc-2ae6-a04b3651f59a-22cacac9, #w-node-bbadd485-bad6-3bce-d80d-556e9ecf5e7e-22cacac9, #w-node-_81cad58b-eece-3cb3-f18c-97ccc4a53a24-22cacac9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4f5b69af-df3a-c820-3b0b-aad4ad2bac75-f7efe4f6, #w-node-_021a3025-0508-bb4f-2e44-175e7cd232ad-f7efe4f6, #w-node-_2314cef7-5345-68a2-1fc5-3da8e0a84779-f7efe4f6 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-ba911b45-123d-afd4-cf58-8647e563ed85-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-ba911b45-123d-afd4-cf58-8647e563ed94-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-ba911b45-123d-afd4-cf58-8647e563eda1-00cb4fc5 {
    grid-row: 3 / 4;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-ba911b45-123d-afd4-cf58-8647e563eda2-00cb4fc5, #w-node-ba911b45-123d-afd4-cf58-8647e563eda5-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ba911b45-123d-afd4-cf58-8647e563eda8-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c373-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c38f-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c398-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c399-00cb4fc5, #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c39c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c39f-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf62-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf7e-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf87-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf88-00cb4fc5, #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf8b-00cb4fc5, #w-node-dfb61856-5282-1101-32c9-2b087f5b426a-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2bf8-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2c03-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2c04-00cb4fc5, #w-node-_49da8283-0327-584f-11ba-73bfdfec2c07-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2c0a-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570e3-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570ff-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157108-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157109-00cb4fc5, #w-node-_3b2f3c11-2d48-3959-22f6-c0ea9915710c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570f4-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea9915710f-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4bd-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4d4-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4dd-00cb4fc5 {
    grid-row: 3 / 4;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4de-00cb4fc5, #w-node-c07f9402-230d-df8e-96ab-1f15552dc4e1-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4e4-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a6f-00cb4fc5, #w-node-_56a537d2-2e3f-1e09-3052-5a6665d4ec6b-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7c-00cb4fc5 {
    grid-row: 3 / 4;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7d-00cb4fc5, #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a80-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a83-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6b3-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6bd-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6be-00cb4fc5, #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6c1-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6c4-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95c4-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95cf-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d0-00cb4fc5, #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d3-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d6-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6c6-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6d5-00cb4fc5 {
    grid-column-end: 3;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6de-00cb4fc5 {
    grid-row: 3 / 4;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6df-00cb4fc5, #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6e2-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6e9-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154de1-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e01-00cb4fc5 {
    grid-row: 3 / 4;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e02-00cb4fc5, #w-node-_144b1701-0b53-06c0-2003-812f52154e05-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e08-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829e8-00cb4fc5, #w-node-_2fa2b530-63b1-73e5-d3d5-f3f6d3de0c0d-00cb4fc5, #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f3-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f4-00cb4fc5, #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f7-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e89-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e93-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e94-00cb4fc5, #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e97-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e9a-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f12-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1c-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1d-00cb4fc5, #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f20-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f23-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17a2-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ac-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ad-00cb4fc5, #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17b0-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17b3-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a39f-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ac-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ad-00cb4fc5, #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3b0-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3b3-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd09-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd16-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd17-00cb4fc5, #w-node-b3d1382a-ac36-0883-51ba-324cb227cd1a-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd1d-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce45-00cb4fc5 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce58-00cb4fc5 {
    grid-row: 2 / 3;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce59-00cb4fc5, #w-node-e3443880-63ef-38de-5abe-223de9c5ce5c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce5f-00cb4fc5 {
    grid-row-start: 2;
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3df8b-e9a3df88 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfad-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfba-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfc7-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfdc-e9a3df88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f8c13518 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f8c13518 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f8c13518 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f8c13518 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f8c13518 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f8c13518 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-c0f84e61 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-c0f84e61 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-c0f84e61 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-c0f84e61 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-c0f84e61 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-c0f84e61 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5f53768 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5f53768 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-fe8e6087-630d-de3b-580b-e1ec693b1654-f5f53768 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5f53768 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f5f53768 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5f53768 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d070a8ff {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d070a8ff {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d070a8ff {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d070a8ff {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_04ce52a7-d18b-b96f-727c-5b45026905e8-d070a8ff, #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d070a8ff {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-03084c22 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-03084c22 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-03084c22 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-03084c22 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-03084c22 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-4ff0e9e8 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-4ff0e9e8 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-4ff0e9e8 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-4ff0e9e8 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-4ff0e9e8 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1d3672a2 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1d3672a2 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1d3672a2 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1d3672a2 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1d3672a2 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9247f589 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9247f589 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9247f589 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9247f589 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9247f589 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e62209c9 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e62209c9 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-e62209c9 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e62209c9 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-e62209c9 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e62209c9 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-100c8fb7 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-100c8fb7 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-100c8fb7 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-100c8fb7 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-100c8fb7 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-100c8fb7 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f510f95d {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f510f95d {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f510f95d {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f510f95d {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f510f95d {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f510f95d {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-10dda0fd {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-10dda0fd {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-10dda0fd {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-10dda0fd {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-10dda0fd {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-10dda0fd {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-96faed75 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-96faed75 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-96faed75 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-96faed75 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-96faed75 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-96faed75 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1bb3e2f0 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1bb3e2f0 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-1bb3e2f0 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1bb3e2f0 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1bb3e2f0 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1bb3e2f0 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9a663170 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9a663170 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9a663170 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9a663170 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9a663170 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-7e918934 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-7e918934 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-7e918934 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-7e918934 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-7e918934 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0d08585 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0d08585 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0d08585 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d0d08585 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0d08585 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cea1bc3 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cea1bc3 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cea1bc3 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9cea1bc3 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cea1bc3 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cec1eec {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cec1eec {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cec1eec {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-9cec1eec {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cec1eec {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-12814178 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-12814178 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-12814178 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-12814178 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-12814178 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f6280f3c {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f6280f3c {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f6280f3c {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f6280f3c {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f6280f3c {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ea62c196 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ea62c196 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ea62c196 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-ea62c196 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ea62c196 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-78ccf0ba {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-78ccf0ba {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-78ccf0ba {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-78ccf0ba {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-78ccf0ba {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-a48a8750 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-a48a8750 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-a48a8750 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-a48a8750 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-a48a8750 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-a48a8750 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-af56d592 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-af56d592 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-af56d592 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-af56d592 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-af56d592 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-af56d592 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-46c88339 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-46c88339 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_60097f6a-4124-6f0e-a5b4-77d20dd99814-46c88339 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-46c88339 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-46c88339 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-46c88339 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-26e43adc {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-26e43adc {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-26e43adc {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-26e43adc {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-26e43adc {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2a05327f {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2a05327f {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_76005a06-e50f-0846-f650-8137d108a656-2a05327f {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2a05327f {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-2a05327f {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2a05327f {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5c39d7e {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5c39d7e {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_76005a06-e50f-0846-f650-8137d108a656-f5c39d7e {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5c39d7e {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f5c39d7e {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5c39d7e {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1b3f0013 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1b3f0013 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1b3f0013 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-1b3f0013 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1b3f0013 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-88f29526 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-88f29526 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-88f29526 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-88f29526 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-88f29526 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-88f29526 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f689a375 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f689a375 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f689a375 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f689a375 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f689a375 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_6c77e083-8fd4-af06-5a6f-c7ade40fe09a-f689a375 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-72e0a175 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-72e0a175 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-72e0a175 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-72e0a175 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-72e0a175 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-72e0a175 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e3d6df3e {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e3d6df3e {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_60097f6a-4124-6f0e-a5b4-77d20dd99814-e3d6df3e {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e3d6df3e {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-e3d6df3e {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e3d6df3e {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-3700a913 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-3700a913 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-3700a913 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-3700a913 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-3700a913 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-3700a913 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-22cacac9 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-22cacac9 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-22cacac9 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-22cacac9 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-22cacac9 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-22cacac9 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f7efe4f6 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f7efe4f6 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-f7efe4f6 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f7efe4f6 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-f7efe4f6 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f7efe4f6 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ad4b4447 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ad4b4447 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-ad4b4447 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ad4b4447 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-ad4b4447 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ad4b4447 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0e5a72c {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0e5a72c {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-_6de87bfa-ced4-b6b8-e27d-724e0c9c7b1e-d0e5a72c {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0e5a72c {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-d0e5a72c {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0e5a72c {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-b428ce94 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-b428ce94 {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-b428ce94 {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-b428ce94 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-b428ce94 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-b428ce94 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-910718ee {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-910718ee {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-910718ee {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-910718ee {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-910718ee {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-910718ee {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2e4cbaea {
    grid-column: 1 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2e4cbaea {
    grid-area: 3 / 1 / 4 / 3;
    align-self: end;
  }

  #w-node-c70d67e3-02fd-3f1f-1d6e-626a964af85e-2e4cbaea {
    align-self: center;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2e4cbaea {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab449-2e4cbaea {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2e4cbaea {
    grid-column-start: 1;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ba911b45-123d-afd4-cf58-8647e563eda1-00cb4fc5 {
    justify-self: center;
  }

  #w-node-ba911b45-123d-afd4-cf58-8647e563eda2-00cb4fc5, #w-node-ba911b45-123d-afd4-cf58-8647e563eda5-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c398-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c399-00cb4fc5, #w-node-b4dc3297-b393-7798-a2a1-e67e4d86c39c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf87-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf88-00cb4fc5, #w-node-ec31736b-62ee-76cb-12d5-ebbda1c7bf8b-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2c03-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_49da8283-0327-584f-11ba-73bfdfec2c04-00cb4fc5, #w-node-_49da8283-0327-584f-11ba-73bfdfec2c07-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157108-00cb4fc5 {
    justify-self: center;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea99157109-00cb4fc5, #w-node-_3b2f3c11-2d48-3959-22f6-c0ea9915710c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b2f3c11-2d48-3959-22f6-c0ea991570f4-00cb4fc5 {
    grid-row-start: 3;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4dd-00cb4fc5 {
    grid-area: 3 / 1 / 4 / 3;
    justify-self: center;
  }

  #w-node-c07f9402-230d-df8e-96ab-1f15552dc4de-00cb4fc5, #w-node-c07f9402-230d-df8e-96ab-1f15552dc4e1-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7c-00cb4fc5 {
    grid-area: 3 / 1 / 4 / 3;
    justify-self: center;
  }

  #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a7d-00cb4fc5, #w-node-_3b5b57ab-d2c8-3425-363e-606e95220a80-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6bd-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6be-00cb4fc5, #w-node-dc45fa3b-4d39-d3be-1418-b6e41dacd6c1-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95cf-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d0-00cb4fc5, #w-node-eba0fa43-a72e-8f5f-8214-52fcf9ee95d3-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6de-00cb4fc5 {
    justify-self: center;
  }

  #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6df-00cb4fc5, #w-node-_04afab8c-123d-135c-4f5f-358b7ba4f6e2-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e01-00cb4fc5 {
    grid-area: 3 / 1 / 4 / 3;
    justify-self: center;
  }

  #w-node-_144b1701-0b53-06c0-2003-812f52154e02-00cb4fc5, #w-node-_144b1701-0b53-06c0-2003-812f52154e05-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f3-00cb4fc5 {
    justify-self: center;
  }

  #w-node-_5a47e342-485d-c9b2-3f75-7f5e055829f7-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e93-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e94-00cb4fc5, #w-node-d22fd55e-74b1-5f54-e830-0accf8cb5e97-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1c-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f1d-00cb4fc5, #w-node-e99d076f-cd52-2b02-9c6b-f8097d869f20-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ac-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17ad-00cb4fc5, #w-node-_27754dbe-f1f7-ffae-c7e1-e495bebf17b0-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ac-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3ad-00cb4fc5, #w-node-_12800e21-434f-95a0-89fd-b3b6a882a3b0-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd16-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-b3d1382a-ac36-0883-51ba-324cb227cd17-00cb4fc5, #w-node-b3d1382a-ac36-0883-51ba-324cb227cd1a-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce58-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-e3443880-63ef-38de-5abe-223de9c5ce59-00cb4fc5, #w-node-e3443880-63ef-38de-5abe-223de9c5ce5c-00cb4fc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e47-00cb4fc5 {
    grid-area: 2 / 1 / 3 / 2;
    place-self: center;
  }

  #w-node-_4525cb94-1f4d-eba4-b377-6e5dec817e4e-00cb4fc5 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_269e502d-e911-55b6-1e5c-59a1faebc095-00cb4fc5 {
    grid-area: 1 / 1 / 3 / 2;
    align-self: center;
  }

  #w-node-d1babad4-1591-5091-f74a-b150c7bebb54-00cb4fc5 {
    justify-self: center;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3df8b-e9a3df88 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfad-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfba-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfc7-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3dfdc-e9a3df88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f8c13518 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f8c13518 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f8c13518 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f8c13518 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-c0f84e61 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-c0f84e61 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-c0f84e61 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-c0f84e61 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5f53768 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5f53768 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5f53768 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5f53768 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d070a8ff {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d070a8ff {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d070a8ff {
    place-self: end center;
  }

  #w-node-_04ce52a7-d18b-b96f-727c-5b45026905e8-d070a8ff, #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d070a8ff {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-03084c22 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-03084c22 {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-03084c22 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-4ff0e9e8 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-4ff0e9e8 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-4ff0e9e8 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-4ff0e9e8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1d3672a2 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1d3672a2 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1d3672a2 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1d3672a2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9247f589 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9247f589 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9247f589 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9247f589 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e62209c9 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e62209c9 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e62209c9 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e62209c9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-100c8fb7 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-100c8fb7 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-100c8fb7 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-100c8fb7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f510f95d {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f510f95d {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f510f95d {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f510f95d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-10dda0fd {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-10dda0fd {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-10dda0fd {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-10dda0fd {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-96faed75 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-96faed75 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-96faed75 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-96faed75 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1bb3e2f0 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1bb3e2f0 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1bb3e2f0 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1bb3e2f0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9a663170 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9a663170 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9a663170 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9a663170 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-7e918934 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-7e918934 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-7e918934 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-7e918934 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0d08585 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0d08585 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0d08585 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0d08585 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cea1bc3 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cea1bc3 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cea1bc3 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cea1bc3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-9cec1eec {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-9cec1eec {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-9cec1eec {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-9cec1eec {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-12814178 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-12814178 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-12814178 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-12814178 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f6280f3c {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f6280f3c {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f6280f3c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ea62c196 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ea62c196 {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ea62c196 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-78ccf0ba {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-78ccf0ba {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-78ccf0ba {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-a48a8750 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-a48a8750 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-a48a8750 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-a48a8750 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-af56d592 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-af56d592 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-af56d592 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-af56d592 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-46c88339 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-46c88339 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-46c88339 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-46c88339 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-26e43adc {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-26e43adc {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-26e43adc {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2a05327f {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2a05327f {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2a05327f {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2a05327f {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f5c39d7e {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f5c39d7e {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f5c39d7e {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f5c39d7e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-1b3f0013 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-1b3f0013 {
    place-self: end stretch;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-1b3f0013 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-88f29526 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-88f29526 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-88f29526 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-88f29526 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f689a375 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f689a375 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f689a375 {
    place-self: end center;
  }

  #w-node-_6c77e083-8fd4-af06-5a6f-c7ade40fe09a-f689a375 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-72e0a175 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-72e0a175 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-72e0a175 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-72e0a175 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-e3d6df3e {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-e3d6df3e {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-e3d6df3e {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-e3d6df3e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-3700a913 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-3700a913 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-3700a913 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-3700a913 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-22cacac9 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-22cacac9 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-22cacac9 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-22cacac9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-f7efe4f6 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-f7efe4f6 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f7efe4f6 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-f7efe4f6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-ad4b4447 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-ad4b4447 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ad4b4447 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-ad4b4447 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-d0e5a72c {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-d0e5a72c {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-d0e5a72c {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-d0e5a72c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-b428ce94 {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-b428ce94 {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-b428ce94 {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-b428ce94 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-910718ee {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-910718ee {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-910718ee {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-910718ee {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab442-2e4cbaea {
    place-self: end center;
  }

  #w-node-_395be783-9cd7-e17a-97f3-095143b6a660-2e4cbaea {
    place-self: end stretch;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-2e4cbaea {
    place-self: end center;
  }

  #w-node-_79b8fd3c-cc33-40b7-11b4-3aaf08fab464-2e4cbaea {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d1babad4-1591-5091-f74a-b150c7bebb7c-00cb4fc5, #w-node-d1babad4-1591-5091-f74a-b150c7bebb7e-00cb4fc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3df8b-e9a3df88 {
    grid-column: span 2 / span 2;
  }

  #w-node-_3b08624a-d673-be1b-30fb-13cee9a3df9a-e9a3df88, #w-node-_3b08624a-d673-be1b-30fb-13cee9a3df9c-e9a3df88 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-03084c22, #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-f6280f3c, #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-ea62c196, #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-78ccf0ba, #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-26e43adc, #w-node-_28db9c75-1184-0219-48ff-b6093acf4a38-1b3f0013 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-HeavyItalic.otf') format('opentype'), url('../fonts/SF-Pro-Text-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Black.otf') format('opentype'), url('../fonts/SF-Pro-Text-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Text';
  src: url('../fonts/SF-Pro-Text-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}