/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable scss/operator-no-unspaced */

/* stylelint-disable scss/dollar-variable-colon-newline-after */

html {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

button {
  border: none;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.focus-visible {
  outline: auto 1px;
}

.ios .lock {
  position: relative;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:root {
  --font-family: "Noto Sans", sans-serif;
  --second-family: "Roboto", sans-serif;
  --font-weight: 400;
  --content-width: 118rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-400: #181818;
  --clr-default-900: #000;
  --clr-text-100: #3c2a5c;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: var(--clr-text-100);
}

body.lock {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

body *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body *::-webkit-scrollbar-thumb {
  background: #3c2a5c;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-thumb {
  background: #3c2a5c;
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-width: 32rem;
  min-height: 100%;
}

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.wrapper[data-overlay=true]::before {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

main {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  padding-inline: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.title {
  margin-inline: auto;
  max-width: 89.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.8rem, 2.1528089888rem + 2.0224719101vw, 4.6rem);
  line-height: 110%;
  text-align: center;
  color: #3c2a5c;
}

.subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 70rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  text-align: center;
  text-align: center;
  color: #3c2a5c;
}

.subtitle span {
  font-weight: 700;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  padding: 2rem 3rem;
  width: max-content;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35), 0 6px 35px 0 rgba(244, 82, 92, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fdfdfc;
  background: #f4525c;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  padding: 2rem 6.5rem;
  width: max-content;
  box-shadow: 0 6px 35px 0 rgba(10, 184, 164, 0.35), inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(136deg, #059383 0%, #06aa97 50.52%, #0ab8a4 100%);
}

.linear-item {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  max-width: 37.3rem;
  background: linear-gradient(180deg, #31cea9 0, rgba(52, 114, 169, 0) 30%);
}

.linear-item__inner {
  display: flex;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
  gap: clamp(1.5rem, 1.1764044944rem + 1.0112359551vw, 2.4rem);
}

.linear-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #3c2a5c;
}

.linear-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 150%;
  color: #3c2a5c;
}

.linear-item__text span {
  font-weight: 700;
}

.linear-item__list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.linear-item__list li {
  display: flex;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.linear-item__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/index/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.linear-item__list li span {
  font-weight: 700;
}

.linear-item__list li:not(:first-child) {
  margin-top: 2rem;
}

.table {
  position: relative;
  z-index: 1;
  table-layout: fixed;
  overflow: hidden;
  border-style: solid;
  border-width: 0.3rem;
  border-color: #477ed6;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 3.2rem 2.4rem;
  width: 100%;
  background-color: #fff;
}

.table-overflow {
  overflow-x: auto;
}

.table th,
.table td {
  padding: 1.65rem 1.2rem;
  width: 50%;
  /* half */
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align-last: left;
  color: #3c2a5c;
}

.list-primary li {
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
  gap: 2rem;
}

.list-primary li span {
  font-weight: 700;
}

.list-primary li:not(:first-child) {
  margin-top: 2rem;
}

.list-primary li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/bonus/list-ico-1.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.list-num li {
  display: flex;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.list-num li span {
  font-weight: 700;
}

.list-num li a {
  margin-inline: 0.5rem;
  text-decoration: underline;
  color: #fff;
}

.list-num li:not(:first-child) {
  margin-top: 2rem;
}

.list-num li div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: 0 6px 35px 0 rgba(10, 184, 164, 0.35), inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background-image: linear-gradient(136deg, #059383 0%, #06aa97 50.52%, #0ab8a4 100%);
}

.list-dot li {
  display: flex;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.list-dot li span {
  font-weight: 700;
}

.list-dot li a {
  margin-inline: 0.5rem;
  text-decoration: underline;
  color: #fff;
}

.list-dot li:not(:first-child) {
  margin-top: 2rem;
}

.list-dot li::before {
  content: "";
  margin-top: 1rem;
  margin-right: 0.8rem;
  border-radius: 100%;
  min-width: 0.6rem;
  min-height: 0.6rem;
  max-width: 0.6rem;
  max-height: 0.6rem;
  background-color: #3c2a5c;
}

.menu__list {
  display: flex;
  align-items: center;
}

.menu__item:not(:last-child) {
  margin-right: 1rem;
}

.menu__link {
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #fff;
}

.logo {
  max-width: 21rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.1853932584rem + 0.9831460674vw, 1.375rem);
}

.logo__caption {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 2rem;
  line-height: 110%;
  color: #fff;
}

.logo__text {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 110%;
  color: #fff;
}

.burger {
  display: none;
}

.header-lang {
  position: relative;
  width: 8.6rem;
  height: 5rem;
}

.header-lang__wrap {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.6rem;
  width: 6rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.header-lang__item {
  display: flex;
  align-items: center;
  padding: 1rem 1.6rem;
  transition: padding-bottom var(--transition);
  gap: 1.2rem;
}

.header-lang__item-arrow {
  transition: transform var(--transition);
}

.header-lang__list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  box-sizing: content-box;
  transition: max-height var(--transition);
  gap: 2rem;
}

.header-lang__list a {
  padding-left: 1.6rem;
}

.header-lang__list a:first-child {
  margin-top: 2rem;
}

.header-lang__list a:last-child {
  margin-bottom: 1rem;
}

.header-lang--active .header-lang__item-arrow {
  transform: rotate(-180deg);
}

.header {
  padding-block: 3rem;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer {
  padding-top: 13rem;
}

.footer-bg {
  padding-block: 7rem;
  background: linear-gradient(0deg, #254270 0%, #477ed6 100%);
}

.footer__main {
  margin-bottom: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.footer__main .btn-primary {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 27.4rem;
}

.footer__text {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 75rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
}

.footer__caption {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #fff;
}

.faq {
  padding-top: 21.5rem;
}

.faq .container {
  position: relative;
  z-index: 1;
  max-width: 100rem;
}

.faq .title {
  text-align: center;
}

.faq__list {
  margin-top: 6rem;
}

.faq__title {
  position: relative;
  padding: clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(6rem, 4.5617977528rem + 4.4943820225vw, 10rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem);
  width: 100%;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 130%;
  transition: padding-bottom var(--transition);
  cursor: pointer;
}

.faq__title::before {
  content: "";
  position: absolute;
  right: 5rem;
  top: 48%;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("../img/index/faq-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}

.faq__wrap {
  border-radius: clamp(1.4rem, 1.1123595506rem + 0.8988764045vw, 2.2rem);
  background-color: #fff;
}

.faq__item-body {
  overflow: hidden;
  max-height: 0;
  box-sizing: content-box;
  line-height: 160%;
  transition: max-height var(--transition);
}

.faq__item-body p {
  margin-top: 0;
  padding: 0 clamp(8rem, 7.2808988764rem + 2.2471910112vw, 10rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem) clamp(1rem, 0.2808988764rem + 2.2471910112vw, 3rem);
}

.faq__item:not(:last-child) {
  margin-bottom: 3rem;
  transition: margin var(--transition);
}

.faq__item--active .faq__title {
  padding-bottom: 2.4rem;
}

.faq__item--active .faq__title::before {
  transform: rotate(-63deg);
}

.orange-linear {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.4rem;
  background-image: linear-gradient(to bottom, #477ed6, #3e6ebb, #355fa2, #2d5088, #254270);
}

.hero {
  position: relative;
  padding-block: 8.8rem clamp(7rem, 1.804494382rem + 16.2359550562vw, 21.45rem);
}

.hero-bg {
  background-image: url("../img/index/hero-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.hero__title {
  max-width: 66rem;
  font-weight: 700;
  font-size: clamp(3.6rem, 2.8808988764rem + 2.2471910112vw, 5.6rem);
  line-height: 110%;
  color: #fff;
}

.hero__text {
  max-width: 62rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.hero__text p:not(:first-child) {
  margin-top: 2rem;
}

.hero__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(10rem, -50%);
}

.hero__img img {
  max-width: inherit;
}

.security {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.security__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
  gap: 3rem;
}

.security__caption {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 62rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
  text-align: center;
  color: #3c2a5c;
}

.info {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.info-block {
  position: relative;
  margin-top: clamp(4rem, 3.2449438202rem + 2.3595505618vw, 6.1rem);
}

.info-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/index/info-bg.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/755;
}

.info__text {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #3c2a5c;
}

.exclusive {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.exclusive__wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.exclusive__info {
  max-width: 63rem;
}

.exclusive .title {
  text-align: left;
}

.exclusive__list li {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
  gap: 2rem;
}

.exclusive__list li span {
  font-weight: 700;
}

.exclusive__list li::before {
  content: "";
  display: flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  max-width: 2.8rem;
  max-height: 2.8rem;
  background-image: url("../img/index/exclusive-plus.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.exclusive__text {
  margin-top: 2rem;
}

.cons {
  position: relative;
  padding-block: clamp(4rem, -2.4719101124rem + 20.2247191011vw, 22rem) clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.cons__wrapper {
  margin-left: auto;
  max-width: 57.5rem;
}

.cons .container {
  display: flex;
  flex-direction: column;
}

.cons__item {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  height: 100%;
  background-color: #fff;
}

.cons__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.8247191011rem + 1.797752809vw, 4rem);
  line-height: 110%;
}

.cons__list {
  margin-top: clamp(1.5rem, 0.9606741573rem + 1.6853932584vw, 3rem);
}

.cons__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  gap: clamp(1rem, 0.8202247191rem + 0.5617977528vw, 1.5rem);
}

.cons__list li:not(:first-child) {
  margin-top: 2rem;
}

.cons__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cons__plus li::before {
  background-image: url("../img/index/cons-plus.svg");
}

.cons__minus li::before {
  background-image: url("../img/index/cons-minus.svg");
}

.cons__img {
  display: flex;
}

.cons__img picture {
  display: flex;
}

.cons__img img {
  position: absolute;
  right: 50%;
  bottom: 0;
}

.cons-green {
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, rgb(49, 206, 169) 0%, rgba(49, 206, 169, 0) 100%);
}

.cons-red {
  margin-top: 3rem;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(125deg, rgb(186, 62, 62) 0%, rgba(186, 62, 62, 0) 100%);
}

.registration {
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: 7rem;
  background: #162d43;
  background-image: url("../img/index/registration-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.registration .title {
  max-width: 100%;
  color: var(--clr-default-100);
}

.registration .subtitle {
  color: var(--clr-default-100);
}

.registration__subtitle {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.registration__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: 3rem;
}

.registration-item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.registration-item_reverse {
  flex-direction: row-reverse;
}

.registration-item > div {
  flex-grow: 1;
  flex-basis: 34%;
}

.registration-item__img {
  flex-grow: 1;
  flex-basis: 34%;
  overflow: hidden;
  border: 3px solid #3472a9;
  border-radius: 2.7rem;
}

.registration-item__img img {
  width: 100%;
}

.registration-item__img picture {
  display: flex;
}

.registration-item__title {
  font-weight: 700;
  font-size: clamp(2.4rem, 2.1123595506rem + 0.8988764045vw, 3.2rem);
  line-height: 110%;
  color: #fff;
}

.registration-item__text {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.registration-item__text a {
  text-decoration: underline;
  color: #fff;
}

.registration__text {
  margin-top: 5rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.registration__text span {
  font-weight: 700;
}

.registration li {
  color: var(--clr-default-100);
}

.app {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app__text {
  margin-top: 2rem;
  text-align: center;
}

.app__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.app-item {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 30%);
}

.app-item__inner {
  flex-grow: 1;
  border-radius: clamp(1.5rem, 1.2842696629rem + 0.6741573034vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
}

.app-item__title {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
  gap: clamp(1rem, 0.8202247191rem + 0.5617977528vw, 1.5rem);
}

.app-item__title img {
  border-radius: 100%;
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(244, 82, 92, 0.35);
}

.app-item__text {
  margin-top: 2rem;
}

.app-warning {
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.app-warning__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.6561797753rem + 0.4494382022vw, 2.2rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
  gap: 1rem;
}

.app-warning__text {
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 68.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.slot {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.slot_base .table li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slot_base .table li::before {
  content: "";
  display: flex;
  border-radius: 100%;
  min-width: 0.4rem;
  min-height: 0.4rem;
  max-width: 0.4rem;
  max-height: 0.4rem;
  background-color: #3c2a5c;
}

.slot .table {
  margin-top: 5rem;
}

.slot .table th,
.slot .table td {
  width: 20%;
  /* half */
}

.slot__subtitle {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 66rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  text-align: center;
  color: #3c2a5c;
}

.slot__text {
  margin-top: 5rem;
  margin-inline: auto;
  max-width: 66rem;
  line-height: 150%;
  text-align: center;
  color: #3c2a5c;
}

.text {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.text__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.text .title {
  margin: 0;
  max-width: 77rem;
  font-size: clamp(2.8rem, 2.008988764rem + 2.4719101124vw, 5rem);
  text-align: left;
}

.text__main {
  margin-top: 2rem;
  max-width: 74.5rem;
}

.text__main p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.text__main p:not(:first-child) {
  margin-top: 2rem;
}

.text .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.reviews {
  position: relative;
  padding-top: clamp(10rem, 6.404494382rem + 11.2359550562vw, 20rem);
  padding-bottom: 10rem;
}

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

.reviews .title {
  text-align: center;
}

.reviews__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.2rem;
  gap: 3rem;
}

.reviews-item {
  border-style: solid;
  border-width: 0.3rem;
  border-color: #3472a9;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 3.2rem;
  height: 100%;
  min-height: 34.8rem;
}

.reviews-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-item__name {
  font-weight: 400;
  font-size: 1.6rem;
  color: #3c2a5c;
}

.reviews-item__hr {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
  gap: 1.3rem;
}

.reviews-item__hr::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px dashed rgba(60, 42, 92, 0.24);
  height: 0.1rem;
}

.reviews-item__text {
  margin-top: 2.6rem;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 171%;
  color: #3c2a5c;
}

.mark {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.mark .table-overflow {
  margin-top: 5rem;
}

.promo {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  max-width: 100%;
}

.promo__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.promo .subtitle {
  margin-top: 0;
}

.promo_slot {
  background-image: url("../img/index/base-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.promo .btn-primary {
  margin-top: 4rem;
  margin-inline: auto;
}

.licence {
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/index/licence-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.licence__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.licence .title,
.licence__text {
  margin-inline: 0;
  text-align: left;
  color: #fff;
}

.licence__text {
  margin-top: 3rem;
}

.licence__img {
  display: flex;
  justify-content: center;
}

.app-hero {
  position: relative;
  padding-block: 8.8rem clamp(7rem, 1.804494382rem + 16.2359550562vw, 21.45rem);
}

.app-hero-bg {
  background-image: url("../img/app/hero-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.app-hero__title {
  max-width: 66rem;
  font-weight: 700;
  font-size: clamp(3.6rem, 2.8808988764rem + 2.2471910112vw, 5.6rem);
  line-height: 110%;
  color: #fff;
}

.app-hero__text {
  max-width: 62rem;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.app-hero__text p:not(:first-child) {
  margin-top: 2rem;
}

.app-hero__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(10rem, -50%);
}

.app-hero__img img {
  max-width: inherit;
}

.app-app {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app-app__text {
  margin-top: 2rem;
  text-align: center;
}

.app-app__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.app-app-item {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 30%);
}

.app-app-item__inner {
  flex-grow: 1;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(2rem, 1.4606741573rem + 1.6853932584vw, 3.5rem);
  background-color: #fff;
}

.app-app-item__title {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
  gap: 1.5rem;
}

.app-app-item__title img {
  border-radius: 100%;
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35), 0 4px 25px 0 rgba(244, 82, 92, 0.35);
}

.app-app-item__text {
  margin-top: 2rem;
}

.app-app-item__text span {
  font-weight: 700;
}

.app-app-item__list {
  margin-top: 2.4rem;
}

.app-app-item__list li {
  display: flex;
  gap: clamp(1rem, 0.6404494382rem + 1.1235955056vw, 2rem);
}

.app-app-item__list li span {
  font-weight: 700;
}

.app-app-item__list li a {
  text-decoration: underline;
  color: #3c2a5c;
}

.app-app-item__list li:not(:first-child) {
  margin-top: 2rem;
}

.app-app-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background: linear-gradient(136deg, #f4525c 0%, #f4525c 50.52%, #f4525c 100%);
}

.app-app .list-primary {
  margin-top: 2rem;
}

.text {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.text__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.text .title {
  margin: 0;
  max-width: 77rem;
  font-size: clamp(2.8rem, 2.008988764rem + 2.4719101124vw, 5rem);
  text-align: left;
}

.text__main {
  margin-top: 2rem;
  max-width: 74.5rem;
}

.text__main p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.text__main p:not(:first-child) {
  margin-top: 2rem;
}

.text .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.app-footer {
  position: relative;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  padding-block: 7rem 5rem;
  background: linear-gradient(180deg, #477ed6 0%, #254270 100%);
}

.app-footer__left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.app-footer__right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.app-footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 30rem;
  background: linear-gradient(360deg, #2e538e 0%, rgba(46, 83, 142, 0) 100%);
}

.app-footer__main {
  position: relative;
  z-index: 1;
}

.app-footer__main .btn-primary {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 29rem;
}

.app-footer .title {
  color: var(--clr-default-100);
}

.app-footer__text {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 75rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.app-footer__caption {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.app-footer__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.app-footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #fff;
}

.bonus-hero {
  position: relative;
  padding-block: 9rem clamp(10rem, 0.6516853933rem + 29.2134831461vw, 36rem);
}

.bonus-hero-bg {
  margin-bottom: clamp(10rem, 3.1685393258rem + 21.3483146067vw, 29rem);
  background-image: url("../img/bonus/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.bonus-hero__title {
  max-width: 105rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.5rem, 2.6011235955rem + 2.808988764vw, 6rem);
  line-height: 110%;
  text-align: center;
  color: #fff;
}

.bonus-hero__text {
  max-width: 77rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.bonus-hero__img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 120rem;
  transform: translate(-50%, 50%);
}

.bonus-hero__img img {
  padding-inline: 1.5rem;
  max-width: 100%;
}

.bonus-spin {
  padding-top: clamp(8rem, 6.202247191rem + 5.6179775281vw, 13rem);
}

.bonus-spin__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.bonus-spin-item {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1.6404494382rem + 1.1235955056vw, 3rem);
}

.bonus-spin-item_reverse {
  flex-direction: row-reverse;
}

.bonus-spin-item__img,
.bonus-spin-item__info {
  flex-grow: 1;
  flex-basis: 34%;
}

.bonus-spin-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.2rem, 2.9123595506rem + 0.8988764045vw, 4rem);
  line-height: 110%;
  color: #3c2a5c;
}

.bonus-spin-item .list-primary {
  margin-top: 3rem;
}

.bonus-spin-item__list--1 li::before {
  background-image: url("../img/bonus/list-ico-2.png");
}

.bonus-spin-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 3.7rem;
  min-height: 3.7rem;
  max-width: 3.7rem;
  max-height: 3.7rem;
  box-shadow: 0 6px 35px 0 rgba(10, 184, 164, 0.35), inset 0 5px 6px 0 rgba(255, 255, 255, 0.35);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background: linear-gradient(136deg, #059383 0%, #06aa97 50.52%, #0ab8a4 100%);
}

.bonus-spin-item__list--2 li::before {
  display: none;
}

.bonus-spin-item__text {
  margin-top: 2rem;
}

.bonus-spin .btn-primary {
  margin-inline: auto;
  width: 100%;
  max-width: 27.4rem;
}

.bonus-law {
  position: relative;
  overflow: hidden;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/bonus/law-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-law__wrapper {
  position: relative;
  z-index: 2;
}

.bonus-law .title,
.bonus-law .subtitle {
  color: #fff;
}

.bonus-law__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.bonus-law-linear {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 78%);
}

.bonus-law-linear__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  background-color: #fff;
  gap: 2.4rem;
}

.bonus-law-linear__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
}

.bonus-law-linear__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.bonus-law .list-primary li::before {
  background-image: url("../img/bonus/list-ico-4.svg");
}

.bonus-win {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.bonus-win__wrapper {
  display: flex;
  align-items: center;
  margin-top: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
  gap: clamp(3rem, 2.2808988764rem + 2.2471910112vw, 5rem);
}

.bonus-win__info {
  flex-basis: 50%;
}

.bonus-win__info .title {
  margin-bottom: clamp(3rem, 1.9213483146rem + 3.3707865169vw, 6rem);
  text-align: left;
}

.bonus-win__caption {
  margin-inline: auto;
  max-width: 77rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 110%;
  text-align: center;
  color: #3c2a5c;
}

.bonus-win__caption {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #3c2a5c;
}

.bonus-win__text {
  margin-top: 2.4rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.bonus-win__text span {
  font-weight: 700;
}

.bonus-win .list-primary {
  margin-top: 2.4rem;
}

.bonus-win .btn-primary {
  margin-top: 4rem;
  width: 100%;
  max-width: 27.4rem;
}

.bonus-vip {
  padding-top: 13rem;
}

.bonus-vip__wrapper {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  max-width: 100%;
  gap: clamp(2rem, 0.9213483146rem + 3.3707865169vw, 5rem);
}

.bonus-vip__img {
  display: flex;
  justify-content: center;
}

.bonus-vip__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.7685393258rem + 1.3483146067vw, 3.4rem);
  line-height: 110%;
  color: #3c2a5c;
}

.bonus-vip__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #3c2a5c;
}

.bonus-vip__text span {
  font-weight: 700;
}

.bonus-vip__table {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  gap: 3rem;
}

.bonus-cashback {
  padding-top: 22rem;
}

.bonus-cashback__inner {
  position: relative;
}

.bonus-cashback__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  width: 110%;
  background-image: url("../img/bonus/cashback-rectangle.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 1242/756;
}

.bonus-cashback__wrapper {
  position: relative;
  border: 4px solid var(--clr-default-100);
  border-radius: 2.4rem;
  padding: clamp(3rem, 1.7415730337rem + 3.9325842697vw, 6.5rem) clamp(2rem, 0.9213483146rem + 3.3707865169vw, 5rem);
  background-image: url("../img/bonus/cashback-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-cashback__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  max-width: 50rem;
  gap: 2rem;
}

.bonus-cashback .title {
  margin: 0;
  text-align: left;
  color: var(--clr-default-100);
}

.bonus-cashback__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
}

.bonus-cashback__text span {
  font-weight: 700;
}

.bonus-cashback__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 110%;
  color: #fff;
}

.bonus-cashback__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  gap: 2rem;
}

.bonus-cashback__list li:not(:first-child) {
  margin-top: 2rem;
}

.bonus-cashback__list li::before {
  content: "";
  display: flex;
  min-width: 3rem;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  background-image: url("../img/bonus/linear-item-checkmark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bonus-cashback__img img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.bonus-cashback .btn-primary {
  width: 100%;
  max-width: 27.4rem;
}

.bonus-footer {
  position: relative;
  padding-block: 7rem 5rem;
  background: linear-gradient(180deg, #477ed6 0%, #254270 100%);
}

.bonus-footer__left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.bonus-footer__right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.bonus-footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 30rem;
  background: linear-gradient(360deg, #2e538e 0%, rgba(46, 83, 142, 0) 100%);
}

.bonus-footer__main {
  position: relative;
  z-index: 1;
}

.bonus-footer__main .btn-primary {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 27.4rem;
}

.bonus-footer .title {
  color: var(--clr-default-100);
}

.bonus-footer__text {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 75rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.bonus-footer__caption {
  margin-top: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #fff;
}

.bonus-footer__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.bonus-footer-menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bonus-footer-menu__link {
  display: flex;
  padding: 1rem;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: #fff;
}

.free {
  padding-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
}

.free__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.free h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2rem, 1.9280898876rem + 0.2247191011vw, 2.2rem);
  line-height: 150%;
  color: #3c2a5c;
}

.mobile {
  position: relative;
  overflow: hidden;
  margin-top: clamp(7rem, 4.8426966292rem + 6.7415730337vw, 13rem);
  margin-inline: 1.5rem;
  border-radius: 2rem;
  padding-block: clamp(4rem, 2.9213483146rem + 3.3707865169vw, 7rem);
  background-image: url("../img/bonus/mobile-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobile__wrapper {
  position: relative;
  z-index: 2;
}

.mobile .subtitle,
.mobile .title {
  color: #fff;
}

.mobile__block {
  display: flex;
  margin-top: 5rem;
  gap: 3rem;
}

.mobile-linear {
  display: flex;
  flex-grow: 1;
  flex-basis: 34%;
  flex-direction: column;
  border-radius: clamp(1.6rem, 1.3123595506rem + 0.8988764045vw, 2.4rem);
  padding: 0.3rem;
  background: linear-gradient(180deg, #f4525c 0, rgba(52, 114, 169, 0) 78%);
}

.mobile-linear__inner {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  border-radius: clamp(1.3rem, 1.0123595506rem + 0.8988764045vw, 2.1rem);
  padding: clamp(1.5rem, 0.7808988764rem + 2.2471910112vw, 3.5rem);
  background-color: #fff;
  gap: 2.4rem;
}

.mobile-linear__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.9123595506rem + 0.8988764045vw, 3rem);
  line-height: 110%;
  color: #f4525c;
}

.mobile-linear__list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5280898876rem + 0.2247191011vw, 1.8rem);
  line-height: 150%;
  color: #3c2a5c;
}

.mobile-linear__list li:not(:first-child) {
  margin-top: 2rem;
}

.mobile-linear__list li span {
  font-weight: 700;
}

.mobile-linear__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: #3c2a5c;
}

.mobile-linear__text span {
  font-weight: 700;
}

@media (max-width: 75em) {
  .cons__wrapper {
    max-width: 100%;
  }

  .cons__block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cons__img img {
    display: none;
  }

  .cons-red {
    margin-top: 0;
  }

  .bonus-vip__wrapper {
    flex-direction: column-reverse;
    align-items: inherit;
  }
}

@media (max-width: 75em) and (max-width: 46.875em) {
  .cons__block {
    grid-template-columns: repeat(1, 1fr);
  }

  .cons__img img {
    position: static;
    display: flex;
  }
}

@media (max-width: 60em) {
  .bonus-law__block {
    flex-direction: column;
  }

  .mobile__block {
    flex-direction: column;
  }
}

@media (max-width: 50em) {
  .linear-item {
    max-width: 100%;
  }

  .bonus-spin-item {
    flex-direction: column;
  }
}

@media (max-width: 48em) {
  .faq {
    padding-top: 8rem;
  }
}

@media (max-width: 36em) {
  .faq__title::before {
    right: 2rem;
  }

  .faq__item-body p {
    padding: 2rem;
  }
}

@media (max-width: 96.875em) {
  .app-footer__left {
    width: 20rem;
  }

  .app-footer__right {
    width: 20rem;
  }

  .bonus-footer__left {
    width: 20rem;
  }

  .bonus-footer__right {
    width: 20rem;
  }
}

@media (max-width: 72.5em) {
  .menu__list {
    flex-direction: column;
    margin: auto;
    padding-block: 4rem;
  }

  .menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .menu {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    padding-bottom: 4rem;
    width: 100%;
    height: 100%;
    max-width: 32rem;
    background-color: var(--clr-default-100);
    transition: right var(--transition);
  }

  .menu--active {
    right: 0;
    transition: right var(--transition);
  }

  .menu--active .menu__link {
    color: var(--clr-text-100);
  }

  .burger {
    position: relative;
    z-index: 15;
    display: block;
    width: 2.5rem;
    height: 2rem;
    background-color: transparent;
  }

  .burger::after,
  .burger::before,
  .burger span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: #fff;
  }

  .burger::before {
    top: 0;
    transition: transform var(--transition), top var(--transition);
  }

  .burger::after {
    bottom: 0;
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger span {
    top: 0.8rem;
    transition: transform var(--transition);
  }

  .burger--active::before {
    top: 0.8rem;
    background-color: var(--clr-text-100);
    transform: rotate(45deg);
    transition: transform var(--transition), top var(--transition);
  }

  .burger--active::after {
    bottom: 0.8rem;
    background-color: var(--clr-text-100);
    transform: rotate(-45deg);
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger--active span {
    background-color: var(--clr-text-100);
    transform: scale(0);
    transition: transform var(--transition);
  }

  .footer-menu {
    display: none;
  }

  .app-footer-menu {
    display: none;
  }

  .bonus-footer-menu {
    display: none;
  }
}

@media (max-width: 68.75em) {
  .hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__img {
    position: static;
    margin-inline: auto;
    transform: none;
  }

  .hero__img img {
    padding-inline: 1.5rem;
    max-width: 100%;
  }

  .app-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .app-hero__title {
    max-width: 100%;
  }

  .app-hero__text {
    max-width: 100%;
  }

  .app-hero__img {
    position: static;
    margin-inline: auto;
    transform: none;
  }

  .app-hero__img img {
    padding-inline: 1.5rem;
    max-width: 100%;
  }

  .bonus-cashback {
    padding-top: 60rem;
  }

  .bonus-cashback__info {
    margin-left: 0;
    max-width: 100%;
  }

  .bonus-cashback__img img {
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
  }
}

@media (max-width: 68.75em) and (max-width: 37.5em) {
  .bonus-cashback {
    padding-top: clamp(30rem, -2.3595505618rem + 101.1235955056vw, 120rem);
  }
}

@media (max-width: 65.625em) {
  .reviews__block {
    grid-template-columns: repeat(2, 1fr);
  }

  .licence__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 65.625em) and (max-width: 43.75em) {
  .reviews__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 62.5em) {
  .bonus-cashback__inner::before {
    display: none;
  }
}

@media (max-width: 56.25em) {
  .table {
    width: 85.5rem;
  }

  .text__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .text__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-win__wrapper {
    flex-direction: column-reverse;
  }

  .bonus-win_reverse .bonus-win__wrapper {
    flex-direction: column;
  }

  .bonus-win__info {
    flex-basis: 100%;
  }
}

@media (max-width: 50.625em) {
  .exclusive__wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width: 47.9375em) {
  .faq__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 43.75em) {
  .app__block {
    flex-direction: column;
  }

  .app-app__block {
    flex-direction: column;
  }
}

@media (max-width: 40.625em) {
  .registration-item {
    flex-direction: column;
  }
}

@media (max-width: 37.5em) {
  .bonus-vip .table {
    width: 50rem;
  }
}

@media (max-width: 31.25em) {
  .registration__block {
    flex-direction: column;
  }

  .app-footer__right {
    display: none;
  }

  .bonus-footer__right {
    display: none;
  }
}

@media (max-width: 28.125em) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .app-footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .bonus-footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */


.header {
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: background-color 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  min-height: 97px;
}

.header--bg {
  background-color: rgba(8, 37, 75, 0.7);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
}

.hero-bg, .app-hero-bg, .bonus-hero-bg {
  padding-top: 97px;
}

.menu .header__btn, .menu .header__btn2 {
  display: none;
}

.arrow-top {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 500;
  width: 40px;
  height: 40px;
  background-color: rgba(8, 37, 75, 0.7);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;
 padding: 5px;
}

@media (max-width: 72.5em) {
  .burger {
    z-index: 100000;
  }

  .burger--active::after, .burger--active::before, .burger--active span {
    background-color: #000 !important;
}
  .menu {
    z-index: 9999;
    height: 100%;
    min-height: 100vh;
    overflow: auto;
    background: #fcfeff;
  }

  .header .btn-secondary {
      margin-bottom: 0;
      border: none;
      color: #fff;
  }
}

@media (max-width: 700px) {
  .header__block .header__btn, .header__block .header__btn2 {
    display: none;
  }
  .menu .header__btn, .menu .header__btn2 {
    display: block;
    min-width: 200px;
  }

  .header .btn-secondary {
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 7, 36, 0.2);
    color: #100724;
  }

  .header {
    min-height: 80px;
  }

  .hero-bg, .app-hero-bg, .bonus-hero-bg {
    padding-top: 80px;
  }

  .arrow-top {
    width: 35px;
    height: 35px;
    bottom: 10px;
    right: 10px;
  }
}
