:root {
  --dark-mode-10: #0f1643;
  --gray-0: #fcfcfc;
  --blue-70: #0b50ff;
  --dark-mode-80: #84a3e1;
  --blue-80: #0e39cb;
  --dark-mode-40: #374ca9;
  --gray-100: #1a1920;
  --dark-mode-20: #192360;
  --yellow-40: #ffc52f;
  --gray-10: #dee2e6;
  --gray-30: #a7acba;
  --gray-80: #3d3d4c;
  --black: #111314;
  --dark-mode-0: #080c29;
  --dark-mode-5: #0c1136;
  --blue-40: #59a0ff;
  --blue-100: #0e1a5d;
  --red-40: #e02c33;
  --red-60: #bc0006;
  --red-80: #840003;
  --green-60: #02990d;
  --green-70: #017f09;
  --green-100: #004901;
  --yellow-60: #f2a400;
  --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;
  --white: white;
}

.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-10);
  color: var(--gray-0);
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

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

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

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

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

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

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

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5em;
}

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

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

li {
  margin-bottom: 4px;
}

img {
  max-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: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 1300px;
  display: grid;
  position: relative;
}

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

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

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

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

.grid.desk-4.tab-4.mobile-1 {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.grid.desk-2.tab-2 {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  align-items: stretch;
}

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

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

.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;
  max-width: 1300px;
  margin-bottom: 24px;
  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 {
  opacity: .5;
  color: var(--gray-0);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  flex: 0 auto;
  margin-right: 0;
  padding: 10px 28px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  transition: all .3s;
}

.tab-link:hover {
  opacity: 1;
}

.tab-link.w--current {
  background-color: var(--gray-0);
  opacity: 1;
  color: var(--gray-100);
}

._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;
  max-width: 1300px;
  margin-bottom: 24px;
  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: 24px;
  line-height: 150%;
}

.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 {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}

.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._16px {
  width: 16px;
  height: 16px;
  line-height: 16%;
}

.icon._80px {
  width: 80px;
  height: 80px;
  font-size: 80px;
  line-height: 80px;
}

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

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

.vertical-tab {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tabs-menu {
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.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;
  box-shadow: 0 4px 4px #0003;
}

.btn.outline {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--gray-0);
  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.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);
  font-weight: 600;
  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);
  transition: all .3s;
}

.btn.primary:hover {
  background-image: linear-gradient(to bottom, var(--blue-70), var(--blue-70));
  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.buy-action {
  background-color: var(--red-40);
  background-image: linear-gradient(to bottom, var(--red-40), var(--red-60));
  color: var(--gray-0);
  transition: all .3s;
}

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

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

.btn.buy-action.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;
}

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

.text-box {
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 1300px;
  display: flex;
}

.text-box._640px {
  justify-content: center;
  width: 50%;
  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 {
  align-items: center;
  max-width: 1300px;
  min-height: 64px;
}

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

.text-box._1300px.title {
  grid-row-gap: 20px;
  min-height: 0;
}

.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;
  height: 40px;
}

.brand.symbol {
  width: 40px;
}

.navlink {
  opacity: .5;
  color: var(--gray-0);
  text-align: center;
  padding: 28px 20px;
  text-decoration: none;
  transition: all .3s;
}

.navlink:hover {
  opacity: 1;
  color: #fcfcfc;
}

.navlink.w--current {
  border-bottom: 4px solid var(--yellow-40);
  opacity: 1;
  color: #fcfcfc;
  padding-bottom: 24px;
}

.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 {
  background-color: #0000;
  display: block;
  position: static;
}

.btn-2 {
  grid-column-gap: 10px;
  color: #fcfcfc;
  text-align: center;
  background-color: #0000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 4px #0003;
}

.btn-2.store-secondary {
  background-color: #374ca9;
  background-image: linear-gradient(#374ca9, #273583);
  padding-left: 20px;
  padding-right: 20px;
  transition: all .3s;
}

.btn-2.store-secondary:hover {
  background-image: none;
  box-shadow: 0 0 40px #374ca980, 0 4px 4px #0003;
}

.btn-2.store-secondary.small {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

.dropdown, .btn-droparea {
  display: none;
}

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

.footer-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 14px;
  line-height: 24px;
  display: grid;
}

.footer-container {
  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;
}

.footer-container.footer {
  border-top: 2px solid #0c1136;
  padding-top: 80px;
}

.brand-footer {
  margin-bottom: 20px;
  display: flex;
}

.btn-socialmedia {
  color: #fff;
  background-color: #ffffff1a;
  border-radius: 20px;
  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: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;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

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

.footer-link {
  color: #fcfcff80;
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

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

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

.section.footer {
  background-color: #220538;
  padding-top: 0;
}

.section.fold {
  background-color: #301a6aa6;
  justify-content: space-around;
  height: 100vh;
  min-height: 900px;
}

.section.faq {
  background-color: #0b1a43;
  background-image: linear-gradient(#2a0e4b, #220538);
  height: 100%;
}

.section.benefits {
  background-image: linear-gradient(#3c1a69, #53217a);
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.about {
  background-image: linear-gradient(#2b184c69, #601cad29 69%, #571393), url('../images/bg-about2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-bottom: 20px;
}

.section.howto {
  background-image: linear-gradient(#571393, #45236b 91%);
}

.section.buff {
  background-color: #2a0e4be6;
  display: none;
}

.section.comissions {
  background-color: #2a0e4be6;
  background-image: none;
}

.section.discord {
  background-image: linear-gradient(150deg, #5865f2, #20269a 91%);
  overflow: hidden;
}

.social-icon {
  height: 16px;
}

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

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

.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.x {
  width: 18px;
  height: 16px;
}

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

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

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

.brand-white {
  height: 30px;
}

.container {
  width: 100%;
  max-width: 1300px;
  padding-left: 40px;
  padding-right: 40px;
}

.content {
  z-index: 1;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  align-items: center;
  display: flex;
  position: relative;
}

.content.center {
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content.center.faq {
  height: auto;
}

.content.center.steps {
  grid-row-gap: 100px;
}

.content.center.discord {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.content.right {
  grid-column-gap: 60px;
  flex-direction: row;
  align-items: center;
}

.btn-area {
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  max-width: 310px;
  display: flex;
}

.btn-area.horizontal {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.bg-video {
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  inset: 0%;
}

.topic {
  grid-column-gap: 24px;
  grid-row-gap: 60px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  padding-left: 4px;
  font-size: 24px;
  line-height: 1.5em;
  display: flex;
}

.topic.vert {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  padding-left: 8px;
  padding-right: 8px;
}

.topic.vert.buff {
  grid-row-gap: 8px;
  border: 2px solid var(--yellow-40);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  text-align: left;
  background-color: #50148a40;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  font-size: 18px;
}

.topic.vert.comissions {
  grid-row-gap: 8px;
  border: 2px solid var(--yellow-40);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  text-align: left;
  background-color: #1e06365c;
  border-radius: 8px;
  align-items: flex-start;
  padding: 20px;
  font-size: 18px;
}

.scroll {
  width: 100%;
  max-width: 80px;
  position: absolute;
  inset: auto auto -150px;
}

.image-2 {
  width: 600px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.faq {
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.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;
}

.faq-icon {
  z-index: 2;
  color: #fcfcfc;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  position: absolute;
  inset: auto 0% auto auto;
}

.faq-p {
  background-color: #50148a;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

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

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

.toggle-text {
  z-index: 2;
  color: #fff;
  white-space: normal;
  width: 100%;
  max-width: 920px;
  margin-left: 8px;
  font-size: 20px;
  line-height: 24px;
  position: relative;
}

.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-answer {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.faq-body-cont {
  color: #fff;
  padding: 0 30px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.faq-img {
  z-index: 2;
  color: #fcfcfc;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
}

.tutorial-btn {
  grid-column-gap: 20px;
  color: #000;
  background-color: #fcfcfc;
  border: 0 solid #ffc811;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.tutorial-btn:hover {
  border: 3px none var(--yellow-40);
  outline-color: var(--yellow-40);
  outline-offset: 0px;
  outline-width: 2px;
  outline-style: solid;
  transform: scale(1.03);
}

.tutorial-icon {
  color: var(--gray-80);
  width: 100%;
  max-width: 40px;
}

.tutorial-content {
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rules-title {
  color: var(--gray-80);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

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

.content-box {
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 1300px;
  display: flex;
}

.content-box._1300px {
  grid-row-gap: 20px;
  align-items: center;
  max-width: 1300px;
  min-height: 64px;
}

.div-block {
  width: 50%;
}

.heading-5.hide {
  display: none;
}

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

.disclaimer-box {
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 1300px;
  display: flex;
}

.disclaimer-box._640px {
  justify-content: center;
  width: 50%;
  max-width: 640px;
  min-height: 64px;
}

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

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

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

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

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

.disclaimer-box._1300px {
  align-items: center;
  max-width: 1300px;
  min-height: 64px;
}

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

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

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

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

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

.image-3 {
  width: 100%;
  max-width: 460px;
}

.discord-logo {
  max-width: 300px;
}

.btn-area-discord {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.btn-area-discord.horizontal {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.image-4 {
  z-index: -99;
  position: absolute;
  inset: auto auto -42% 0%;
}

.image-5 {
  z-index: -99;
  transform-style: preserve-3d;
  position: absolute;
  inset: 42% -16% 0% auto;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.image-6 {
  z-index: -99;
  position: absolute;
  inset: -22% 0% 0% auto;
}

.image-7 {
  z-index: -99;
  position: absolute;
  top: -65.05px;
  left: -112.3px;
}

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

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

  .text-box._1100px {
    grid-row-gap: 20px;
    max-width: 1100px;
  }

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

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

  .section.faq {
    background-color: #0c1136;
  }

  .section.about {
    background-image: linear-gradient(#2b184c69, #601cad29 54%, #571393), url('../images/bg-about2.jpg');
  }

  .topic.vert.buff, .topic.vert.comissions {
    justify-content: flex-start;
  }

  .image-2 {
    width: 650px;
  }

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

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

  .tutorial-btn {
    transition: all .2s;
    box-shadow: 1px 2px 3px #966c0145;
  }

  .tutorial-btn:hover {
    transform: scale(1.03);
  }

  .content-box._1300px {
    grid-row-gap: 16px;
  }

  .div-block {
    width: 55%;
  }

  .image-4 {
    top: 444.038px;
    left: -135.3px;
  }

  .image-5 {
    top: 240.412px;
    left: 1086.2px;
  }

  .image-6 {
    top: -133.087px;
    left: 972.7px;
  }

  .image-7 {
    top: 21.95px;
  }

  .disclaimer-discord {
    max-width: 1000px;
  }
}

@media screen and (max-width: 991px) {
  .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-4.tab-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.desk-2.tab-2 {
    grid-column-gap: 40px;
  }

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

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

  ._2-1-grid {
    margin-left: 0;
  }

  .column {
    width: 50%;
  }

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

  .paragraph.large {
    text-align: center;
  }

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

  .btn {
    position: relative;
  }

  .btn.secondary {
    font-size: 18px;
    line-height: 1.4;
  }

  .text-box._640px {
    grid-row-gap: 40px;
    width: 100%;
    max-width: none;
  }

  .text-box._310px {
    max-width: none;
  }

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

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

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

  .navigation {
    order: 1;
  }

  .navlink {
    color: #3d3d4cb3;
    text-align: left;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
  }

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

  .navlink.w--current {
    color: #1a1920;
    border-bottom-style: none;
    border-left: 4px solid #0b50ff;
    padding-left: 36px;
  }

  .navbar {
    grid-column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr max-content min-content;
    grid-auto-columns: 1fr;
    padding: 4px 16px 4px 40px;
    display: grid;
  }

  .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;
  }

  .menu {
    order: 1;
  }

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

  .dropdown.w--open {
    color: #0b50ff;
    background-color: #fcfcfc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

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

  .footer-social-nav {
    grid-column-gap: 20px;
    justify-content: center;
  }

  .footer-content {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    font-size: 12px;
    line-height: 20px;
    display: grid;
  }

  .footer-container.footer {
    text-align: center;
  }

  .brand-footer {
    justify-content: center;
  }

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

  .section.fold {
    background-image: none;
    background-position: 0 0;
    background-size: auto;
  }

  .section.about {
    padding-bottom: 60px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content, .content.right {
    flex-direction: column;
  }

  .btn-area {
    margin-left: auto;
    margin-right: auto;
  }

  .bg-video {
    display: block;
  }

  .topic.vert {
    font-size: 20px;
  }

  .scroll {
    display: none;
  }

  .image-2 {
    width: 450px;
  }

  .heading-3 {
    text-align: center;
  }

  .faq-icon {
    width: 24px;
  }

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

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

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

  .tutorial-btn {
    text-align: left;
    justify-content: center;
    max-width: 560px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 30px;
  }

  .div-block {
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .disclaimer-box._640px {
    grid-row-gap: 40px;
    width: 100%;
    max-width: none;
  }

  .disclaimer-box._310px {
    max-width: none;
  }

  .image-3 {
    max-width: 380px;
  }

  .btn-area-discord {
    margin-left: auto;
    margin-right: auto;
  }

  .image-4 {
    inset: 556px auto 0% 0%;
  }

  .image-5 {
    inset: 38% -16% 0% auto;
  }

  .image-6 {
    inset: -25% 0% auto auto;
  }

  .image-7 {
    top: -80.05px;
    left: -88.3px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 40px;
    line-height: 46px;
  }

  h3 {
    font-size: 34px;
    line-height: 40px;
  }

  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.tab-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .grid.desk-4.tab-4 {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
  }

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

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

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

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

  .tab-link {
    border-bottom-width: 0;
    border-radius: 10px;
    width: auto;
  }

  .tab-link.w--current {
    background-color: #d4e9ff;
  }

  ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .spacer {
    height: 32px;
  }

  .spacer._60 {
    height: 48px;
  }

  .paragraph {
    font-size: 15px;
  }

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

  .icon._80px {
    width: 60px;
    height: 60px;
    display: flex;
  }

  .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, .btn.light.big {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-box._310px {
    align-items: center;
  }

  .subtittle {
    font-size: 16px;
    line-height: 20px;
  }

  .display {
    font-size: 60px;
    line-height: 72px;
  }

  .brand {
    width: 133.5px;
    height: 30px;
  }

  .btn-navarea {
    display: none;
  }

  .navbar {
    grid-template-columns: 1fr max-content;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
    top: 0;
  }

  .dropdown {
    padding: 13px;
  }

  .btn-droparea {
    padding-top: 20px;
    display: block;
  }

  .footer-social-nav {
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-content {
    grid-row-gap: 40px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .brand-footer {
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .section.fold {
    background-image: linear-gradient(#301a6aa6, #301a6aa6), url('../images/bg-afiliados-static.jpg');
    background-position: 0 0, 60%;
    background-size: auto, cover;
  }

  .btn-area.horizontal {
    flex-flow: row;
    width: auto;
    max-width: 100%;
  }

  .topic.vert {
    font-size: 18px;
  }

  .image-2 {
    width: 350px;
  }

  .container-2 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .toggle-text {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
  }

  .tutorial-btn {
    width: auto;
  }

  .bonus.comissions {
    font-size: 20px;
  }

  .disclaimer-box._310px {
    align-items: center;
  }

  .image-3 {
    max-width: 320px;
  }

  .btn-area-discord {
    flex-flow: wrap;
  }

  .btn-area-discord.horizontal {
    flex-flow: row;
    width: auto;
    max-width: 100%;
  }

  .image-4 {
    inset: auto auto -29% 0%;
    transform: scale(.8);
  }

  .image-5 {
    inset: auto 0% 0% 617px;
  }

  .image-6 {
    inset: -20% 0% 0% 76%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 44px;
  }

  .sg-menu-brand {
    margin-left: 16px;
  }

  .sg-menu-button {
    margin-right: 4px;
  }

  .grid.desk-3.tab-3 {
    display: flex;
  }

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

  .column {
    margin-bottom: 0;
  }

  .column.desk-3 {
    width: 100%;
  }

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

  .color-block {
    margin-bottom: 20px;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .btn.outline.big, .btn.light.big {
    font-size: 18px;
  }

  .text-box._640px {
    height: 100%;
  }

  .footer-social-nav {
    grid-column-gap: 12px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto auto auto;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .footer-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
  }

  .footer-container.footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.fold {
    background-image: linear-gradient(to bottom, null, null);
  }

  .content.center.steps {
    grid-row-gap: 60px;
  }

  .content.center.discord {
    grid-row-gap: 40px;
  }

  .topic {
    grid-row-gap: 24px;
    text-align: center;
    flex-direction: column;
    font-size: 20px;
  }

  .topic.vert {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }

  .topic.vert.benefits {
    font-size: 18px;
  }

  .topic.vert.buff, .topic.vert.comissions {
    padding: 16px;
    font-size: 14px;
  }

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

  .heading-3 {
    font-size: 42px;
    line-height: 48px;
  }

  .toggle-text {
    max-width: 230px;
    margin-left: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-body-cont {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-img {
    display: none;
  }

  .tutorial-btn {
    grid-column-gap: 12px;
    grid-row-gap: 16px;
    flex-direction: column;
    width: auto;
    padding: 24px 20px;
  }

  .tutorial-icon {
    max-width: 50px;
  }

  .tutorial-content {
    grid-row-gap: 10px;
    align-items: center;
  }

  .rules-title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
  }

  .text-block-2 {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }

  .heading-4 {
    font-size: 42px;
    line-height: 48px;
  }

  .heading-5 {
    font-size: 24px;
    line-height: 30px;
  }

  .bonus {
    font-size: 15px;
    line-height: 1.5em;
  }

  .bonus.comissions {
    font-size: 15px;
  }

  .disclaimer-box._640px {
    height: 100%;
  }

  .image-4 {
    display: none;
    top: 744.038px;
    left: 52.7px;
    transform: scale(.5);
  }

  .image-5 {
    display: none;
  }

  .image-6 {
    display: none;
    top: -151.087px;
    left: 331.7px;
  }

  .image-7 {
    display: none;
    top: -36.05px;
  }
}

#w-node-_6df48682-84b7-5176-6dba-0ea0b653f86f-64b5e03c {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa26-64b5e03c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1280px) {
  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa26-64b5e03c {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa26-64b5e03c {
    order: 9999;
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa42-64b5e03c, #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa63-64b5e03c, #w-node-_180d6094-bf50-c379-57de-d7dc48d28a67-64b5e03c, #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa57-64b5e03c {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa26-64b5e03c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa42-64b5e03c, #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa63-64b5e03c, #w-node-_180d6094-bf50-c379-57de-d7dc48d28a67-64b5e03c, #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa57-64b5e03c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa26-64b5e03c {
    grid-column: span 2 / span 2;
  }

  #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa33-64b5e03c, #w-node-_6b0fad6c-eb82-4393-6e3f-b0d6240eaa35-64b5e03c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


