.plinko__img,
.play__img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #fff;
}

.plinko__list,
.footer__icons,
.faq__list {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.page__section--faq::before,
.page__section--play::after,
.page__section--play::before,
.page__section--plinko::after,
.page__section--plinko::before,
body::before {
  width: 286px;
  height: 286px;
  background: rgb(39, 153, 179);
  -webkit-filter: blur(90px);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

/* base */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #19225B;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: -26px;
  left: -101px;
  z-index: 0;
  pointer-events: none;
}

h2,
h3 {
  text-align: center;
  line-height: 41px;
  margin: 0;
}

h2 span,
h3 span {
  position: relative;
}

h2 span::before,
h2 span::after,
h3 span::before,
h3 span::after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/ball.png) no-repeat 50% 50%;
  background-size: contain;
}

h2 span::before,
h3 span::before {
  left: -60px;
}

h2 span::after,
h3 span::after {
  right: -60px;
}

h2 {
  font-size: 33px;
}

h3 {
  font-size: 34px;
}

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

.container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

.page__header {
  background: url(../img/header-bg.png) no-repeat 0 0;
  background-size: 360px auto;
  position: relative;
  z-index: 1;
}

.page__section {
  position: relative;
}

.page__section--plinko {
  background: url(../img/plinko.png) no-repeat 50% -65px;
  background-size: 659px auto;
  margin-bottom: 142px;
}

.page__section--plinko::before,
.page__section--plinko::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.page__section--plinko::before {
  top: 800px;
  left: -128px;
}

.page__section--plinko::after {
  top: 310px;
  right: -88px;
}

.page__section--play {
  margin-bottom: 170px;
}

.page__section--play::before,
.page__section--play::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.page__section--play::before {
  top: -90px;
  right: -108px;
}

.page__section--play::after {
  top: 345px;
  left: -128px;
}

.page__section--faq {
  margin-bottom: 99px;
}

.page__section--faq::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -67px;
  right: -143px;
}

.page__footer {
  position: relative;
  padding-bottom: 24px;
}

.page__footer::before,
.page__footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 354px;
}

.page__footer::before {
  z-index: 1;
  background: url(../img/bg-footer.png) repeat-x 50% 100%;
  background-size: auto 354px;
}

/* .helpers */

.ls-clear {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.d-none {
  display: none !important;
}

/* .btn-top */

.btn-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 53px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/btn-top-center.png) repeat-x;
  text-decoration: none;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  color: #FD9800;
  cursor: pointer;
  padding: 0 21px;
  margin-left: auto;
  margin-right: 69px;
  margin-bottom: -4px;
}

.btn-top:hover {
  background: url(../img/btn-top-hv-center.png) repeat-x;
  color: #fff;
}

.btn-top:hover::before {
  background: url(../img/btn-top-hv-left.png) no-repeat 100% 50%;
}

.btn-top:hover::after {
  background: url(../img/btn-top-hv-right.png) no-repeat 100% 50%;
}

.btn-top::before,
.btn-top::after {
  content: "";
  width: 93px;
  height: 53px;
  position: absolute;
  top: 0;
}

.btn-top::before {
  background: url(../img/btn-top-left.png) no-repeat 100% 50%;
  left: -40px;
}

.btn-top::after {
  background: url(../img/btn-top-right.png) no-repeat 100% 50%;
  right: -40px;
}

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

/* .btn */

.btn {
  display: inline-block;
  text-align: center;
  min-width: 270px;
  font-size: 26px;
  line-height: 1;
  background: #FF9700 url(../img/btn-bg.png) no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 18px 16px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 0 18px #FF9700;
  -webkit-box-shadow: 0 0 30px #FFCD00;
  box-shadow: 0 0 30px #FFCD00;
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}

.btn:hover {
  background: #E04193 url(../img/btn-bg-hover.png) no-repeat 50% 50%;
  -webkit-box-shadow: 0 0 30px #E04193;
  box-shadow: 0 0 30px #E04193;
}

/* .faq */

.faq {
  position: relative;
  z-index: 3;
}

.faq__title {
  font-size: 42px;
  margin-bottom: 39px;
}

.faq__list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3px;
  padding-right: 3px;
}

.faq__item {
  padding-right: 6px;
}

.faq__item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 34px;
  border-bottom: 3px solid #fff;
}

.faq__question {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* .footer */

.footer {
  position: relative;
  z-index: 10;
}

.footer p {
  margin: 0;
}

.footer__icons {
  margin-top: 0;
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__icons-item {
  margin: 0 12px;
}

.footer__icons-item img {
  height: 24px;
}

.footer__icons-item--sm img {
  height: 12px;
}

.footer__text {
  color: #999;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
}

/* .header */

.header {
  position: relative;
  z-index: 2;
  padding: 39px 0 0;
}

.header__top {
  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;
  margin-bottom: 8px;
  padding-left: 22px;
  padding-right: 5px;
}

.header__logo {
  width: 105px;
  height: auto;
}

.header__banner {
  background: url(../img/banner-bg.png) no-repeat 50% 0;
  background-size: 255px auto;
  padding-top: 303px;
}

.header__body {
  text-align: center;
  font-weight: 900;
  font-size: 33px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.header__body span {
  color: #FDB614;
}

.header__btn {
  text-align: center;
}

/* .play */

.play {
  position: relative;
  z-index: 1;
}

.play p {
  padding: 0 9px;
  margin: 0;
}

.play p:not(:last-child) {
  margin-bottom: 38px;
}

.play__title {
  margin-bottom: 44px;
}

.play__img {
  margin: 0 10px 36px 8px;
}

.play__body {
  margin-bottom: 76px;
}

.play__btn {
  text-align: center;
}

/* .plinko */

.plinko {
  position: relative;
  padding-top: 232px;
  z-index: 1;
}

.plinko__subtitle {
  margin-bottom: 9px;
  padding-right: 9px;
}

.plinko__text {
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 147px;
  padding-left: 8px;
  padding-right: 8px;
}

.plinko__list {
  margin-bottom: 50px;
}

.plinko__item {
  padding-left: 8px;
}

.plinko__item:not(:last-child) {
  margin-bottom: 110px;
}

.plinko__img {
  margin: 0 10px 26px 8px;
}

.plinko__btn {
  text-align: center;
}

/* .select-lang */

.select-lang {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding-top: 12px;
}

.select-lang__top {
  position: relative;
  z-index: 1;
}

.select-lang__form {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.select-lang__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-lang__current img:first-child {
  margin-right: 10px;
  width: 30px;
  height: auto;
}

.select-lang__list {
  position: absolute;
  top: -1000px;
  opacity: 0;
  pointer-events: none;
  right: 0;
  border-radius: 8px;
  -webkit-transition: all ease-in-out 300ms 300ms;
  -o-transition: all ease-in-out 300ms 300ms;
  transition: all ease-in-out 300ms 300ms;
}

.select-lang.opened .select-lang__list {
  top: 46px;
  opacity: 1;
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  pointer-events: all;
  background-color: rgba(33, 33, 33, 0.3);
}

.select-lang__list-item {
  padding: 8px 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity ease-in-out 300ms;
  -o-transition: opacity ease-in-out 300ms;
  transition: opacity ease-in-out 300ms;
}

.select-lang.opened .select-lang__list-item {
  opacity: 1;
  -webkit-transition: opacity ease-in-out 300ms 300ms;
  -o-transition: opacity ease-in-out 300ms 300ms;
  transition: opacity ease-in-out 300ms 300ms;
}

.select-lang__list-item:hover img {
  -webkit-box-shadow: 0 0 8px #fff;
  box-shadow: 0 0 8px #fff;
  border-radius: 50%;
}

.select-lang__list-item-img {
  width: 30px;
  min-width: 30px;
  height: 30px;
}

@media (min-width: 992px) {
  .page__section--faq::before,
  .page__section--play::after,
  .page__section--play::before,
  .page__section--plinko::after,
  .page__section--plinko::before,
  body::before {
    width: 808px;
    height: 808px;
    -webkit-filter: blur(300px);
    filter: blur(300px);
  }

  /* base $lg */

  body::before {
    top: -31px;
    left: -286px;
  }

  body {
    font-size: 24px;
  }

  h2,
  h3 {
    text-align: left;
    line-height: 65px;
    font-weight: 600;
  }

  h2 span::after,
  h3 span::after {
    display: none;
  }

  h2 {
    padding-left: 87px;
  }

  h3 {
    padding-left: 87px;
  }

  .page__section--plinko::before {
    top: 1090px;
    left: -366px;
  }

  .page__section--plinko::after {
    top: 0;
    right: -418px;
  }

  .page__section--plinko {
    background-position: calc(50% + 10px) -70px;
    /* background-size: 920px auto; */
    background-size: 736px auto;
    margin-bottom: 110px;
  }

  .page__section--play::before {
    top: -570px;
    right: -404px;
  }

  .page__section--play::after {
    top: 80px;
    left: -343px;
  }

  .page__section--play {
    margin-bottom: 110px;
  }

  .page__section--faq::before {
    display: none;
  }

  .page__section--faq {
    /* margin-bottom: 148px; */
    margin-bottom: 118px;
  }

  .page__footer {
    /* padding-bottom: 97px; */
    padding-bottom: 77px;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* .btn $lg */

  .btn {
    /* font-size: 30px; */
    font-size: 24px;
    /* padding: 22px 91px; */
    padding: 17px 72px;
  }

  /* .faq $lg */

  .faq__title {
    text-align: center;
    padding-left: 15px;
  }

  .faq__title span::before {
    display: none;
  }

  .faq__list {
    padding-left: 9px;
  }

  .faq__item:not(:last-child) {
    /* padding-bottom: 16px; */
    padding-bottom: 12px;
    /* margin-bottom: 43px; */
    margin-bottom: 34px;
  }

  /* .footer $lg */

  .footer__icons {
    /* margin-bottom: 51px; */
    margin-bottom: 40px;
  }

  .footer__icons-item {
    /* margin: 0 28px; */
    margin: 0 22px;
  }

  .footer__icons-item img {
    /* height: 56px; */
    height: 44px;
  }

  .footer__icons-item--sm img {
    /* height: 27px; */
    height: 21px;
  }

  .footer__text {
    font-size: 12px;
    line-height: 14px;
    max-width: 930px;
    margin: 0 auto;
  }

  /* .header $lg */

  .header {
    padding: 0;
  }

  .header__top {
    padding-left: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header__logo {
    /* width: 210px; */
    width: 168px;
  }

  .header__banner {
    background: url(../img/banner-bg-lg.png) no-repeat 100% 100%;
    /* background-size: 400px auto; */
    background-size: 320px auto;
    /* padding-top: 209px; */
    padding-top: 167px;
    /* padding-left: 10px; */
    padding-left: 8px;
    /* padding-right: 410px; */
    padding-right: 328px;
    /* padding-bottom: 19px; */
    padding-bottom: 15px;
  }

  .header__body {
    text-align: left;
    /* margin-bottom: 52px; */
    margin-bottom: 41px;
  }

  .header__btn {
    text-align: left;
  }

  /* .play $lg */

  .play p:not(:last-child) {
    /* margin-bottom: 46px; */
    margin-bottom: 36px;
  }

  .play__title {
    /* margin-bottom: 15px; */
    margin-bottom: 12px;
  }

  .play__img {
    /* margin: 0 8px 36px 8px; */
    margin: 0 6px 28px 6px;
  }

  .play__body {
    /* margin-bottom: 35px; */
    margin-bottom: 28px;
  }

  /* .plinko $lg */

  .plinko {
    padding-top: 335px;
  }

  .plinko__subtitle {
    margin-bottom: 16px;
  }

  .plinko__text {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 100px;
  }

  .plinko__list {
    /* margin-bottom: 63px; */
    margin-bottom: 50px;
  }

  .plinko__item:not(:last-child) {
    margin-bottom: 60px;
  }

  .plinko__item-text {
    padding-right: 20px;
  }

  .plinko__img {
    margin: 0 8px 60px 8px;
  }

  /* .select-lang $lg */

  .select-lang {
    padding-top: 0;
    margin-bottom: 8px;
  }

  .select-lang__current {
    padding-right: 3px;
  }
}

@media (min-width: 1200px) {
  /* base $xl */

  body {
    /* font-size: 33px; */
    font-size: 26px;
  }

  /* h2 span::before,
  h3 span::before {
    width: 93px;
    height: 93px;
    left: -102px;
  } */

  h2 {
    /* font-size: 54px; */
    font-size: 43px;
    /* padding-left: 90px; */
    padding-left: 72px;
  }

  /* h3 {
    font-size: 54px;
  } */

  .page__header {
    background: url(../img/header-bg-lg.png) no-repeat 0 0;
    /*  */
    background-size: 741px auto;
  }

  .page__section--plinko {
    /* background-position: calc(50% + 10px) 12px; */
    background-position: calc(50% + 8px) -88px;
    /* background-size: 1283px auto; */
    background-size: 1026px auto;
    /* margin-bottom: 264px; */
    margin-bottom: 110px;
  }

  .page__section--play::after {
    /* top: 500px; */
    top: 400px;
    /* left: -343px; */
    left: -274px;
  }

  .page__section--play {
    /* margin-bottom: 250px; */
    margin-bottom: 120px;
  }

  /* .faq $xl */

  .faq__title {
    /* font-size: 54px; */
    font-size: 43px;
    /* line-height: 65px; */
    line-height: 52px;
    /* margin-bottom: 63px; */
    margin-bottom: 50px;
  }
  
  .faq__question {
    /* font-size: 54px; */
    font-size: 38px;
    /* line-height: 65px; */
    line-height: 52px;
    /* margin-bottom: 21px; */
    margin-bottom: 16px;
  }

  /* .header $xl */

  .header__banner {
    /* background-size: 562px auto; */
    background-size: 449px auto;
    /* padding-right: 620px; */
    padding-right: 496px;
    /* margin-right: -90px; */
    margin-right: -72px;
  }

  .header__body {
    /* line-height: 87px; */
    line-height: 69px;
    /* font-size: 74px; */
    font-size: 59px;
    letter-spacing: -0.5px;
  }

  /* .play $xl */

  .play__img {
    /* margin: 0 -9px 36px 8px; */
    margin: 0 -7px 28px 6px;
  }

  /* .plinko $xl */

  .plinko {
    /* padding-top: 583px; */
    padding-top: 400px;
  }

  .plinko__text {
    /* font-size: 33px; */
    font-size: 26px;
    /* margin-bottom: 242px; */
    margin-bottom: 120px;
  }

  /* .plinko__item:not(:last-child) {
    margin-bottom: 165px;
    margin-bottom: 132px;
  } */

  .plinko__img {
    /* margin: 0 -9px 80px 8px; */
    margin: 0 -7px 64px 6px;
  }
}