@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: 15px;
  font-weight: 400;
  line-height: 1.5;
  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: 10px;
}
ol > li {
  counter-increment: ol;
}

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

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

ol > li:before {
  content: counter(ol) '.';
  width: 20px;
  background: none;
  text-align: center;
  white-space: nowrap;
}

a:hover {
  text-decoration: none;
}

.wrap {
  padding: 20px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

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

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

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

/* Title */
h1,
h2,
h3,
h4,
.title {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 700;
  text-align: left;
  text-transform: none;
}

h1 {
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #ffc700;
}

h2 {
  padding: 12px 20px;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1;
  color: #ffd400;
  background: #0b0c21;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #ffd400;
}

h3 {
  padding: 8px 20px;
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
  background: #0b0c21;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #ffd400;
}

h4 {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  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);
}

.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: 20px;
  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: center;
  object-position: 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;
}

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% - ((1600px - 30px * 2) / 2));
  padding-left: calc(50% - ((1600px - 30px * 2) / 2));
  padding-right: -webkit-calc(50% - ((1600px - 30px * 2) / 2));
  padding-right: calc(50% - ((1600px - 30px * 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: #171830;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 0;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

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

.list {
  padding: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0b0c21),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #0b0c21 0%, #484b91 100%);
  background: linear-gradient(180deg, #0b0c21 0%, #484b91 100%);
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.list.list-semitransparent {
  padding: 0 40px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
}

.list.list-semitransparent > li {
  padding: 10px 0 10px 30px;
}

.list.list-semitransparent > li + li {
  margin-top: 0;
}

ol.list.list-semitransparent > li::before {
  padding-top: inherit;
  padding-bottom: inherit;
}
ul.list.list-semitransparent > li::before {
  top: 17.5px;
}

.list.list-transparent {
  padding: 0;
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.list.list-transparent > li {
  padding-left: 60px;
}
ol.list.list-transparent > li {
  padding-left: 80px;
}

.list.list-transparent > li + li {
  margin-top: 20px;
}

ol.list.list-transparent > li::before {
  left: 54px;
}

.list.list-transparent > li::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 32px;
  top: -webkit-calc(50% - 32px / 2);
  top: calc(50% - 32px / 2);
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.list.list-transparent > li:nth-child(3n-2)::after {
  background-image: url(../img/icons/stone-marker-1.svg);
}
.list.list-transparent > li:nth-child(3n-1)::after {
  background-image: url(../img/icons/stone-marker-2.svg);
}
.list.list-transparent > li:nth-child(3n)::after {
  background-image: url(../img/icons/stone-marker-3.svg);
}
ul.list.list-transparent > li::before {
  display: none;
}

.list-horisontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}

.list-horisontal li {
  margin: 0 !important;
  padding: 10px 20px;
  line-height: 1.4;
  text-align: center;
  background: #0b0c21;
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.list-horisontal li::before {
  display: none;
}

.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: 1540px;
  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: 12px 32px 12px 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
  text-align: left;
  cursor: pointer;
}

.review__head::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: 4px;
  top: -webkit-calc(50% - 16px / 2);
  top: calc(50% - 16px / 2);
  background-image: url(../img/icons/open-icon.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 {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.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: 40px 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: 380px;
  width: 100%;
  z-index: 0;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.prime__wrap {
  margin: 0 auto 0 0;
  width: 100%;
  max-width: 610px;
  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;
}

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

.prime__rating {
  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;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.prime__rating > * {
  margin-right: 18px;
}

.prime__rating > *:last-child {
  margin-right: 0;
}

.prime-rating__numbers {
  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 2px;
}

.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: cover;
  object-fit: cover;
  -o-object-position: right bottom;
  object-position: right bottom;
  margin: 0;
}

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

table {
  background-color: transparent;
  border-collapse: unset;
  overflow: hidden;
}

table thead {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #14152d;
  gap: 0 10px;
}

table td,
table th {
  padding: 10px 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  line-height: 1.6;
  text-align: center;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0b0c21),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #0b0c21 0%, #484b91 100%);
  background: linear-gradient(180deg, #0b0c21 0%, #484b91 100%);
}

table tr:first-child > * {
  -webkit-border-radius: 12px 12px 0 0;
  border-radius: 12px 12px 0 0;
}
table tr:last-child > * {
  -webkit-border-radius: 0 0 12px 12px;
  border-radius: 0 0 12px 12px;
}

table thead td {
  color: #ffd400;
  line-height: 22px;
  text-transform: uppercase;
  background: #0b0c21;
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px !important;
  border-radius: 12px !important;
}

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

/* Info */
.info__table th,
.info__table td {
  padding-left: 40px;
  font-weight: 400;
  text-align: left;
}

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

.info__table a {
  color: inherit;
  text-decoration: none;
}
.info__table a:hover {
  color: #ffd400;
  text-decoration: none;
}

.info__inspection {
  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-inspection__wrap {
  padding: 0 !important;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
}

.info-inspection__wrap::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: 10px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.info-inspection__wrap::before {
  background-image: url(../img/icons/advantages-big-icon.svg);
}
.info-inspection__wrap.info-inspection__wrap-disadvantages::before {
  background-image: url(../img/icons/disadvantages-big-icon.svg);
}

.info-inspection__title {
  margin-bottom: 0 !important;
  padding: 4px 40px;
  line-height: 1.5;
  background: none;
  border: none;
}

.info-inspection__list {
  padding: 0 40px;
}

.info-inspection__list li {
  padding: 10px 0 10px 30px;
  width: 100%;
  line-height: 24px;
}

.info-inspection__list li + li {
  margin-top: 0;
}

.info-inspection__list li::before {
  width: 20px;
  height: 20px;
  left: 0;
  top: -webkit-calc(50% - 20px / 2);
  top: calc(50% - 20px / 2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
}

.info-inspection__list li::before {
  background-image: url(../img/icons/advantages-icon.svg);
}
.info-inspection__wrap-disadvantages .info-inspection__list li::before {
  background-image: url(../img/icons/disadvantages-icon.svg);
}

/* Deals */
.deals__list {
  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: 10px;
}

.deals__list li {
  margin: 0 !important;
  padding: 30px 20px 100px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 10px * 2) / 3);
  -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
  flex: 0 0 calc((100% - 10px * 2) / 3);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1c1d35),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #1c1d35 0%, #484b91 100%);
  background: linear-gradient(180deg, #1c1d35 0%, #484b91 100%);
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

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

.deals__list li > * {
  z-index: 10;
}

.deals-list__image {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9 !important;
}

.deals-list__image img {
  width: 100%;
  -o-object-position: center top;
  object-position: center top;
  -o-object-fit: cover;
  object-fit: cover;
}

.deals-list__title {
  margin-bottom: 20px;
}

/* Table games */
.table-games__wrap {
  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;
}

.table-games-wrap__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 20px / 2);
  -ms-flex: 0 0 calc(50% - 20px / 2);
  flex: 0 0 calc(50% - 20px / 2);
}

.table-games-wrap__item-text > * {
  margin-bottom: 30px;
}
.table-games-wrap__item-text > *:last-child {
  margin-bottom: 0;
}

.table-games-wrap__title {
  padding: 4px 40px;
  line-height: 1.5;
}

.table-games-wrap__list {
  padding: 0 40px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.table-games-wrap__list > li {
  padding: 6px 0 6px 20px;
}

.table-games-wrap__list > li + li {
  margin-top: 0;
}

.table-games-wrap__list > li::before {
  width: 10px;
  height: 10px;
  top: -webkit-calc(50% - 10px / 2);
  top: calc(50% - 10px / 2);
  background-color: #ffd400;
}

.table-games-wrap__item-image {
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.table-games-wrap__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* F.A.Q. */
.faq__list > li:before {
  left: 20px;
  top: 13px;
  font-weight: 700;
  z-index: 100;
}

.faq-item {
  padding: 0;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #ffd400;
  overflow: hidden;
}

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

.faq-item__title {
  text-align: left;
  cursor: pointer;
  margin: 0;
  padding: 12px 56px 12px 44px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0b0c21),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #0b0c21 0%, #484b91 100%);
  background: linear-gradient(180deg, #0b0c21 0%, #484b91 100%);
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
}

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

.faq-item.active .faq-item__title::after {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.faq-item__desc {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0b0c21),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #0b0c21 0%, #484b91 100%);
  background: linear-gradient(180deg, #0b0c21 0%, #484b91 100%);
}

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

/* Reviews */
.reviews__list {
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px 80px;
}

.reviews__list li {
  margin: 0 !important;
  padding: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 80px * 2) / 3);
  -ms-flex: 0 0 calc((100% - 80px * 2) / 3);
  flex: 0 0 calc((100% - 80px * 2) / 3);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

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

.reviews-list__header {
  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;
  gap: 8px 18px;
  width: 100%;
}

.reviews-list-header__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.reviews-list-header__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

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

.reviews-list__name {
  margin-bottom: 10px;
  display: block;
  width: 100%;
  line-height: 1.5;
  font-weight: 700;
}

.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: 18px;
}

.reviews-list__desc {
  line-height: 1.35;
}

/* 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 {
  padding: 0 56px;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.rating__list > li {
  margin: 0 !important;
  padding: 14px;
  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: 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: 16px 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc((100% - 16px * 2) / 3);
  -ms-flex: 0 0 calc((100% - 16px * 2) / 3);
  flex: 0 0 calc((100% - 16px * 2) / 3);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(11, 12, 33, 0.95)),
    to(rgba(31, 32, 56, 0.6))
  );
  background: -o-linear-gradient(
    left,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(11, 12, 33, 0.95) 0%,
    rgba(31, 32, 56, 0.6) 100%
  );
  border: 1px solid #ffd400;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

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

.rating-list__icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.rating-list__icon img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.rating-list__index {
  color: #ffd400;
}

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

/* 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% - (1540px / 2));
  margin-right: calc(50% - (1540px / 2));
  margin-bottom: -40px;
  margin-left: auto;
  padding: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  bottom: 30px;
  width: 42px;
  height: 42px;
  background: #0b0c21;
  cursor: pointer;
  z-index: 5;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.top:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Bonuses page */
/* bonuses overview */
.bonuses__wrap {
  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;
}

.bonuses-wrap__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

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

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

.bonuses-wrap__item-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 42%;
  -ms-flex: 0 0 42%;
  flex: 0 0 42%;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.bonuses-wrap__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Apps */
.apps {
  padding: 140px 70px;
  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__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: -webkit-calc(100% - 26px);
  height: calc(100% - 26px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.apps__image img {
  height: 100%;
}

.apps__buttons {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
  width: 100%;
}

.apps-buttons__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-buttons__bttn:hover {
  background-color: #0b0c21;
}

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

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

/* Features */
.features__list {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.features__list li {
  margin: 0 !important;
  padding: 30px 20px 136px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 -webkit-calc(50% - 20px / 2);
  -ms-flex: 0 0 calc(50% - 20px / 2);
  flex: 0 0 calc(50% - 20px / 2);
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1c1d35),
    to(#484b91)
  );
  background: -o-linear-gradient(top, #1c1d35 0%, #484b91 100%);
  background: linear-gradient(180deg, #1c1d35 0%, #484b91 100%);
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.features__list li > * {
  margin-bottom: 20px;
  z-index: 2;
}

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

.features__list li::before {
  content: counter(ol);
  position: absolute;
  width: 94px;
  left: unset;
  right: 20px;
  top: unset;
  bottom: -56px;
  font-size: 128px;
  font-weight: 900;
  line-height: 1.5;
  color: #070213;
}

.features-list__image {
  margin: 0 !important;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1 !important;
}

.features-list__image img {
  width: 100%;
}

/* Banner */
.banner {
  padding: 0 !important;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.banner > *,
.banner__image img {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .cover {
    padding-left: 30px;
    padding-right: 30px;
  }
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }

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

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

  .top {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1400px) {
  .prime__wrap {
    padding: 32px 20px;
    background: rgba(23, 24, 48, 0.8);
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
  }
}

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

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

  table thead {
    font-size: 16px;
  }

  .reviews__list {
    gap: 20px;
  }

  .reviews__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 20px * 2) / 3);
    -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
    flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .rating__list {
    padding: 0;
  }

  .rating__list li {
    font-size: 20px;
  }

  .apps {
    padding: 80px 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 !important;
  }
  .review__head {
    padding: 0 40px 0 0;
  }
  .review__head::after {
    right: 20px;
  }

  .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[href]: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-large {
    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-large::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }

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

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

  .table-large table {
    width: 1050px;
  }

  .table-games-wrap__title {
    padding: 4px 20px;
  }
  .table-games-wrap__list {
    padding: 0 20px;
  }

  .footer__section {
    padding: 0;
  }

  .features__list li {
    padding-bottom: 110px;
  }
}

@media screen and (max-width: 850px) {
  .reviews__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 20px) / 2);
    -ms-flex: 0 0 calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
  }

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

  .deals__list li {
    padding-bottom: 160px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 -webkit-calc((100% - 10px) / 2);
    -ms-flex: 1 0 calc((100% - 10px) / 2);
    flex: 1 0 calc((100% - 10px) / 2);
  }

  .deals-list__image {
    max-height: 220px;
  }

  .bonuses__wrap {
    padding: 16px;
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .bonuses-wrap__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .bonuses-wrap-item__desc {
    padding: 16px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(11, 12, 33, 0.95)),
      to(rgba(31, 32, 56, 0.6))
    );
    background: -o-linear-gradient(
      left,
      rgba(11, 12, 33, 0.95) 0%,
      rgba(31, 32, 56, 0.6) 100%
    );
    background: linear-gradient(
      90deg,
      rgba(11, 12, 33, 0.95) 0%,
      rgba(31, 32, 56, 0.6) 100%
    );
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }

  .bonuses-wrap-item__title {
    margin-bottom: 0;
  }

  .bonuses-wrap__item-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }
}

@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;
    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;
  }

  .table-games__wrap {
    padding: 16px;
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .table-games-wrap__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .table-games-wrap__item-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }
}

@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;
  }

  .info__table th,
  .info__table td {
    padding-left: 16px;
  }
  .info__table th,
  .info__table td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 280px;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }

  .rating__list > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc((100% - 16px) / 2);
    -ms-flex: 0 0 calc((100% - 16px) / 2);
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .top {
    bottom: 90px;
  }

  .footer {
    padding-bottom: 80px;
  }

  .apps {
    padding: 48px 20px;
  }

  .apps__buttons {
    -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: 20px;
  }

  .apps__image,
  .apps__background {
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }

  .apps-buttons__bttn {
    background-color: #0b0c21;
  }

  .apps-buttons__bttn:hover {
    background-color: #ffc700;
  }
}

@media screen and (max-width: 650px) {
  .table-medium {
    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-medium::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }

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

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

  .table-medium table {
    width: 800px;
  }

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

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

  .deals__list li {
    padding-bottom: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .deals-list__image {
    display: none;
  }

  .features__list li {
    padding-bottom: 128px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .features__list li::before {
    bottom: -52px;
    font-size: 116px;
  }
}

@media screen and (max-width: 605px) {
  .list.list-semitransparent {
    padding: 0 16px;
  }

  .table-large table {
    width: 800px;
  }

  .prime {
    min-height: 280px;
  }

  .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;
  }

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

  .reviews__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .rating__list > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    gap: 8px;
    font-size: 18px;
  }

  .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: 550px) {
  h1 {
    font-size: 26px;
    line-height: 1.35;
  }

  .table-small {
    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-small::-webkit-scrollbar {
    height: 2px;
    width: 2px;
  }

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

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

  .table-small table {
    width: 500px;
  }

  .prime {
    padding: 20px 16px;
  }

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

@media screen and (max-width: 425px) {
  h2 {
    padding: 12px;
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

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

  ol.list.list-transparent > li {
    padding-left: 70px;
  }

  ol.list.list-transparent > li::before {
    left: 44px;
  }

  .bttn {
    padding: 22px 24px;
  }

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

  .wrap {
    padding: 16px;
  }

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

  .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);
  }

  .info-inspection__title {
    font-size: 20px;
  }

  .info-inspection__title,
  .info-inspection__list {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .deals__list li {
    padding-bottom: 42vw;
  }

  .deals-list__image {
    display: block;
  }

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

  .faq__list > li:before {
    left: 8px;
  }

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

  .faq-item__title::after {
    right: 12px;
  }

  .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;
  }
}
