@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;
	--accents-white: #fff;
	--accents-black: #0e0e0e;
	--accents-website-gold: #f1d46a;
  --accents-website-gold-idle: #f1d46a;
  --golden-grass-500-base: #d2a32c;
}

*,
*: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 {
  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;
  /* отступ вокруг бегунка */
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: rgba(30, 30, 30, 0.35);
}
.container {
  position: relative;
  margin: 0 auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 16px 160px;
  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: var(--accents-website-gold);;
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  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: #d93731;
  color: #fff;
  font-family: var(--second-family);
  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;
}

.main {
  width: 100vw;
  background-image: url(../img/main-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  position: relative;
}

.main__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30vh;
  padding-top: 130px;
}

.bonus__section {
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: space-between;
  align-items: center;
  width: 928px;
  padding-bottom: 50px;
}

.bonus__card-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 68px;
  text-align: center;
  color: var(--accents-website-gold-idle);
  z-index: 2;
    text-shadow: 1px 1px #000,
              -1px -1px #000,
              -1px 1px #000,
              1px -1px #000,
              0 4px 4px rgba(0, 0, 0, 0.25);            
}

@supports (text-stroke: 1px #000) or (-webkit-text-stroke: 1px #000) {
  .label-text {
    text-shadow: none;
    text-stroke: 1px #000;
    -webkit-text-stroke: 1px #000;
  }
}

.space {
  display: none;
}

.space-desktop {
  display: inline;
}

.phone_img {
  position: absolute;
  z-index: 1;
  width: 40%;
  bottom: 0;
  left: 5%;
}

.btn-yellow-big {
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  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: 20px;
  padding: 20px 50px;
  z-index: 2;
}

.btn-yellow-big span {
  z-index: 4;
  position: relative;
  font-family: var(--font-family);
font-weight: 700;
font-size: 19px;
text-align: center;
color: var(--shark-950-base);
}

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

.mobile-button {
  display: none;
}

.second__section {
  padding: 32px 0px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
}

.second__section-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.second__section-header {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 39px;
  text-align: center;
  color: var(--accents-white);
}

.accent-color {
  color: var(--golden-grass-500-base);
}

.second__section-header-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 19px;
  text-align: center;
  color: var(--accents-white);
}

.second__section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 32px;
}

.second__section-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--accents-website-gold);
  border-radius: 12px;
  padding: 24px 16px;
  max-width: 352px;
  height: 140px;
  box-shadow: 0 60px 60px 0 rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #232323 0%, #121212 100%);
}

.second__section-card-num {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: var(--accents-white);
}

.second__section-card-text {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 23px;
  text-align: center;
  color: var(--accents-website-gold);
}

.second__section-card__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: var(--accents-white);
  padding-top: 0;
}

.faq__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #181818;
}

.faq__header {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 39px;
  text-align: center;
  color: var(--golden-grass-500-base);
  padding-bottom: 10px;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #e2c862;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 32px;
  cursor: pointer;
  transition: color 0.3s;
  width: 55vw;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 1em;
}

.faq-item.active .faq-answer {
  display: block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--accents-white);
  width: 55vw;
}

.faq-answer-list {
  list-style: disc;
}

.faq-link {
  color: var(--golden-grass-500-base)
}

.faq-question::selection {
  background: #F2D669;
  color: #fff;
}

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

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

  .bonus__section {
    width: 90vw;
    gap: 57vh;
  }

  .iphone-text {
    font-size: clamp(3.625rem, 1.027rem + 5.4054vw, 4.375rem);
  }

  .space {
    display: inline;
  }

  .mark {
    display: none;
  }

  .phone_img {
    width: 70%;
  }

}

@media screen and (orientation: landscape) {
  .phone_img {
    width: 40vw;
  }

  .main__section {
    padding-top: 75px;
  }

  .bonus__section {
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: var(--main-bg-color);
  }

  .main {
    overflow-x: hidden;
    background-position: top center;
    background-size: inherit;
  }

  .bonus__section {
    justify-content: start;
  }

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

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

  .header__btns {
    width: 100%;
  }

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

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

  .header {
    z-index: 4;
  }

  .header .container {
    padding: 14px 15px;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }

  .header__logo img {
    width: 128px;
  }

  .phone_img {
    height: 60vw;
    display: inline;
    position: absolute;
    bottom: 0;
    left: 10%;
  }

  .bonus__card-title {
    font-size: clamp(2.5rem, 7.143vw + 0.821rem, 4.25rem);
    line-height: 125%;
  }
  
  .iphone-text {
    font-size: clamp(1.875rem, 0.0719rem + 7.6726vw, 3.75rem);
  }

  .accent__title {
    font-size: 70px;
    line-height: 80%;
  }

  .bonus__section {
    width: 100vw;
    gap: 0;
  }

  .second__section {
    flex-direction: column;
  }  

  .second__section-cards {
    display: flex;
    flex-direction: column;
  }  

  .second__section-card {
    width: 352px;
  }

  .faq-question {
    width: 90vw;
  }

  .faq-item.active .faq-answer {
    width: 90vw;
  }

}

@media screen and (max-width: 375px) {
  .main {
    background: url(../img/mobile-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .main__section {
    gap: 15px;
  }

  .bonus__card-title {
    font-size: 40px;
    line-height: 130%;
  }
}

@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: #262626;
}

@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 */