@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #100724;
  background-image: url(../images/blur-bg.svg);
  background-repeat: no-repeat no-repeat;
  background-position: left top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

p {
  margin-top: 16px;
  width: 100%;
}

.title + p,
p:first-child {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

/* Title */
h1,
h2,
h3,
h4 {
  display: block;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  position: relative;
  width: 100%;
}

.title {
  margin-bottom: 16px;
}

h1,
.title.general {
  width: 100%;
  text-align: center;
  font-size: 30px;
  margin-bottom: 0;
}

.decor {
  position: relative;
  display: inline-block;
  padding: 0 100px;
  width: auto;
}

.decor:before,
.decor:after {
  content: '';
  position: absolute;
  background: url('../images/icon-heading-decor.svg');
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 88px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.decor:before {
  left: 0;
}

.decor:after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.bottom {
  display: block;
}

.highlight {
  color: #ffd169;
}

h2,
.title.high {
  font-size: 28px;
  line-height: 1.42857;
}

h3,
.title.middle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}

h4,
.title.mini {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}

/* Article */
article,
.article {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

article > * + *,
.article > * + * {
  margin-top: 16px;
}

article li,
.article li {
  position: relative;
  padding-left: 24px;
}

article ol > li,
.article ol > li {
  counter-increment: ol;
}

article ul > li:before,
article ol > li:before,
.article ul > li:before,
.article ol > li:before {
  display: inline-block;
  position: absolute;
  font: inherit;
  color: inherit;
  z-index: 1;
  top: 0;
  left: 8px;
}

article ul > li:before,
.article ul > li:before {
  content: '•';
}

article ol > li:before,
.article ol > li:before {
  content: counter(ol) '.';
  left: 0;
}

article p a,
.article p a,
article li a,
.article li a {
  color: #18c214;
}

article p a:hover,
.article p a:hover,
article li a:hover,
.article li a:hover {
  text-shadow: 0 0.4px #18c214, 0.4px 0 #18c214;
}

article > .image,
.article > .image {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

/* Button */
.button {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #34c759;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 16px 0 0;
  height: auto;
  width: auto;
  min-width: 220px;
  min-height: 62px;
  position: relative;
  padding: 14px 20px;
}

.button:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
  box-shadow: 0 0 20px 0 rgba(45, 241, 81, 0.9);
}

.button img,
.button span {
  display: inline-block;
  vertical-align: middle;
}

.button img {
  margin-right: 10px;
}

.button span {
  text-align: left;
}

/* Border gradient */
.gradient {
  position: relative;
}

.gradient::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 2px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.04)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Special */
.image img,
.background img {
  display: block;
  position: relative;
  margin: auto;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgba(255, 255, 255, 1);
  line-height: 1;
}

use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.content {
  margin-top: 20px;
  padding: 40px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #100724;
}

.content.clear {
  padding-left: 0;
  padding-right: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.content .scroll {
  position: absolute;
  width: 0;
  height: 0;
  top: -74px;
  left: 0;
}

.scroll + h2,
.content .background + h2,
.scroll + .double {
  margin-top: 0;
}

.main__buttons {
  display: none;
}

/* Header */
.header {
  background: #100724;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  margin-top: 0;
  min-height: 65px;
  overflow: visible;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
  max-width: 156px;
}

.logo[href]:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.menu-button,
.header__menu .header__button {
  display: none;
}

.header__menu {
  margin: 0 auto 0 130px;
}

.header__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.header__menu ul li + li {
  margin-left: 24px;
}

.header__menu ul a {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.header__menu ul a:hover {
  opacity: 0.5;
}

.header__button {
  padding: 8px 20px;
  min-height: 40px;
  min-width: 125px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 0;
}

.header__login {
  background: #3c3db4;
  margin-left: 10px;
}

.header__login:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(60, 61, 180, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(60, 61, 180, 0.9);
  box-shadow: 0 0 20px 0 rgba(60, 61, 180, 0.9);
}

.header__signup {
  margin-left: 10px;
}

/* Languages */
.header__language {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin-left: auto;
}

.header__language img {
  display: block;
  width: 28px;
  height: 28x;
  max-width: 28px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}

/* Main */
.main {
  position: relative;
  padding: 65px 20px 82px 280px;
}

/* Sidebar */
.sidebar {
  width: 240px;
  position: fixed;
  top: 65px;
  left: 20px;
  height: -webkit-calc(100vh - 65px);
  height: -moz-calc(100vh - 65px);
  height: calc(100vh - 65px);
  padding-bottom: 20px;
  overflow-y: auto;
  z-index: 10;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar__wrap {
  padding: 0 4px;
  margin-top: 20px;
}

.sidebar__buttons {
  margin-bottom: 20px;
}

.sidebar__buttons > a + a {
  margin-top: 8px;
}

.sidebar__buttons a {
  position: relative;
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(41.99%, #392f76), to(#2d0f62));
  background: -webkit-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -moz-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -o-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: linear-gradient(90deg, #392f76 41.99%, #2d0f62 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 16px 12px 60px;
  min-height: 48px;
}

.sidebar__buttons a:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
  -moz-box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
  box-shadow: 0 0 20px 0 rgba(113, 124, 255, 0.8);
}

.sidebar__buttons a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 77px;
  height: 48px;
}
.sidebar__menu {
  margin-bottom: 36px;
}

.sidebar__menu li {
  position: relative;
}

.sidebar__menu li + li {
  margin-top: 8px;
}

.sidebar__menu li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #b8a3e4;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 8px 36px 8px 16px;
  min-height: 48px;
}

.sidebar__menu li a:hover {
  background: #251645;
  color: #fff;
}

.sidebar__menu li a img {
  display: block;
  max-width: 24px;
  margin-right: 8px;
}

.sidebar__menu li a:after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-arrow-menu.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
}

.sidebar__menu li a:hover:after {
  background-image: url(../images/icon-arrow-menu-hover.svg);
}

.sidebar__links {
  background: #251645;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar__links-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  position: relative;
  white-space: normal;
  width: 100%;
  padding: 12px 40px 12px 16px;
  background: -webkit-gradient(linear, left top, right top, color-stop(41.99%, #392f76), to(#2d0f62));
  background: -webkit-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -moz-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: -o-linear-gradient(left, #392f76 41.99%, #2d0f62 100%);
  background: linear-gradient(90deg, #392f76 41.99%, #2d0f62 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar__links-button:before {
  content: '';
  background: url('../images/icon-arrow-nav.svg');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
}

.sidebar__links-button:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.sidebar__links-button.active:before {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.sidebar__links-list {
  padding: 8px 0px 16px 0px;
}

.sidebar__links-list a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #b8a3e4;
  padding: 8px 16px;
}

.sidebar__links-list a:hover {
  color: #fff;
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

/* Prime */
.prime {
  min-height: 480px;
  background: #100724;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.banner__wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 36px 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: -webkit-linear-gradient(272deg, rgba(43, 1, 68, 0.6) 0%, rgba(24, 25, 138, 0.6) 100%);
  background: -moz-linear-gradient(272deg, rgba(43, 1, 68, 0.6) 0%, rgba(24, 25, 138, 0.6) 100%);
  background: -o-linear-gradient(272deg, rgba(43, 1, 68, 0.6) 0%, rgba(24, 25, 138, 0.6) 100%);
  background: linear-gradient(178deg, rgba(43, 1, 68, 0.6) 0%, rgba(24, 25, 138, 0.6) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-box-shadow: 0 -7px 10px 0 rgba(59, 34, 122, 0.3);
  -moz-box-shadow: 0 -7px 10px 0 rgba(59, 34, 122, 0.3);
  box-shadow: 0 -7px 10px 0 rgba(59, 34, 122, 0.3);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.prime__wrap {
  max-width: 540px;
  margin-left: 20px;
}

.prime__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-bottom: 8px;
}

.prime__rating-value {
  margin-left: 14px;
}

.prime__text {
  position: relative;
  max-width: 460px;
  margin-top: 16px;
}

/* Double */
.double {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.double > * {
  width: -webkit-calc((100% - 20px) / 2);
  width: -moz-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}

.double > *:last-child {
  margin-left: 20px;
}

.double__item > * + * {
  margin-top: 16px;
}

/* Table */
.table {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.table a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #fff;
}

.table a:hover {
  color: #18c214;
  text-shadow: 0 0.4px #18c214, 0.4px 0 #18c214;
}

.table tr {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  align-items: stretch;
  padding: 0 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.table thead tr {
  min-height: 46px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#ab65fe), to(#6340b5));
  background: -webkit-linear-gradient(left, #ab65fe 0%, #6340b5 100%);
  background: -moz-linear-gradient(left, #ab65fe 0%, #6340b5 100%);
  background: -o-linear-gradient(left, #ab65fe 0%, #6340b5 100%);
  background: linear-gradient(90deg, #ab65fe 0%, #6340b5 100%);
}

.table thead tr::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: 1px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ab65fe), to(#dc3ef6));
  background: -webkit-linear-gradient(top, #ab65fe 0%, #dc3ef6 100%);
  background: -moz-linear-gradient(top, #ab65fe 0%, #dc3ef6 100%);
  background: -o-linear-gradient(top, #ab65fe 0%, #dc3ef6 100%);
  background: linear-gradient(180deg, #ab65fe 0%, #dc3ef6 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.table tbody tr {
  background: #100724;
  margin-top: 2px;
}

.table tr > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
  -moz-box-flex: 1;
  flex: 1 1 0%;
}

.table tr > th {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}

.table tr > td {
  line-height: 1.35;
  padding-top: 12px;
  padding-bottom: 12px;
}

.table tr > * + * {
  padding-left: 16px;
}

/* Intro__compare*/
.content.clear.compare__content,
.content.clear.intro__content {
  padding-top: 0;
  padding-bottom: 0;
}

.intro__compare > * {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #100724;
  padding: 40px;
  overflow: hidden;
}

.compare__heading {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

.compare__item ul {
  margin-top: 20px;
}

.compare__item ul li + li {
  margin-top: 20px;
}

.compare__item ul li p:first-child {
  position: relative;
  font-weight: 500;
  padding-left: 36px;
}

.compare__item ul li p:first-child::before {
  content: '';
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 24px;
  height: 24px;
}

.compare__plus p::before {
  background-image: url('../images/icon-plus.svg');
}

.compare__minus p::before {
  background-image: url('../images/icon-minus.svg');
}

/* Upto */
.content.upto__content {
  min-height: 480px;
  background: #100724;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.upto__content.low {
  min-height: 368px;
}

.content.upto__content-left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
}

.content.upto__content-right {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.content.upto__content-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.upto__wrap {
  position: relative;
  color: #fff;
}

.upto__content-left .upto__wrap {
  margin-left: 12px;
}

.upto__content-right .upto__wrap {
  margin-right: 12px;
}

.upto__title {
  text-transform: initial;
}

.upto__title .bottom {
  text-transform: uppercase;
  margin-top: 6px;
}

.upto__button {
  padding-top: 16px;
  padding-bottom: 16px;
  min-width: 200px;
  min-height: 56px;
  font-size: 20px;
  line-height: 1.2;
}

/* List */
.list {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ab65fe), to(#6340b5));
  background: -webkit-linear-gradient(top, #ab65fe 0%, #6340b5 100%);
  background: -moz-linear-gradient(top, #ab65fe 0%, #6340b5 100%);
  background: -o-linear-gradient(top, #ab65fe 0%, #6340b5 100%);
  background: linear-gradient(180deg, #ab65fe 0%, #6340b5 100%);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding: 40px 40px 40px 50px;
}

.list ul li {
  font-weight: 500;
  font-size: 16px;
  padding-left: 36px;
}

.list ul li + li {
  margin-top: 20px;
}

.list ul li::before,
.list-romb ul li:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.list ul li::before {
  content: url('../images/icon-list1.svg');
  width: 24px;
  height: 24px;
}

/* List-romb */
.list-romb {
  width: 100%;
}

.list-romb ul li {
  padding-left: 36px;
}

.list-romb ul li + li {
  margin-top: 8px;
}

.list-romb ul li::before {
  content: url('../images/icon-list2.svg');
  width: 24px;
  height: 24px;
}

/* Download__content */
.content.download__content {
  min-height: 368px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.download__content > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

.download__buttons {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: -4px;
}

.download__button {
  display: block;
  padding: 12px 24px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  text-align: center;
  min-width: 240px;
  max-width: 240px;
  min-height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: -webkit-linear-gradient(275deg, #ab65fe 0%, #6340b5 100%);
  background: -moz-linear-gradient(275deg, #ab65fe 0%, #6340b5 100%);
  background: -o-linear-gradient(275deg, #ab65fe 0%, #6340b5 100%);
  background: linear-gradient(175deg, #ab65fe 0%, #6340b5 100%);
}

.download__buttons .download__button {
  margin: 4px;
}

.download__button:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(171, 101, 254, 0.9);
  -moz-box-shadow: 0 0 20px 0 rgba(171, 101, 254, 0.9);
  box-shadow: 0 0 20px 0 rgba(171, 101, 254, 0.9);
}

.download__button span {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  flex-grow: 1;
}

/* Bonuses */
.bonus__list {
  width: 100%;
}

.bonus__list ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}

.bonus__list ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 32px 24px;
  background: #100724;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  text-align: center;
  margin: 10px;
}

.bonus__list ul li:last-child {
  width: 100%;
}

.bonus__list ul li::before {
  display: none;
}

.bonus__image {
  width: 64px;
  height: 64px;
}

.bonus__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
  margin-top: 16px;
}

.bonus__subtitle {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-top: 4px;
}

.bonus__title.decor {
  padding: 0 32px;
}

.bonus__title.decor::before,
.bonus__title.decor::after {
  background: url(../images/icon-bonus-decor.svg);
  width: 24px;
  height: 16px;
}

.bonus__text {
  max-width: 630px;
}

/* Reviews */
.reviews__content ul {
  width: -webkit-calc(100% + 20px);
  width: -moz-calc(100% + 20px);
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 6px -10px -10px -10px;
}

.reviews__content ul li {
  width: -webkit-calc((100% - 60px) / 3);
  width: -moz-calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  background: #100724;
  margin: 10px;
}

.reviews__content ul li > * {
  position: relative;
}

.reviews__content ul li::before {
  display: none;
}

.review__title {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-top: 16px;
}

.review__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.review__rating img {
  width: 26px;
}

.review__rating img + img {
  margin-left: 6px;
}

.review__text {
  text-align: center;
}

.review__name {
  font-weight: 700;
}

/* FAQ */
.faq__list {
  margin-top: 20px;
}

.faq__list li {
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.faq__list li + li {
  margin-top: 16px;
}

.title.faq-item__title {
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  text-transform: initial;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #ad63fd;
  padding: 16px 56px 16px 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item__title:after {
  content: '';
  background-image: url('../images/icon-faq.svg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 20px;
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.title.faq-item__title:hover {
  text-shadow: 0 0.3px #fff, 0.3px 0 #fff;
}

.faq-item__desc {
  position: relative;
  padding: 12px 16px;
  color: #d3c4f4;
}

.faq__item.active .faq-item__title:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* Rating */
.rating__table tbody tr {
  min-height: 112px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #291850;
}

.rating__table tbody tr td {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.rating__table tr + tr {
  margin-top: 16px;
}

.rating__table tr > td + td {
  padding-left: 12px;
}

.rating__table tr td:nth-child(1) {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}

.rating__table tr td:nth-child(2) span:first-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.rating__table tr td:nth-child(2) span:last-of-type {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  margin-left: 6px;
}

.rating__table tr td:nth-child(2) img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 20px;
  -moz-box-flex: 0;
  flex: 0 1 20px;
}

.rating__table tr td:nth-child(2) img + img {
  margin-left: 5px;
}

/* Arrow-top */
.main__top {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -100;
}

.main__arrowtop {
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.main .main__arrowtop {
  height: 72%;
}

.main__arrowtop a {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  bottom: 10px;
  right: 0;
  width: 42px;
  height: 42px;
}

.main__arrowtop a img {
  max-width: 42px;
}

.main__arrowtop a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 0 20px 0 280px;
}

.footer__wrap {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 40px;
  background: #100724;
}

.footer__payment {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.15);
}

.footer__payment ul {
  width: -webkit-calc(100% + 16px);
  width: -moz-calc(100% + 16px);
  width: calc(100% + 16px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -8px;
}

.footer__payment li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  margin: 8px;
}

.footer__payment li a {
  position: relative;
  display: block;
}

.footer__payment li a img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
}

.footer__payment li a:hover img:nth-child(2) {
  opacity: 1;
}

.footer__payment li a:hover img:nth-child(1) {
  opacity: 0;
}

.footer__countries {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.footer__countries ul {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin: -10px;
}

.footer__countries li {
  margin: 8px;
}

.footer__countries li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 12px;
  background: #1a0b3b;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__countries li a:hover {
  background: rgba(50, 41, 159, 0.5);
}

.footer__countries li a img {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  max-width: 24px;
  margin-right: 8px;
}

.bottom__wrapper {
  width: 100%;
  background: #190b38;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 40px 20px;
}

.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.bottom__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 155px;
  -moz-box-flex: 0;
  flex: 0 0 155px;
  margin-right: 20px;
}

.footer__logo {
  display: block;
}

.footer__logo:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.footer__logo img {
  max-width: 155px;
}

.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
  min-width: 500px;
  margin: -5px;
}

.footer__links > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  flex: 0 1 auto;
  margin: 5px;
}

.footer__links p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.footer__links p img {
  margin-right: 10px;
}

.footer__links ul li + li {
  margin-top: 8px;
}

.footer__links ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #b8a3e4;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__links ul li a:hover {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__contacts {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 295px;
  -moz-box-flex: 0;
  flex: 0 1 295px;
  min-width: 190px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  margin-left: 10px;
}

.footer__mail {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  min-width: 190px;
}

.footer__mail span:first-child {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer__mail img {
  max-width: 24px;
}

.footer__mail:hover span {
  background: -webkit-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: -moz-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: -o-linear-gradient(275deg, #bb63ff 0%, #717cff 100%);
  background: linear-gradient(175deg, #bb63ff 0%, #717cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__info {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  min-width: 128px;
}

.footer__age {
  width: 54px;
  height: 54px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.514;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #b63d3d;
  padding: 13px 0;
  margin-left: 20px;
}

.footer__text {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.66667;
  color: #b8a3e4;
  margin-top: 20px;
}

/* PAGES */
/* Breadcrumbs */
.breadcrumbs {
  display: inline-block;
  text-align: center;
  width: auto;
  margin-bottom: 10px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs > li a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.breadcrumbs > li:not(:last-child) a {
  opacity: 0.7;
}

.breadcrumbs > li:not(:last-child) a:hover {
  opacity: 1;
}

.breadcrumbs > li a:not([href]) {
  opacity: 1;
}

.breadcrumbs > li a:not([href]),
.breadcrumbs > li a:not([href]) span {
  cursor: default;
}

.breadcrumbs > li:not(:last-child):after {
  content: '|';
  display: inline-block;
  position: relative;
  font: inherit;
  color: #fff;
  margin: 0px 8px;
}

/* APP PAGE */
.app .content.prime {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  align-items: flex-end;
}

.app .prime__wrap {
  margin-left: 0;
  margin-right: 15px;
}
@media screen and (min-width: 1580px) {
  .cover {
    padding-left: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-left: calc(50% - ((1580px - 40px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main {
    padding-left: -webkit-calc(50% - ((1580px - 280px - 280px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 280px - 280px) / 2));
    padding-left: calc(50% - ((1580px - 280px - 280px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .sidebar {
    left: -webkit-calc(50% - ((1580px - 40px) / 2));
    left: -moz-calc(50% - ((1580px - 40px) / 2));
    left: calc(50% - ((1580px - 40px) / 2));
  }

  .footer {
    padding-left: -webkit-calc(50% - ((1580px - 280px - 280px) / 2));
    padding-left: -moz-calc(50% - ((1580px - 280px - 280px) / 2));
    padding-left: calc(50% - ((1580px - 280px - 280px) / 2));
    padding-right: -webkit-calc(50% - ((1580px - 40px) / 2));
    padding-right: -moz-calc(50% - ((1580px - 40px) / 2));
    padding-right: calc(50% - ((1580px - 40px) / 2));
  }

  .main__arrowtop {
    right: -webkit-calc(50% - ((1580px - 40px) / 2));
    right: -moz-calc(50% - ((1580px - 40px) / 2));
    right: calc(50% - ((1580px - 40px) / 2));
  }
}

@media screen and (min-width: 1201px) and (max-width: 1300px), screen and (max-width: 1025px) {
  /* FOOTER */
  .footer__payment ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
  }

  .footer__bottom {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
    margin: 20px 0 0 0;
  }

  .footer__mail {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    flex: 0 1 auto;
    min-width: 0;
  }

  .footer__info {
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 1280px) {
  .content {
    padding: 20px;
  }

  .footer__wrap {
    padding: 20px;
  }

  /* Intro__compare*/
  .intro__compare > * {
    padding: 20px;
  }

  /* Upto */
  .upto__content-left .upto__background img {
    -o-object-position: 60%;
    object-position: 60%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 30%;
    object-position: 30%;
  }
}

@media screen and (max-width: 1200px) {
  .cover {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .header__logo {
    margin-left: 0;
  }

  .header__menu {
    margin-left: 30px;
  }

  .sidebar {
    position: static;
    height: auto;
    overflow: visible;
    padding: 0;
    margin: 20px auto 0;
    width: 100%;
  }

  .sidebar__menu,
  .sidebar__buttons {
    display: none;
  }

  .sidebar__wrap {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar__links-button:before {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }

  .sidebar__links-button.active:before {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }

  .sidebar__links-list {
    display: none;
  }
}

@media screen and (max-width: 1025px) {
  .header__logo {
    margin-right: auto;
  }

  .menu-button {
    display: block;
    background-color: transparent;
    padding: 10px;
    width: 40px;
    height: 40px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    flex: none;
    margin-left: 16px;
  }

  .menu-button svg {
    display: block;
    margin: auto;
  }

  .menu-button svg rect {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    fill: #fff;
  }

  .menu-button:hover svg rect {
    fill: #34c759;
  }

  .menu-button.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .menu-button.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -moz-transform: scale(0, 2);
    -o-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .menu-button.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #100724;
    z-index: 100;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    padding: 25px;
    text-align: center;
  }

  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .header__menu ul li + li {
    margin-left: 0;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 60%;
    object-position: 60%;
  }

  /* App */
  .app .prime__background img {
    -o-object-position: 40%;
    object-position: 40%;
  }

  .prime__wrap {
    margin-left: 0;
  }

  .app .prime__wrap {
    margin-right: 0;
  }

  /* Upto */
  .content .upto__wrap {
    margin-left: 0;
    margin-right: 0;
  }

  /* Bonuses */
  .bonus__list ul li,
  .bonus__list ul li:last-child {
    width: -webkit-calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: calc((100% - 40px) / 2);
  }

  /* Games */
  .games__list ul li {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* BONUS */
  /* Spins */
  .spins__wrap ul {
    margin-left: 0;
  }

  .spins__background img {
    -o-object-position: 70%;
    object-position: 70%;
  }

  /* Takeoff */
  .takeoff__background img {
    -o-object-position: 55%;
    object-position: 55%;
  }

  /* APP */
  /* Features */
  .features__list ul li {
    width: -webkit-calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 850px) {
  h1,
  .title.general {
    font-size: 28px;
  }

  .decor {
    padding: 0 80px;
  }

  .decor:before,
  .decor:after {
    width: 70px;
  }

  h2,
  .title.high {
    font-size: 24px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer,
  .footer__wrap,
  .bottom__wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content {
    padding: 15px;
  }

  .main__arrowtop {
    right: 15px;
  }

  /* Prime */
  .prime__background img {
    -o-object-position: 80%;
    object-position: 80%;
  }

  /* Table */
  .table tr {
    padding-left: 12px;
    padding-right: 12px;
  }

  .table tr > * + * {
    padding-left: 8px;
  }

  /* Upto */
  .content.upto__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
  }

  .upto__content-left .upto__background img {
    -o-object-position: 85%;
    object-position: 85%;
  }

  .upto__content-right .upto__background img {
    -o-object-position: 15%;
    object-position: 15%;
  }

  .upto__title .bottom {
    font-size: 28px;
  }

  /* List */
  /* List-counter  */
  .list,
  .list-counter {
    padding: 20px;
  }

  /* Reviews */
  .reviews__content ul li {
    width: -webkit-calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 768px) {
  /* Double */
  .double {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .double > * {
    width: 100%;
  }

  .double > *:last-child {
    margin: 20px 0 0 0;
  }

  /* Download__content */
  .download__background img {
    -o-object-position: 100%;
    object-position: 100%;
  }

  /* Upto */
  .upto__title .bottom {
    font-size: 24px;
  }

  .upto__content-center .upto__background img {
    -o-object-position: 0%;
    object-position: 0%;
  }

  /* Table */
  .table.table-wide {
    overflow: auto;
  }

  .table.table-wide table {
    width: 820px;
  }

  /* Intro__table */
  .intro__table td:first-child,
  .intro__table th:first-child {
    max-width: 180px;
  }

  /* Bonuses */
  .bonus__list ul li,
  .bonus__list ul li:last-child {
    width: 100%;
  }

  /* Features */
  .features__table td:first-child,
  .features__table th:first-child {
    max-width: 300px;
  }

  /* FOOTER */
  .footer__bottom {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 12px;
    padding-right: 12px;
  }

  .bottom__logo {
    margin: 0 auto 20px 0;
  }

  .footer__links {
    width: 100%;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    min-width: 0;
  }
}

@media screen and (max-width: 650px) {
  h1,
  .title.general {
    font-size: 26px;
  }

  .decor {
    padding: 0 60px;
  }

  .decor:before,
  .decor:after {
    width: 50px;
  }

  h2,
  .title.high {
    font-size: 22px;
  }

  .header > .header__button {
    display: none;
  }

  .header__menu .header__button {
    display: inline-block;
    min-width: 145px;
    margin: 0 5px 20px;
  }

  .main__buttons {
    background: rgba(16, 7, 36, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 12px;
  }

  .main__buttons .button {
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    min-width: 0;
  }

  /* Prime */
  .banner__wrap {
    padding: 24px 15px;
  }

  /* App */
  .app .prime__background img {
    -o-object-position: 20%;
    object-position: 20%;
  }

  /* Table */
  .table {
    overflow: auto;
  }

  .table table {
    width: 620px;
  }

  /* Upto */
  .upto__title .bottom {
    font-size: 22px;
  }

  /* Bonuses */
  .bonus__list ul li {
    padding: 20px 10px;
  }

  .bonus__title {
    font-size: 18px;
  }

  /* Reviews */
  .reviews__content ul li {
    width: 100%;
  }

  .main__arrowtop a {
    bottom: 72px;
  }

  /* FOOTER */
  .footer {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 550px) {
  /* FOOTER */
  .bottom__logo {
    margin-left: auto;
  }
}

@media screen and (max-width: 450px) {
  h1,
  .title.general {
    font-size: 24px;
    text-align: center;
  }

  .decor {
    padding: 0 38px;
  }

  .decor:before,
  .decor:after {
    width: 30px;
  }

  h2,
  .title.high {
    word-break: break-word;
    font-size: 20px;
  }

  h3,
  .title.middle {
    font-size: 18px;
  }

  h4,
  .title.mini {
    font-size: 16px;
  }

  .content {
    padding: 15px 10px;
  }

  .header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header__logo img {
    max-width: 130px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main__arrowtop {
    right: 10px;
  }

  /* Prime */
  .banner__wrap {
    padding: 20px 10px;
  }

  .prime__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Intro__compare*/
  .intro__compare > * {
    padding: 15px 10px;
  }

  /* List */
  /* List-romb  */
  .list {
    padding: 15px 8px;
  }

  .list ul li,
  .list-romb ul li {
    padding-left: 32px;
  }

  /* Download__content */
  .download__background img {
    -o-object-position: 90%;
    object-position: 90%;
  }

  /* Upto */
  .upto__content-center .upto__background img {
    -o-object-position: 10%;
    object-position: 10%;
  }

  /* Reviews */
  .reviews__content ul li {
    padding: 15px 10px;
  }

  .rating__table tr td:nth-child(1) {
    font-size: 18px;
  }

  /* FAQ */
  .title.faq-item__title {
    padding: 10px 42px 10px 10px;
  }

  .faq-item__title:after {
    top: 7px;
    right: 10px;
  }

  .faq-item__desc {
    padding: 5px 10px;
  }

  /* FOOTER */
  .footer,
  .footer__wrap,
  .bottom__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer__links-item:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
  }

  .footer__contacts {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    margin: 15px -5px -5px -5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% + 10px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% + 10px);
  }

  .footer__contacts > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -moz-box-flex: 0;
    flex: 0 1 100%;
    margin: 5px;
  }

  .footer__text {
    text-align: center;
  }
}
