@font-face {
  font-family: Redob;
  src: url('../fonts/Redob-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-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-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-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-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
  color: #fcfcfc;
  background-color: #250136;
  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: 120%;
}

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

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

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

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

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

a {
  color: #0b50ff;
  text-decoration: underline;
}

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

.container.right {
  position: relative;
}

.container.left {
  z-index: 2;
  justify-content: flex-start;
}

.container.center {
  flex-direction: column;
  justify-content: center;
}

.container.left {
  justify-content: flex-start;
}

.content {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 640px;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.content.center {
  text-align: center;
  align-items: center;
  max-width: none;
}

.content.center.faq {
  padding-right: 0;
}

.content.faq {
  color: #fcfcfc;
  text-align: center;
  background-color: #0000;
  align-items: center;
  max-width: 1080px;
  height: auto;
}

.content.steps {
  width: 50%;
}

.content.grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1300px;
  display: grid;
}

.credits-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.credits-list._3col {
  grid-template-columns: 1fr 1fr 1fr;
}

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

.btn {
  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;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 4px #0003;
}

.btn.primary {
  background-color: #14b821;
  background-image: linear-gradient(#14b821, #02990d);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

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

.btn.primary.big:hover {
  box-shadow: 0 0 40px #14b82180, 0 4px 4px #0003;
}

.btn.primary.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

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

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

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

.btn.secondary {
  color: #590d7c;
  background-color: #fcfcfc;
  background-image: linear-gradient(#fcfcfc, #dee2e6);
  transition: all .3s;
}

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

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

.btn.freefire {
  color: #1a1920;
  background-color: #ffba00;
  background-image: linear-gradient(#ffba00, #e68d10);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.freefire.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.freefire.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.roblox {
  background-color: #ec0000;
  background-image: linear-gradient(#ec0000, #a00000);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.roblox.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.roblox.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.avakinlife {
  color: #30327e;
  background-color: #fcfcfc;
  background-image: linear-gradient(#fcfcfc, #dee2e6);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.avakinlife.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.avakinlife.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.lordsmobile {
  color: #1a1920;
  background-color: #efc75c;
  background-image: linear-gradient(#efc75c, #c97f14);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.lordsmobile.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.lordsmobile.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.pubg {
  color: #1a1920;
  background-color: #ffcd21;
  background-image: linear-gradient(#ffcd21, #ffbe21);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.pubg.big {
  color: #1a1920;
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.pubg.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.bombme {
  color: #1a1920;
  background-color: #fbef05;
  background-image: linear-gradient(#fbef05, #faaa03);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn.bombme.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.bombme.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.appstore {
  background-color: #1d76f2;
  background-image: none;
  transition: all .3s;
  box-shadow: 0 0 0 3px #0003;
}

.btn.appstore:hover {
  border-radius: 4px;
  box-shadow: 0 0 0 3px #aaa;
}

.btn.appstore.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.appstore.big:hover {
  box-shadow: 0 0 0 3px #1d76f2;
}

.btn.appstore.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.btn.black-week {
  color: #00000b;
  background-color: #e3ff00;
  transition-property: none;
  box-shadow: 0 4px 4px #0003;
}

.btn.black-week:hover {
  background-color: #fff;
  box-shadow: 0 0 40px #ec000080, 0 4px 4px #0003;
}

.btn.black-week.big {
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn.black-week.big:hover {
  box-shadow: 0 0 40px #14b82180, 0 4px 4px #0003;
}

.btn.black-week.small {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
}

.credit-btn {
  color: #2b2b36;
  text-align: center;
  background-color: #0000;
  border: 3px solid #14b8214d;
  border-radius: 12px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
}

.credit-btn:hover {
  border-color: #14b821;
}

.credit-btn.credit-btn--active {
  color: #fcfcfc;
  background-color: #14b821;
  border-color: #14b821;
}

.btn-buyarea {
  width: 100%;
  margin-top: 40px;
}

.btn-buyarea.appstore-bf {
  max-width: 310px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.btn-buyarea.googleplay-sb {
  max-width: 310px;
  margin-top: 0;
}

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

.section.giftcard {
  color: #1a1920;
  background-image: linear-gradient(#f9fbff, #d8e3f4);
}

.section.giftcard.appstore {
  background-color: #fff;
  background-image: none;
}

.section.fold {
  background-color: #320248;
  height: 100vh;
  min-height: 900px;
  padding: 80px 0 0;
  position: relative;
}

.section.faq {
  height: auto;
}

.section.footer {
  padding-top: 0;
}

.section.roblox {
  background-color: #2b2b36;
  background-image: linear-gradient(260deg, #2b2b36, #335);
}

.section.freefire {
  color: #1a1920;
  background-image: linear-gradient(#faf8f9, #e0d0da);
}

.section.avakinlife {
  background-color: #313380;
}

.section.lordsmobile {
  background-color: #1c4c70;
  background-image: linear-gradient(to right, #261a0e, #1f3b4f 0%, #1c4c70 50%, #203645 100%, #261a0e);
}

.section.lordsmobile.hide {
  display: none;
}

.section.pubgmobile {
  background-color: #19191a;
  background-image: linear-gradient(103deg, #393939, #19191a);
  overflow: hidden;
}

.section.bombme {
  background-color: #6a53c6;
  background-image: linear-gradient(#6a53c6, #37285f);
}

.section.highlight {
  color: #fff;
  background-color: #00000b;
  background-image: none;
}

.section.black-friday {
  color: #1a1920;
  background-image: linear-gradient(#f9fbff, #d8e3f4);
}

.section.black-friday.appstore {
  background-color: #fff;
  background-image: linear-gradient(#e7f0ff, #d8e3f4);
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.squad-busters {
  color: #5d5d5d;
  background-color: #fff;
}

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

.navlink {
  color: #fcfcfc80;
  text-align: center;
  padding: 28px 20px;
  text-decoration: none;
  transition: all .3s;
}

.navlink:hover {
  color: #fcfcfc;
}

.navlink.w--current {
  color: #fcfcfc;
  border-bottom: 4px solid #ff0080;
  padding-bottom: 24px;
}

.navlink.select {
  z-index: 1;
  grid-column-gap: 12px;
  justify-content: space-between;
  display: flex;
}

.navlink.select.w--open {
  color: #1a1920;
  background-color: #fcfcfc;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.navlink.hide {
  display: none;
}

.brand {
  width: 178px;
  height: 40px;
}

.howtoworks {
  z-index: 2;
  background-color: #25013699;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 28px;
  display: flex;
  position: relative;
}

.step {
  grid-column-gap: 20px;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  display: flex;
}

.step-number {
  background-color: #ff0080;
  border-radius: 12px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 40px;
  font-family: Poppins, sans-serif;
  line-height: 120%;
  display: flex;
}

.caption {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.caption.giftcard {
  color: #787b8e;
  margin-top: -40px;
}

.caption.grey {
  color: #787b8e;
  text-align: left;
  margin-top: 0;
}

.caption.left {
  text-align: left;
  text-align: left;
  font-weight: 500;
}

.text-grey {
  color: #3d3d4c;
}

.text-grey.dark-bg {
  color: #c2c7d0;
}

.text-grey.appstore.disclaimer {
  font-size: 16px;
  line-height: 150%;
}

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

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

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

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

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

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

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

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

.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-content {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gift-card-image {
  grid-row-gap: 70px;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
  display: flex;
}

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

.social-icon {
  height: 16px;
}

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

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

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

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

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

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

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

.brand-white {
  height: 30px;
}

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

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

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

.mobile-render {
  width: 100%;
  max-width: 650px;
  position: absolute;
  inset: auto -60px -10px auto;
}

.giftcard-render {
  align-self: center;
  width: 90%;
}

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

.credit-btn--active {
  color: #0b50ff;
  text-align: center;
  background-color: #fcfcfc;
  border: 3px solid #fcfcfc;
  border-radius: 12px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
}

.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 #320248;
  padding-top: 80px;
}

.dropdown {
  display: none;
}

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

.navlinks {
  background-color: #0000;
  display: block;
  position: static;
}

.header {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 1080px;
  display: flex;
}

.header.giftcard {
  grid-row-gap: 40px;
}

.header.giftcard.center {
  text-align: center;
}

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

.btn-droparea {
  display: none;
}

.credits-select-area {
  width: 100%;
}

.carousel-slider {
  margin-right: 6%;
}

.btn-view-more {
  color: #1a1920;
  text-align: center;
  background-color: #edeff1;
  border: 1px solid #c2c7d0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 408px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  overflow: visible;
}

.btn-view-more:hover {
  color: #fcfcfc;
  background-color: #d10d14;
  border-color: #d10d14;
}

.roblox-logo {
  width: 100%;
  max-width: 310px;
}

.roblox-logo.hide {
  display: none;
}

.freefire-btn {
  grid-column-gap: 20px;
  color: #2b2b36;
  text-align: center;
  background-color: #0000;
  border: 3px solid #a7acba;
  border-radius: 12px;
  align-items: center;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.freefire-btn:hover {
  border-color: #2b2b36;
}

.freefire-btn.freefire-btn--active {
  color: #2b2b36;
  background-color: #ffba00;
  border-color: #2b2b36;
}

.roblox-btn {
  color: #fcfcfc;
  background-color: #0000;
  border: 3px solid #fcfcfc4d;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.roblox-btn:hover {
  border-color: #fcfcfc;
}

.roblox-btn.roblox-btn--active {
  background-color: #d10d14;
  border-color: #fcfcfc;
}

.bg-video-wrap {
  z-index: 1;
  background-color: #320248;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-video {
  background-image: linear-gradient(to right, #320248bf 69%, #320248 95%);
  width: 100%;
  height: 100%;
}

.freefire-render {
  width: 100%;
  max-width: 720px;
}

.credit-description {
  font-family: Work Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}

.credit-description.freefire {
  color: #505162;
}

.credit-description.right {
  text-align: right;
}

.credit-description.right.lordsmobile {
  color: #fcfcfc;
}

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

.credit-description.center.roblox {
  color: #c2c7d0;
  display: none;
}

.credit-price {
  text-align: left;
  width: 100%;
  max-width: 110px;
  font-size: 28px;
}

.credit-price.center {
  text-align: center;
}

.credit-price.avakinlife, .credit-price.pubg, .credit-price.freefire {
  font-size: 20px;
}

.roblox-render {
  width: 100%;
  max-width: 550px;
}

.avakinlife-btn {
  grid-column-gap: 20px;
  color: #ffe84a;
  text-align: center;
  background-color: #0000;
  border: 3px solid #6264cc;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.avakinlife-btn:hover {
  border-color: #fcfcfc;
}

.avakinlife-btn.avakinlife-btn--active {
  color: #30327e;
  background-color: #fcfcfc;
  border-color: #ffe84a;
}

.freefire-logo, .avakinlife-logo {
  width: 100%;
  max-width: 310px;
}

.avakinlife-render {
  width: 100%;
  max-width: 560px;
}

.lordsmobile-logo {
  width: 100%;
  max-width: 200px;
}

.lordsmobile-render {
  width: 100%;
  max-width: 550px;
  position: absolute;
  inset: auto auto auto 0%;
}

.lordsmobile-btn {
  grid-column-gap: 20px;
  color: #feea87;
  text-align: center;
  background-color: #0000;
  border: 3px solid #fcfcfc80;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.lordsmobile-btn:hover {
  border-color: #fcfcfc;
}

.lordsmobile-btn.lordsmobile-btn--active {
  background-color: #7e382e;
  border-color: #efc75c;
}

.pubg-logo {
  width: 100%;
  max-width: 200px;
}

.pubg-render {
  width: 100%;
  min-width: 690px;
  max-width: 840px;
  position: absolute;
  inset: auto 0 -120px auto;
}

.pubg-btn {
  grid-column-gap: 20px;
  color: #ffbe21;
  text-align: center;
  background-color: #0000;
  border: 3px solid #fcfcfc80;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.pubg-btn:hover {
  border-color: #fcfcfc;
}

.pubg-btn.pubg-btn--active {
  color: #1a1920;
  background-color: #ffbe21;
  border-color: #fcfcfc;
}

.bombme-render {
  width: 100%;
  max-width: 550px;
}

.bombme-logo {
  width: 100%;
  max-width: 200px;
}

.bombme-btn {
  grid-column-gap: 20px;
  color: #fcfcfc;
  text-align: center;
  background-color: #0000;
  border: 3px solid #9982e5;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.bombme-btn:hover {
  border-color: #fcfcfc;
}

.bombme-btn.bombme-btn--active {
  background-color: #ba373f;
  border-color: #fbd905;
}

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

.navlink-dropdown {
  color: #3d3d4cb3;
  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 {
  color: #1a1920;
  border-left: 4px solid #ff0080;
  padding-left: 36px;
}

.navlink-dropdown.hide {
  display: none;
}

.render {
  width: 50%;
  position: relative;
}

.xbox-render {
  width: 100%;
  max-width: 650px;
  position: absolute;
  inset: auto 0 -100px auto;
}

.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.twitch:hover {
  background-color: #9146ff;
}

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

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

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

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

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

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

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

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

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

.render-wrap {
  position: relative;
}

.appstore-btn {
  color: #2b2b36;
  text-align: center;
  background-color: #0000;
  border: 3px solid #7272724d;
  border-radius: 12px;
  padding: 20px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
}

.appstore-btn:hover {
  border-color: #aaa;
}

.appstore-btn.credit-btn--active {
  color: #fcfcfc;
  background-color: #14b821;
  border-color: #14b821;
}

.appstore-btn.appstore-btn--active {
  color: #fcfcfc;
  background-color: #1d76f2;
  border-color: #1d76f2;
}

.legalline-block {
  font-size: 16px;
  line-height: 150%;
}

.text-block {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.text-span {
  font-size: 16px;
}

.appstore-render {
  align-self: center;
  width: 100%;
  max-width: 600px;
  margin-left: 60px;
}

.content-2 {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.promo-render {
  width: 100%;
  max-width: 550px;
}

.text-highlight {
  color: #0e39cb;
  text-transform: none;
  font-weight: 700;
}

.text-highlight.hide {
  display: none;
}

.bold-text {
  color: #0e39cb;
}

.div-block {
  grid-row-gap: 15px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.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.primary {
  background-color: #0b50ff;
  background-image: linear-gradient(#0b50ff, #0e39cb);
  transition: all .3s;
  box-shadow: 0 4px 4px #0003;
}

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

.btn-2.primary.big {
  background-color: #0b50ff;
  background-image: linear-gradient(#0b50ff, #0e39cb);
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
}

.btn-area-2 {
  width: 100%;
  max-width: 200px;
}

.classind {
  grid-column-gap: 12px;
  color: #000;
  background-color: #fcfcfc;
  border-radius: 8px;
  align-items: center;
  width: 100%;
  max-width: 530px;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

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

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

.coupon-code {
  color: #e6ce36;
}

.promo-logo {
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
}

.coupon {
  text-align: center;
  border: 2px dashed #0e39cb;
  padding: 8px 20px;
  font-size: 14px;
}

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

.coupon-block {
  flex-direction: column;
  display: flex;
}

.coupon-wrap {
  text-align: center;
  border: 2px dashed #e3ff00;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 150%;
}

.coupon-code-2 {
  color: #e3ff00;
}

.coupon-block-2 {
  align-self: auto;
  display: block;
  overflow: visible;
}

.coupon-wrap-2 {
  text-align: center;
  border: 2px dashed #289cf7;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 150%;
}

.text-block-5 {
  display: block;
}

.coupon-code-3 {
  color: #289cf7;
}

.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-2 {
  grid-template-rows: auto;
}

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

.header-2 {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  display: flex;
}

.text-block-8 {
  color: #1a1920;
  font-family: Syne, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.section-2 {
  flex-direction: column;
  display: flex;
}

.section-2.apple {
  background-image: linear-gradient(#e7f0ff, #d8e3f4);
}

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

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

.btn-area-3 {
  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-3._310px {
  max-width: 310px;
}

.heading-16 {
  color: #1a1920;
  text-align: center;
  text-transform: uppercase;
  font-family: Redob, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

.promo-render-2 {
  width: 100%;
  max-width: 600px;
}

.btn-3 {
  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-3.light {
  color: #1a1920;
  background-color: #fcfcfc;
  background-image: linear-gradient(#fcfcfc, #dee2e6);
  transition: all .3s;
}

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

.btn-3.light.big {
  padding: 20px 40px;
  font-size: 20px;
  text-decoration: underline;
}

.image-wrap {
  width: 100%;
  overflow: hidden;
}

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

.coupon-code-4 {
  color: #e3ff00;
  background-image: linear-gradient(#1a1920, #1a1920);
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 700;
}

.coupon-code-4.bw-apple {
  color: #fcfcfc;
  background-image: linear-gradient(#289cf7, #289cf7);
}

.title-highlight {
  color: #1a1920;
  background-image: linear-gradient(#e3ff00, #e3ff00);
  padding-left: 4px;
  padding-right: 4px;
  transition: opacity .2s;
}

.title-highlight.apple {
  color: #fcfcfc;
  background-image: linear-gradient(#289cf7, #289cf7);
}

.coupon-wrap-3 {
  text-align: center;
  border: 2px dashed #1a1920;
  width: 100%;
  padding: 20px;
}

.coupon-wrap-3.apple {
  border-color: #289cf7;
}

.disclaimer {
  text-align: center;
  border-radius: 5px;
  margin-top: 40px;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 26px;
}

.disclaimer.apple {
  color: #1a1920;
  margin-top: 0;
}

.disclaimer.apple.center {
  text-align: center;
  font-family: Syne, sans-serif;
  font-style: italic;
  font-weight: 700;
}

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

.content-wrap.apple {
  align-items: center;
}

.text-block-9 {
  font-family: Syne, sans-serif;
  text-decoration: none;
}

.image {
  border-radius: 20px;
}

.div-block-4 {
  flex-direction: column;
  display: flex;
}

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

.disclaimer-2.center {
  text-align: center;
}

.disclaimer-2.center.gray {
  color: #acadae;
  font-size: 10px;
  font-style: normal;
}

.disclaimer-2.center.gray.apple {
  font-family: Sf Pro Text, sans-serif;
}

.btn-area-4 {
  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-4._310px {
  align-items: start;
  width: auto;
  max-width: 310px;
}

.image-wrap-2 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.container-3 {
  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: 120px 40px;
  display: flex;
  position: relative;
}

.blue {
  color: #0e39cb;
}

.apple-caption {
  color: #1a1920;
  letter-spacing: -1px;
  text-transform: none;
  margin-bottom: 20px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

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

.section-3.apple {
  color: #3d3d4c;
  background-color: #fff;
  background-image: none;
  font-weight: 400;
}

.grid-2 {
  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-2.desk-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

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

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

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

.description-text.gray {
  color: #acadae;
  letter-spacing: -.75px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 28px;
}

.description-text.gray.apple {
  margin-bottom: 60px;
  font-family: Sf Pro Text, sans-serif;
}

.btn-4 {
  color: #faefd4;
  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-4.apple-primary {
  color: #fff;
  background-color: #3478f6;
  border-radius: 100px;
}

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

.btn-4.apple-primary.big {
  padding: 20px 40px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 12px;
  text-decoration: none;
}

.coupon-wrap-4 {
  text-align: center;
  border: 2px dashed #f2a400;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  line-height: 20px;
}

.apple-title {
  color: #1a1920;
  letter-spacing: -3px;
  text-transform: none;
  font-family: Sf Pro Text, sans-serif;
  font-weight: 600;
  line-height: 120%;
}

.coupon-code-5 {
  color: #f2a400;
}

.header-3 {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 24px;
  line-height: 150%;
  display: flex;
}

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

.text-block-10 {
  font-family: Sf Pro Text, sans-serif;
}

.heading-apple-tv {
  color: #000;
  letter-spacing: -3px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 120%;
}

.heading-apple-tv.mobile {
  display: none;
}

.grid-apple-tv {
  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;
}

.image-conte-do {
  width: 100%;
  margin-left: 40px;
}

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

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

.image-conte-do.apple-tv-mktp-mobile {
  margin-left: 0;
  display: none;
}

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

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

.section-apple {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-apple.gray {
  background-color: #f5f5f5;
}

.secondary-heading-apple-tv {
  color: #000;
  letter-spacing: -2px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.description-apple-tv {
  max-width: 600px;
  font-family: Sf Pro Text, sans-serif;
}

.container-apple-tv {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

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

.image-wrap-3 {
  text-align: center;
  width: 100%;
  overflow: visible;
}

.image-wrap-3.apple-tv {
  background-color: #dfe0e6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.image-wrap-apple {
  text-align: center;
  width: 100%;
  overflow: visible;
}

.image-wrap-apple.apple-tv {
  background-color: #dfe0e6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.grid-seletor {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  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-seletor.desk-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
}

.container-apple {
  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: 40px 80px;
  display: flex;
  position: relative;
}

.container-apple.produto {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-apple.terms-conditions {
  grid-row-gap: 0px;
  padding: 30px 120px;
}

.btn-apple {
  color: #fff;
  text-align: center;
  border-radius: 100px;
  flex: none;
  padding: 17px 30px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

.btn-apple.primary {
  background-color: #1d76f2;
  text-decoration: none;
}

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

.content-apple {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  display: flex;
}

.grid-buttons {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  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;
}

.content-buttons-apple {
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  display: flex;
}

.content-wrap-apple {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.image-wrap-4 {
  text-align: center;
  width: 100%;
  overflow: visible;
}

.credit-btn-apple {
  color: #000;
  text-align: center;
  background-color: #0000;
  border: 2px solid #9b9b9b;
  border-radius: 60px;
  padding: 17px 22px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 120%;
  transition: all .3s;
}

.credit-btn-apple:hover {
  background-color: #fff;
}

.credit-btn-apple.credit-btn-active {
  color: #fff;
  background-color: #1d76f2;
  border-color: #1d76f2;
}

.disclaimer-apple {
  color: #9b9b9b;
  text-align: center;
  padding-top: 12px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.disclaimer-apple.terms-conditions {
  text-align: left;
  padding-top: 0;
}

.disclaimer-apple.left {
  text-align: left;
}

.heading-2-apple {
  color: #000;
  letter-spacing: -2px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.text-apple {
  color: #000;
  font-family: Sf Pro Text, sans-serif;
  font-weight: 400;
}

.disclaimer-3 {
  color: #9b9b9b;
  text-align: center;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.disclaimer-3.terms-conditions {
  color: #6f6f6f;
  text-align: left;
  padding-top: 0;
}

.btn-area-apple {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.heading-1-apple {
  color: #000;
  letter-spacing: -2px;
  margin-bottom: 20px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.disclaimer-google {
  padding-top: 12px;
  font-family: Sf Pro Text, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.disclaimer-google.terms-conditions {
  text-align: left;
  padding-top: 0;
}

.squad-busters-comp {
  border-radius: 8px;
  align-self: center;
  width: 100%;
  max-width: 560px;
}

.comp-wrap {
  grid-row-gap: 70px;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
  display: flex;
}

.googleplay-logo {
  width: 100%;
  max-width: 310px;
}

.googleplay-logo.hide {
  display: none;
}

.coupon-wrap-5 {
  text-align: center;
  border: 2px dashed #f2a400;
  align-self: flex-start;
  width: 100%;
  padding: 20px 10px;
  font-size: 16px;
  line-height: 20px;
}

.coupon-code-6 {
  color: #f2a400;
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .section.giftcard.appstore {
    display: flex;
  }

  .section.fold {
    background-color: #320248;
    position: relative;
  }

  .section.freefire {
    background-color: #faf8f9;
    background-image: linear-gradient(#faf8f9, #e0d0da);
  }

  .section.black-friday.appstore {
    display: flex;
  }

  .howtoworks {
    justify-content: center;
    max-height: 340px;
  }

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

  .gift-card-image {
    max-width: 630px;
  }

  .mobile-render {
    min-width: 862px;
    max-width: 862px;
    bottom: -140px;
    right: -340px;
  }

  .giftcard-render {
    max-width: 769px;
  }

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

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

  .carousel-slider, .btn-view-more {
    height: 432px;
  }

  .freefire-btn {
    align-items: center;
    display: flex;
  }

  .bg-video-wrap {
    width: 70%;
  }

  .freefire-render {
    max-width: 759px;
  }

  .credit-description.right.lordsmobile {
    color: #fcfcfc;
  }

  .credit-price {
    text-align: left;
    width: 100%;
    max-width: 110px;
    font-size: 28px;
  }

  .roblox-render {
    max-width: 639px;
  }

  .avakinlife-btn {
    align-items: center;
    display: flex;
  }

  .avakinlife-render {
    max-width: 752px;
    right: -70px;
  }

  .lordsmobile-render {
    max-width: 830px;
    left: -190px;
  }

  .lordsmobile-btn {
    align-items: center;
    display: flex;
  }

  .pubg-render {
    width: 840px;
    right: 40px;
  }

  .pubg-btn {
    align-items: center;
    display: flex;
  }

  .bombme-render {
    max-width: 830px;
    left: auto;
    right: -190px;
  }

  .bombme-btn {
    align-items: center;
    display: flex;
  }

  .xbox-render {
    min-width: 885px;
    max-width: 885px;
    bottom: -120px;
    right: -310px;
  }

  .appstore-render {
    max-width: 500px;
  }

  .text-block-8 {
    font-weight: 700;
  }

  .description-text.gray {
    font-size: 26px;
  }

  .description-text.gray.apple {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
  }

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

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

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

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

  .section-apple {
    background-color: #fff;
  }

  .section-apple.gray {
    background-color: #f5f5f5;
  }

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

  .container-apple-tv {
    padding-right: 30px;
  }

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

  .image-wrap-3.apple-tv {
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .image-wrap-apple.apple-tv {
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid-seletor {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1fr;
  }

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

  .disclaimer-apple {
    width: 550px;
  }

  .disclaimer-apple.terms-conditions {
    width: auto;
  }

  .disclaimer-3 {
    width: 550px;
  }

  .disclaimer-3.terms-conditions {
    width: auto;
    padding-left: 60px;
    padding-right: 60px;
  }

  .disclaimer-google {
    width: 550px;
  }

  .disclaimer-google.terms-conditions {
    width: auto;
  }

  .squad-busters-comp {
    max-width: 500px;
  }

  .comp-wrap {
    max-width: 630px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-weight: 600;
  }

  h2 {
    font-size: 36px;
  }

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

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

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

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

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

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

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

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

  .btn-buyarea {
    z-index: 2;
    position: relative;
  }

  .btn-buyarea.googleplay-sb {
    margin-left: auto;
    margin-right: auto;
  }

  .section.fold {
    min-height: auto;
  }

  .section.squad-busters {
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

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

  .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 #ff0080;
    padding-bottom: 14px;
    padding-left: 36px;
  }

  .navlink.select {
    display: none;
  }

  .howtoworks {
    max-height: 310px;
  }

  .step {
    text-align: left;
    font-size: 16px;
  }

  .step-number {
    width: 36px;
    height: 30px;
  }

  .caption.giftcard {
    display: none;
  }

  .caption.grey, .caption.left {
    text-align: center;
  }

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

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

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

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

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

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

  .mobile-render {
    max-width: 390px;
    bottom: -140px;
    right: -40px;
  }

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

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

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

  .dropdown.menu {
    background-color: #0000;
    flex-direction: column;
    order: 0;
    align-items: flex-start;
    padding-right: 0;
    display: block;
    position: static;
  }

  .dropdown.menu.w--open {
    box-shadow: none;
    padding-bottom: 0;
  }

  .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-icon {
    width: 24px;
    height: 24px;
  }

  .menu, .navigation {
    order: 1;
  }

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

  .header.giftcard {
    z-index: 2;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

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

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

  .credits-select-area {
    z-index: 999;
    text-align: left;
  }

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

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

  .bg-video-wrap {
    background-image: url('../images/bg-mobile.jpg');
    background-position: 50% 0;
    background-size: cover;
  }

  .bg-video {
    display: none;
  }

  .freefire-render {
    top: -60px;
    right: -20px;
  }

  .roblox-render {
    top: 250px;
    left: auto;
    right: 10px;
  }

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

  .avakinlife-render {
    top: -20px;
    right: -20px;
  }

  .lordsmobile-render {
    max-width: 290px;
    top: 180px;
    left: auto;
    right: 10px;
  }

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

  .pubg-render {
    opacity: .1;
    min-width: 780px;
    top: -380px;
    left: -100px;
  }

  .pubg-btn {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bombme-render {
    top: 250px;
    left: auto;
    right: 10px;
  }

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

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

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

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

  .xbox-render {
    max-width: 430px;
    right: -20px;
  }

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

  .company {
    max-width: none;
  }

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

  .appstore-render {
    max-width: 400px;
    margin-left: 0;
  }

  .content-2 {
    max-width: none;
    font-size: 20px;
  }

  .promo-render {
    max-width: 400px;
    position: static;
  }

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

  .btn-area-2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .promo-logo {
    max-width: 300px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .coupon-wrap {
    width: auto;
  }

  .coupon-block-2 {
    width: 100%;
  }

  .coupon-wrap-2 {
    width: auto;
  }

  .grid {
    margin-bottom: 20px;
    margin-left: 0;
  }

  .grid.desk-2.tab-2.apple {
    align-items: center;
    display: flex;
  }

  .header-2 {
    text-align: center;
    align-self: stretch;
    align-items: center;
  }

  .header-2.left {
    text-align: center;
    align-items: center;
  }

  .header-2.left.apple {
    align-self: center;
    max-width: 700px;
  }

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

  .promo-render-2 {
    max-width: 400px;
    position: static;
  }

  .btn-3 {
    position: relative;
  }

  .image-wrap.right {
    justify-content: center;
  }

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

  .content-wrap.apple {
    max-width: 960px;
  }

  .disclaimer-2 {
    text-align: center;
  }

  .btn-area-4 {
    justify-items: center;
  }

  .btn-area-4._310px {
    justify-items: stretch;
  }

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

  .image-wrap-2.left.tab-360px {
    max-width: 360px;
  }

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

  .grid-2.desk-2.tab-2 {
    grid-template-rows: auto auto auto auto;
  }

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

  .btn-4 {
    position: relative;
  }

  .header-3 {
    text-align: center;
    align-self: stretch;
    align-items: center;
  }

  .heading-apple-tv {
    font-size: 46px;
    display: none;
  }

  .heading-apple-tv.mobile {
    max-width: 420px;
    display: block;
  }

  .grid-apple-tv {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: .75fr;
    grid-auto-columns: .5fr;
  }

  .image-conte-do.apple-tv-mktp-tablet {
    width: 100%;
    display: block;
  }

  .image-conte-do.apple-tv-mktp-desktop, .image-conte-do.apple-tv-mktp-mobile {
    display: none;
  }

  .content-apple-tv {
    align-self: stretch;
  }

  .content-apple-tv.second-title {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-apple-tv {
    padding-left: 0;
  }

  .disclaimer-apple-tv {
    max-width: 700px;
  }

  .image-wrap-3, .image-wrap-apple {
    align-self: center;
  }

  .grid-seletor {
    margin-left: 0;
  }

  .grid-seletor.tablet-seletor {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

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

  .container-apple.produto {
    padding: 40px 40px 60px;
  }

  .container-apple.terms-conditions {
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .btn-apple {
    position: relative;
  }

  .btn-apple.primary {
    width: 100%;
    max-width: 300px;
  }

  .content-apple {
    align-self: stretch;
  }

  .grid-buttons {
    margin-left: 0;
  }

  .content-buttons-apple {
    align-self: stretch;
    align-items: center;
  }

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

  .image-wrap-4 {
    align-self: center;
  }

  .disclaimer-apple {
    max-width: 700px;
  }

  .disclaimer-apple.terms-conditions {
    max-width: none;
    font-size: 9px;
  }

  .disclaimer-3 {
    max-width: 700px;
  }

  .disclaimer-google {
    text-align: center;
    max-width: 700px;
  }

  .disclaimer-google.terms-conditions {
    max-width: none;
    font-size: 9px;
  }

  .squad-busters-comp {
    max-width: 100%;
    margin-left: 0;
  }

  .coupon-wrap-5 {
    align-self: center;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h6 {
    font-size: 18px;
  }

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

  .container.left {
    align-items: center;
  }

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

  .content {
    grid-row-gap: 20px;
    align-items: center;
    font-size: 16px;
  }

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

  .credits-list._2col {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .btn.primary.small, .btn.freefire.small, .btn.roblox.small, .btn.avakinlife.small, .btn.lordsmobile.small, .btn.pubg.small, .btn.bombme.small, .btn.appstore.small, .btn.black-week.small {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .btn-buyarea {
    margin-top: 0;
  }

  .section.fold {
    height: 770px;
    padding-top: 0;
  }

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

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

  .howtoworks {
    max-height: 350px;
  }

  .step {
    font-size: 14px;
  }

  .step-number {
    flex: none;
  }

  .text-grey.appstore.disclaimer {
    font-size: 14px;
  }

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

  .gift-card-image {
    max-width: 400px;
    top: -110px;
  }

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

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

  .mobile-render {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    bottom: -130px;
    left: 0;
    right: 0;
  }

  .steps {
    text-align: left;
    width: 100%;
  }

  .dropdown {
    padding: 13px;
  }

  .header {
    grid-row-gap: 20px;
    align-items: center;
  }

  .header.giftcard {
    grid-row-gap: 20px;
    align-items: flex-start;
    width: 100%;
  }

  .header.giftcard.center {
    align-items: center;
  }

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

  .btn-navarea {
    display: none;
  }

  .btn-view-more {
    height: 360px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .roblox-logo {
    max-width: 200px;
  }

  .roblox-btn {
    grid-row-gap: 8px;
  }

  .freefire-render {
    top: -120px;
    right: 0;
  }

  .credit-description.right {
    font-size: 12px;
  }

  .credit-price {
    max-width: 80px;
    font-size: 20px;
  }

  .credit-price.avakinlife {
    text-align: center;
    max-width: 160px;
    font-size: 20px;
  }

  .credit-price.pubg {
    width: auto;
    max-width: none;
  }

  .credit-price.freefire {
    width: 120px;
    max-width: none;
    font-size: 14px;
  }

  .roblox-render {
    top: -120px;
  }

  .avakinlife-btn {
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
  }

  .freefire-logo, .avakinlife-logo {
    max-width: 200px;
  }

  .avakinlife-render {
    top: -120px;
    right: 0;
  }

  .lordsmobile-render {
    max-width: 270px;
    top: -60px;
  }

  .pubg-btn {
    grid-row-gap: 4px;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .bombme-render {
    top: -110px;
  }

  .xbox-render {
    max-width: 360px;
    bottom: -190px;
  }

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

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

  .legalline-block {
    font-size: 14px;
  }

  .text-block {
    font-size: 16px;
  }

  .appstore-render {
    max-width: 400px;
  }

  .content-2 {
    grid-row-gap: 20px;
    font-size: 16px;
  }

  .btn-area-2 {
    max-width: 260px;
  }

  .promo-logo {
    max-width: 250px;
  }

  .coupon {
    font-size: 12px;
  }

  .coupon-wrap, .coupon-wrap-2 {
    font-size: 14px;
  }

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

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

  .header-2 {
    text-align: center;
    font-size: 20px;
  }

  .header-2.left {
    text-align: center;
    align-items: center;
  }

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

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

  .coupon-wrap-3 {
    font-size: 20px;
  }

  .disclaimer {
    line-height: 26px;
  }

  .disclaimer.apple {
    text-align: center;
  }

  .content-wrap {
    grid-row-gap: 20px;
    height: 100%;
    font-size: 16px;
  }

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

  .image-wrap-2.left {
    max-width: 500px;
  }

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

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

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

  .header-3 {
    text-align: center;
    font-size: 20px;
  }

  .heading-apple-tv {
    font-size: 44px;
    display: none;
  }

  .heading-apple-tv.mobile {
    max-width: 517px;
    display: block;
  }

  .grid-apple-tv {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

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

  .image-conte-do.apple-tv-mktp-tablet {
    margin-left: 25px;
    display: none;
  }

  .image-conte-do.apple-tv-mktp-desktop {
    margin-left: 25px;
  }

  .image-conte-do.apple-tv-mktp-mobile {
    display: block;
  }

  .content-apple-tv.second-title {
    align-self: center;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .disclaimer-apple-tv {
    padding-left: 0;
    padding-right: 0;
  }

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

  .image-wrap-3.apple-tv {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .image-wrap-apple.apple-tv {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .container-apple {
    align-items: flex-start;
    padding: 60px 40px;
  }

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

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

  .content-apple {
    text-align: center;
    max-width: 600px;
    line-height: 130%;
  }

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

  .content-buttons-apple {
    text-align: center;
  }

  .content-wrap-apple {
    grid-row-gap: 20px;
    height: 100%;
    font-size: 16px;
  }

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

  .disclaimer-apple, .disclaimer-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .btn-area-apple {
    width: 100%;
  }

  .disclaimer-google {
    padding-left: 0;
    padding-right: 0;
  }

  .squad-busters-comp {
    max-width: 400px;
  }

  .comp-wrap {
    max-width: 400px;
    top: -110px;
  }
}

@media screen and (max-width: 479px) {
  .content.left {
    margin-top: 0;
  }

  .content.steps {
    width: 100%;
  }

  .credits-list._2col, .credits-list._3col {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .btn.primary.big, .btn.secondary.big, .btn.freefire.big, .btn.roblox.big, .btn.avakinlife.big, .btn.lordsmobile.big, .btn.pubg.big, .btn.bombme.big, .btn.appstore.big, .btn.black-week.big {
    padding-left: 20px;
    padding-right: 20px;
  }

  .credit-btn {
    border-width: 2px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
  }

  .btn-buyarea {
    margin-top: 20px;
  }

  .section.fold {
    height: 830px;
    padding-top: 0;
  }

  .howtoworks {
    max-height: 360px;
  }

  .step {
    text-align: left;
  }

  .step-number {
    flex: none;
  }

  .faq-img {
    display: none;
  }

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

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

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

  .gift-card-image {
    text-align: left;
    align-self: center;
    max-width: 240px;
    inset: -170px 0% auto;
  }

  .footer-social-nav {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto auto auto;
    grid-auto-columns: 1fr;
    justify-items: center;
  }

  .mobile-render {
    max-width: 170px;
    top: -135px;
  }

  .giftcard-render {
    display: none;
  }

  .steps {
    margin-bottom: auto;
  }

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

  .header.giftcard {
    width: 100%;
  }

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

  .btn-view-more {
    height: 340px;
  }

  .freefire-btn {
    grid-row-gap: 8px;
    text-align: center;
    border-width: 2px;
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .roblox-btn {
    border-width: 2px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
  }

  .freefire-render {
    max-width: 140px;
    display: none;
    top: -140px;
    left: 20px;
    right: auto;
  }

  .credit-description.right.freefire, .credit-description.right.lordsmobile, .credit-description.right.avakinlife {
    text-align: center;
  }

  .credit-description.center.roblox {
    font-size: 12px;
  }

  .credit-price {
    width: auto;
    max-width: none;
  }

  .credit-price.pubg {
    text-align: center;
  }

  .credit-price.freefire {
    text-align: center;
    font-size: 16px;
  }

  .roblox-render {
    max-width: 160px;
    display: none;
    top: -150px;
    left: 20px;
    right: auto;
  }

  .avakinlife-btn {
    grid-row-gap: 8px;
    border-width: 2px;
    justify-content: center;
    height: 90px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .avakinlife-render {
    display: none;
    top: -160px;
    left: 20px;
    right: auto;
  }

  .lordsmobile-render {
    max-width: 140px;
    top: -160px;
    left: 20px;
    right: auto;
  }

  .lordsmobile-btn {
    grid-row-gap: 8px;
    border-width: 2px;
    flex-direction: column;
    height: auto;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .pubg-render {
    min-width: 720px;
    top: -360px;
    left: -330px;
  }

  .pubg-btn {
    grid-row-gap: 4px;
    border-width: 2px;
    flex-direction: column;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .bombme-render {
    display: none;
    top: -150px;
    left: 20px;
    right: auto;
  }

  .bombme-btn {
    border-width: 2px;
    flex-direction: column;
    height: auto;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .render {
    width: 100%;
    display: none;
  }

  .xbox-render {
    max-width: 240px;
    top: -196px;
  }

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

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

  .appstore-btn {
    border-width: 2px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
  }

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

  .promo-render {
    max-width: 240px;
  }

  .classind {
    grid-column-gap: 12px;
    padding: 12px;
  }

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

  .promo-logo {
    max-width: 200px;
  }

  .classind-tittle {
    font-size: 14px;
  }

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

  .promo-render-2 {
    max-width: 240px;
  }

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

  .disclaimer {
    text-align: center;
    font-size: 12px;
  }

  .content-wrap {
    grid-row-gap: 28px;
    height: auto;
  }

  .disclaimer-2 {
    text-align: center;
    font-size: 12px;
  }

  .btn-area-4._310px {
    width: 100%;
    max-width: none;
  }

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

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

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

  .heading-apple-tv {
    max-width: 395px;
    font-size: 44px;
  }

  .heading-apple-tv.mobile {
    max-width: 400px;
  }

  .content-apple-tv {
    padding-right: 0;
    font-size: 15px;
  }

  .content-apple-tv.second-title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .disclaimer-apple-tv {
    text-align: left;
    font-size: 8px;
  }

  .image-wrap-3.apple-tv, .image-wrap-apple.apple-tv {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-apple {
    padding: 50px 20px;
  }

  .container-apple.produto, .container-apple.terms-conditions {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .content-apple {
    font-size: 15px;
  }

  .content-wrap-apple {
    grid-row-gap: 28px;
    height: auto;
  }

  .credit-btn-apple {
    border-width: 2px;
    padding: 12px 4px;
    font-size: 15px;
  }

  .disclaimer-apple, .disclaimer-3 {
    text-align: center;
    font-size: 12px;
  }

  .disclaimer-3.terms-conditions {
    font-size: 11px;
  }

  .disclaimer-google {
    text-align: center;
    font-size: 12px;
  }

  .comp-wrap {
    text-align: left;
    align-self: center;
    inset: -170px 0% auto;
  }

  .googleplay-logo {
    max-width: 240px;
  }
}

#w-node-_8aec6155-d83d-26f8-9146-715fc46ef077-80bd8fa2 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
}

#w-node-_491c4291-2202-d031-84a1-ea95d7e0c67e-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-_491c4291-2202-d031-84a1-ea95d7e0c692-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start center;
}

#w-node-_491c4291-2202-d031-84a1-ea95d7e0c690-80bd8fa2 {
  grid-area: 1 / 2 / 3 / 3;
  align-self: center;
}

#w-node-_34e2db85-24dd-58bc-bb54-603422adb465-80bd8fa2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c531a2be-0069-7e9e-a2fd-e66766c5c311-80bd8fa2 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c531a2be-0069-7e9e-a2fd-e66766c5c315-80bd8fa2, #w-node-c531a2be-0069-7e9e-a2fd-e66766c5c317-80bd8fa2, #w-node-c531a2be-0069-7e9e-a2fd-e66766c5c319-80bd8fa2, #w-node-c531a2be-0069-7e9e-a2fd-e66766c5c31b-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_255cfc8f-e13b-8cf5-6b8c-39982ad5c0f5-80bd8fa2 {
  grid-area: 1 / 1 / 4 / 2;
  align-self: center;
}

#w-node-_7687fc7f-7113-f1c9-019f-235093638c5e-80bd8fa2 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_998e5314-3482-8db5-fed6-dd064bc77970-80bd8fa2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0a8-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0b7-80bd8fa2 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: stretch center;
}

#w-node-_2860e851-9eb1-b205-38f4-83a2791f53c1-80bd8fa2 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_2860e851-9eb1-b205-38f4-83a2791f53c3-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2860e851-9eb1-b205-38f4-83a2791f53c8-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_2860e851-9eb1-b205-38f4-83a2791f53d1-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2860e851-9eb1-b205-38f4-83a2791f53db-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#console-giftcard-button-group.w-node-_2860e851-9eb1-b205-38f4-83a2791f53dc-80bd8fa2, #w-node-_2860e851-9eb1-b205-38f4-83a2791f53e1-80bd8fa2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f955-80bd8fa2 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f957-80bd8fa2 {
  grid-area: 1 / 1 / 5 / 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f958-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f95d-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f963-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f964-80bd8fa2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f968-80bd8fa2 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b73-80bd8fa2 {
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b74-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: end;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b77-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b78-80bd8fa2 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b7e-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: start center;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b81-80bd8fa2 {
  grid-area: 1 / 2 / 3 / 3;
  align-self: center;
}

#w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b83-80bd8fa2 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb2172c-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb21732-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-d7fc05c6-fac3-07d4-d2d9-0bad978e9861-80bd8fa2, #w-node-_602dce01-b1e2-b893-301f-e2144a8e6bc1-80bd8fa2, #w-node-_73cf3a07-2571-b2e6-431d-6b940396ca69-80bd8fa2, #w-node-aefcafcb-d48a-c2bb-d470-5d4fc056a4b6-80bd8fa2, #w-node-_0ddc44bf-bc13-35ea-cac3-ecedf1b66eaf-80bd8fa2, #w-node-_3c13376f-d97d-0f10-e414-27abf6c035d0-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb21740-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_66b644c0-c32c-e9c8-f5cf-78e4843a305d-80bd8fa2 {
  grid-area: 1 / 2 / 5 / 3;
  align-self: center;
}

#w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba3b-80bd8fa2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba41-80bd8fa2 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_44241133-6a8f-ade9-6d2c-ec896f955ab7-80bd8fa2, #w-node-b27bfbd6-9297-ed83-e179-729bb80331ee-80bd8fa2, #w-node-_21dd4722-ff08-a5a8-1c3c-2149f273f7cb-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4631e1df-cc10-a247-03bd-7e1a84c67e0c-80bd8fa2 {
  grid-area: 1 / 1 / 4 / 2;
  align-self: center;
}

#w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba4d-80bd8fa2 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_56674cef-4871-1faf-bb65-f747fe2a4e4c-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_56674cef-4871-1faf-bb65-f747fe2a4e55-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-fce3ccf3-435d-e2c9-fa5a-cb005a39b64d-80bd8fa2, #w-node-_90875dcd-9ff1-fa47-cd69-cd7e60c7c4b3-80bd8fa2, #w-node-_56b2c402-ff7a-8adb-253b-bbb2a141fb04-80bd8fa2, #w-node-abc938f1-0bf6-4c32-12b7-4b4e77eff04b-80bd8fa2, #w-node-_8a13fd35-d45e-aede-1c3a-9c60625af1f3-80bd8fa2, #w-node-b7ad49c0-586a-ccfd-3a16-5e9156a04a63-80bd8fa2, #w-node-_64fb6f63-2e00-d974-eb2f-f5e644d77359-80bd8fa2, #w-node-e1f2a191-7aa0-c0b3-d962-7493c6bc48ec-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f399e1b9-125e-38f0-89d6-2fd481dd33cc-80bd8fa2 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-_56674cef-4871-1faf-bb65-f747fe2a4e68-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_0c2e56b5-b387-6878-62ca-1b4f385446a1-80bd8fa2, #w-node-_142e0f5b-c29b-7249-18f0-459fed9c5e41-80bd8fa2, #w-node-fcb8e088-cacd-f0d4-852a-80bea2cb4b3a-80bd8fa2, #w-node-_0848d839-45cd-8a55-3371-ea1a1a001d1b-80bd8fa2, #w-node-d423633b-0e43-82f3-c376-e7341bc9b545-80bd8fa2, #w-node-_2dd6c29a-5102-5e30-8956-b593941a53b7-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_209f4b5d-8653-8d77-89eb-166589e3fec5-80bd8fa2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_209f4b5d-8653-8d77-89eb-166589e3fecb-80bd8fa2 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_209f4b5d-8653-8d77-89eb-166589e3fed6-80bd8fa2, #w-node-b74ce721-9d9b-590e-1fb7-5b7cb7c1307b-80bd8fa2, #w-node-_34231d14-f044-882d-f47f-36806e9e9363-80bd8fa2, #w-node-eb79efbe-07dd-9681-f759-1abec387f6a7-80bd8fa2, #w-node-cb76b4ce-7782-53a2-b323-35d36e71ac91-80bd8fa2, #w-node-_78844817-87aa-9652-8697-065f73cd5abf-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_209f4b5d-8653-8d77-89eb-166589e3ff16-80bd8fa2 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_8f819f0a-9b97-3e2f-282a-22d15c78ab05-80bd8fa2 {
  grid-area: 1 / 1 / 4 / 2;
  align-self: end;
}

#w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b441-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b447-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b452-80bd8fa2, #w-node-_4be03753-40d1-6c70-3a53-0d72dc8cef13-80bd8fa2, #w-node-d86da393-d80d-abed-785b-70963f9bf467-80bd8fa2, #w-node-a627bfd0-231b-1d64-af7e-a56f1bac38d3-80bd8fa2, #w-node-_011355ae-d56a-7530-589d-dc484fb39752-80bd8fa2, #w-node-_6b461a96-ba8f-1d74-1f6d-d5aa27621bb1-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_979aca74-c16b-3b03-8e6b-ccbc2260c882-80bd8fa2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b43f-80bd8fa2 {
  grid-area: 1 / 2 / 4 / 3;
  place-self: center end;
}

#w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b475-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb771-80bd8fa2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb77a-80bd8fa2 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb785-80bd8fa2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb789-80bd8fa2, #w-node-e9d618a5-95c4-6c45-6df3-b461159fb78b-80bd8fa2, #w-node-e9d618a5-95c4-6c45-6df3-b461159fb78d-80bd8fa2, #w-node-e9d618a5-95c4-6c45-6df3-b461159fb78f-80bd8fa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb791-80bd8fa2 {
  grid-area: 1 / 2 / 4 / 3;
  align-self: center;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb793-80bd8fa2 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-e9d618a5-95c4-6c45-6df3-b461159fb79a-80bd8fa2 {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_11f44c17-dc93-bb24-135c-44bae2fb48a5-80bd8fa2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1280px) {
  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53db-80bd8fa2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53e1-80bd8fa2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f964-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0c2e56b5-b387-6878-62ca-1b4f385446a1-80bd8fa2, #w-node-_142e0f5b-c29b-7249-18f0-459fed9c5e41-80bd8fa2, #w-node-fcb8e088-cacd-f0d4-852a-80bea2cb4b3a-80bd8fa2, #w-node-_0848d839-45cd-8a55-3371-ea1a1a001d1b-80bd8fa2, #w-node-d423633b-0e43-82f3-c376-e7341bc9b545-80bd8fa2, #w-node-_2dd6c29a-5102-5e30-8956-b593941a53b7-80bd8fa2, #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b452-80bd8fa2, #w-node-_4be03753-40d1-6c70-3a53-0d72dc8cef13-80bd8fa2, #w-node-d86da393-d80d-abed-785b-70963f9bf467-80bd8fa2, #w-node-a627bfd0-231b-1d64-af7e-a56f1bac38d3-80bd8fa2, #w-node-_011355ae-d56a-7530-589d-dc484fb39752-80bd8fa2, #w-node-_6b461a96-ba8f-1d74-1f6d-d5aa27621bb1-80bd8fa2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_979aca74-c16b-3b03-8e6b-ccbc2260c882-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_8aec6155-d83d-26f8-9146-715fc46ef077-80bd8fa2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c67e-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c692-80bd8fa2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c690-80bd8fa2 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    justify-self: center;
  }

  #w-node-_34e2db85-24dd-58bc-bb54-603422adb465-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-c531a2be-0069-7e9e-a2fd-e66766c5c311-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_255cfc8f-e13b-8cf5-6b8c-39982ad5c0f5-80bd8fa2 {
    grid-column: 2 / 3;
    grid-row-end: 2;
  }

  #w-node-_7687fc7f-7113-f1c9-019f-235093638c5e-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0a8-80bd8fa2 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
  }

  #w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0b7-80bd8fa2 {
    grid-row: 1 / 2;
    grid-column-start: 2;
    place-self: stretch center;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c1-80bd8fa2 {
    grid-area: 1 / 1 / 2 / 3;
    place-self: center;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c3-80bd8fa2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c8-80bd8fa2 {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53d1-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53db-80bd8fa2 {
    grid-area: 4 / 1 / 5 / 3;
    justify-self: center;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f955-80bd8fa2 {
    grid-column: 2 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f958-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f963-80bd8fa2 {
    grid-column-start: 1;
    justify-self: center;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b73-80bd8fa2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b74-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b78-80bd8fa2 {
    grid-row: 5 / 6;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b7e-80bd8fa2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b81-80bd8fa2 {
    grid-column: 1 / 3;
    grid-row-end: 2;
    justify-self: center;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b83-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb2172c-80bd8fa2 {
    justify-self: start;
  }

  #w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb21732-80bd8fa2, #w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb21740-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-_66b644c0-c32c-e9c8-f5cf-78e4843a305d-80bd8fa2 {
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba3b-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba41-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_4631e1df-cc10-a247-03bd-7e1a84c67e0c-80bd8fa2 {
    grid-column: 2 / 3;
    grid-row-end: 2;
    align-self: end;
  }

  #w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba4d-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_56674cef-4871-1faf-bb65-f747fe2a4e4c-80bd8fa2 {
    align-self: center;
  }

  #w-node-_56674cef-4871-1faf-bb65-f747fe2a4e55-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-f399e1b9-125e-38f0-89d6-2fd481dd33cc-80bd8fa2 {
    grid-row-end: 2;
  }

  #w-node-_56674cef-4871-1faf-bb65-f747fe2a4e68-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-_209f4b5d-8653-8d77-89eb-166589e3fec5-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-_209f4b5d-8653-8d77-89eb-166589e3fecb-80bd8fa2 {
    grid-column-start: 1;
  }

  #w-node-_209f4b5d-8653-8d77-89eb-166589e3ff16-80bd8fa2 {
    order: -9999;
    grid-column-start: 1;
  }

  #w-node-_8f819f0a-9b97-3e2f-282a-22d15c78ab05-80bd8fa2 {
    grid-column: 2 / 3;
    grid-row-end: 2;
  }

  #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b447-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b43f-80bd8fa2 {
    grid-row-end: 2;
  }

  #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b475-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb771-80bd8fa2 {
    grid-column: 1 / 2;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb77a-80bd8fa2 {
    grid-row: 5 / 6;
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb785-80bd8fa2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb791-80bd8fa2 {
    grid-column: 2 / 3;
    grid-row-end: 2;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb793-80bd8fa2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48a5-80bd8fa2 {
    order: 9999;
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48c3-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48d5-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48e7-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb4905-80bd8fa2 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c692-80bd8fa2 {
    grid-column: 1 / 3;
  }

  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c690-80bd8fa2, #w-node-_255cfc8f-e13b-8cf5-6b8c-39982ad5c0f5-80bd8fa2 {
    align-self: end;
  }

  #w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0a8-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0b7-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c1-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: end center;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c3-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c8-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2860e851-9eb1-b205-38f4-83a2791f53db-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f955-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: end center;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f958-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f963-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b7e-80bd8fa2 {
    grid-column: 1 / 3;
  }

  #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b81-80bd8fa2, #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b43f-80bd8fa2 {
    align-self: end;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb785-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb791-80bd8fa2 {
    align-self: end;
  }

  #w-node-e9d618a5-95c4-6c45-6df3-b461159fb793-80bd8fa2 {
    grid-column: 1 / 3;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48a5-80bd8fa2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48c3-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48d5-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48e7-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb4905-80bd8fa2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_491c4291-2202-d031-84a1-ea95d7e0c67e-80bd8fa2, #w-node-_34e2db85-24dd-58bc-bb54-603422adb465-80bd8fa2, #w-node-_63674fd1-6c40-8d7f-6cd2-8322c060d0a8-80bd8fa2, #w-node-_2860e851-9eb1-b205-38f4-83a2791f53c3-80bd8fa2, #w-node-_972f895a-dc7e-1d6f-19fc-27f43d77f958-80bd8fa2, #w-node-a0efe507-9c45-bb2b-fff7-5daa15a17b74-80bd8fa2, #w-node-_5c7ae5fa-5f5c-f329-6cce-1939deb2172c-80bd8fa2, #w-node-_9e714f89-cd5a-e891-6890-fe4f7fadba3b-80bd8fa2, #w-node-_56674cef-4871-1faf-bb65-f747fe2a4e4c-80bd8fa2, #w-node-_209f4b5d-8653-8d77-89eb-166589e3fec5-80bd8fa2, #w-node-d6c460af-2b04-0fbf-afbe-b6315ec3b441-80bd8fa2, #w-node-e9d618a5-95c4-6c45-6df3-b461159fb771-80bd8fa2 {
    grid-column-end: 3;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48a5-80bd8fa2 {
    grid-column: span 2 / span 2;
  }

  #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48b2-80bd8fa2, #w-node-_11f44c17-dc93-bb24-135c-44bae2fb48b4-80bd8fa2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Redob';
  src: url('../fonts/Redob-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-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-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-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-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}