/* Font Face */
@font-face {
  font-family: 'Roboto-Regular';
  src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url('./fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Bold';
  src: url('./fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Black';
  src: url('./fonts/Roboto-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'WorkSans-SemiBold';
  src: url('./fonts/WorkSans-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'WorkSans-Bold';
  src: url('./fonts/WorkSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeue-Light';
  src: url('./fonts/HelveticaNeue-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeue-Medium';
  src: url('./fonts/HelveticaNeue-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'HelveticaNeue-Bold';
  src: url('./fonts/HelveticaNeue-Bold.ttf') format('truetype');
}

/* ============ Reset default styles ============ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  font-size: 0.625rem;
}
footer,
header,
nav,
section {
  display: block;
}
ul {
  list-style-type: none;
}
img {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}
body {
  color: #000000;
  background: #ffffff;
  font-size: 1.4rem;
}
p {
  font-family: 'Roboto-Medium', sans-serif;
  margin-bottom: 0.8em;
}

/* ============ Custom styles ============ */
.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
header {
  position: fixed;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: 99;
}
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo {
  width: 40px;
  height: 40px;
}
#hamburgerMenu {
  display: none;
}
.hamburger {
  position: relative;
  width: 20px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  z-index: 100;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.05s ease-in-out;
  -o-transition: all 0.05s ease-in-out;
  transition: all 0.05s ease-in-out;
}
#hamburgerMenu + label span:first-child {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
#hamburgerMenu + label span:last-child {
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.nav-items {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  background-color: rgba(0, 0, 0);
  -webkit-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}
.nav-items li,
.nav-items a {
  width: 100%;
  text-align: center;
}
.nav-items a {
  font-family: 'Roboto-Medium', sans-serif;
  padding: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-items a:hover {
  color: #000000;
  background-color: #ffffff;
}
#hamburgerMenu:checked + label span:nth-child(2) {
  display: none;
}
#hamburgerMenu:checked + label span:first-child {
  -webkit-transform: translate(4px, 1px) rotate(45deg);
  -ms-transform: translate(4px, 1px) rotate(45deg);
  transform: translate(4px, 1px) rotate(45deg);
}
#hamburgerMenu:checked + label span:last-child {
  -webkit-transform: translate(4px, -1px) rotate(-45deg);
  -ms-transform: translate(4px, -1px) rotate(-45deg);
  transform: translate(4px, -1px) rotate(-45deg);
}
#hamburgerMenu:checked + label + .nav-items {
  left: 0%;
}

/* ============ Hero-section ============ */
.hero-section {
  position: relative;
  padding-top: 120px;
  color: #ffffff;
  background: -o-linear-gradient(
    20deg,
    #8f381f 16.67%,
    #71211c 33.34%,
    #962861 50.01%,
    #962862 66.68%,
    #841993 83.35%,
    #1062c3 100%
  );
  background: linear-gradient(
    70deg,
    #8f381f 16.67%,
    #71211c 33.34%,
    #962861 50.01%,
    #962862 66.68%,
    #841993 83.35%,
    #1062c3 100%
  );
}
.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: -o-radial-gradient(
    -85% -80%,
    ellipse,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  background: radial-gradient(
    ellipse at -85% -80%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.hero-section h1 {
  font-family: 'WorkSans-Bold', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.15em;
}
.hero-section h1 span {
  display: block;
}
.hero-section h1 sup {
  font-size: 1.5rem;
  margin-left: -8px;
}
.outlined-text {
  color: #ffffff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
}
.hero-section .button {
  margin-top: 24px;
  width: 100%;
}
.hero-section .button img {
  width: 120px;
  height: auto;
}
.app-store-button {
  width: 167px;
  height: 59px;
}
.hero-section .img-wrapper {
  position: relative;
  top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-section .img-wrapper img {
  width: 65%;
}
.hero-section.common {
  padding-bottom: 100px;
}
.hero-section.common .content-layout {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-section.common p {
  max-width: 70ch;
}
.content-layout--right .img-wrapper,
.content-layout--left .img-wrapper {
  position: relative;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.content-layout--right .img-wrapper img {
  width: 38%;
}
.discover-section,
.get-rewarded-section {
  padding-top: 80px;
}
.content-layout--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.content-layout--right h1,
.content-layout--left h1 {
  font-family: 'WorkSans-Bold', sans-serif;
  font-size: 3.4rem;
  margin-bottom: 0.6em;
}
.content-layout--right h2,
.content-layout--left h2 {
  font-family: 'WorkSans-Bold', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.35em;
}

/* ============ Get-reward-section ============ */
.get-rewarded-section {
  color: #ffffff;
  background-color: #000000;
}
.get-rewarded-section .img-wrapper img {
  width: 65%;
}

/* ============ Play-section ============ */
.play-section {
  padding-top: 40px;
}

/* ============ For-business-section ============ */
.for-business {
  margin-top: 50px;
}
.for-business .container {
  border-top: 1px solid #bfbfbf;
}
.heading-content {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 766px;
  margin: auto;
}
.section-heading {
  font-family: 'WorkSans-SemiBold', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.7em;
}
.heading-content p {
  font-family: 'HelveticaNeue-Medium', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.heading-content a {
  color: #700aff;
}
.for-business .bold {
  font-family: 'HelveticaNeue-Bold', sans-serif;
}
.for-business .item-2 {
  margin-top: -25px;
}
.for-business .item-1 .img-wrapper {
  width: 80%;
}
.for-business .item-2 .img-wrapper,
.for-business .item-3 .img-wrapper {
  width: 50%;
}
.for-business .content-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.for-business .item-1,
.for-business .item-2 {
  margin-bottom: 30px;
}
.for-business .item-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.for-business .content h2 {
  font-family: 'HelveticaNeue-Medium', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.for-business .heading-content p {
  max-width: 60ch;
  margin: auto;
}
.for-business .content p {
  font-family: 'HelveticaNeue-Medium', sans-serif;
  line-height: 1.5;
  padding-left: 8px;
}

.floating {
  background-color: #000000;
  padding-bottom: 50px;
}
.floating .content {
  position: relative;
  background-color: #ffffff;
  padding: 30px 15px;
  margin-top: -50px;
  border-radius: 4px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  z-index: 10;
}

/* ============ Contact-form ============ */
.contact-form {
  width: 90%;
  margin: 30px auto;
}
.contact-form form label {
  font-family: 'Roboto-Regular', sans-serif;
  background-color: #ffffff;
  padding: 0 10px;
}
.input-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.input-wrapper label {
  position: absolute;
  left: 20px;
  top: -10px;
  z-index: 10;
}
.input-wrapper input {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none;
  padding: 18px 15px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid#700aff;
}
input:focus {
  outline: none;
}
input::-webkit-input-placeholder {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
}
input::-moz-placeholder {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
}
input:-ms-input-placeholder {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
}
input::-ms-input-placeholder {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
}
input::placeholder {
  font-size: 14px;
  opacity: 0.75;
  font-style: italic;
}
button {
  background-color: #700aff;
  color: #ffffff;
  padding: 15px 30px;
  min-width: 180px;
  border-radius: 8px;
  outline: none;
  border: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  cursor: pointer;
}
.form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

/* ============ Form-popup-message ============ */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 1000;
}
.overlay.visible {
  visibility: visible;
  opacity: 1;
}
.popup {
  position: relative;
  font-family: 'Roboto-Regular', sans-serif;
  text-align: center;
  padding: 20px;
  color: #333;
  background: #fff;
  border-radius: 5px;
  width: 90%;
  max-width: 940px;
  margin: 56px auto;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.popup.success {
  background-color: #06d85f;
}
.popup.error {
  background-color: #f65656;
}
.popup h2 {
  margin-bottom: 0.4em;
}
.popup .close {
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 15px;
  font-size: 30px;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.popup .close:hover {
  color: #ffffff;
}
/* ============ Footer-section ============ */
footer {
  padding: 30px 15px;
}
footer .top {
  margin-bottom: 15px;
  border-bottom: 1px solid #bfbfbf;
}
footer .title {
  font-family: 'Roboto-Bold', sans-serif;
  margin-bottom: 15px;
}
footer a {
  font-family: 'Roboto-Regular', sans-serif;
  color: #000000;
  margin-bottom: 15px;
}

/* ============ Media queries ============ */
@media screen and (min-width: 420px) {
  .hero-section .img-wrapper {
    top: 55px;
  }
}
@media screen and (min-width: 480px) {
  .hero-section h1 {
    font-size: 4.5rem;
  }
  .hero-section .img-wrapper {
    top: 65px;
  }
  .hero-section .img-wrapper img {
    width: 300px;
  }
  .content-layout--right h1,
  .content-layout--left h1 {
    font-size: 4.4rem;
  }
  .content-layout--right h2,
  .content-layout--left h2 {
    font-size: 2.4rem;
  }
  .discover-section,
  .get-rewarded-section {
    padding-top: 110px;
  }
  .content-layout--right .img-wrapper img {
    width: 172px;
  }
  .content-layout--right {
    gap: 30px;
  }
  .get-rewarded-section .img-wrapper img {
    width: 306px;
  }
  .play-section {
    padding-top: 60px;
  }
  .section-heading {
    font-size: 3.2rem;
  }
  .for-business .content h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 576px) {
  .hamburger {
    display: none;
  }
  .nav-items {
    position: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 42px;
    background-color: transparent;
    width: auto;
    height: auto;
  }
  .nav-items a {
    border-bottom: 2px solid transparent;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .nav-items a:hover {
    color: #ffffff;
    background-color: transparent;
    border-bottom: 2px solid #ffffff;
  }
  .hero-section {
    padding-top: 150px;
  }
  .hero-section .button img {
    width: auto;
  }
  .hero-section .content-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .content-layout--right p,
  .content-layout--left p {
    max-width: 70ch;
  }
  .hero-section .img-wrapper {
    margin: auto;
  }
  .content-layout--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  .content-layout--right .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 350px;
  }
  .discover-section {
    padding-top: 80px;
  }
  .get-rewarded-section {
    padding-top: 0;
  }
  .get-rewarded-section .content-layout {
    height: 424px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .get-rewarded-section .img-wrapper {
    top: 45px;
  }
  .get-rewarded-section .content {
    text-align: right;
  }
  .play-section {
    padding-top: 20px;
  }
  .for-business .item-1 .img-wrapper {
    width: 80%;
  }
  .floating .content {
    max-width: 546px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 30px;
  }
  .floating {
    padding-bottom: 60px;
  }
  .contact-form {
    margin-top: 0;
    margin-bottom: 0;
  }
  footer {
    padding: 30px;
  }
}
@media screen and (min-width: 640px) {
  .for-business .content-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .for-business .content-layout > div:first-child {
    width: 42%;
  }
  .for-business .content-layout > div:last-child {
    width: 58%;
  }
  .for-business .item-1,
  .for-business .item-2 {
    margin-bottom: 0;
  }
  .for-business .item-2 .img-wrapper {
    padding-right: 30px;
  }
  .for-business .item-3 .img-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
  .for-business .item-2 {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .nav-items {
    gap: 62px;
  }
  .hero-section {
    height: 562px;
  }
  .hero-section .content-layout {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .hero-section .container,
  .discover-section .container,
  .play-section .container {
    max-width: 740px;
  }
  .hero-section .img-wrapper {
    top: 30px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin: initial;
  }
  .hero-section .img-wrapper img {
    width: 334px;
  }
  .hero-section .button {
    text-align: center;
  }
  .hero-section::after {
    width: 65%;
  }
  .content-layout--right .img-wrapper {
    display: initial;
  }
  .content-layout--right .img-wrapper img {
    width: 210px;
  }
  .content-layout--right .content {
    max-width: 390px;
  }
  .get-rewarded-section .container {
    max-width: 850px;
  }
  .get-rewarded-section .img-wrapper {
    top: 25px;
    margin-left: -60px;
  }
  .get-rewarded-section .img-wrapper img {
    width: 340px;
  }
  .for-business .container {
    max-width: 820px;
  }
  .for-business .item-2 {
    margin-top: -25px;
  }
  .for-business .item-3 {
    margin-top: -30px;
  }
  .for-business .item-2 .img-wrapper {
    padding-right: 35px;
  }
  .for-business .item-3 .img-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-section.common {
    height: initial;
  }
  .floating {
    padding-bottom: 80px;
  }
  .floating .container {
    max-width: 740px;
  }
  .floating .content {
    max-width: initial;
  }
  .hero-section.common {
    height: 420px;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
  .container-fluid,
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nav-items {
    gap: 82px;
  }
  .container,
  .hero-section .container,
  .discover-section .container,
  .play-section .container {
    max-width: 960px;
  }
  .hero-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-section h1 {
    font-size: 5.5rem;
  }
  .hero-section h1 sup {
    font-size: 2rem;
  }
  .hero-section .img-wrapper img {
    width: 370px;
  }
  .discover-section .container,
  .play-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .content-layout--right h1,
  .content-layout--left h1 {
    font-size: 5.4rem;
  }
  .content-layout--right h2,
  .content-layout--left h2 {
    font-size: 2.8rem;
  }
  .content-layout--right .content {
    max-width: 540px;
  }
  .content-layout--right {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    gap: 60px;
  }
  .content-layout--right .img-wrapper img {
    width: 238px;
  }
  .get-rewarded-section .container {
    max-width: 1006px;
  }
  .get-rewarded-section .content-layout {
    height: 566px;
  }
  .get-rewarded-section .img-wrapper img {
    width: 450px;
  }
  .get-rewarded-section .img-wrapper {
    top: 35px;
  }
  .for-business .container {
    max-width: 1027px;
  }
  .section-heading {
    font-size: 3.6rem;
  }
  .for-business .content h2 {
    font-size: 2.8rem;
  }
  .heading-content p {
    font-size: 2rem;
  }
  .for-business .item-2 {
    margin-top: -50px;
  }
  .for-business .item-3 {
    margin-top: -65px;
  }
  .for-business .item-2 .img-wrapper {
    padding-right: 70px;
  }
  .for-business .item-3 .img-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
  .floating {
    padding-bottom: 100px;
  }
  .floating .container {
    max-width: 960px;
  }
  .floating .content {
    padding: 100px;
  }
  .hero-section.common {
    height: 420px;
  }
  footer {
    padding: 40px;
  }
  footer .top,
  footer .title,
  footer a {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .container,
  .hero-section .container,
  .discover-section .container,
  .play-section .container {
    max-width: 1088px;
  }
  .content-layout {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 56px;
  }
  .hero-section .container,
  .discover-section .container,
  .play-section .container {
    padding-left: 82px;
    padding-right: 82px;
  }
  .hero-section h1 {
    font-size: 6.5rem;
  }
  .hero-section h1 sup {
    font-size: 2.5rem;
    margin-left: -15px;
  }
  .hero-section .button {
    text-align: center;
  }
  .hero-section .content-layout {
    height: 506px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .hero-section .img-wrapper {
    top: 70px;
  }
  .hero-section .img-wrapper img {
    width: auto;
  }

  .discover-section {
    height: 632px;
    padding-top: 140px;
  }
  .content-layout--right {
    height: 492px;
    gap: 80px;
  }
  .content-layout--right h1,
  .content-layout--left h1 {
    font-size: 6.4rem;
  }
  .content-layout--right h2,
  .content-layout--left h2 {
    font-size: 3.2rem;
  }
  .content-layout--left .img-wrapper {
    top: 40px;
  }
  .discover-section .content {
    max-width: 457px;
  }
  .content-layout--right .img-wrapper img {
    width: auto;
  }
  .get-rewarded-section .container {
    max-width: 1088px;
  }
  .get-rewarded-section .container {
    padding-left: 41px;
    padding-right: 41px;
  }
  .get-rewarded-section .img-wrapper {
    margin-left: -22px;
  }
  .get-rewarded-section .img-wrapper {
    top: 50px;
  }
  .get-rewarded-section .content-layout {
    height: 588px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .get-rewarded-section {
    padding-top: 0;
  }
  .play-section {
    height: 661px;
    padding-top: 80px;
  }
  .play-section .content {
    max-width: 478px;
  }
  .for-business .container {
    max-width: 1088px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .section-heading {
    font-size: 4rem;
  }
  .heading-content p {
    font-size: 2.4rem;
  }
  .for-business .content h2 {
    font-size: 3.2rem;
  }
  .hero-section.common .content-layout {
    height: initial;
  }
  .hero-section.common {
    padding-top: 100px;
  }
  footer {
    padding: 50px;
  }
  footer .top,
  footer .title,
  footer a {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .container-fluid {
    max-width: 1572px;
    margin: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}
