@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"), url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
        url('Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
        url('Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

:root {
  --main-bg-color: #151516;
  --font-family: "Inter", sans-serif;
  --second-family: "Rubik", sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  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%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*--------------------*/
/* ---------------- */
::selection {
  background: #F2D669;
  /* Цвет фона */
  color: #fff;
  /* Цвет текста */
}

body {
  color: #fff;

  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  background: #060606;
}

body::-webkit-scrollbar {
  width: 8px;
  /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
  background: №202020;
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #F2D669;
  /* цвет бегунка */
  border-radius: 20px;
  /* округлось бегунка */
  border: 3px solid #202020;
  /* отступ вокруг бегунка */
}

h1 {
  font-size: 34px;
  line-height: 44px;
}

h2 {
  font-size: 36px;
  line-height: 48px;
}

p {
  font-size: 18px;
  line-height: 25px;
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
 
}
.container {
  position: relative;
  margin: 0 auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 14px;
  margin: auto;
}
.header__logo {
  width: auto;
  max-height: 40px;
}

.header__btns {
  display: flex;
  gap: 19px;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  border-radius: 8px;
  border: 1px solid var(--button-border-main, #E1AE36);
  background: #E1AE36;
  color: var(--button-dark-text, #262626);
  font-family: "Rubik";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-yellow:hover {
  background-color: #efc255;
  border-color: #efc255;
}

.btn-red {
  border-radius: 8px;
  border: 1px solid var(--button-border-accent, #751010);
  background: var(--button-accent, #6C1010);
  color: #fff;
  font-family: "Rubik";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-red:hover {
  background-color: #861717;
  border-color: #861717;
}

.btn-yellow-big {
  color: var(--button-dark-text, #262626);
  font-family: "Rubik";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid var(--Accents-White, #FFF);
  background: var(--LP-gradient-button, linear-gradient(90deg, #E2C862 0%, #E2C862 30%, #F5F0CC 65%, #E2C862 100%));

  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin-left: 7px;
  margin-top: 40px;
  padding: 16px 24px;
}

.btn-yellow-big span {
  z-index: 4;
  position: relative;
}

.btn-yellow-big:after {
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  border-radius: 16px;
  background: rgba(210, 163, 44, 0.35);
  position: absolute;
  left: -9px;
  top: -9px;
  transition: 0.3s all;
}

.btn-yellow-big:hover:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.main {
  background-color: #000000;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.bg-coin {
  position: absolute;
  z-index: 0;
  width: 100%;
}

.main__row {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url("../img/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  width: 100%;
  min-height: 800px;
  gap: 32px;
  padding-left: 5vw;
  padding-right: 5vw;
}
.main__row .container {
  display: flex;
  height: 100%;
}
.main__text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woman {
  width: auto;
  height: auto;
  z-index: 1;
}

.main__text-x {
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffe999 0%, #b28c00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main__text-block {
  background-color: rgba(0, 0, 0, 0.70);
  border: 2px solid #EAB308;
  border-radius: 7%;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  font-style: normal;
  line-height: normal;
  display: block;
}

span.dupa {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 33px;
  text-align: center;
  color: #fff;
  font-style: normal;
  line-height: normal;
  margin-top: 4px;
  display: block;
}

.card__header {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 23px;
  text-align: center;
  color: #fff;
}

.card__text {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 68px;
  text-align: center;
  color: #eab308;
}

.main__text-btn {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #1e1e1e;
}

.second_section {
  background-color: #181818;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
  z-index: 1;
  position: relative;
}

.section__heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 33px;
  text-align: center;
  color: #fff;
}

.section__heading-color {
  color: #EAB308;
}

.bonuses {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-left: 160px;
  padding-right: 160px;
  flex-wrap: wrap;
}

.bonus {
  border: 2px solid #EAB308;
  border-radius: 16px;
  width: 256px;
}

.bonus__heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 27px;
  color: #fff;
  padding-bottom: 8px;
}

.bonus__text {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
}

.bonus__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  color: #fff;
}

.btn__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #fff;
  padding-top: 16px;
}

.pic_gift {
  padding-top: 24px;
  padding-bottom: 16px;
  padding-left: 16px;
}

.second_section-btn {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #1e1e1e;
}

.woman-mobile {
    display: none;
  }

.main-text_desc {
  color: var(--Accents-White, #FFF);
  /* Desktop/H2 Desktop */
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: var(--Shark-950-Base, #1E1E1E);
  font-family: Rubik;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


@media screen and (max-width: 991px) {

  .main__row {
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  }  

  .btn-red {
    font-size: 14px;
  }

  .btn-yellow {
    font-size: 14px;
  }

  .btn-yellow-big {
    font-size: 15px;
  }

  .header__logo img {
    width: 124px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main__text h2 {
    font-size: 38px;
  }

  .main__text-block {
    margin-bottom: 40px;
    text-align: center;
  }

  .bonuses {
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 768px) {
  body {
    background: var(--main-bg-color);
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main {
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    background-color: #222020;
    background-image: url('../img/main-bg.jpg');
    background-repeat: no-repeat;
  }

  .main__text-block {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .woman-mobile {
    display: block;
    padding-top: 100px;
    width: 80vw;
  }

  .main:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7);*/
  }

  .main__row {
    background: none;
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
  }

  .main__text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: 0;
    width: 100%;
    margin-bottom: 30px;
    flex-basis: 100%;
  }

  .card__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #eab308;
    line-height: 120%;
  }

  .woman {
    display: none;
  }

  .second_section {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .btn__description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding-top: 16px;
}

  .section__heading {
    max-width: 328px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 27px;
    text-align: center;
    color: #fff;
  }

  .bonuses {
    flex-direction: column;
    gap: 16px;
  }  

  .bonus {
    width: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main__text-block h3 {
    font-size: 5.5vw;
    text-align: right;
    -webkit-text-stroke: 1px #000000;
    text-stroke: 1px #000000;
  }

  .main__text-block span {
    margin-top: 8px;
  }
  .main__text-block span.dupa {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 27px;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
  }
 
  .main__text-block.bottom {
    padding-top: 10px;
  }

  .main__text-block.bottom p,
  .main__text-block.bottom h2 {
    font-size: 16px;
    line-height: 114%;
    /* 18.24px */
    text-transform: uppercase;
    color: #D2A32C;
  }

  .main__text-block {
    margin-top: 0px;
    margin-bottom: 0px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .btn-yellow-big {
    font-size: 15px;
    margin: 0;
    /* padding: 19px 53px; */
    width: 100%;
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }

  .second_section .btn-yellow-big {
    width: 80%;
  }

  .header__btns {
    width: 100%;
  }

  .rotire .btn-yellow-big {
    width: 100%;
  }

  .btn-red {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  /*.btn-red span {
    display: none;
  }*/
  .btn-yellow {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  /*.btn-yellow span {
    display: none;
  }*/
  .header {
    
    z-index: 4;
   
  }
  .header .container {
    padding: 14px 15px;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }
  .header__logo img {
    width: 128px;
  }
}

@media screen and (max-width: 375px) {
  .main {
    /*   height: 700px;*/
  }
}

@media screen and (min-width: 1024px) {
  .body {
    max-width: 62.25rem;
    margin: 0 auto;
    width: 100%;
  }
}

.container_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.footer-providers {
  padding: 1rem 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-providers {
    padding: 1.875rem 0.75rem 2.5rem;
  }
}

.footer-providers a {
  width: 5.625rem;
  height: 2.25rem;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-providers a {
    margin: 0.625rem;
    height: 2rem;
    width: 5rem;
  }
}

.footer-providers a svg,
.footer-providers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 0 0.75rem;
  }
}

.footer-bottom-license {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #BDBDBD;
  text-align: center;
  margin: 0 auto;
  max-width: 43.75rem;
}

.footer-bottom-license a {
  color: #BDBDBD;
}

.footer-bottom-row {
  padding: 1.875rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .footer-bottom-row:first-child {
    padding: 1.875rem 0;
  }
}

.footer-bottom-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.0625rem;
  background: #BDBDBD;
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row::after {
    left: 2.375rem;
    right: 2.375rem;
    width: initial;
    max-width: initial;
    text-align: center;
  }
}

.footer-bottom-col p {
  margin: 0;
  color: #E0E0E0;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom-col p {
    text-align: center;
  }
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.footer-bottom-col_text {
  margin-bottom: 0.75rem;
}

footer,
.footer-menu {
  background: #000;
}

@media screen and (min-width: 768px) {
  .footer-bottom-col_text {
    padding-right: 3rem;
    margin-bottom: 0;
  }
}

.footer-menu {
  padding: 24px 0;

}

.footer-menu.red {
  background: #440907;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: underline;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 768px) {
  .footer-menu__link {
    padding: 0.625rem 0.9375rem;
  }
}

.footer-menu__link:hover {
  color: #ffffff;
}

.footer-age {
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-age {
    order: 0;
  }
}

.footer-age img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-license {
  text-align: center;
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-license {
    order: 1;
  }
}

.joc-icon {
  width: 6.25rem;
  height: 2.5rem;
  display: block;
}

.joc-icon img {
  width: 100%;
  height: 100%;
}

.footer-license__icon {
  position: relative;
  width: 2.5rem;
  display: block;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */