/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/
  @charset "UTF-8";
 
  .button {
    display: block;
    width: 137px;
    height: fit-content;
    padding: 12px;
    text-align: center;
    white-space: nowrap;
    background: #F9C719;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    color: #111;
  }
  @media (max-width: 768px) {
    .button {
      width: 100%;
    }
  }
  .button:hover {
    background: #ffffff;
    color: #111111;
  }
  .button--2 {
    background: #26B4AC;
    color: #fff;
  }
  .button--2:hover {
    background: #ffffff;
    color: #111111;
  }
  

  p,
  span,
  li {
    font-size: 14px;
    line-height: 150%;
  }
  
  h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 100%;
  }
  @media (max-width: 1366px) {
    h1 {
      font-size: 56px;
      line-height: 120%;
    }
  }
  @media (max-width: 1024px) {
    h1 {
      font-size: 42px;
    }
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 34px;
    }
  }
  
  h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.12px;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 25px;
    }
  }
  
  h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px;
  }
  
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
  }
  p span,
  h1 span,
  h2 span,
  h3 span,
  h4 span,
  h5 span,
  h6 span {
    font-size: inherit;
    color: #6181e0;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 9;
    background: #0E2F2B;
  }
  .header__container {
    min-width: 1440px;
  }
  .header__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    flex-wrap: nowrap;
    padding: 20px 0;
  }
  @media (max-width: 768px) {
    .header__wrapper {
      padding: 10px 0 0;
    }
  }
  .header__hidden {
    opacity: 0;
    transform: translateY(-100%);
  }
  .header__scrolled {
    background: #111;
  }
  .header__buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .header__buttons {
      display: none;
    }
  }
  .header__lang {
    display: flex;
    align-items: center;
    margin-right: 10px;
    height: 40px;
  }
  .header__burger {
    display: none;
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 11px;
  }
  @media (max-width: 768px) {
    .header__burger {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
  }
  .header__burger span {
    position: absolute;
    right: 0;
    z-index: 10;
    display: block;
    width: 32px;
    height: 1px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  .header__burger span:nth-child(1) {
    top: -50%;
  }
  .header__burger span:nth-child(2) {
    top: 0;
  }
  .header__burger span:nth-child(3) {
    top: 50%;
  }
  .header__burger--active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .header__burger--active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav {
    display: flex;
  }
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  }
  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .nav .menu-item {
    position: relative;
  }
  .nav .menu-item:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #6181e0;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .nav .menu-item:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .logo {
    max-width: 160px;
    width: 100%;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: -5%;
    width: 60vw;
    height: 100vh;
    z-index: 9;
    background: #111;
    transform: translateX(-200%);
    transition: all 0.3s ease-in-out;
    padding: 50px 20px 0;
  }
  @media (max-width: 768px) {
    .mobile-menu {
      display: flex;
    }
  }
  .mobile-menu--active {
    transform: none;
  }
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .mobile-menu .button {
    margin-bottom: 15px;
    padding: 8px;
  }
  .mobile-menu .menu-item {
    font-size: 16px;
    font-weight: 500;
  }
  
  .hero {
    margin-bottom: 110px;
    background: url("../img/banner.webp") right center no-repeat;
    background-size: contain;
    height: 440px;
    overflow: hidden;
    margin-top: 110px;
    margin-bottom: 80px;
  }
  @media (max-width: 1280px) {
    .hero {
      height: auto;
    }
  }
  @media (max-width: 768px) {
    .hero {
      margin-bottom: 40px;
    }
  }
  .hero__iframe {
    height: 100%;
  }
  .hero__iframe .hero__wrapper {
    flex-direction: column !important;
    gap: 80px;
  }
  .hero__iframe .hero__right {
    width: 100%;
    max-width: 100%;
  }
  .hero__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 3;
    padding: 80px 0 0 0;
  }
  @media (max-width: 768px) {
    .hero__wrapper {
      display: flex;
      flex-direction: column;
      padding-bottom: 0;
      padding-top: 170px;
    }
  }
  .hero__breadcrumbs {
    position: absolute;
    top: 150px;
    left: 0;
  }
  @media (max-width: 768px) {
    .hero__breadcrumbs {
      top: 70px;
    }
  }
  .hero__breadcrumbs #breadcrumbs a,
  .hero__breadcrumbs #breadcrumbs p,
  .hero__breadcrumbs #breadcrumbs span {
    color: #ffffff;
  }
  .hero__breadcrumbs .breadcrumb_last {
    color: #6181e0 !important;
  }
  .hero__left {
    max-width: 605px;
    width: 100%;
  }
  @media (max-width: 1366px) {
    .hero__left {
      max-width: 50%;
    }
  }
  @media (max-width: 768px) {
    .hero__left {
      max-width: 100%;
    }
  }
  .hero__title {
    margin-bottom: 30px;
  }
  @media (max-width: 768px) {
    .hero__title {
      margin-bottom: 15px;
    }
  }
  .hero__desc {
    max-width: 450px;
    width: 100%;
    opacity: 0.4;
    margin-bottom: 30px;
  }
  @media (max-width: 1024px) {
    .hero__desc {
      font-size: 14px;
    }
  }
  @media (max-width: 768px) {
    .hero__desc {
      max-width: 100%;
    }
  }
  .hero__button {
    width: 200px;
  }
  @media (max-width: 768px) {
    .hero__button {
      width: 100%;
    }
  }
  .hero__right {
    width: 50%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .hero__right {
      max-width: 100%;
      width: 100%;
    }
  }
  .hero__right img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  
  .table-of-content {
    position: relative;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    .table-of-content {
      margin-bottom: 40px;
    }
  }
  .table-of-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(286px);
    z-index: 2;
  }
  .table-of-content__wrapper {
    position: relative;
    z-index: 3;
    background-color: #6181e0;
    border-radius: 10px;
  }
  .table-of-content__title {
    display: block;
    width: 100%;
    padding: 24px 16px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .table-of-content__title {
      text-align: center;
      font-size: 14px;
      padding: 14px;
    }
  }
  .table-of-content__icon {
    position: relative;
    top: 2px;
    margin-left: 3px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
  }
  .table-of-content__list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  @media (max-width: 768px) {
    .table-of-content__list {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
  }
  .table-of-content__list--active {
    opacity: 1;
    padding: 0 16px 16px;
    height: auto;
  }
  .table-of-content--active > .table-of-content__icon {
    transform: rotate(180deg);
  }
  
  .image-text-block {
    position: relative;
    margin-bottom: 80px;
  }
  .image-text-block:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(286px);
    z-index: 2;
  }
  .image-text-block:nth-child(even):before {
    position: absolute;
    left: 0;
    top: 0px;
  }
  @media (max-width: 1024px) {
    .image-text-block:nth-child(even):before {
      display: none;
    }
  }
  .image-text-block:nth-child(odd):before {
    position: absolute;
    right: 0;
    bottom: 30%;
  }
  @media (max-width: 1024px) {
    .image-text-block:nth-child(odd):before {
      display: none;
    }
  }
  .image-text-block__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    gap: 40px;
    width: 100%;
    z-index: 3;
  }
  @media (max-width: 768px) {
    .image-text-block__wrapper {
      display: flex;
      flex-direction: column;
    }
  }
  .image-text-block__wrapper--right {
    flex-direction: row-reverse;
  }
  .image-text-block__img {
    width: 50%;
    max-height: 500px;
    overflow: hidden;
  }
  @media (max-width: 1024px) {
    .image-text-block__img {
      width: 100%;
    }
  }
  .image-text-block__img img {
    border-radius: 10px;
    object-fit: cover;
  }
  .image-text-block__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
  }
  @media (max-width: 768px) {
    .image-text-block__content {
      width: 100%;
    }
  }
  .image-text-block__title {
    margin-bottom: 20px;
  }
  .image-text-block__text span {
    color: #6181e0;
  }
  
  .table {
    margin-bottom: 80px;
    position: relative;
  }
  .table:before {
    position: absolute;
    left: 0;
    top: 0;
  }
  @media (max-width: 1024px) {
    .table:before {
      display: none;
    }
  }
  .table:after {
    position: absolute;
    right: 0;
    top: 70%;
  }
  @media (max-width: 1024px) {
    .table:after {
      display: none;
    }
  }
  .table__wrapper {
    padding: 15px;
    background: #1b1b1b;
    border-radius: 10px;
    position: relative;
    z-index: 3;
  }
  @media (max-width: 768px) {
    .table__wrapper {
      padding: 0;
    }
  }
  .table h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
  }
  .table h3 {
    text-align: center;
    margin: 20px auto;
    position: relative;
    z-index: 3;
  }
  
  table {
    font-size: 12px;
    width: 100%;
    border-collapse: collapse !important;
  }
  table thead {
    background: #6181e0;
    text-align: center;
  }
  table thead td,
  table thead th {
    border: none !important;
  }
  table thead td:first-child,
  table thead th:first-child {
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  table thead td:last-child,
  table thead th:last-child {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  table td,
  table th {
    padding: 24px 14px;
    border: 1px solid #ffffff;
    border-top: none;
  }
  @media (max-width: 768px) {
    table td,
    table th {
      padding: 14px 10px;
    }
  }
  
  .steps {
    margin-bottom: 80px;
  }
  .steps__wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 3;
  }
  @media (max-width: 768px) {
    .steps__wrapper {
      gap: 40px;
    }
  }
  .steps h2 {
    margin-bottom: 10px;
  }
  .steps__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    align-items: baseline;
  }
  @media (max-width: 768px) {
    .steps__content {
      width: 100%;
    }
  }
  .steps__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
  }
  @media (max-width: 768px) {
    .steps__item {
      display: flex;
      flex-direction: column;
    }
  }
  .steps__item:first-child:before {
   position: absolute;
    left: -300px;
    top: 10%;
    transform: scale(0.8);
    max-width: 180px;
  }
  @media (max-width: 1024px) {
    .steps__item:first-child:before {
      display: none;
    }
  }
  .steps__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  @media (max-width: 768px) {
    .steps__item:nth-child(even) {
      flex-direction: column;
    }
    .steps__item:nth-child(even) .steps__bottom {
      align-items: end;
    }
  }
  .steps__item:nth-child(even) .steps__img:after {
    right: 100%;
    left: auto;
  }
  .steps__item:nth-child(even):after {
    position: absolute;
    left: -300px;
    top: 40%;
  }
  @media (max-width: 1024px) {
    .steps__item:nth-child(even):after {
      display: none;
    }
  }
  .steps__item:nth-child(odd):after {
    position: absolute;
    right: -200px;
    bottom: 0;
  }
  @media (max-width: 1024px) {
    .steps__item:nth-child(odd):after {
      display: none;
    }
  }
  .steps__item:last-child .steps__img:after {
    display: none;
  }
  .steps__item--1 .steps__content {
    justify-content: space-between;
  }
  .steps__bottom {
    display: flex;
    flex-direction: column;
  }
  .steps__number {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.8px;
    margin-bottom: 15px;
  }
  .steps__img {
    position: relative;
    width: 50%;
    text-align: center;
  }
  @media (max-width: 768px) {
    .steps__img {
      width: 100%;
    }
  }
  .steps__img img {
    max-width: 330px;
    width: 100%;
  }
  .steps__img::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 100%;
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(290px);
    z-index: -1;
  }
  .steps__desc {
    max-width: 470px;
  }
  @media (max-width: 768px) {
    .steps__top {
      margin-bottom: 80px;
    }
  }
  .steps__range {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #6181e0;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
  }
  .steps__range span {
    color: #6181e0;
    font-weight: 500;
    letter-spacing: -0.5px;
  }
  .steps__range--line {
    position: relative;
  }
  .steps__range--line::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translatey(-50%);
    width: 50px;
    border-bottom: 1px solid #6181e0;
    margin-left: 5px;
  }
  .steps__range--number {
    margin-left: 70px;
  }
  
  .faq {
    position: relative;
    margin-bottom: 80px;
  }
  .faq:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(286px);
    z-index: 2;
  }
  .faq::before {
    position: absolute;
    left: 0;
    top: 30%;
    transform: scale(0.8);
    max-width: 180px;
  }
  @media (max-width: 1024px) {
    .faq::before {
      display: none;
    }
  }
  .faq__wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
  }
  .faq h2 {
    margin-bottom: 30px;
  }
  .faq h3 {
    transition: all 0.3s ease-in-out;
  }
  .faq__tab {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  }
  .faq__tab-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    text-align: left;
    color: #000000;
  }
  @media (max-width: 768px) {
    .faq__tab-label {
      font-size: 14px;
    }
  }
  .faq__tab-label:hover {
    background: #6181e0;
    color: #ffffff;
  }
  .faq__tab-label:hover:after {
    color: #ffffff;
  }
  .faq__tab-label:hover h3 {
    color: #ffffff;
  }
  .faq__tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: #000000;
  }
  .faq__tab-label h3 {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
  }
  .faq__tab-content {
    max-height: 0;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    text-align: left;
  }
  @media (max-width: 768px) {
    .faq__tab-content {
      font-size: 14px;
    }
  }
  .faq__tab-content p {
    color: #000000;
  }
  .faq__tab input {
    display: none;
  }
  .faq__tab input:checked + .faq__tab-label {
    background: #6181e0;
    color: #ffffff;
  }
  .faq__tab input:checked + .faq__tab-label h3 {
    color: #ffffff;
  }
  .faq__tab input:checked + .faq__tab-label::after {
    transform: rotate(90deg);
    color: #ffffff;
  }
  .faq__tab input:checked ~ .faq__tab-content {
    max-height: 100vh;
    padding: 15px;
  }
  
  .slots {
    position: relative;
    z-index: 3;
    overflow: hidden;
    margin-bottom: 80px;
  }
  .slots:after {
    position: absolute;
    right: -3%;
    top: 0px;
  }
  @media (max-width: 1024px) {
    .slots:after {
      display: none;
    }
  }
  .slots__wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
  }
  @media (max-width: 768px) {
    .slots__wrapper {
      text-align: left;
    }
  }
  .slots h2 {
    margin-bottom: 40px;
  }
  @media (max-width: 768px) {
    .slots h2 {
      margin-bottom: 25px;
    }
  }
  .slots__content {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 20px;
  }
  @media (max-width: 768px) {
    .slots__content {
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 15px;
    }
  }
  .slots__item {
    display: block;
    position: relative;
    background: #6181e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }
  .slots__item::before {
    content: "";
    padding-bottom: 100%;
    display: block;
  }
  .slots__item-back {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 90%;
    width: 90%;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    transition: all 0.3s ease-in-out;
  }
  .slots__item-title {
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .slots__item-title {
      font-size: 10px;
      font-weight: 500;
    }
  }
  .slots__item-play, .slots__item-demo {
    font-size: 12px;
    padding: 6px;
  }
  @media (max-width: 768px) {
    .slots__item-play, .slots__item-demo {
      font-size: 8px;
      padding: 3px;
    }
  }
  .slots__item-blur {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    z-index: 3;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
  }
  .slots__item:hover .slots__item-back {
    visibility: visible;
    opacity: 1;
  }
  .slots__item:hover .slots__item-blur {
    visibility: visible;
    opacity: 1;
  }
  
  .text {
    margin-bottom: 80px;
    position: relative;
  }

  .text:nth-child(even):before {
    position: absolute;
    left: 0;
    top: 0px;
  }
  @media (max-width: 1024px) {
    .text:nth-child(even):before {
      display: none;
    }
  }
  .text:nth-child(odd):before {
    position: absolute;
    right: 0;
    bottom: 30%;
  }
  @media (max-width: 1024px) {
    .text:nth-child(odd):before {
      display: none;
    }
  }
  .text__wrapper {
    position: relative;
    z-index: 3;
  }
  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text h6 {
    text-align: center;
    margin: 20px 0;
  }
  .text table {
    margin: 10px 0;
  }
  .text p {
    margin: 10px 0;
  }
  .text p:first-child {
    margin: 0 0 10px 0;
  }
  .text p:last-child {
    margin: 10px 0 0 0;
  }
  @media (max-width: 768px) {
    .text__content {
      font-size: 14px;
    }
  }
  
  .author {
    margin-bottom: 80px;
  }
  .author__wrapper {
    background: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .author__wrapper {
      background: transparent;
      padding: 0;
    }
  }
  .author__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
  }
  .author__image {
    width: 100px;
    height: 100px;
  }
  @media (max-width: 768px) {
    .author__image {
      width: 60px;
      height: 60px;
    }
  }
  .author__image img {
    border-radius: 50%;
  }
  .author__title {
    font-size: 24px;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .author__title {
      font-size: 20px;
    }
  }
  .author__desc {
    position: relative;
    z-index: 3;
    line-height: 150%;
  }
  @media (max-width: 768px) {
    .author__desc {
      font-size: 14px;
    }
  }
  
  .footer {
    background: #08211E;
    margin: 20px 0;
    padding: 17px 0;
  }
  .footer__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
  }
  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  @media (max-width: 768px) {
    .footer__content {
      display: flex;
      flex-direction: column;
    }
  }
  .footer__copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px 0 0;
  }
  @media (max-width: 768px) {
    .footer__copyright {
      font-size: 12px;
    }
  }
  .footer__socials {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .footer__socials-item:hover {
    filter: invert(48%) sepia(93%) saturate(1348%) hue-rotate(203deg) brightness(92%) contrast(91%);
    -webkit-filter: invert(48%) sepia(93%) saturate(1348%) hue-rotate(203deg) brightness(92%) contrast(91%);
  }
  .footer__socials-label {
    display: none;
  }
  @media (max-width: 768px) {
    .footer__nav {
      display: none;
    }
  }
  
  .archive-page:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(286px);
    z-index: 2;
  }
  .archive-page .container {
    position: relative;
  }
  .archive-page .hero__breadcrumbs {
    left: 30px;
  }
  .archive-page__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    padding-top: 200px;
    padding-bottom: 80px;
  }
  @media (max-width: 768px) {
    .archive-page__wrapper {
      padding-top: 110px;
    }
  }
  .archive-page__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
    width: 100%;
    margin-bottom: 80px;
  }
  @media (max-width: 768px) {
    .archive-page__content {
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
    }
  }
  .archive-page__item {
    display: block;
    background: #1b1c1c;
    border: 6px solid #1b1c1c;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  .archive-page__item:hover .archive__item-img {
    transform: scale(1.05);
  }
  .archive-page__item-img {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  .archive-page__item-img img {
    object-fit: cover;
  }
  .archive-page__item-content {
    display: flex;
    flex-direction: column;
    padding: 16px 10px 10px;
    text-align: left;
  }
  .archive-page__item-date {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.384px;
    color: #6181e0;
    margin-bottom: 15px;
  }
  .archive-page__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.576px;
  }
  .archive-page__error {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 60vh;
  }
  .archive-page__error-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
  }
  .archive-page__error-left h3 {
    font-size: 56px;
    margin-bottom: 10px;
  }
  .archive-page__error-left span {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .archive-page__error-left a {
    width: 170px;
  }
  .archive-page__error-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  .archive-page__error-right svg {
    width: 100%;
  }
  
  .archive {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .archive .footer-error {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: transparent;
  }
  
  .pagination .nav-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .pagination .nav-links .page-numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
  }
  .pagination .nav-links .current {
    background: #6181e0 !important;
  }
  .pagination .nav-links .prev,
  .pagination .nav-links .next {
    font-size: 25px;
    font-weight: 300;
  }
  
  .error-page:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 600px;
    height: 600px;
    background: #7695f1;
    filter: blur(286px);
    z-index: 2;
  }
  .error-page__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 3;
    padding-top: 200px;
    padding-bottom: 80px;
    height: 90vh;
  }
  @media (max-width: 768px) {
    .error-page__wrapper {
      flex-direction: column-reverse;
    }
  }
  .error-page__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
  }
  @media (max-width: 768px) {
    .error-page__left {
      width: 100%;
    }
  }
  .error-page__left h3 {
    font-size: 56px;
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    .error-page__left h3 {
      font-size: 36px;
      font-weight: 500;
    }
  }
  .error-page__left span {
    font-size: 24px;
    margin-bottom: 20px;
  }
  @media (max-width: 768px) {
    .error-page__left span {
      font-size: 18px;
      font-weight: 400;
    }
  }
  .error-page__left a {
    width: 170px;
  }
  .error-page__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
  @media (max-width: 768px) {
    .error-page__right {
      width: 100%;
    }
  }
  .error-page__right svg {
    width: 100%;
  }
  
  .error404 {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .error404 .footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: transparent;
  }
  
  .single-page .hero__content {
    position: relative;
    max-width: 50%;
    width: 100%;
    background-color: #1b1b1b;
    padding: 25px;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .single-page .hero__content {
      max-width: 100%;
    }
  }
  .single-page .hero h2 {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .single-page .hero__desc {
    max-width: 100%;
    opacity: 1;
  }
  .single-page .hero__button {
    margin: 0 auto;
  }
  .single-page .hero__circle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .single-page .hero__circle--thumbnail {
    background-size: contain;
  }
  
  .single-page-bonuses .hero__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }
  .single-page-bonuses .hero__content {
    max-width: 100%;
  }
  .single-page-bonuses .hero h2 {
    font-size: 25px;
  }
  .single-page-bonuses .hero h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .single-page-bonuses .hero__code {
    background: #1b1c1c;
    padding: 25px;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .single-page-bonuses .hero__code {
      max-width: 100%;
    }
  }
  .single-page-bonuses .hero__code-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  @media (max-width: 768px) {
    .single-page-bonuses .hero__code-wrapper {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 8px;
    }
  }
  .single-page-bonuses .hero__code input {
    background: transparent;
    width: 75%;
    border-radius: 70px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
  }
  .single-page-bonuses .hero__code__copy {
    width: 25%;
    cursor: pointer;
  }
  .single-page-bonuses .hero__code-button {
    width: 100%;
  }
  
  .single-page-apps .hero__apps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 25px;
    width: 100%;
    margin-bottom: 25px;
  }
  @media (max-width: 1024px) {
    .single-page-apps .hero__apps {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
  }
  .single-page-apps .hero__apps-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 50%;
    border: 1px solid transparent;
  }
  @media (max-width: 1024px) {
    .single-page-apps .hero__apps-button {
      width: 100%;
    }
  }
  .single-page-apps .hero__apps-button:hover {
    background-color: #6181e0;
    color: #ffffff;
    border: 1px solid #ffffff;
  }
  .single-page-apps .hero__apps-button img {
    margin-right: 8px;
    width: 25px;
    height: 20px;
  }
  
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  /* Document
     ========================================================================== */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   */
  html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  
  /* Sections
       ========================================================================== */
  /**
     * Remove the margin in all browsers.
     */
  body {
    margin: 0;
  }
  
  /**
     * Render the `main` element consistently in IE.
     */
  main {
    display: block;
  }
  
  /* Grouping content
       ========================================================================== */
  /**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
       ========================================================================== */
  /**
     * Remove the gray background on active links in IE 10.
     */
  a {
    background-color: transparent;
  }
  
  /**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
     * Add the correct font size in all browsers.
     */
  small {
    font-size: 80%;
  }
  
  /**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
       ========================================================================== */
  /**
     * Remove the border on images inside links in IE 10.
     */
  img {
    border-style: none;
  }
  
  /* Forms
       ========================================================================== */
  /**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  
  /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
  button,
  select {
    /* 1 */
    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;
  }
  
  /**
     * Correct the padding in Firefox.
     */
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
  progress {
    vertical-align: baseline;
  }
  
  /**
     * Remove the default vertical scrollbar in IE 10+.
     */
  textarea {
    overflow: auto;
  }
  
  /**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
  [type=checkbox],
  [type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
  [type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  
  /**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  
  /* Interactive
       ========================================================================== */
  /*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
  details {
    display: block;
  }
  
  /*
     * Add the correct display in all browsers.
     */
  summary {
    display: list-item;
  }
  
  /* Misc
       ========================================================================== */
  /**
     * Add the correct display in IE 10+.
     */
  template {
    display: none;
  }
  
  /**
     * Add the correct display in IE 10.
     */
  [hidden] {
    display: none;
  }
  
  textarea {
    resize: none;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
  }
  
  * {
    box-sizing: border-box;
  }
  
  h1 {
    margin: 0;
  }
  
  .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  * {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
  }
  
  body {
    background: #0E2F2B;
  }
  
  #page {
    overflow: hidden;
  }

  .nav__list li a {
    font-size: 16px;
    line-height: 16px;
  }
  p, span, li {
    font-size: 16px;
}

.img-big {
    margin: 20px 0;
}

.img-big img {
    max-width: 80%;
    margin: auto;
    display: block;
    height: auto;
}
.img-big br {
    display: none;
}

.showcase {
    margin:  0 0 20px 0;
    width: 100%;
}
.showcase__item {
    margin: 0 0 20px 0;
    padding: 16px;
    display: flex;
    border-radius: 16px;
    background: #16423D;
    align-items: center;
    justify-content: space-between;
}
.showcase__item:last-child {
    margin: 0;
}
.showcase__caption {
    display: flex;
    align-items: center;
    gap: 16px;
}
.showcase__caption_number {
    min-width: 50px;
    max-width: 50px;
    height: 60px;
    background: #26B4AC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-weight: 800;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
}
.showcase__caption_logo {
    min-width: 200px;
    max-width: 200px;
    height: 60px;
    border-radius: 9px;
}
.showcase__caption_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.showcase__caption_text {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    white-space: nowrap;
}
.showcase__button {
    min-width: 226px;
    max-width: 226px;
    margin: 0 0 0 16px;
}
.showcase__button_link {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: #F9C719;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.3s ease;
    color: #111111;
}
.showcase__button_link:hover {
    text-decoration: none;
    background: #fff;
    color: #111111;
}
.showcase__bonus {
    min-width: 270px;
    max-width: 270px;
    background: rgba(92, 201, 116, 0.22);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.showcase__bonus p  {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #5CC974;
    margin: 0 8px;
    white-space: nowrap;
}
.showcase__stars {
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.showcase__stars img {
    min-width: 19px;
    max-width: 19px;
}
@media screen and (max-width: 1360px) {
    .hero {
        background: url(../img/banner.webp) right center no-repeat;
        background-size: 60%;
        margin-top: 85px;
    }
}

@media screen and (max-width: 1199px) {
    .showcase__item {
        flex-wrap: wrap;
    }
    .showcase__caption_number {
        min-width: 33px;
        max-width: 33px;
        height: 60px;
        font-size: 20px;
        line-height: 20px;
    }
    .showcase__caption_text {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .showcase__button {
        min-width: 100%;
        max-width: 100%;
        margin: 16px 0 0 0;
    }
}
@media screen and (max-width: 767px) {
    .showcase__caption {
        width: 100%;
        margin: 0 0 16px 0;
    }
    .showcase__bonus {
        min-width: 150px;
        max-width: 150px;
    }
    .showcase__bonus p {
        white-space: normal;
        font-size: 12px;
        line-height: 19px;
    }
    .showcase__stars {
        gap: 3px;
        min-width: calc(100% - 160px);
        max-width: calc(100% - 160px);
        margin: 0 10px 0 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .showcase__stars img {
        min-width: 15px;
        max-width: 15px;
    } 
    
}
@media screen and (max-width: 768px) {
    .hero {
        background: url(../img/banner-small.webp) top center no-repeat;
        background-size: 320px;
        margin: 50px 0;
    }
    .hero__wrapper {
        padding-top: 270px;
    }
}
.boddy-open-menu {
    overflow: hidden;
}
.boddy-open-menu:after {
    content: '';
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.anchor__menu {
    display: block;
    padding: 0;
    margin: 0;
}
.anchor__menu li {
    display: block;
    padding: 0;
    margin: 0 0 10px 0;
}
.anchor {
    margin: 40px 0 ;
}
.anchor__menu li a {
    transition: all 400ms ease-in-out;
}
.anchor__menu li a:hover {
    opacity: 0.7;
    transition: all 400ms ease-in-out;
}

.error-content {
    margin: 200px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.error-content h1,
.error-content p {
    text-align: center;
}