@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
  background-color: #f4f7ff;
}

body {
  position: relative;
}

main {
  padding-top: 110px;
}
@media screen and (max-width: 980px) {
  main {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-block: 70px;
  }
}

section {
  scroll-margin-top: 120px;
}

picture {
  display: block;
}

.banner {
  margin-bottom: 60px;
  color: #fff;
  padding-block: 50px 20px;
  background: url("../assets/images/mv_bg.jpg") no-repeat center/cover;
}
.banner__content {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .banner__content {
    max-width: 100%;
  }
}
.banner__title {
  color: #fff;
}
.banner__text {
  font-size: 1.5rem;
}
.banner__text a {
  color: #ffd700;
}
.banner__crumbs {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.banner__crumbs a::after {
  content: ">";
  margin-left: 10px;
}
.banner__crumbs span {
  font-weight: 700;
}
.banner .link {
  color: #ffd700;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
  border-bottom: 4px solid #ffd700;
  -webkit-box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
          box-shadow: 0 8px 32px rgba(65, 105, 225, 0.28);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .header {
    min-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    min-height: 70px;
  }
}
.header__logo {
  height: 110px;
  max-width: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.04));
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 980px) {
  .header__logo {
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 70px;
  }
}
.header__logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__wrap {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    gap: 20px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  margin-left: auto;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__nav {
    left: 0;
    top: 92px;
    width: 100%;
    overflow: auto;
    padding-inline: 4%;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 70px);
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
    background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    top: 72px;
  }
}
@media screen and (max-width: 980px) {
  .header__nav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__dropdown {
  position: relative;
}
@media screen and (max-width: 980px) {
  .header__dropdown {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:first-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 980px) {
  .header__dropdown:last-child {
    margin-bottom: 30px;
  }
}
.header__dropdown:hover .header__dropdown-text {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text {
    color: #fff;
    background: transparent;
  }
}
.header__dropdown:hover .header__dropdown-text .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-text .arrow {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .header__dropdown:hover .header__dropdown-menu {
    -webkit-transform: unset;
            transform: unset;
  }
}
.header__dropdown-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 9px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .header__dropdown-text {
    padding-inline: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__dropdown-text .arrow {
  font-size: 9px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-text.active .arrow {
    -webkit-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(160deg, #0f247c 0%, #173bb8 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 980px) {
  .header__dropdown-menu {
    left: unset;
    top: unset;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: unset;
            transform: unset;
    visibility: visible;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
  }
}
.header__dm-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 980px) {
  .header__dm-link {
    border-radius: 0;
    padding-left: 20px;
    margin-left: 10px;
    border-left: 2px solid #fff;
  }
}
.header__dm-link .menu-icon {
  width: 18px;
  color: #ffd700;
}
.header__dm-link:hover {
  padding-left: 15px;
  background-color: #4169e1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__dm-link:hover {
    padding-left: 25px;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .header__buttons {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__buttons {
    gap: 8px;
  }
}
.header__button {
  border: none;
  border-radius: 25px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__button {
    font-size: 12px;
    padding: 10px 20px;
  }
}
.header__button--signup {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.header__button--signup:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
}
.header__button--register {
  border: 2px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#5cb800), to(#56ae00));
  background: linear-gradient(90deg, #5cb800 0%, #56ae00 100%);
  color: #fff;
}
.header__button--register:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
          box-shadow: 0 0 10px 2px rgba(92, 184, 0, 0.5);
}
.header__menubar {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__menubar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 25px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar {
    width: 30px;
  }
}
.header__menubar::before, .header__menubar::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.header__menubar::before {
  margin-top: -18px;
}
.header__menubar::after {
  margin-top: 18px;
}
@media screen and (max-width: 980px) {
  .header__menubar.active::before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active::after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (max-width: 980px) {
  .header__menubar.active .header__menubar-line {
    background-color: transparent;
  }
}
@media screen and (max-width: 980px) {
  .header__menubar-line {
    width: 100%;
    height: 4px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.max-width {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .max-width {
    max-width: 100%;
  }
}

.title {
  display: block;
  font-size: 4rem;
  position: relative;
  font-weight: 700;
  padding-bottom: 7px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.title::before {
  bottom: 0;
  content: "";
  height: 3px;
  width: 150px;
  position: absolute;
  border-radius: 5px;
  background-color: #ffd700;
}
.title--big {
  font-size: 5rem;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .title--big {
    font-size: 3.5rem;
  }
}
.title--h2 {
  font-size: 3.5rem;
}
.title--h2::before {
  width: 100px;
}
.title--h3 {
  font-size: 2.8rem;
}
.title--h3::before {
  width: 45px;
}
.title--h4 {
  font-size: 2rem;
}
.title--center {
  text-align: center;
}
.title--center::before {
  content: none;
}

.scroll {
  bottom: 30px;
  width: 70px;
  height: 70px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  position: sticky;
  margin-block: -70px 20px;
  margin-inline: auto 40px;
}
@media screen and (max-width: 767px) {
  .scroll {
    width: 40px;
    height: 40px;
    margin-inline: auto 4%;
  }
}
.scroll__wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .scroll__wrap {
    font-size: 20px;
  }
}
.scroll__wrap:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
}
.scroll.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.text {
  font-size: 1.8rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 16px;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 270px;
  cursor: pointer;
  color: #10216f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ffd700 75%);
  background-size: 200% 200%;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}
.button--big {
  max-width: 350px;
}
.button:hover {
  background-position: right;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
}

.footer {
  color: #fff;
  padding-block: 30px;
  background-color: #11236b;
}
.footer__wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -75px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    gap: 10px;
    margin-left: 0;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__card {
  padding: 30px;
  border-radius: 20px;
  background-color: #25387c;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer__image {
  height: 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer__image--mr {
  margin-right: 10px;
}
.footer__image:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.footer__logo {
  width: 160px;
  margin-block: -20px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 130px;
  }
}
.footer__head-text {
  text-align: center;
  font-size: 1.4rem;
}
.footer__socials {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  border-radius: 50%;
  position: relative;
}
.footer__social-link:nth-child(1) {
  background: #1877f2;
}
.footer__social-link:nth-child(2) {
  background: #4267b2;
}
.footer__social-link:nth-child(3) {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}
.footer__social-link:nth-child(4) {
  background: #000;
}
.footer__social-link:nth-child(5) {
  background: #08c;
}
.footer__social-link::before {
  content: "";
  width: 45px;
  height: 45px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #3b4f97;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}
.footer__social-link:hover::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.footer__cards {
  gap: 20px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1290px) {
  .footer__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .footer__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__label {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__links {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__links--col {
  gap: 10px 2%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.footer__links--col .footer__link {
  width: 49%;
}
.footer__link {
  font-size: 1.4rem;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.footer__link:hover {
  color: #edc800;
}
.footer .link {
  font-weight: 700;
  color: #edc800;
}

.top__mv {
  overflow: hidden;
  background: url("../assets/images/mv_bg.jpg") no-repeat right/cover;
}
@media screen and (max-width: 1375px) {
  .top__mv-content .title {
    max-width: 60%;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-content .title {
    font-size: 4rem;
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-content .title {
    font-size: 25px;
  }
}
.top__mv-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__mv-wrap {
    padding-block: 50px;
  }
}
.top__mv-image {
  top: 50%;
  right: -15%;
  width: 500px;
  height: 500px;
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1600px) {
  .top__mv-image {
    right: -10%;
  }
}
@media screen and (max-width: 1375px) {
  .top__mv-image {
    top: 75px;
    right: 10%;
    width: 300px;
    height: 300px;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-image {
    top: 80px;
    right: 0;
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-image {
    top: 25px;
    right: 10%;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 550px) {
  .top__mv-image {
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .top__mv-image {
    top: 50px;
  }
}
.top__mv-text {
  font-size: 1.5rem;
  max-width: 900px;
}
@media screen and (max-width: 1375px) {
  .top__mv-text {
    max-width: 100%;
  }
}
.top__mv-text a {
  color: #ffd700;
}
.top__mv-btn {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .top__mv-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top__mv-highlights {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1300px) {
  .top__mv-highlights {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top__mv-highlights span {
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__mv-highlights .check {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #5cb800;
  margin-right: 5px;
  display: inline-block;
}
.top__nav {
  padding-block: 40px 80px;
}
@media screen and (max-width: 767px) {
  .top__nav {
    padding-block: 40px;
  }
}
.top__nav-wrap {
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.2);
}
.top__nav-header {
  cursor: pointer;
  text-align: center;
  font-size: 2rem;
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  padding: 10px 20px;
  background-color: #10216f;
}
@media screen and (max-width: 767px) {
  .top__nav-header {
    font-size: 18px;
    padding: 7px 17px;
  }
}
.top__nav-header::before {
  right: 20px;
  content: "☰";
  position: absolute;
}
.top__nav-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
.top__nav-content-wrap {
  padding: 30px;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
@media screen and (max-width: 767px) {
  .top__nav-content-wrap {
    padding: 15px;
  }
}
@media screen and (max-width: 650px) {
  .top__nav-content-wrap {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.top__nav-content-wrap li {
  padding: 13px 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__nav-content-wrap li {
    font-size: 15px;
    padding: 6px 10px;
  }
}
.top__nav-content-wrap li:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #ffd700;
}
.top__overview-table-wrap {
  margin-top: 40px;
  border-radius: 10px;
  overflow: auto;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__overview-table {
  width: 100%;
  color: #fff;
  border-collapse: collapse;
}
.top__overview-table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__overview-table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__overview-table tr :first-child {
  font-weight: 700;
  border-right: 1px solid #ece7e7;
}
.top__overview-table tr:last-child td {
  border-bottom: none !important;
}
.top__overview-table td {
  font-size: 1.6rem;
  padding: 10px 20px;
  border-bottom: 1px solid #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__overview-table td {
    font-size: 14px;
  }
}
.top__comparison {
  padding-block: 80px 20px;
}
.top__comparison-content {
  margin-top: 40px;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__comparison-content table {
  color: #fff;
  font-size: 1.6rem;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__comparison-content table {
    font-size: 14px;
  }
}
.top__comparison-content tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__comparison-content tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__comparison-content tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__comparison-content tr:first-child {
  color: #ffd95a;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__comparison-content tr:first-child {
    font-size: 16px;
  }
}
.top__comparison-content td {
  width: 200px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top__comparison-content td {
    padding: 5px;
  }
}
.top__comparison-content td:not(:last-child) {
  border-right: 1px solid #ece7e7;
}
.top__trust {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__trust {
    padding-block: 50px;
  }
}
.top__trust-wrap {
  gap: 20px;
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__trust-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__trust-content {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
}
.top__trust-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #10216f;
}
.top__bonuses {
  padding-block: 50px;
}
.top__bonus-banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-block: 40px;
}
.top__bonus-get {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 40px;
  padding-block: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #10216f;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__bonus-get span {
  font-size: 1.2rem;
  margin-top: 10px;
}
.top__bonus-table {
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
  margin-block: 40px;
  border: 1px solid #ece7e7;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__bonus-table table {
  width: 100%;
  border-collapse: collapse;
}
.top__bonus-table table td {
  padding: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top__bonus-table table td {
    width: 50%;
    padding: 10px;
    font-size: 15px;
  }
}
.top__bonus-table table td:first-child {
  width: 250px;
  border-right: 1px solid #ece7e7;
}
.top__bonus-table table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__bonus-table table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__bonus-table table tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__how--deposit {
  margin-top: 100px;
}
.top__how--login {
  margin-block: 0 100px;
}
.top__how-content {
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  border: 1px solid #ece7e7;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__how-content {
    padding: 20px;
  }
}
.top__how-content--place {
  margin-bottom: 30px;
  scroll-margin-top: 100px;
}
.top__how-content--regulation {
  margin-top: 40px;
  scroll-margin-top: 100px;
}
.top__how-content .link {
  color: #ffd700 !important;
}
.top__how-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__how-title {
    font-size: 25px;
  }
}
.top__how-steps {
  padding-top: 40px;
  margin-top: 40px;
  counter-reset: step;
  border-top: 3px solid #ece7e7;
}
.top__how-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 150px;
  position: relative;
  counter-increment: step;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__how-step {
    gap: 20px;
    padding-left: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__how-step::before {
  top: 0;
  left: 55px;
  z-index: 1;
  content: counter(step);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 7px;
  position: absolute;
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .top__how-step::before {
    left: 0;
  }
}
.top__how-step::after {
  right: 0;
  left: 150px;
  bottom: 14px;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__how-step::after {
    left: 60px;
  }
}
.top__how-step:last-child .top__how-step-text::after {
  content: none;
}
.top__how-step-text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__how-step-text {
    width: 100%;
    font-size: 16px;
    padding-right: 0;
  }
}
.top__how-step-text::after {
  top: 0;
  bottom: -40px;
  left: -77px;
  content: "";
  width: 5px;
  position: absolute;
  background-color: #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__how-step-text::after {
    content: none;
  }
}
.top__how-step-list {
  margin-left: 25px;
  margin-block: 20px;
  list-style-type: disc;
}
.top__how-step-image {
  width: 50%;
  min-width: 40%;
}
@media screen and (max-width: 767px) {
  .top__how-step-image {
    width: 100%;
  }
}
.top__how-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__how-others {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__how-others {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__how-other {
  width: 49%;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
}
@media screen and (max-width: 767px) {
  .top__how-other {
    width: 100%;
  }
}
.top__how-other-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #10216f;
}
.top__how-other-steps {
  margin-bottom: 40px;
  counter-reset: other-step;
}
.top__how-other-step {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: other-step;
}
.top__how-other-step::before {
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  border-radius: 5px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(other-step);
  background-color: #274bc4;
}
.top__how-other-step:not(:last-child) {
  margin-bottom: 10px;
}
.top__how-other-text {
  min-height: 210px;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.top__login {
  padding-block: 60px;
}
.top__login-text {
  display: block;
  margin-bottom: 20px;
}
.top__video {
  padding-bottom: 60px;
}
.top__video-wrap {
  width: 100%;
  max-width: 660px;
  height: 400px;
  margin-inline: auto;
}
.top__payment {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__payment {
    padding-top: 60px;
  }
}
.top__payment-method {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top__payment-method {
    gap: 30px;
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__payment-method-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__payment-method-title {
    font-size: 18px;
  }
}
.top__payment-table {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ece7e7;
}
.top__payment-table table {
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__payment-table table {
    font-size: 16px;
  }
}
.top__payment-table tr {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__payment-table tr:first-child {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .top__payment-table tr:first-child {
    font-size: 18px;
  }
}
.top__payment-table tr:not(:last-child) {
  border-bottom: 1px solid #f4f7ff;
}
.top__payment-table td {
  padding: 10px;
}
.top__payment-table td:first-child {
  border-right: 1px solid #f4f7ff;
}
.top__types {
  padding-block: 60px;
}
.top__types-col-2 {
  gap: 50px;
  display: grid;
  margin-block: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__types-col-2 {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__types-col-3 {
  gap: 30px;
  display: grid;
  margin-block: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .top__types-col-3 {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__types-col-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.top__types-col-text {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__types-col-text {
    font-size: 14px;
  }
}
.top__types-col-list {
  padding-left: 30px;
  margin-top: 20px;
  list-style-type: disc;
}
.top__types-col-list li {
  font-size: 1.6rem;
}
.top__types-col-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.top__types-col-image::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__place-steps {
  margin-top: 40px;
  counter-reset: counter-place;
}
.top__place-steps--regulations .top__place-step {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top__place-steps--regulations .top__place-step span {
  display: block;
}
.top__place-step {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  position: relative;
  counter-increment: counter-place;
}
.top__place-step::before {
  z-index: 1;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(counter-place);
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__place-step::after {
  top: 35px;
  left: 18px;
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  background-color: #ece7e7;
}
.top__place-step:not(:last-child) {
  margin-bottom: 20px;
}
.top__place-step:last-child::after {
  content: none;
}
.top__lottery {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__lottery {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__lottery-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top__exchange {
  padding-block: 60px;
}
.top__casino {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__casino {
    padding-top: 50px;
  }
}
.top__casino-label {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-block: 0 20px;
}
.top__casino-list {
  margin-top: 30px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.top__casino-item {
  margin-left: 40px;
  font-size: 1.6rem;
  list-style-type: disc;
}
.top__casino-item:not(:last-child) {
  margin-bottom: 5px;
}
.top__casino-types {
  gap: 50px;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .top__casino-types {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.top__casino-type-label {
  text-align: center;
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__casino-type-label {
    font-size: 18px;
  }
}
.top__casino-type-img {
  margin-block: 30px;
  position: relative;
}
.top__casino-type-img::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__apps {
  padding-block: 60px;
}
.top__apps-types {
  margin-block: 60px;
}
.top__apps-types-label {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}
.top__apps-types-image {
  width: 600px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__apps-types-image {
    width: 100%;
    max-width: 400px;
  }
}
.top__apps-types-image::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  background-color: #ffd700;
}
.top__apps-types-text {
  font-size: 1.8rem;
  margin-block: 20px;
}
.top__apps-requirements-label {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-block: 60px 30px;
}
.top__apps-requirements-table {
  width: 100%;
  overflow: hidden;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px solid #ece7e7;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table {
    font-size: 16px;
  }
}
.top__apps-requirements-table table {
  width: 100%;
  font-size: 1.8rem;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table table {
    font-size: 16px;
  }
}
.top__apps-requirements-table table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.top__apps-requirements-table table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.top__apps-requirements-table table tr:not(:last-child) td {
  border-bottom: 1px solid #ece7e7;
}
.top__apps-requirements-table table td {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top__apps-requirements-table table td {
    padding: 10px;
  }
}
.top__apps-requirements-table table td:first-child {
  border-right: 1px solid #ece7e7;
}
.top__usability-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.top__usability-item {
  width: 267px;
  margin-right: 45px;
  padding: 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__usability-item {
    width: 100%;
  }
}
.top__usability-image {
  height: 450px;
  border-bottom: 5px solid #ffd700;
}
.top__usability-text {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
}
.top__usability-splide {
  margin-bottom: 100px;
}
.top__usability-splide .splide__arrows {
  bottom: -70px;
  gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top__usability-splide .splide__arrow {
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: relative;
  top: unset;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 40px;
  height: 40px;
  z-index: 1;
  background-color: #0031ff;
}
.top__usability-splide .splide__arrow svg {
  fill: #fff;
}
.top__usability-splide .splide__arrow--prev {
  left: unset;
}
.top__usability-splide .splide__arrow--next {
  right: unset;
}
.top__usability-other {
  font-size: 1.6rem;
  margin-left: 40px;
  margin-top: 40px;
  list-style-type: disc;
}
.top__regulation {
  padding-block: 100px;
}
.top__regulation-label {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.top__cs-label {
  font-weight: 700;
  font-size: 2.3rem;
  display: block;
  margin-bottom: 10px;
}
.top__cs-wrap {
  margin-top: 30px;
}
.top__cs-content {
  margin-bottom: 30px;
}
.top__faq-item {
  padding: 20px 50px;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
  background-size: 200% 200%;
}
@media screen and (max-width: 767px) {
  .top__faq-item {
    padding: 15px 25px;
  }
}
.top__faq-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__faq-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.top__faq-item:hover {
  background-position: right;
}
.top__faq-header {
  gap: 10px;
  cursor: pointer;
  font-size: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top__faq-header h3 {
  font-size: 2.2rem !important;
}
@media screen and (max-width: 767px) {
  .top__faq-header h3 {
    font-size: 18px !important;
  }
}
.top__faq-header::after {
  content: "▼";
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__faq-header.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.top__faq-content {
  max-height: 0;
  overflow: hidden;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__faq-content {
    font-size: 16px;
  }
}
.top__faq-content span {
  display: block;
}
.top__faq-steps {
  counter-reset: faq;
  margin-top: 20px;
}
.top__faq-step {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: faq;
}
.top__faq-step::before {
  content: counter(faq);
  z-index: 1;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.top__faq-step:not(:last-child) {
  margin-bottom: 15px;
}
.top__faq-step-text {
  display: block;
  padding-top: 15px;
}
.top__comments {
  color: #fff;
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .top__comments {
    padding-bottom: 95px;
  }
}
.top__comments-wrap {
  padding: 40px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
@media screen and (max-width: 767px) {
  .top__comments-wrap {
    padding: 20px;
  }
}
.top__comments-textarea {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-textarea {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__comments-textarea textarea {
  width: 100%;
  resize: none;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ece7e7;
  font-size: 1.6rem;
  font-family: inherit;
}
.top__comments-form {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__comments-form {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__comments-details {
  width: 28%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-details {
    width: 100%;
  }
}
.top__comments-details input {
  width: 100%;
  height: 50px;
  padding: 20px;
  font-size: 1.6rem;
  font-family: inherit;
  border-radius: 10px;
  border: 1px solid #ece7e7;
}
.top__comments-details button {
  max-width: 100%;
  margin-inline: auto;
}
.top__rating {
  gap: 5px;
  margin-top: 5px;
  margin-left: 5px;
  direction: rtl;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.top__rating input {
  display: none;
}
.top__rating input:checked ~ label {
  color: #ffd700;
}
.top__rating label {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .top__rating label {
    font-size: 20px;
  }
}
.top__rating label::before {
  content: "★";
}
.top__rating label:hover, .top__rating label:hover ~ label {
  color: #ffd700;
}
.top__comments-list {
  margin-top: 30px;
}
.top__comments-content {
  gap: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__comments-content {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__comments-content:not(:last-child) {
  margin-bottom: 40px;
}
.top__comments-posts {
  gap: 20px;
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__comments-posts {
    width: 100%;
  }
}
.top__comments-rate {
  width: 23%;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top__comments-rate {
    gap: 5px;
    width: 100%;
  }
}
.top__comments-name {
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-underline-offset: 5px;
}
.top__comments-text {
  font-size: 1.6rem;
}
.top__comments-date {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__comments-date {
    font-size: 14px;
  }
}
.top__comments-rated {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
}
@media screen and (max-width: 980px) {
  .top__comments-rated {
    font-size: 2rem;
  }
}
.top__modal {
  inset: 0;
  z-index: 1000;
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__modal {
    padding-inline: 4%;
  }
}
.top__modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__modal-backdrop {
  inset: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.top__modal-wrap {
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 30px;
  border: 2px solid #ffd700;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .top__modal-wrap {
    width: 70%;
  }
}
.top__modal-wrap:hover .top__modal-button-hov {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.top__modal-close {
  top: -10px;
  right: 20px;
  z-index: 20;
  margin-top: 30px;
  position: absolute;
}
.top__modal-close button {
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .top__modal-close button {
    width: 30px;
    height: 30px;
  }
}
.top__modal-close button:hover {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.7);
}
.top__modal-button-hov {
  top: 46.5%;
  left: 50%;
  width: 270px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__modal-button-hov {
    display: none;
  }
}
.top__category-title {
  font-size: 3.4rem;
  margin-block: 50px 20px;
}
@media screen and (max-width: 767px) {
  .top__category-title {
    font-size: 25px;
  }
}
.top__cs {
  padding-bottom: 40px;
}
.top .link {
  color: #edc800;
}

.responsible__section {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .responsible__section {
    padding-bottom: 40px;
  }
}
.responsible__grid {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.responsible__grid:not(:last-child) {
  margin-bottom: 20px;
}
.responsible__grid--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.responsible__grid--col1:not(:last-child) {
  margin-bottom: 30px;
}
.responsible__wrap {
  width: 100%;
}
.responsible__wrap:not(:last-child) {
  margin-bottom: 20px;
}
.responsible__label {
  display: block;
  font-size: 3rem;
  margin-bottom: 20px;
}
.responsible__list {
  font-size: 1.5rem;
  margin-block: 20px;
}
@media screen and (max-width: 767px) {
  .responsible__list {
    font-size: 14px;
  }
}
.responsible__list li {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 20px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .responsible__list li {
    padding-inline: 10px;
  }
}
.responsible__list li::before {
  content: "";
  min-width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background-color: #10216f;
}
@media screen and (max-width: 767px) {
  .responsible__list li::before {
    min-width: 7px;
    height: 7px;
  }
}
.responsible__list a {
  color: #10216f;
  font-weight: 700;
}
.responsible__table {
  overflow: auto;
  margin-block: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.responsible__table table {
  width: 100%;
  border-collapse: collapse;
}
.responsible__table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.responsible__table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.responsible__table td {
  font-size: 1.6rem;
  padding: 10px 20px;
  color: #fff;
  border-bottom: 1px solid #ece7e7;
}
.responsible__table td:first-child {
  font-weight: 700;
  border-right: 1px solid #ece7e7;
}
.responsible .link {
  color: #edc800;
}

.about__section {
  padding-bottom: 60px;
}
.about .text a {
  font-weight: 700;
}
.about__float {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  border-radius: 20px;
  margin-block: 30px;
  background-color: #fff;
  border: 2px solid #10216f;
}
@media screen and (max-width: 767px) {
  .about__float {
    gap: 20px;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__float-icon {
  min-width: 60px;
  text-align: center;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .about__float-icon {
    text-align: left;
  }
}
.about__float-icon i {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .about__float-icon i {
    font-size: 30px;
  }
}
.about__float-label {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .about__float-label {
    font-size: 22px;
  }
}
.about__float-grid {
  gap: 20px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 900px) {
  .about__float-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .about__float-grid {
    gap: 10px;
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__float-grid-item {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #10216f;
}
@media screen and (max-width: 767px) {
  .about__float-grid-item {
    padding: 20px;
  }
}
.about__float-grid-item i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.about__float-grid-label {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.about__float-grid-text {
  font-size: 1.4rem;
}
.about__float-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .about .button {
    font-size: 13px;
  }
}
.about .link {
  color: #edc800;
}

.contact__section {
  padding-bottom: 60px;
}
.contact__wrap:not(:last-child) {
  margin-bottom: 20px;
}
.contact__label {
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact__table {
  overflow: auto;
  margin-top: 30px;
  border-radius: 10px;
}
.contact__table table {
  width: 100%;
  border-collapse: collapse;
}
.contact__table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.contact__table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.contact__table td {
  font-size: 1.6rem;
  padding: 10px 20px;
  color: #fff;
  border-bottom: 1px solid #ece7e7;
}
@media screen and (max-width: 767px) {
  .contact__table td {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.contact__table td:first-child {
  font-weight: 700;
  border-right: 1px solid #ece7e7;
}
.contact__socials {
  color: #fff;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact__socials {
    padding-bottom: 15px;
  }
}
.contact__socials .footer__social-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__socials .footer__social-wrap a {
  margin-top: 0;
}
.contact__italic {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
  margin-top: 10px;
  max-width: 500px;
  margin-inline: auto;
}
.contact__card {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
  margin: 30px auto 0;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #10216f;
}
.contact .top__faq-accordion {
  margin-top: 40px;
}
.contact .link {
  color: #edc800;
}

.privacy__section {
  padding-bottom: 60px;
}
.privacy__content {
  margin-top: 40px;
}
.privacy__wrap:not(:last-child) {
  margin-bottom: 25px;
}
.privacy__float-item {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  border: 2px solid #10216f;
}
@media screen and (max-width: 767px) {
  .privacy__float-item {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.privacy__float-item:not(:last-child) {
  margin-bottom: 10px;
}
.privacy__label {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy__label {
    font-size: 20px;
  }
}
.privacy__text {
  font-size: 1.5rem;
}
.privacy__sublabel {
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 10px;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .privacy__sublabel {
    font-size: 16px;
  }
}
.privacy__subtext {
  width: 100%;
  font-size: 1.4rem;
}
.privacy__note {
  padding: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-style: italic;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #10216f;
  border-left-width: 10px;
}
.privacy__grid {
  gap: 20px;
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .privacy__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.privacy__grid-item {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #10216f;
}
.privacy .link {
  color: #10216f;
}

.terms__section {
  padding-bottom: 60px;
}
.terms__important {
  font-size: 1.4rem;
  font-style: italic;
}
.terms__important .bold {
  font-weight: 700;
  font-style: normal;
}
.terms .link {
  color: #10216f;
}

.slot__section {
  padding-bottom: 60px;
}
.slot__subcontent {
  gap: 40px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .slot__subcontent {
    grid-template-columns: repeat(1, 1fr);
  }
}
.slot__subcontent--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.slot__label {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .slot__label {
    font-size: 22px;
  }
}

.lottery__section {
  padding-bottom: 60px;
}
.lottery__wrap:not(:last-child) {
  margin-bottom: 40px;
}
.lottery__label {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.lottery__label--h3 {
  font-size: 2.2rem;
}
.lottery__steps {
  margin-top: 15px;
}
.lottery__step:not(:last-child) {
  margin-bottom: 30px;
}
.lottery .link {
  color: #10216f;
}

.casino__section {
  padding-bottom: 60px;
}
.casino__content {
  margin-top: 40px;
}
.casino__table {
  width: 100%;
  color: #fff;
  margin-block: 40px;
  overflow: auto;
  border-radius: 10px;
}
.casino__table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .casino__table table {
    table-layout: auto;
  }
}
.casino__table thead {
  font-weight: 800;
  color: #ffd95a;
}
.casino__table tr {
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
.casino__table tr:nth-child(even) {
  background: -webkit-gradient(linear, left top, right top, from(#5f7ff0), color-stop(55%, #3f5fe0), to(#2a45b8));
  background: linear-gradient(90deg, #5f7ff0 0%, #3f5fe0 55%, #2a45b8 100%);
}
.casino__table td {
  font-size: 1.6rem;
  padding: 10px 20px;
  border-right: 1px solid #ece7e7;
  border-bottom: 1px solid #ece7e7;
}
.casino__table--7day td {
  font-size: 1.5rem;
  padding: 10px 15px;
}
.casino__grid {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .casino__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.casino__grid-item {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
}
.casino__grid-item--nbg {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: unset;
}
.casino__grid-label {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #10216f;
}
.casino__wrap {
  margin-bottom: 30px;
}
.casino__game-label {
  font-size: 2rem;
}
.casino__check {
  font-size: 1.5rem;
  margin-block: 20px;
}
.casino__check li {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 20px;
  line-height: 2em;
}
.casino__check li::before {
  content: "✔";
}
.casino .link {
  color: #edc800;
}

.poker__section {
  padding-bottom: 60px;
}
.poker__title {
  font-size: 3rem;
  margin-bottom: 30px;
}
.poker__how {
  color: #fff;
  padding: 40px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#4169e1), color-stop(55%, #274bc4), to(#10216f));
  background: linear-gradient(90deg, #4169e1 0%, #274bc4 55%, #10216f 100%);
}
@media screen and (max-width: 767px) {
  .poker__how {
    padding: 40px 20px;
  }
}
.poker__how-steps {
  margin-top: 50px;
  counter-reset: poker-step;
}
.poker__how-step {
  counter-increment: poker-step;
}
.poker__how-step:not(:last-child) {
  margin-bottom: 30px;
}
.poker__how-step-label {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.poker__how-step-label::before {
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(poker-step);
  background-color: #274bc4;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.poker__how-step-text {
  font-size: 1.5rem;
  display: block;
  padding-left: 60px;
}
.poker__content {
  margin-top: 20px;
}
.poker__content--grid {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .poker__content--grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.poker__content--grid .poker__wrap {
  padding: 20px;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid #10216f;
}
.poker__wrap:not(:last-child) {
  margin-bottom: 20px;
}
.poker__wrap h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #10216f;
}
.poker__wrap h5 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.poker__wrap p {
  font-size: 1.5rem;
}
.poker .link {
  color: #10216f;
}

.sport__section {
  padding-bottom: 60px;
}
.sport__wrap:not(:last-child) {
  margin-bottom: 40px;
}
.sport h3 {
  font-size: 3rem;
}
.sport h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.sport .link {
  color: #10216f;
}

.cockfighting__section {
  padding-bottom: 60px;
}
.cockfighting__grid {
  gap: 20px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.cockfighting__grid--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.cockfighting__grid-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #10216f;
}
.cockfighting__grid-item h4 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}
.cockfighting__grid-item p {
  font-size: 1.6rem;
}
.cockfighting__grid-item--nobg {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cockfighting__label {
  font-size: 2.8rem;
}
.cockfighting .link {
  color: #edc800;
}

.esports__section {
  padding-bottom: 50px;
}
.esports__content {
  padding-top: 40px;
}
.esports__wrap:not(:last-child) {
  margin-bottom: 30px;
}
.esports__grid {
  gap: 30px;
  display: grid;
  margin-block: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .esports__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.esports__grid-item {
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #10216f;
  background-color: #fff;
}
.esports__label {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #10216f;
}
@media screen and (max-width: 767px) {
  .esports__label {
    font-size: 22px;
  }
}
.esports__label--center {
  text-align: center;
}
.esports .link {
  color: #10216f;
}

.bonus__section {
  padding-bottom: 60px;
}
.bonus__section .top__place-step {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bonus__section .top__how-other-step {
  margin-bottom: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bonus__section .top__how-other-step p {
  margin-top: 6px;
}
.bonus__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 30px;
}
.bonus__grid {
  gap: 30px;
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .bonus__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bonus__grid-item {
  background-color: #fff;
  border: 2px solid #10216f;
  border-radius: 20px;
  padding: 20px;
}
.bonus__label {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 10px;
  color: #10216f;
}
@media screen and (max-width: 767px) {
  .bonus__label {
    font-size: 20px;
  }
}
.bonus__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.bonus .button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bonus .link {
  color: #edc800;
}

.app .link {
  color: #edc800;
  font-weight: 700;
}
.app__qr {
  margin-block: 30px;
}
.app__qr-wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.app__qr-label {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.app__qr-item {
  width: 100%;
  max-width: 200px;
}
.app__qr-item-label {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}
.app__wrap {
  margin-bottom: 30px;
}

.register .link {
  color: #edc800;
  font-weight: 700;
}
.register .top__place-step::before {
  margin-bottom: auto;
}

.login .link {
  color: #edc800;
  font-weight: 700;
}
.login .top__place-step::before {
  margin-bottom: auto;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.bold {
  font-weight: 700;
}