/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

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

a:hover {
  text-decoration: none;
}

/* Common */

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

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* Quicksand */
@font-face {
  font-family: 'Quicksand';
  src: url('/fontsARSBWjlo/quicksand-variablefontARSBWjlo.woff2')
    format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* Spline Sans */
@font-face {
  font-family: 'Spline Sans';
  src: url('/fontsARSBWjlo/splinesans-variablefontARSBWjlo.woff2')
    format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: #0e0d12;
}

.headerARSBWjlo {
  background: #0e0d12;
  border-bottom: 1px solid #201f27;
}

.headerARSBWjlo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 30px;
}

.headerARSBWjlo__logo img {
  height: 42px;
}

.headerARSBWjlo__nav {
  flex: 1;
}

.headerARSBWjlo__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.headerARSBWjlo__list a {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.headerARSBWjlo__burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.headerARSBWjlo__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.headerARSBWjlo__burger span:nth-child(1) {
  top: 0;
}

.headerARSBWjlo__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.headerARSBWjlo__burger span:nth-child(3) {
  bottom: 0;
}

.headerARSBWjlo__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.headerARSBWjlo__burger.active span:nth-child(2) {
  opacity: 0;
}

.headerARSBWjlo__burger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.headerARSBWjlo__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}

@media (max-width: 992px) {
  .headerARSBWjlo__burger {
    display: block;
  }

  .headerARSBWjlo__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #0e0d12;
    padding: 80px 20px;
    transition: 0.3s;
    z-index: 1001;
  }

  .headerARSBWjlo__nav.active {
    left: 0;
  }

  .headerARSBWjlo__overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .headerARSBWjlo__list {
    flex-direction: column;
    gap: 20px;
  }
}

.heroARSBWjlo {
  padding: 10px 0;
}

.heroARSBWjlo__inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.heroARSBWjlo__top {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heroARSBWjlo__title {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heroARSBWjlo__text {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.heroARSBWjlo__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.heroARSBWjlo__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 100px;
  background: #201f27;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.heroARSBWjlo__list img {
  width: 15px;
  height: 15px;
}

@media (max-width: 992px) {
  .heroARSBWjlo__title {
    font-size: 28px;
  }

  .heroARSBWjlo__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .heroARSBWjlo__title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .heroARSBWjlo__top {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .heroARSBWjlo__text {
    display: none;
    font-size: 11px;
  }

  .heroARSBWjlo__list {
    align-items: center;
    flex-wrap: nowrap;
  }

  .heroARSBWjlo__list li {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    background: #201f27;
  }
}
.cardsARSBWjlo {
  padding: 0px 0 50px;
}

.cardsARSBWjlo__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.cardARSBWjlo {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  border-radius: 20px;
  border: 1px solid #e19fff;
  background: radial-gradient(
    74.76% 74.76% at 50% 25.24%,
    #19173c 0%,
    #13131c 100%
  );
  box-shadow: 0 3px 10px 0 rgba(73, 8, 186, 0.3);
  text-align: center;
  width: 100%;
  /* max-width: 366px; */
  flex: 0 0 366px;
}

.cardARSBWjlo__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 100px;
  background: #ae00ff;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  width: 215px;
}

.cardARSBWjlo__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 10px;
  background: #262547;
  padding: 10px;
  height: 48px;
}

.cardARSBWjlo__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cardARSBWjlo__title {
  display: block;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 15px;
  min-height: 56px;
}

.cardARSBWjlo__stats {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
  min-height: 70px;
}

.cardARSBWjlo__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cardARSBWjlo__stats img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

.cardARSBWjlo__stats strong {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.cardARSBWjlo__stats span {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}

.cardARSBWjlo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 100px;
  border: 5px solid #7382de;
  background: #324ce9;
  box-shadow: 0 0 10px 0 #324ce9;
  color: #fff;
  text-decoration: none;
  font-family: 'Spline Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.cardARSBWjlo__btn img {
  height: 28px;
  width: 28px;
}

.cardARSBWjlo__payments {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  min-height: 40px;
}

.cardARSBWjlo__payments img {
  height: 26px;
}

.cardARSBWjlo__bottom {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  min-height: 40px;
}

@media (max-width: 600px) {
  .cardARSBWjlo {
    max-width: 100%;
  }
}

.howARSBWjlo {
  padding: 80px 0;
}

.howARSBWjlo__title {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.howARSBWjlo__text {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  max-width: 1440px;
  margin: 0 auto 20px;
}

.howARSBWjlo__subtitle {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.howARSBWjlo__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.howARSBWjlo__list li {
  background: #201f27;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #324ce9;
  padding: 20px;
  max-width: 350px;
  width: 100%;
}

.howARSBWjlo__num {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.howARSBWjlo__list h4 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.howARSBWjlo__list p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .howARSBWjlo__list li {
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .howARSBWjlo__list {
    flex-direction: column;
    align-items: center;
  }

  .howARSBWjlo__list li {
    max-width: 100%;
  }

  .howARSBWjlo__title {
    font-size: 26px;
  }
}

.responsibleARSBWjlo {
  padding: 80px 0;
}

.responsibleARSBWjlo__title {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.responsibleARSBWjlo__text {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0 auto 20px;
}

.responsibleARSBWjlo__list {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.responsibleARSBWjlo__list li h3 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.responsibleARSBWjlo__list li p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.responsibleARSBWjlo__box {
  margin: 0 auto;
  padding: 25px 20px;
  border-radius: 20px;
  background: #201f27;
}

.responsibleARSBWjlo__box h4 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.responsibleARSBWjlo__box p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .responsibleARSBWjlo__title {
    font-size: 26px;
  }

  .responsibleARSBWjlo__text {
    font-size: 14px;
  }
}

/* =========================
   FOOTER 
========================= */

.footerARSBWjlo {
  padding: 60px 0 30px;
  color: #cfd3dc;
  font-family: 'Quicksand', sans-serif;
}

/* container */
.containerARSBWjlo {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* text */
.footerARSBWjlo p {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

/* contacts */
.footerARSBWjlo p:nth-of-type(2) {
  color: #fff;
  line-height: 1.8;
}

/* age */
.ageARSBWjlo {
  width: 50px;
  height: 50px;
  background: url('/imagesARSBWjlo/twenty-one-plusARSBWjlo.webp') center/contain
    no-repeat;
}

/* regulations */
.regulationsARSBWjlo a {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  color: #fff;
}

.regulationsARSBWjlo img {
  max-width: 120px;
}

.regulationsARSBWjlo p {
  font-size: 15px;
  font-weight: 600;
}

/* links */
.linkARSBWjlo {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.linkARSBWjlo a {
  color: #cfd3dc;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}

.linkARSBWjlo a:hover {
  color: #fff;
}

/* copy */
.footerARSBWjlo__copy {
  opacity: 0.6;
  font-size: 12px;
}

/* mobile */
@media (max-width: 768px) {
  .regulationsARSBWjlo a {
    flex-direction: column;
    text-align: center;
  }

  .linkARSBWjlo {
    flex-direction: column;
    gap: 10px;
  }
}

.contactARSBWjlo {
  background: #0e0d12;
  padding: 80px 0;
}

.contactARSBWjlo__title {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contactARSBWjlo__desc {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contactARSBWjlo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* LEFT */
.contactARSBWjlo__info {
  height: max-content;
  background: #201f27;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
}

.contactARSBWjlo__info h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contactARSBWjlo__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.contactARSBWjlo__info p {
  font-size: 15px;
  margin-bottom: 10px;
}

.contactARSBWjlo__info a {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* FORM */
.contactARSBWjlo__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactARSBWjlo__form input,
.contactARSBWjlo__form textarea {
  background: #201f27;
  border: none;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 14px;
}

.contactARSBWjlo__form textarea {
  min-height: 140px;
  resize: none;
}

.contactARSBWjlo__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #fff;
}

.contactARSBWjlo__checkbox input {
  margin-top: 4px;
}

.contactARSBWjlo__checkbox span {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* BUTTON */
.contactARSBWjlo__btn {
  margin-top: 10px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, #324ce9, #5a6bff);
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(50, 76, 233, 0.6);
  transition: 0.3s;
}

.contactARSBWjlo__btn:hover {
  transform: translateY(-2px);
}

/* SUCCESS */
.contactARSBWjlo__success {
  margin-top: 10px;
  color: #4cff7a;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contactARSBWjlo__grid {
    grid-template-columns: 1fr;
  }

  .contactARSBWjlo__title {
    font-size: 26px;
  }
}

.aboutARSBWjlo {
  background: #0e0d12;
  padding: 80px 0;
}

.aboutARSBWjlo__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.aboutARSBWjlo__title {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutARSBWjlo__content p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  margin-bottom: 15px;
}

/* IMAGE */
.aboutARSBWjlo__image {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.aboutARSBWjlo__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* SUBTITLE */
.aboutARSBWjlo__subtitle {
  color: #fff;
  text-align: center;
  font-family: 'Spline Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* LIST */
.aboutARSBWjlo__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aboutARSBWjlo__list li {
  background: #201f27;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid #324ce9;
  padding: 20px;
}

.aboutARSBWjlo__list h3 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aboutARSBWjlo__list p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
}

/* TABLET */
@media (max-width: 992px) {
  .aboutARSBWjlo__top {
    grid-template-columns: 1fr;
  }

  .aboutARSBWjlo__image {
    max-width: 500px;
    margin: 0 auto;
  }

  .aboutARSBWjlo__list {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .aboutARSBWjlo__title {
    font-size: 26px;
    text-align: center;
  }

  .aboutARSBWjlo__content {
    text-align: center;
  }

  .aboutARSBWjlo__list {
    grid-template-columns: 1fr;
  }

  .aboutARSBWjlo__subtitle {
    font-size: 20px;
  }
}

.terms {
  padding: 80px 0;
  background: #0e0d12;
}

.terms h1 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms p {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms a {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.terms h2 {
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms ul {
  list-style: disc;
}

.terms ul li {
  list-style-type: disc;
  color: #fff;
  font-family: 'Spline Sans', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}
