@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
  text-align: left;
  background: #0b0c21;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
  list-style: none;
  padding: 0 0 0 22px;
  color: #fff;
}
ul > li + li,
ol > li + li {
  margin-top: 8px;
}
ol > li {
  counter-increment: ol;
}

ul > li:before,
ol > li:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  font: inherit;
  text-align: left;
  padding: 0;
  padding-top: inherit;
}

ul > li:before {
  content: '';
  width: 6px;
  height: 6px;
  left: 0;
  top: 5.5px;
  padding: 0;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff;
}

ol > li:before {
  content: counter(ol) '.';
  background: none;
}

a:hover {
  text-decoration: none;
}

.wrap {
  padding: 20px;
  background: #14152d;
  border: 1px solid #fcc211;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.wrap > *,
.desc > * {
  margin-bottom: 20px;
}

.wrap > *:last-child,
.desc > *:last-child {
  margin-bottom: 0;
}

.wrap > .title {
  color: #ffc700;
  text-transform: uppercase;
}

.desc a,
.desc p > span,
li > span {
  color: #ffc700;
}

/* Title */
h1,
h2,
h3,
h4,
.title {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.2;
}

h1 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.6;
}

h1 > span {
  color: #ffc700;
}

h2 {
  padding: 12px 20px;
  margin-bottom: 16px;
  font-size: 28px;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 194, 17, 0.254902)),
    to(#fcc211)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  background: linear-gradient(
    0deg,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

h3 {
  font-size: 20px;
  text-transform: none;
}

h4 {
  font-size: 14px;
  text-transform: none;
}

.title.title-low {
  text-transform: none;
}

/* Button */
.bttn {
  margin: 0;
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 264px;
  height: auto;
  background-image: url(../img/button-bg.png);
  background-position: center;
  background-size: 100% 100%;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: capitalize;
  padding: 26px 32px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none !important;
}

.bttn:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
}

.bttn-box .bttn {
  margin: 0;
}

.bttn.bttn-contrast,
.bttn.bttn-transparent {
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 150px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #ffd400;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.bttn.bttn-contrast {
  color: #13151b;
  background: #ffd400;
}
.bttn.bttn-transparent {
  color: #ffd400;
  background: transparent;
}

.bttn.bttn-contrast:hover {
  color: #fff;
  background: #0b0c21;
  -webkit-filter: none;
  filter: none;
}
.bttn.bttn-transparent:hover {
  color: #0b0c21;
  background: #fff;
  -webkit-filter: none;
  filter: none;
}

.bttn > img,
.bttn > span {
  display: inline-block;
  position: relative;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
}
.bttn > img + span {
  margin-left: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
  z-index: 1;
  text-align: left;
}
.breadcrumbs > li {
  margin: 0 !important;
  display: inline-block;
  padding: 0;
  font-size: 16px;
}

.breadcrumbs > li:before {
  display: none;
}

.breadcrumbs > li a {
  display: inline-block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.breadcrumbs > li a:not([href]) {
  color: #fff;
}

.breadcrumbs > li a[href]:hover {
  color: #ffd400;
}

.breadcrumbs > li:not(:last-child):after {
  content: '|';
  display: inline-block;
  position: relative;
  font: inherit;
  color: #fff;
  margin: 0 6px;
}

/* Article */
article,
.article {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

article > *,
.article > * {
  margin-bottom: 16px;
  width: 100%;
}

article > *:last-child,
.article > *:last-child {
  margin-bottom: 0;
}

article > img,
.article > img {
  width: 100%;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.article__bttn,
article > a,
.article > a {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 264px;
  height: auto;
  background-image: url(../img/button-bg.png);
  background-position: center;
  background-size: 100% 100%;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: capitalize;
  padding: 26px 32px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none !important;
}

.article__bttn:hover,
article > a:hover,
.article > a:hover {
  -webkit-filter: saturate(2.5);
  filter: saturate(2.5);
}

article > * a:not(.bttn),
.article > * a:not(.bttn) {
  color: #ffd400;
}

article > * a:not(.bttn):hover,
.article > * a:not(.bttn):hover {
  color: #fff;
}

img {
  display: block;
}
.image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.image img,
.background img {
  display: block;
  position: relative;
}
.image {
  z-index: -1;
}
.background img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right center;
  object-position: right center;
}
.background {
  margin: 0 !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: absolute !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.background img {
  display: block;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

.js-expand-content.expanded {
  height: auto;
}

.apps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.apps__bttn {
  padding: 14px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  gap: 0 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  background: rgba(253, 205, 10, 0.65);
  border: 2px solid #ffd400;
  -webkit-box-shadow: 0 -1px 20px rgba(253, 205, 10, 0.6),
    inset 0 0 20px rgba(0, 0, 0, 0.6);
  box-shadow: 0 -1px 20px rgba(253, 205, 10, 0.6),
    inset 0 0 20px rgba(0, 0, 0, 0.6);
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.apps__bttn:hover {
  background-color: #0b0c21;
}

.apps__bttn span {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.apps__bttn .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
}

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.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

/* Content */
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.cover {
  height: auto;
  padding-left: -webkit-calc(50% - ((1440px - 20px * 2) / 2));
  padding-left: calc(50% - ((1440px - 20px * 2) / 2));
  padding-right: -webkit-calc(50% - ((1440px - 20px * 2) / 2));
  padding-right: calc(50% - ((1440px - 20px * 2) / 2));
}

.cover > * {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.block,
article {
  padding: 20px;
  background: #1f2038;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.block > * {
  margin-bottom: 20px;
}
.block > *:last-child {
  margin-bottom: 0;
}

.list {
  padding: 20px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 194, 17, 0.254902)),
    to(#fcc211)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  background: linear-gradient(
    0deg,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.list-contrast > li {
  color: #fcc211;
}

.list-contrast > li:before {
  background-color: #fcc211;
}

.dummy {
  position: absolute;
  width: 0;
  height: 0;
  top: -80px;
  left: 0;
}

/* HEADER */
.header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  background: #0b0c21;
  color: rgba(255, 255, 255, 1);
  padding-top: 13.5px;
  padding-bottom: 13.5px;
  z-index: 10;
}

.header > * {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
}

.header__logo {
  margin-right: 86px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.header__logo img {
  height: 40px;
}

.header__menu {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__bttn-menu {
  display: none;
}

/* Menu */
.menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.menu li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0;
}
.menu li + li {
  margin: 0 0 0 40px;
}
.menu li:before {
  display: none;
}

.menu li > a {
  padding: 10px 0;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.28;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.menu li > a[href]:hover {
  color: #ffd400;
}

.menu li > a img {
  margin-right: 8px;
}
.header__bttns {
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.bttn.header__bttn {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  margin: 0 0 0 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 132px;
  font-size: 14px;
  line-height: 1.5;
}

.header__bttn.bttn-transparent {
  color: #fff;
}

.menu li:hover > a {
  text-decoration: none;
}

.header__menu .header__bttn-mob {
  display: none;
}

.header__language {
  margin: 0 0 0 16px;
  padding: 8px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 56px;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  font-weight: 600;
  position: relative;
}

.header__language img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.header__language-menu {
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  top: -webkit-calc(100% + 13.5px);
  top: calc(100% + 13.5px);
  left: 0;
  z-index: 10;
  list-style: none;
  display: none;
}
.header__language-menu ul {
  padding: 12px;
  background: #1f2038;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.header__language-item {
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none !important;
}
.header__language-item:hover {
  color: #ffd400;
}
.header__language-menu li {
  padding: 0;
}
.header__language-menu li + li {
  margin-top: 8px;
}
.header__language-menu li::before {
  display: none;
}

/* Main */
.main-wrapper {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.sidebar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 240px;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  height: -webkit-calc(100vh - 70px);
  height: calc(100vh - 70px);
  overflow-y: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 67px;
  margin-right: 20px;
  background: -o-linear-gradient(top, #0b0c21 0%, #08091c 20%, #0b0c21 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0b0c21),
    color-stop(20%, #08091c),
    to(#0b0c21)
  );
  background: linear-gradient(180deg, #0b0c21 0%, #08091c 20%, #0b0c21 100%);
}

.sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar__scroll {
  padding: 0 15px 20px 15px;
}
.sidebar__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar__nav li {
  padding: 0;
}
.sidebar__nav li + li {
  margin-top: 0;
}
.sidebar__nav li::before {
  display: none;
}
.sidebar__nav a {
  position: relative;
  padding: 16px 0 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #727489;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none !important;
}
.sidebar__nav a img {
  margin-right: 12px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 24px;
  height: 24px;
}
.sidebar__nav a[href]:hover {
  color: #fcc211;
}
.sidebar__nav a small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  line-height: 1;
  text-align: center;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  color: #fff !important;
  text-transform: capitalize;
  background: #fa5926;
  position: absolute;
  left: 16px;
  top: 10px;
}
.sidebar__divider {
  margin: 26px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 1px;
}

.sidebar__divider::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -o-linear-gradient(
    right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.main__review {
  display: none;
}
.review__head {
  margin: 0;
  padding: 0 32px 0 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #fcc211;
  line-height: 1.5;
  text-transform: none;
  text-align: left;
  cursor: pointer;
}

.review__head::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
  background-image: url(../img/icons/plus-icon-contrast.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.review__head.active::after {
  background-image: url(../img/icons/minus-icon-contrast.svg);
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.review ul {
  margin-top: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.review ul li {
  padding: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.review ul li + li {
  margin-top: 12px;
}

.review ul li::before {
  display: none;
}

.review a {
  padding: 0;
  color: #727489;
  font-size: 14px;
  line-height: 24px;
  display: block;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none !important;
}

.review ul li:hover a {
  color: #fff;
}

.accordion--js.active + ul {
  margin-top: 10px;
  height: auto;
}

/* MAIN */
.main {
  margin-top: 67px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 260px);
  -webkit-flex: 0 0 -webkit-calc(100% - 260px);
  flex: 0 0 calc(100% - 260px);
  display: block;
  position: relative;
}

.main > * {
  margin-bottom: 20px;
  position: relative;
}

.main > *:last-child {
  margin-bottom: 0;
}

.prime {
  padding: 44px 60px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  min-height: 445px;
  width: 100%;
  z-index: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
}

.prime__wrap {
  margin: 0 auto 0 0;
  width: 100%;
  max-width: 730px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  text-align: left;
}

.home .prime__wrap {
  max-width: 530px;
}

.prime__wrap > *:not(:last-child) {
  margin-bottom: 16px;
}

.prime__bttn {
  margin-top: 16px;
  z-index: 1;
}

.prime__title {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.prime__desc {
  width: 100%;
  line-height: 1.7;
  color: #ffffff;
}

.prime__image {
  position: absolute;
  bottom: 50%;
  right: 0;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.prime__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center bottom;
  object-position: center bottom;
  margin: 0;
}

/* Betting */
.table,
table,
tbody {
  width: 100%;
  line-height: 24px;
}

table {
  background-color: #14152d;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid #ffd400;
  border-collapse: unset;
  overflow: hidden;
}

table thead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #14152d;
}

table tr:nth-child(even),
table thead tr {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 194, 17, 0.254902)),
    to(#fcc211)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  background: linear-gradient(
    0deg,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
}

table td,
table th {
  padding: 12px 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  line-height: 1.35;
}

table thead td,
table th {
  line-height: 1;
}

.table .text-contrast,
table .text-contrast {
  color: #ffd400;
}

/* Info */
.info__table tr:nth-child(even) {
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.info__table th,
.info__table td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 285px;
  -ms-flex: 0 0 285px;
  flex: 0 0 285px;
  font-weight: 700;
  line-height: 1.65;
}

.info__analysis {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.info-analysis__wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.info-analysis__wrap > * {
  margin-bottom: 16px;
}

.info-analysis__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 24px;
  text-transform: uppercase;
}

.info-analysis__title .icon {
  padding: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 40px;
  height: 40px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#14152d),
    to(#45465e)
  );
  background: -o-linear-gradient(bottom, #14152d 0%, #45465e 100%);
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  border: 2px solid #fcc211;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.info-analysis__list {
  padding-left: 60px;
}

.info-analysis__list li {
  width: 100%;
  line-height: 1.35;
}

/* Instructions */
.instructions__wrap .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #ffc700;
  text-transform: uppercase;
}

.instructions__wrap .title .icon {
  margin-right: 16px;
  width: 32px;
  height: 32px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* Bonuses */
.bonuses__wrap {
  padding: 20px;
  border: 1px solid #ffd400;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

/* Banner */
.banner {
  padding: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  min-height: 632px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}
section.banner {
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.banner.banner-low {
  min-height: unset;
}
.banner.banner-wide {
  padding-right: 80px;
  min-height: unset;
}

.banner > * {
  margin-bottom: 20px;
}

.banner > *:last-child {
  margin-bottom: 0;
}

.banner__wrap {
  width: 100%;
  max-width: 620px;
}

.banner-wide .banner__wrap {
  max-width: 100%;
}

.banner__title {
  text-transform: uppercase;
}

.banner__desc {
  width: 100%;
  max-width: 755px;
  line-height: 1.35;
}

.banner__list {
  width: 100%;
  max-width: 755px;
}

.banner__list.instructions__list li {
  background: transparent;
}

.banner__apps {
  margin-top: 12px;
}

.banner__image {
  margin: 0 !important;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 480px;
  max-height: 100%;
}

.banner__image.banner__image-mobile {
  right: 100px;
  bottom: 80px;
}

.banner__image img {
  width: 100%;
  height: 100%;
}

/* F.A.Q. */
.faq__list > li:before {
  display: none;
}

.faq-item {
  padding: 0;
  background: #14152d;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item__title {
  text-align: left;
  cursor: pointer;
  margin: 0;
  padding: 16px 56px 16px 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 194, 17, 0.254902)),
    to(#fcc211)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  background: linear-gradient(
    0deg,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );

  overflow: hidden;
}

.faq-item__title::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icons/plus-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 19px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-item.active .faq-item__title::before {
  background-image: url(../img/icons/minus-icon.svg);
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.faq-item__desc .wrapper {
  padding: 16px;
  line-height: 24px;
}

/* Reviews */
.reviews__list li {
  padding: 14px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #14152d;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.reviews__list li::before {
  display: none;
}

.reviews__list li + li {
  margin-top: 16px;
}

.reviews-list__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 160px;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
}

.reviews-list__info > span {
  margin-bottom: 6px;
  display: block;
}

.reviews-list__info > *:last-child {
  margin-bottom: 0;
}

.reviews-list__name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #ffd400;
}

.reviews-list__rate {
  width: 100px;
  overflow: hidden;
}

.reviews-list__rate span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100px;
  gap: 0 4px;
  overflow: hidden;
}

.reviews-list__rate img {
  width: 17px;
  height: 16px;
}

.reviews-list__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* Benefits */
.benefits__table tr {
  min-height: 92px;
}

.benefits__table th,
.benefits__table td:first-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 242px;
  -ms-flex: 0 0 242px;
  flex: 0 0 242px;
  text-transform: uppercase;
}

/* Rating */
.rating__list {
  width: 100%;
}

.rating__list > li {
  padding: 8px 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px 20px;
  position: relative;
  background-color: #14152d;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.rating__list > li::before {
  display: none;
}

.rating__list > li > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}

.rating-list__title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  font-size: 20px;
  text-transform: uppercase;
}

.rating-list__scale {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 16px;
  background-color: transparent;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.rating-list__scale span {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
  overflow: hidden;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 194, 17, 0.254902)),
    to(#fcc211)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );
  background: linear-gradient(
    0deg,
    rgba(252, 194, 17, 0.254902) 0%,
    #fcc211 100%
  );

  -webkit-border-radius: 50px;

  border-radius: 50px;
}

.rating-list__index {
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 52px;
  -ms-flex: 0 0 52px;
  flex: 0 0 52px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
  gap: 0 2px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 212, 0, 0.5);
}

.rating-list__index > span:first-child {
  font-size: 24px;
  line-height: 1.33;
  color: #ffd400;
}

/* FOOTER */
.footer {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 42px;
  color: #fff;
  background-color: #0b0c21;
  z-index: 0;
}

.footer__section {
  margin-bottom: 0;
  margin-left: auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1163px;
}

.footer__section > * {
  margin-bottom: 32px;
}
.footer__section > *:last-child {
  margin-bottom: 0;
}

.footer__logo img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  height: 40px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.75;
}

.footer__countries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.footer__countries li {
  margin: 0 !important;
  padding: 0 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 8px;
  color: #fff;
  text-transform: uppercase;
  background: -o-linear-gradient(bottom, #14152d 0%, #45465e 100%);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#14152d),
    to(#45465e)
  );
  background: linear-gradient(0deg, #14152d 0%, #45465e 100%);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__countries li:hover {
  opacity: 0.75;
}

.footer__countries li::before {
  display: none;
}

.footer__countries .icon {
  padding: 12px 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 24px;
  height: 48px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.footer__countries .text {
  padding: 12px 0;
  color: #fff;
  line-height: 24px;
}

.footer__additional {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}

.footer-additional__desc {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.footer-additional__desc > * {
  margin-bottom: 16px;
}
.footer-additional__desc > *:last-child {
  margin-bottom: 0;
}

.footer__additional p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-additional__icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 64px;
  -ms-flex: 0 0 64px;
  flex: 0 0 64px;
}

.footer-additional__icon > img {
  display: block;
  width: 100%;
  max-height: 56px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__nav {
  padding: 2px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px 16px;
  -webkit-border-radius: 32px;
  border-radius: 32px;
  border: 2px solid #242d3d;
}
.footer__nav li::before {
  display: none;
}
.footer__nav li {
  padding: 0;
  margin: 0;
}
.footer__nav a {
  padding: 4px 16px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.footer__nav a:hover {
  color: #13151b;
  background-color: #ffc700;
}

.top {
  margin-top: 20px;
  margin-right: -webkit-calc(50% - (1420px / 2));
  margin-right: calc(50% - (1420px / 2));
  margin-bottom: -40px;
  margin-left: auto;
  padding: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: #1f2038;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  border: 2px solid #1f2038;
  overflow: hidden;
}

.top:hover {
  background: transparent;
}

.top img {
  width: 22px;
  height: 26px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Bonuses page */
/* bonuses overview */
.bonuses-overview__title > span {
  color: #ffc700;
}

.bonuses-overview-wrap__title {
  text-transform: uppercase;
  color: #ffc700;
}
@media screen and (max-width: 1440px) {
  .cover {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-wrapper {
    padding-left: 0;
    padding-right: 20px;
    max-width: 100%;
  }

  .prime {
    margin-right: -20px;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
  }

  .top {
    margin-right: 20px;
		border: 1px solid #ffc700;
  }
}

@media screen and (max-width: 1260px) {
  .header__logo {
    margin-right: 32px;
  }

  table td,
  table th {
    padding: 12px;
  }

  table thead {
    font-size: 16px;
  }

  .banner {
    min-height: 560px;
  }

  .banner__wrap {
    background: rgba(20, 21, 45, 0.6);
  }

  .banner,
  .banner.banner-wide {
    padding: 48px;
  }
}

@media screen and (max-width: 1160px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header > * {
    margin-bottom: 0;
  }
  .header__bttn {
    margin-bottom: 0;
  }

  .menu li + li {
    margin: 0 0 0 20px;
  }

  .sidebar {
    display: none;
  }
  .main {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }

  .main-wrapper {
    padding-left: 20px;
  }

  .main__review {
    display: block;
    padding: 20px 0 20px 20px;
  }
  .review__head {
    padding-right: 40px;
  }
  .review__head::after {
    right: 8px;
  }

  .accordion--js.active + ul {
    margin-top: 16px;
  }

  .review ul li + li {
    margin-top: 4px;
  }

  .review a {
    padding: 6px 0;
  }

  .prime {
    margin-right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1050px) {
  .header {
    height: 67px;
  }
  .header__logo {
    margin-right: auto;
  }

  .header__bttn-menu {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    min-width: unset !important;
    padding: 10px !important;
    margin: 0 0 0 8px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header__bttn-menu svg {
    display: block;
    margin: 0;
    fill: #fff;
  }

  .header__bttn-menu svg rect {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .header__bttn-menu.active ~ .header__menu {
    top: 100%;
    opacity: 1;
  }
  .header__bttn-menu.active svg,
  .header__bttn-menu:hover svg {
    fill: #fff;
  }

  .header__bttn-menu.active svg rect:nth-child(1) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .header__bttn-menu.active svg rect:nth-child(2) {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0, 2);
    -ms-transform: scale(0, 2);
    transform: scale(0, 2);
  }

  .header__bttn-menu.active svg rect:nth-child(3) {
    x: -2px;
    y: 6px;
    width: 20px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header__menu {
    display: block;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: auto;
    max-height: -webkit-calc(100vh - 67px);
    max-height: calc(100vh - 67px);
    overflow: auto;
    text-align: center;
    background: #0b0c21;
    opacity: 0;
    padding: 10px 32px 90px 32px;
    margin: 0 !important;
    z-index: -1;
    -webkit-transition: all 0.75s;
    -o-transition: all 0.75s;
    transition: all 0.75s;
  }

  .header__menu ul {
    display: block;
    max-width: 320px;
  }

  .header__menu ul:last-child {
    display: block;
  }

  .header__menu > * {
    margin: 24px auto 0 auto !important;
  }

  .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 16px 0;
    background-color: transparent;
  }
  .menu li > a {
    width: 100%;
    text-align: center;
    padding: 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    color: #fff;
  }
  .menu li > a:hover {
    border-color: #ffd400;
  }
  .menu li {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu li + li {
    margin: 10px 0 0 0;
  }
  .menu li::after {
    margin: 5px 0;
  }
}

@media screen and (max-width: 900px) {
  .header,
  .main-wrapper,
  .cover {
    padding-left: 16px;
    padding-right: 16px;
  }

  .table {
    padding-right: 20px;
    padding-bottom: 16px;
    margin-right: -20px;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ffc700 transparent;
  }

  .table::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }

  .table::-webkit-scrollbar-track {
    background: transparent;
  }

  .table::-webkit-scrollbar-thumb {
    background-color: #ffc700;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }

  .table table {
    width: 1050px;
  }

  .footer__section {
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .prime {
    padding: 48px 32px;
  }

  .prime__wrap {
    margin-left: auto;
    padding: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(20, 21, 45, 0.65);
    -webkit-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
  }

  .prime__image {
    right: 50%;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    width: 100%;
  }

  .prime__title {
    text-align: center;
  }

  .breadcrumbs {
    text-align: center;
  }

  .banner__image {
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    width: 100%;
  }

  .banner__image.banner__image-mobile {
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    width: unset;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 22px;
  }

  .header__bttns {
    background: rgba(4, 5, 21, 0.8);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
  .header__bttns .header__bttn {
    padding: 14px 20px;
    margin: 0;
    min-width: -webkit-calc(50% - 8px);
    min-width: calc(50% - 8px);
  }

  .header__menu .header__bttn-mob {
    display: block;
    max-width: 320px;
  }

  .prime {
    padding: 32px 20px;
  }

  .banner,
  .banner.banner-wide {
    padding: 20px;
  }

  .banner__background img {
    opacity: 0.7;
  }

  .info-analysis__title {
    gap: 0 12px;
  }

  .info-analysis__title .icon {
    padding: 6px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 32px;
    height: 32px;
  }

  .info-analysis__list {
    padding-left: 40px;
  }

  .rating-list__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .top {
    bottom: 90px;
  }

  .footer {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 605px) {
  .table table {
    width: 800px;
  }

  .prime {
    min-height: 380px;
  }

  .info__analysis {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .info-analysis__wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .info__table {
    padding-right: 20px;
    padding-bottom: 16px;
    margin-right: -20px;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ffc700 transparent;
  }

  .info__table::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }

  .info__table::-webkit-scrollbar-track {
    background: transparent;
  }

  .info__table::-webkit-scrollbar-thumb {
    background-color: #ffc700;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }

  .info__table table {
    width: 720px;
  }

  .info__table th,
  .info__table td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 180px;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
  }

  .reviews__list li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .reviews-list__desc {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .faq-item__title {
    font-size: 16px;
  }

  .footer__countries {
    gap: 12px;
  }

  .benefits__table th,
  .benefits__table td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 200px;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}

@media screen and (max-width: 425px) {
  h1 {
    font-size: 26px;
    line-height: 1.35;
  }

  h2 {
    padding: 12px;
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .block,
  article {
    padding: 16px 12px;
  }

  .table {
    padding-right: 12px;
    margin-right: -12px;
    width: -webkit-calc(100% + 12px);
    width: calc(100% + 12px);
  }

  .wrap {
    padding: 16px;
  }

  .banner,
  .banner.banner-wide {
    padding: 16px;
  }

  .prime {
    margin-right: -16px;
    margin-left: -16px;
    width: -webkit-calc(100% + 16px * 2);
    width: calc(100% + 16px * 2);
  }

  .prime__bttn {
    min-width: 100%;
  }

  .breadcrumbs > li {
    font-size: 14px;
  }

  .info__table {
    padding-right: 12px;
    margin-right: -12px;
    width: -webkit-calc(100% + 12px);
    width: calc(100% + 12px);
  }

  .instructions__wrap .title .icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }

  .rating__list > li {
    gap: 8px 12px;
  }

  .rating-list__title {
    font-size: 16px;
  }

  .rating-list__index > span:first-child {
    font-size: 20px;
  }

  .faq-item__title {
    padding-right: 42px;
  }

  .faq-item__title::before {
    right: 10px;
  }

	.top {
		margin-right: 16px;
    bottom: 86px;
  }


  .footer__countries {
    gap: 8px;
  }

  .footer__countries li {
    padding: 0 8px;
    gap: 0 6px;
  }

  .footer__countries .icon {
    padding: 8px 0;
    width: 20px;
    height: 36px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
  }

  .footer__countries .text {
    padding: 8px 0;
    font-size: 12px;
    line-height: 20px;
  }

  .footer__nav {
    padding: 2px 12px;
    gap: 8px;
  }

  .footer__nav a {
    line-height: 20px;
  }
}

@media screen and (max-width: 375px) {
  h1 {
    font-size: 22px;
  }

  .bttn,
  article > a,
  .article > a {
    padding: 20px;
    min-width: 100%;
  }

  .header__logo img {
    height: 32px;
  }

  .prime__bttn {
    margin-top: 0;
  }

  .info-analysis__list {
    padding-left: 20px;
  }

  .apps__bttn {
    padding: 14px 16px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    gap: 0 10px;
    font-size: 12px;
    width: 100%;
    max-width: 186px;
  }

  .apps__bttn .icon {
    width: 24px;
    height: 24px;
  }
}
