:root {
  --font-main: monospace;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #1d1d1d;
  --main: #ffffff;
  --black: #000000;
  --white: #ffffff;

--orange: #56ab2f;
--l-orange: #a8e063;
--gradient: linear-gradient(45deg, #56ab2f, #a8e063);
--second-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);


  --green: #236f71;
  --l-green: #1ca976;
  --dark: #1d1d1d;
  --hover: #a76503;
  --active: #a76503
}

* {

  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

textarea {
  resize: none
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}


picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}



.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.tx-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.logo img {
  width: 140px;
  height: 80px;
}

@media (any-hover:hover) {
  .logo:hover {
    opacity: .5
  }
}

.logo:focus-visible {
  opacity: .5
}

.logo:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}


.tx-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1
}

.but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
  background-color: var(--l-orange);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 55px;
  min-width: 160px;
  min-height: 50px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.but_gradient {
  background: var(--gradient)
}

@media (max-width:600px) {
  .but {
    font-size: 14px
  }
}

@media (any-hover:hover) {
  .but:hover {
    opacity: .5
  }
}

.but:focus-visible {
  opacity: .5
}

.but:active {
  opacity: .5
}

.circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px
}

.circle::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--white);
  margin-top: 9px
}

.tx-40-16 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-40-16 {
    font-size: 32px
  }
}

@media (max-width:991px) {
  .tx-40-16 {
    font-size: 24px
  }
}

@media (max-width:600px) {
  .tx-40-16 {
    font-size: 16px
  }
}

.tx-main {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-main {
    font-size: 18px
  }
}

@media (max-width:991px) {
  .tx-main {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .tx-main {
    font-size: 14px
  }
}

.tx-20 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

.tx-20-16 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%
}

@media (max-width:991px) {
  .tx-20-16 {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .tx-20-16 {
    font-size: 16px
  }
}

.tx-40-20 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1
}

@media (max-width:991px) {
  .tx-40-20 {
    font-size: 30px
  }
}

@media (max-width:600px) {
  .tx-40-20 {
    font-size: 20px
  }
}

.color-l-orange {
  color: var(--l-orange)
}

.color-orange {
  color: var(--orange)
}

.time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  padding: 16px;
  min-width: 140px;
  min-height: 140px;
  background-color: var(--l-green);
  margin-bottom: 10px;
}

@media (max-width:1220px) {
  .time {
    min-width: 100px;
    min-height: 100px
  }
}

@media (max-width:991px) {
  .time {
    min-width: 80px;
    min-height: 80px
  }
}

@media (max-width:600px) {
  .time {
    min-width: 50px;
    min-height: 50px
  }
}

.num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  padding: 10px;
  width: 100px;
  height: 100px;
  background-color: var(--l-orange)
}

@media (max-width:600px) {
  .num {
    width: 80px;
    height: 80px
  }
}

.p-40-20 {
  padding-top: 40px;
  padding-bottom: 40px
}

@media (max-width:991px) {
  .p-40-20 {
    padding-top: 30px;
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .p-40-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
}

.mb-30:not(:last-child) {
  margin-bottom: 30px
}

.input {
  display: block;
  border-radius: 16px;
  padding: 0 24px;
  width: 100%;
  height: 55px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #181818;
  font-family: CormorantGaramond;
  border: 2px solid transparent;
  background-color: var(--white);
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

@media (any-hover:hover) {
  .input:hover {
    border-color: var(--hover)
  }
}

.input:focus-visible {
  border-color: var(--hover)
}

.faq-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--l-orange);
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out;
  transition: color .3s ease-in-out, background-color .3s ease-in-out
}

.faq-btn svg {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.faq-btn.active {
  background-color: var(--white);
  color: var(--orange)
}

.faq-btn.active svg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

@media (any-hover:hover) {
  .faq-btn:hover {
    color: var(--hover)
  }
}

.faq-btn:focus-visible {
  color: var(--hover)
}

.faq-btn:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.mb-16:not(:last-child) {
  margin-bottom: 16px
}

.mb-8:not(:last-child) {
  margin-bottom: 8px
}

.mb-30-10:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .mb-30-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-30-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-40-10:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:1220px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 30px
  }
}

@media (max-width:991px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-40-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-4:not(:last-child) {
  margin-bottom: 4px
}

.mb-50-10:not(:last-child) {
  margin-bottom: 50px
}

@media (max-width:1220px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 30px
  }
}

@media (max-width:991px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .mb-50-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.mb-20:not(:last-child) {
  margin-bottom: 20px
}

.mb-16-10:not(:last-child) {
  margin-bottom: 16px
}

@media (max-width:600px) {
  .mb-16-10:not(:last-child) {
    margin-bottom: 10px
  }
}

.w100 {
  min-width: 0;
  width: 100%
}

.relative-z2 {
  position: relative;
  z-index: 2
}

.word-break {
  word-break: break-all
}

.m-auto {
  margin-left: auto;
  margin-right: auto
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--brown)
}

.terms {
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  background-image: url("../img/hero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .terms {
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .terms {
    padding-bottom: 20px;
  }
}

.terms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(.63%, rgba(29, 29, 29, 0)), color-stop(16.83%, rgba(29, 29, 29, .27)), color-stop(42.31%, rgba(29, 29, 29, .6))), rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, rgba(29, 29, 29, 0) .63%, rgba(29, 29, 29, .27) 16.83%, rgba(29, 29, 29, .6) 42.31%), rgba(0, 0, 0, .4);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  z-index: 1
}

.terms h1 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700
}

@media (max-width:991px) {
  .terms h1 {
    font-size: 30px
  }
}

@media (max-width:600px) {
  .terms h1 {
    font-size: 20px
  }
}

.terms h1:not(:last-child) {
  margin-bottom: 24px
}

.terms h2 {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

.terms h2:not(:last-child) {
  margin-bottom: 24px
}

.terms p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400
}

.terms p:not(:last-child) {
  margin-bottom: 24px
}

.terms ul:not(:last-child) {
  margin-bottom: 24px
}

.terms li {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400
}

.terms li:not(:last-child) {
  margin-bottom: 24px
}

.funwayforward-header {
  padding: 17px 0
}

@media (max-width:991px) {
  .funwayforward-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5
  }
}

.funwayforward-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px
}

@media (max-width:991px) {
  .funwayforward-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
  }
}

@media (max-width:600px) {
  .funwayforward-header__menu {
    padding: 80px 30px 30px 30px
  }
}

.funwayforward-header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.funwayforward-header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent
}

@media (max-width:991px) {
  .funwayforward-header__exit-menu {
    display: block;
    top: 30px;
    right: 30px
  }
}

@media (max-width:600px) {
  .funwayforward-header__exit-menu {
    top: 15px;
    right: 15px
  }
}

.funwayforward-header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--l-orange);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.funwayforward-header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--l-orange);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px
}

@media (max-width:991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px
  }
}

@media (max-width:991px) {
  .nav__list_footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px 32px
  }
}

.nav__link {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  display: none;
  -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;
  position: relative;
  width: 24px;
  height: 18px;
  background-color: transparent
}

@media (max-width:991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 8px
}

.funwayforward-hero__head {
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  background-image: url("../img/hero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .funwayforward-hero__head {
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .funwayforward-hero__head {
    padding-bottom: 20px;
  }
}

.funwayforward-hero__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(.63%, rgba(29, 29, 29, 0)), color-stop(16.83%, rgba(29, 29, 29, .27)), color-stop(42.31%, rgba(29, 29, 29, .6))), rgba(0, 0, 0, .4);
  background: linear-gradient(90deg, rgba(29, 29, 29, 0) .63%, rgba(29, 29, 29, .27) 16.83%, rgba(29, 29, 29, .6) 42.31%), rgba(0, 0, 0, .4);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  z-index: 1
}

.funwayforward-hero__top {
  margin: 20px auto;
  max-width: 800px;
  width: 100%
}

@media (max-width:600px) {
  .funwayforward-hero__link {
    min-width: 260px;
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
    font-size: 14px
  }
}

.funwayforward-timer {
  max-width: 772px;
  margin: 20px auto;
  width: 100%;
  border-radius: 10px;
  padding: 32px 50px;
  background-color: var(--green)
}

@media (max-width:1220px) {
  .funwayforward-timer {
    max-width: 550px
  }
}

@media (max-width:991px) {
  .funwayforward-timer {
    max-width: 450px
  }
}

@media (max-width:600px) {
  .funwayforward-timer {
    padding: 32px 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px
  }
}

@media (max-width:359px) {
  .funwayforward-timer {
    padding: 32px 16px
  }
}

.funwayforward-timer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px
}

.popup-auth-send {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: auto;
  background-color: rgba(0, 0, 0, .4)
}

.popup-auth-send.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.popup-auth-send__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.popup-auth-send__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -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;
  overflow: auto;
  max-width: 737px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  border-radius: 30px;
  padding: 32px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup-auth-send__content {
    padding: 24px 16px
  }
}

.popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: auto;
  background-color: rgba(26, 41, 28, .7)
}

.popup__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.popup__body {
  overflow: auto;
  max-width: 675px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  border-radius: 10px;
  padding: 32px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup__body {
    width: 95%;
    padding: 24px 16px
  }
}

.popup__form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.popup-cookie {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 4;
  border-radius: 10px;
  padding: 32px;
  width: 500px;
  background-color: var(--dark)
}

@media (max-width:991px) {
  .popup-cookie {
    padding: 24px 16px
  }
}

@media (max-width:600px) {
  .popup-cookie {
    width: 100%
  }
}

.popup-cookie.disabled {
  display: none
}

.popup-cookie__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 16px 10px
}

@media (max-width:600px) {
  .popup-cookie__buttons {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.funwayforward-age {
  padding: 6px 0;
  background-color: var(--l-orange)
}

.funwayforward-age__content {
  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;
  gap: 10px
}

.funwayforward-age__span {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.funwayforward-dare {
  background-color: var(--orange)
}

.funwayforward-dare__icon {
  width: 100%;
  max-width: 300px;
  height: 197px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.funwayforward-fortune {
  background: var(--gradient);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.funwayforward-fortune::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1
}

.funwayforward-fortune__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 100px
}

@media (max-width:1220px) {
  .funwayforward-fortune__list {
    gap: 60px
  }
}

@media (max-width:991px) {
  .funwayforward-fortune__list {
    gap: 40px
  }
}

@media (max-width:600px) {
  .funwayforward-fortune__list {
    gap: 20px
  }
}

.funwayforward-fortune__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  width: 100%
}

@media (max-width:600px) {
  .funwayforward-fortune__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.funwayforward-fortune__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid var(--l-orange);
  border-radius: 10px;
  padding: 10px;
  width: 200px;
  height: 200px;
  background: var(--gradient);
  margin-left: auto;
  margin-right: auto
}

@media (max-width:1220px) {
  .funwayforward-fortune__icon {
    width: 160px;
    height: 160px
  }
}

@media (max-width:991px) {
  .funwayforward-fortune__icon {
    width: 120px;
    height: 120px
  }
}

@media (max-width:600px) {
  .funwayforward-fortune__icon {
    width: 64px;
    height: 64px
  }
}


.funwayforward-fortune__icon span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 50%
}

.funwayforward-fortune__icon span.first {
  background-image: url("../img/icons/icon-decorative-1.webp");
}

.funwayforward-fortune__icon span.second {
  background-image: url("../img/icons/icon-decorative-2.webp");
}

.funwayforward-how {
  background-color: var(--orange)
}

.funwayforward-how__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 77px
}

@media (max-width:1220px) {
  .funwayforward-how__list {
    gap: 20px 40px
  }
}

@media (max-width:991px) {
  .funwayforward-how__list {
    gap: 20px
  }
}

@media (max-width:600px) {
  .funwayforward-how__list {
    gap: 10px
  }
}

.funwayforward-how__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  width: 100%
}


.funwayforward-faq__list {
  max-width: 900px;
  width: 100%
}

.funwayforward-faq__item {
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--white)
}

.funwayforward-faq__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.funwayforward-faq__button {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.funwayforward-faq__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.funwayforward-faq__bottom {
  -webkit-transition: height .3s ease-in-out;
  transition: height .3s ease-in-out
}

.funwayforward-faq__texts {
  padding-top: 10px
}

.funwayforward-footer {
  padding-top: 60px;
  padding-bottom: 40px;
  line-height: 1.3;
}

@media (max-width:991px) {
  .funwayforward-footer {
    padding-top: 40px
  }
}

.funwayforward-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 45px
}

.funwayforward-footer__links a {
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .funwayforward-footer__links a:hover {
    opacity: .5
  }
}

.funwayforward-footer__links a:focus-visible {
  opacity: .5
}

.funwayforward-footer__links a:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.funwayforward-footer__links li:first-child {
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.funwayforward-lo {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  background-image: url("../img/hero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (max-width:991px) {
  .funwayforward-lo {
    padding-top: 80px;
    padding-bottom: 60px
  }
}

@media (max-width:600px) {
  .funwayforward-lo {
    padding-bottom: 40px;
  }
}

.funwayforward-lo__item {
  border-radius: 40px;
  padding: 50px 40px;
  background: var(--second-gradient)
}

@media (max-width:1220px) {
  .funwayforward-lo__item {
    padding: 32px 16px
  }
}

@media (max-width:991px) {
  .funwayforward-lo__item {
    padding: 24px 16px;
    border-radius: 30px
  }
}

@media (max-width:600px) {
  .funwayforward-lo__item {
    padding: 16px;
    border-radius: 20px
  }
}

.funwayforward-lo__item_flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: minmax(0, 562px) 40px minmax(0, 503px);
  grid-template: auto/minmax(0, 562px) minmax(0, 503px);
  gap: 20px 40px
}

@media (max-width:991px) {
  .funwayforward-lo__item_flex {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.funwayforward-lo__el {
  max-width: 800px;
  width: 100%
}

.form__button {
  border-radius: 16px
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: var(--second-gradient);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-orb:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}

.floating-orb:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 80%;
  animation-delay: 2s;
}

.floating-orb:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(120deg);
  }

  66% {
    transform: translateY(15px) rotate(240deg);
  }
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--gradient);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0 40px;
  color: #fff;
  position: relative;
          background: 
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url("../img/hero.webp") center/cover no-repeat;
}


.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: var(--orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 217, 61, 0.3));
  }

  to {
    filter: drop-shadow(0 0 20px rgba(255, 217, 61, 0.6));
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.play-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.2rem;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.play-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Timer Section */
.timer-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin: 50px auto 10px;
  padding: 40px;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.timer-item {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd93d;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.timer-label {
  color: #fff;
  font-size: 1rem;
  opacity: 0.8;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd93d;
  margin-bottom: 10px;
}

.stat-label {
  color: #fff;
  font-size: 1.1rem;
}

/* How to Play */
.how-to-play {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step-card {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto 20px;
}

.step-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Winner Stories */
.winners-section {
  padding: 80px 0;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.winner-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.winner-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd93d;
  margin-bottom: 10px;
}

.winner-story {
  font-style: italic;
  opacity: 0.9;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.faq-list {
  max-width: 800px;
  margin: 50px auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 20px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .timer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
  }
}