@charset "UTF-8";
@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url(../text-face-dir/Rubik-Bold.woff2) format("woff2"), url(../text-face-dir/Rubik-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Rubik;
  font-display: swap;
  src: url(../text-face-dir/Rubik-Regular.woff2) format("woff2"), url(../text-face-dir/Rubik-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-bg:#160E31;
  --brand-color:#ff8c00;
  --color-green:#0D9737;
}

body {
  font-family: Rubik;
  line-height: 1.6;
  color: #fff;
  background-color: var(--color-bg);
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

section a:not([class]) {
  color: #fff;
  text-decoration: underline;
}

section a:not([class]):hover {
  opacity: 0.9;
}

.textSection ul {
  list-style: none;
  padding-left: 8px;
}

.textSection ul li {
  position: relative;
  padding-left: 24px;
}

.textSection ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--brand-color);
  border-radius: 99px;
}

.textSection ul li:not(:last-child) {
  margin-bottom: 8px;
}

.textSection ol {
  list-style: none;
  padding-left: 8px;
  counter-reset: myCount;
}

.textSection ol li {
  position: relative;
  padding-left: 24px;
}

.textSection ol li:before {
  content: counter(myCount) ".";
  counter-increment: myCount;
  font-weight: 700;
  color: var(--brand-color);
  position: absolute;
  top: 0;
  left: 0;
}

.textSection ol li:not(:last-child) {
  margin-bottom: 8px;
}

.layoutContainer {
  max-width: 1343px;
  margin: 0 auto;
}

.siteLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.siteLogo img {
  max-width: auto;
  height: auto;
  max-height: 56px;
}

.siteHeader {
  background-color: #270949;
  position: relative;
  z-index: 100;
}

.headerInner {
  padding: 8px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.headerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mainMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  gap: 16px;
  padding-left: 0;
}

.mainMenu a:hover {
  text-decoration: underline;
}

.baseButton {
  padding: 4px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 99px;
  white-space: nowrap;
}

.primaryBtn {
  background: linear-gradient(225deg, #ff9b21, #ff7c02, #ffca00, #ff8c00);
  color: var(--color-bg);
  -webkit-transform: 0.2s;
  -ms-transform: 0.2s;
  transform: 0.2s;
}

.primaryBtn:hover {
  -webkit-transform: 0.2s;
  -ms-transform: 0.2s;
  transform: 0.2s;
  background: linear-gradient(225deg, #ff8c00, #ffca00, #ff9b21, #ffca00);
}

.secondaryBtn {
  color: var(--brand-color);
  background-color: transparent;
  border: 1px solid var(--brand-color);
}

.tertiaryBtn {
  background-color: var(--brand-color);
  color: var(--color-bg);
  border-radius: 8px;
}

.largeBtn {
  padding: 8px 32px;
  font-size: 18px;
}

.baseButton:hover {
  opacity: 0.9;
}

.firstScreen {
  position: relative;
  min-height: 400px;
}

.heroContent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heroText {
  position: relative;
  z-index: 20;
  padding: 32px 16px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.heroText > :not(:last-child) {
  margin-bottom: 24px;
}

.heroTitle {
  font-size: 40px;
  color: #f8c301;
  text-shadow: 0 4px 0 #7e04f7;
}

.heroDescription {
  font-size: 18px;
}

.heroImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heroImage:after {
  content: "";
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 14, 49, 0.8)), color-stop(80%, rgba(22, 14, 49, 0.9)), to(#160e31));
  background: linear-gradient(180deg, rgba(22, 14, 49, 0.8) 0, rgba(22, 14, 49, 0.9) 80%, #160e31 100%);
}

.imageBg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.imageBg img {
  display: none;
}

.text-big {
  font-size: 42px;
  font-weight: 700;
}

.textSection h1, .title {
  font-size: 30px;
  color: #fff;
  margin-bottom: 22px;
}

.textSection h2, .subtitle {
  font-size: 24px;
  color: #fff;
  margin-bottom: 22px;
}

.bold, .textSection h3 {
  font-weight: 700;
  color: #fff;
}

.textSection {
  padding: 32px 16px;
}

.columnItem > :not(:last-child), .marginBottom16 > :not(:last-child) {
  margin-bottom: 16px;
}

.textSection h1, .textSection h2, .textSection h3 {
  margin-top: 30px;
}

.textSection h1:first-child, .textSection h2:first-child, .textSection h3:first-child {
  margin-top: 0;
}

.textSection img {
  width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

.multiColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 24px 0 !important;
}

.columnItem {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.multiColumn.reverseLayout {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.promoBanner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  width: 400px;
  display: grid;
  background-color: var(--color-bg);
  border-radius: 16px;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  border: 1px solid var(--brand-color);
  place-items: center;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}

.bannerVisual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bannerHeadline {
  font-weight: 700;
  margin-bottom: 4px;
}

.banner__subtitle {
  font-size: 14px;
}

.bannerCloseBtn {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: transparent;
  border: none;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.promoBanner.hide {
  display: none;
}

.faqSection {
  padding: 40px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faqList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faqEntry {
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.questionText {
  padding: 15px 20px;
  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;
  cursor: pointer;
  background-color: #3b324e;
  color: #fff;
}

.questionText:after {
  content: "✖";
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.questionText {
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
}

.answerText {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.faqEntry.isActive .answerText {
  padding: 16px;
  max-height: none;
  border: 1px solid #545e6e;
  border-top: none;
}

.faqEntry.isActive .questionText {
  border-radius: 8px 8px 0 0;
}

.faqEntry.isActive .questionText:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lineDivider {
  border-bottom: 1px solid #3e444e;
  max-width: 868px;
  margin: 0 auto;
}

.siteFooter {
  padding: 16px;
  background-color: #1d0536;
  border-top: 1px solid #545e6e;
}

.footerNav {
  padding: 24px 0 40px 0;
  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: 16px;
  list-style-type: none;
  padding-left: 0;
}

.footerNav a:hover {
  text-decoration: underline;
}

.partnersRow {
  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;
  padding: 24px 0;
  gap: 16px;
}

.partnersRow img {
  height: 32px;
}

.footerNote {
  font-size: 12px;
  padding: 24px 0;
}

.footerEnd {
  font-family: Arial;
  font-size: 12px;
  text-align: center;
  padding: 16px;
}

@media (max-width: 767.98px) {
  .headerInner {
    grid-template-columns: auto 1fr;
  }
  .menuWrapper {
    grid-column: span 2;
    grid-row: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .heroTitle {
    font-size: 32px;
  }
  .firstScreen .baseButton {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .multiColumn.reverseLayout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .multiColumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lineDivider {
    max-width: 50%;
  }
  .partnersRow {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 660px) {
  .promoBanner {
    width: calc(100% - 32px);
    padding: 16px;
  }
}
@media (max-width: 479.98px) {
  .promoBanner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
}