

@charset "utf-8";

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

body {
	overflow-x: hidden;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	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%;
}

p {
  margin-top: 16px;
}

ul, ol {
  text-align: left;
}

ul > li,
ol > li {
  display: block;
  position: relative;
	list-style: none;
  padding: 0px 0px 0px 24px;
	color: #fff;

}

ul > li + li,
ol > li + li {
	margin-top: 12px;
}
ol > li {
  counter-increment: ol;
	padding-left: 32px;
}

ul > li:before,
ol > li:before {
	display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
	width: 24px;
	font: inherit;
	text-align: center;
	padding: 0px 8px 0px 0px;
	padding-top: inherit;
	background-color: #ffd400;
}

ul > li:before {
  content: '';
	width: 16px;
	height: 16px;
	left: 0px;
	top: 4px;
	padding: 0;
	background: url(../images/icons/ul-icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
li > strong {
	font-weight: 600;
	color: #ffd400;
}
ol > li:before {
  content: counter(ol);
	background: none;
	font-weight: 700;
	font-size: 14px;
	color: #ffd400;
	border: 1px solid #ffd400;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	width: 19px;
	height: 19px;
	padding: 0;
	text-align: center;
	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;
	top: 1.5px;
}

a:hover {
  text-decoration: underline;
}



/* Title */
h1, h2, h3, h4, .title {
	display: block;
	position: relative;
  width: 100%;
  font-weight: 900;
	text-transform: none;
  color: #ffd400;
	text-align: center;
	line-height: 120%;
}

h1 {
	font-size: 43px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: left;
}

h2 {
	background: #14152d;
	overflow: hidden;
  margin-bottom: 16px;
	font-size: 38px;
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 6px 16px;
}

h3, h4, h5{
	font-size: 28px;
	margin: 16px 0px 16px 0px;
}
h3 span {
	color: #ffd400;
}




/* Button */
.button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-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;
	position: relative;
	width: auto;
  min-width: 150px;
	height: auto;
	background: #ffd400;
	border: 1px solid #ffd400;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	font-style: normal !important;
	line-height: 1.2;
	text-align: center;
	color: #13151b;
  cursor: pointer;
  margin: 16px auto 0px auto;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	text-transform: capitalize;
	padding: 16px 32px;
	font-weight: 700;
	margin: 0;
	font-size: 14px;
	text-decoration: none!important;
}

.button:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}

.button-box {
	margin: 16px 0 0 0;
}
.button-box {
	text-align: center;
}

.button.inverse {
	background: transparent;
	color: #ffd400;
}
.button.button-bg {
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	border: none;
	background: url(../images/button-bg.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	padding: 28px 20px;
	min-width: 264px;
	min-height: 78px;
}
/* var */
.button > img,
.button > span {
	display: inline-block;
	position: relative;
	font: inherit;
	line-height: 1;
	vertical-align: middle;
}
.button > img + span {
	margin-left: 10px;
}


/* Breadcrumbs */
.breadcrumbs {
	z-index: 1;
	text-align: left;
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.breadcrumbs > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	padding: 0px;
	font-size: 16px;
}
.breadcrumbs > li + li {
	margin: 0;
}
.breadcrumbs > li:before { display: none; }

.breadcrumbs > li a {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
}

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

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


/* Article */

article > *:first-child,
.article > *:first-child {
	margin-top: 0px;
}

article > * + *,
.article > * + * {
	margin-top: 20px;
}

article > * + h2,
.article > * + h2 {
	margin-top: 20px;
}
article > * + h3,
.article > * + h3 {
	margin-top: 20px;
}
article > * + h4,
.article > * + h4 {
	margin-top: 20px;
}

article > h2 + *,
.article > h2 + * {
	margin-top: 0px;
}

article > h3 + *,
.article > h3 + *,
article > h4 + *,
.article > h4 + * {
	margin-top: 20px;
}

article li:first-child,
.article li:first-child {
	padding-top: 0px;
}

article p:first-child,
.article p:first-child {
	margin-top: 0px;
}

/**/

.article__wrap > *:first-child {
	margin-top: 0px;
}

.article__wrap > * + * {
	margin-top: 20px;
}

.article__wrap > * + h2 {
	margin-top: 20px;
}

.article__wrap > * + h3 {
	margin-top: 20px;
}

.article__wrap > * + h4 {
	margin-top: 20px;
}

.article__wrap > h2 + * {
	margin-top: 0px;
}

.article__wrap > h3 + *,
.article__wrap > h4 + * {
	margin-top: 20px;
}

.article__wrap li:first-child {
	padding-top: 0px;
}

.article__wrap p:first-child {
	margin-top: 0px;
}
/**/

article a:not(.button),
.article a:not(.button) {
	font-weight: 600;
	color: #ffd400;
}

.article__image{
	background-color: #05071A;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 20px;
}

.article__image img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
}

.article__wrap {
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 16px 20px;
	background: #14152d;
	position: relative;
	overflow: hidden;
	z-index: 0;
	margin-top: 16px;
}
.article__wraps {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
.article__wrap {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.article__wraps .article__wrap {
	margin: 0;
}
/* Special */
img {
	display: block;
}
.image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: 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;
}
.background {
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: -webkit-flex!important;
	display: flex!important;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        -webkit-justify-content: flex-start;
	        justify-content: flex-start;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
	margin: 0!important;
}

.background img {
	display: block;
	margin: 0!important;
}

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

.js-expand-content.expanded {
	height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
  line-height: 1;
}
use {
  fill: rgba(255, 255, 255, 1);
  fill-rule: evenodd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}


/* Content */

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


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


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


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



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

.header__logo {
	margin-right: 108px;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;

}
.header__logo img {
	max-width: 152px;
}

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

.header__button-menu {
	display: none;
}

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

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

.header__menu li > a {
  display: inline-block;
	font-weight: 700;
	font-size: 14px;
	line-height: 170%;
	text-transform: capitalize;
	color: #fff;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.header__menu a:hover{
	color: #ffd400;
}

.header__menu li > a img {
	margin-right: 8px;
}
.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	margin-left: auto;
	-webkit-box-flex: 0;
	    -ms-flex: none;
	        -webkit-flex: none;
	        flex: none;
}
.header__button {
	margin-left: 16px;
	padding: 11px 32px;
	font-size: 14px;
	min-width: 132px;
}
.inverse.header__button {
	color: #fff;
}

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

.header__menu .header__button-signup,
.header__menu .header__button-signin {
	display: none;
}

.header__language {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none!important;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	    -ms-flex: none;
	        flex: none;
	margin-left: 16px;
}
.header__language img {
	max-width: 24px;
	margin-right: 6px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}

.page {
	max-width: 1440px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	padding-top: 67px;
}
.sidebar {
	width: 240px;
	height: -webkit-calc(100vh - 67px);
	height: calc(100vh - 67px);
	overflow-y: auto;
	position: -webkit-sticky;
	position: sticky;
	top: 67px;
	margin-right: 20px;
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.sidebar__scroll {
	background:#181E29;
	padding: 15px 15px 15px 0px;
	background: -o-linear-gradient(top, #0b0c21 0%, #08091c 20.16%, #0b0c21 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#0b0c21), color-stop(20.16%, #08091c), to(#0b0c21));
	background: linear-gradient(180deg, #0b0c21 0%, #08091c 20.16%, #0b0c21 100%);
}
.sidebar__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}


.sidebar__nav li{
	padding: 0;
}
.sidebar__nav li + li{
	margin: 0;
}
.sidebar__nav li::before {
	display: none;
}
.sidebar__nav a {
	position: relative;
	padding-left: 36px;
	padding-top: 12px;
	padding-bottom: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	color: #FFF;
	font-weight: 500;
	text-transform: capitalize;
	font-size: 16px;
	line-height: 130%;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	text-decoration: none!important;
}
.sidebar__nav a span {
	opacity: 0.45;
}
.sidebar__nav a img {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	width: 24px;
	height: 24px;
	opacity: 0.45;
}
.sidebar__nav a:hover img{
	opacity: 1;
}
.sidebar__nav a:hover span{
	opacity: 1;
}

.sidebar__nav a small {
	display: inline-block;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	text-transform: capitalize;
	background: #fa5926;
	position: absolute;
	left: 16px;
	top: 7px;
}
.sidebar__divider {
	margin: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
}

.main__review {
	display: none;
}
.review__head {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	margin: 0;
	cursor: pointer;
	padding-right: 32px;
	text-decoration: none;
}
.review__head::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(../images/icons/review-arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;


}
.review ul {
	margin-top: 8px;
}
.review ul li {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	padding: 0;
}
.review ul li::before{
	display: none;
}


.review ul li:hover a {
	color: #FFD400;
	font-weight: 700;
}
.review a {
	color: #727489;
	font-size: 14px;
	display: block;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	text-decoration: none;
}


.main__review {
	display: none;
}


.accordion--js.hide::before  {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

/* MAIN */
.main {
	display: block;
	position: relative;
	width: -webkit-calc(100% - 260px);
	width: calc(100% - 260px);
}

.main > * {
	position: relative;
}


.prime {
	position: relative;
	z-index: 0;
	-webkit-border-radius: 0;
	        border-radius: 0;
	margin-bottom: 20px;
	overflow: hidden;
	padding: 35px;
	min-height: 447px;
	-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;
}

.prime__wrap {
	-webkit-backdrop-filter: blur(20px);
	        backdrop-filter: blur(20px);
	background: rgba(20, 21, 45, 0.5);
	-webkit-box-flex: 0;
	-webkit-flex: none;
	    -ms-flex: none;
	        flex: none;
	position: relative;
	width: 100%;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 20px 24px;
	max-width: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
}



.prime__button {
	z-index: 1;
	margin: 0;
}


.prime__title {
	margin-bottom: 30px;
}

.prime__text {
	color: #FFF;
	margin: 0 0 30px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}

/* RATING */
.rating__item {
	margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
}
.rating__item p {
	font-size: 14px;
	line-height: 125%;
	color: rgba(255, 255, 255, 0.8);
	width: auto;
	margin: 0px 16px 0px 0px;
	text-transform: uppercase;
}

.rating__numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}
.rating__numbers span:nth-child(2) {
	font-size: 14px;
	font-weight: 500;
}

.table {
	display: block;
	width: 100%;
	overflow: hidden;
}
.table img {
	display: inline-block;
}
.table img + img {
	margin-left: 8px;
}
.table tbody {
	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;
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	overflow: hidden;
}
.table tr {
	background: #14152d;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.table td:not(:last-child) {
	border-right: 1px solid #ffd400;
}
.table tr:nth-child(even) {
	background: #1f2038;
}

.table td {
	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;
	text-align: center;
	font-weight: 400;
	font-size: 15px;
	line-height: 160%;
	color: #fff;
	padding: 10px 20px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.table td strong {
	color: #ffd400;
	font-weight: 900;
}

.table-games tr:not(:first-child) td:first-child strong{
	color: #fff;
}
.table-games td:nth-child(1) {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 200px;
	    -ms-flex: 0 1 200px;
	        flex: 0 1 200px;
}
.table-games td:nth-child(2) {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 -webkit-calc(100% - 530px);
	    -ms-flex: 0 1 calc(100% - 530px);
	        flex: 0 1 calc(100% - 530px);
}
.table-games td:nth-child(1) {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 230px;
	    -ms-flex: 0 1 230px;
	        flex: 0 1 230px;
}

.table-payments td:first-child {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 240px;
	    -ms-flex: 0 1 240px;
	        flex: 0 1 240px;
}
.table-payments td:last-child {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	text-align: left;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 -webkit-calc(100% - 240px);
	    -ms-flex: 0 1 calc(100% - 240px);
	        flex: 0 1 calc(100% - 240px);
}



.comprasion {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.comprasion-item{
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	width: -webkit-calc(50% - 10px);
	width: calc(50% - 10px);
	overflow: hidden;
}

.comprasion__head {
	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;
	margin: 0 0 11px 0;
	font-weight: 900;
	font-size: 28px;
	line-height: 120%;
	color: #fdcd0b;
	padding: 11px;
	background: #14152d;
	text-align: center;
	text-transform: capitalize;
}
.comprasion li img {
	margin-right: 24px;
}
.comprasion li, .comprasion li:first-child {
	padding: 14px 24px;
	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;
}
.comprasion li::before{
	display: none;
}
.comprasion li + li {
	margin: 0;
}

/* F.A.Q. */

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

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

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

.faq-item__title {
	text-align: left;
	cursor: pointer;
	margin: 0;
	padding: 15px 60px 15px 16px;
	font-weight: 700;
	font-size: 20px;
	line-height: 160%;
	text-transform: none;
	color: #ffd400;
	text-decoration: none;
	background: #14152d;
}

.faq-item__title::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../images/icons/faq-arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 16px;
	top: 21px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

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

.faq-item__desc p {
	margin: 0px;
	color: #fff;
	font-size: 14px;
}
.faq-item__desc p + p{
	margin: 16px 0 0 0;
}

.faq-item__desc .wrap {
	padding: 16px;
	border-top: 1px solid #FFD400;
}



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


.footer__section {
	margin: 0;
	background: none;
	-webkit-border-radius: 0;
	        border-radius: 0;
	padding: 0 20px 40px 260px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        -webkit-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
}


.footer__additional {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: 32px;
}


.footer__additional img{
	width: 64px;
	-o-object-fit: contain;
	   object-fit: contain;
	margin-right: 12px;
}
.footer__additional p {
	width: -webkit-calc(100% - 76px);
	width: calc(100% - 76px);
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}
.footer li::before {
	display: none;
}
.footer__flags {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.footer__flags li {
	margin: 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;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	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;
	padding: 12px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.footer__flags li:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}
.footer__flags a {
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
}
.footer__flags a + a {
	margin-left: 8px;
}
.footer__flags img {
	max-width: 24px;
}
.footer__nav {
	margin-top: 32px;
	margin-bottom: 32px;
}
.footer__nav ul {
	border: 2px solid rgba(255, 255, 255, 0.1);
	padding: 0px 8px;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	    -webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
}
.footer__nav li::before {
	display: none;
}
.footer__nav li {
	padding: 0;
	margin: 4px 8px;
}

.footer__nav a{
	padding: 4px 16px;
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	letter-spacing: 0.01em;
	text-align: center;
	-webkit-border-radius: 100px;
	        border-radius: 100px;
	text-decoration: none;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}
.footer__nav a:hover {
	background: #ffd400;
	color: #13151b;
}



.back-top {
	width: 42px;
	height: 42px;
	position: -webkit-sticky;
	position: sticky;
	bottom: 20px;
	margin-top: 20px;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        -webkit-align-items: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        -webkit-justify-content: center;
	        justify-content: center;
	cursor: pointer;
	z-index: 5;
	margin-left: auto;
	margin-right: -webkit-calc(50% - (1400px / 2));
	margin-right: calc(50% - (1400px / 2));
}

.app {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0;
}

.app__buttons {
	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-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;
	padding: 15px;
	width: -webkit-calc(50% - 96px);
	width: calc(50% - 96px);
}
.app__button {
	-webkit-box-shadow: 0 -1px 20px 0 rgba(253, 205, 10, 0.6);
	        box-shadow: 0 -1px 20px 0 rgba(253, 205, 10, 0.6);
	background: rgba(252, 194, 17, 0.6);
	border: 2px solid #ffd400;
	-webkit-border-radius: 8px;
	        border-radius: 8px;
	padding: 14px 20px;
	font-weight: 600;
	font-size: 14px;
	line-height: 114%;
	text-align: center;
	color: #fff;
	min-width: 240px;
}
.app__button + .app__button {
	margin-top: 10px;
}
.app__button img {
	margin-right: 16px;
}

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

.app__pic {
	width: 192px;
}

.app__image {
	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;
	width: -webkit-calc(50% - 96px);
	width: calc(50% - 96px);
}

.reviews__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 16px;
}
.reviews__list-item {
	border: 1px solid #ffd400;
	-webkit-border-radius: 32px;
	        border-radius: 32px;
	padding: 32px;
	background: #14152d;
	width: -webkit-calc(33.33333% - 11px);
	width: calc(33.33333% - 11px);
	margin: 0;
	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;
}
.reviews__list-item::before {
	display: none;
}
.reviews__item-rate {
	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: absolute;
	right: 32px;
	top: 35px;
	width: 136px;
}
.reviews__item-rate img + img {
	margin-left: 4px;
}
.reviews__item-rate img {
	max-width: 24px;
}
.reviews__item-name {
	margin: 0 0 24px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	color: #fff;
	padding-right: 155px;
}
.reviews__item-text p{
	margin: 0;

}
.reviews__item-divider {
	margin-bottom: 24px;
}

.bonus ol > ul {
	max-width: 690px;
	width: 100%;
}
.bonus ol > li > strong {
	color: #fff;
}
.bonus ol ul li::before{
	background: #ffd400;
}



.info__wrap {
	position: relative;
	padding-left: 35%;
	z-index: 0;
}
.info__image {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-width: 366px;
	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;
	z-index: -1;
}
.program h2 {
	margin-bottom: 80px;
}
.program__wrap {
	margin: 0 0 50px 0;
	max-width: 566px;
}

.slots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 16px;
}
.slots-item {
	width: -webkit-calc(50% - 8px);
	width: calc(50% - 8px);
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 20px 24px;
}
.slots-item__image img{
	-webkit-border-radius: 20px;
	        border-radius: 20px;
}

.slots-item__title {
	font-weight: 900;
	font-size: 28px;
	line-height: 114%;
	text-align: center;
	color: #ffd400;
	margin: 16px 0;
}

.grade__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.grade-item {
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 32px;
	background: #14152d;
	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;
	margin: 0;
	width: -webkit-calc(50% - 8px);
	width: calc(50% - 8px);
}

.grade-item::before {
	display: none;
}
.grade-item__rate {
	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;
	margin: 0 0 16px 0;
	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%);
	border: 2px dashed #ffd400;
	-webkit-border-radius: 10px;
	        border-radius: 10px;
	padding: 14px 20px;
	font-weight: 700;
	font-size: 26px;
	line-height: 120%;
	text-align: center;
	color: #ffd400;
}
.grade-item__rate img {
	margin-right: 8px;
	max-width: 28px;
}
.grade-item__title{
	margin: 0 0 16px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}
.grade-item p {
	margin: 0;
}

.grand {
	padding-bottom: 53px;
}
.grand__title {
	margin-bottom: 50px;
}
.grand__wrap {
	-webkit-backdrop-filter: blur(20px);
	        backdrop-filter: blur(20px);
	background: rgba(20, 21, 45, 0.6);
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 24px;
	width: 100%;
	max-width: 556px;
	text-align: center;
}
.grand__wrap p {
	margin: 0;
}
.grand__button {
	margin-top: 30px;
}

.live {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
.live__item {
	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;
	width: -webkit-calc(50% - 8px);
	width: calc(50% - 8px);
}

.live__inner {
	padding: 32px;
	background: #14152d;
	-webkit-border-radius: 0 0 20px 20px;
	        border-radius: 0 0 20px 20px;
}
.live__desc {
	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%);
	border: 2px dashed #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 16px;

}
.live__title{
	margin: 0 0 12px 0;
	font-weight: 900;
	font-size: 28px;
	line-height: 114%;
	text-align: center;
	color: #ffd400;
}
.live__desc p {
	margin: 0;
}
.bonus{
	z-index: 0;
}

.bonus .article__wrap {
	width: 100%;
	max-width: 800px;
}
.bonus__image {
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	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;
	z-index: -1;
	margin: 0;
}
.bonus__image img {
	max-width: 441px;
}

.bonus__background {
	z-index: -2;
}

.banner {
	padding-bottom: 73px;
	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;
}
.banner__title {
	margin-bottom: 97px;
}
.banner__wrap {
	-webkit-backdrop-filter: blur(20px);
	        backdrop-filter: blur(20px);
	background: rgba(20, 21, 45, 0.6);
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 24px;
	text-align: center;
	width: 100%;
	max-width: 434px;
}
.banner__button {
	margin-top: 20px;
}

.tiles {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 16px;
}
.tiles__item {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 -webkit-calc(33.333% - 16px);
	    -ms-flex: 1 0 calc(33.333% - 16px);
	        flex: 1 0 calc(33.333% - 16px);
	background: #14152d;
	border: 1px solid #ffd400;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	padding: 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;
}
.tiles__item img {
	max-width: 42px;
	margin: 0 0 16px 0;
}
.tiles__title {
	font-weight: 900;
	font-size: 28px;
	line-height: 114%;
	text-align: center;
	color: #ffd400;
	margin: 0 0 16px 0;
}
.tiles__item p {
	width: 100%;
	margin: 0;
}


.article__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
.article__inner .article__wrap {
	margin: 0;
}

@charset "utf-8";

@media screen and (max-width:1480px) {
	.header {
		padding-right: 20px;
		padding-left: 20px;
	}
	.sidebar__scroll {
		padding-left: 20px;
	}
	.page {
		max-width: 100%;
	}

}
@media screen and (max-width: 1380px){
	.header__menu li + li {
		margin-left: 12px;
	}
	.header__logo {
		margin-right: 40px;
	}
	.reviews__list-item {
		width: -webkit-calc(50% - 8px);
		width: calc(50% - 8px);
	}
	.bonus__image{
		right: -5%;
	}
	.bonus .article__wrap{
		width: 73%;
	}
}

@media screen and (max-width: 1160px) {
	.sidebar {
		display: none;
	}
	.main {
		width: 100%;
	}
	.section {
		margin: 0 auto 20px auto;
		width: -webkit-calc(100% - 40px);
		width: calc(100% - 40px);
	}

	.main__review {
		display: block;
		padding: 20px 0px 20px 20px;
	}
	.review__head {
		padding-right: 60px;

	}
	.review__head::before {
		right: 20px;
		-webkit-transform: rotate(180deg);
		    -ms-transform: rotate(180deg);
		        transform: rotate(180deg);
	}
	.review ul {
		display: none;
	}

	.accordion--js.hide::before  {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}
	.prime {
		padding: 40px 20px;
		min-height: 380px;
	}

	.footer__section {
		padding: 0 20px 40px 20px;
		width: 100%;
		margin: 0;
	}
	.back-top {
		position: fixed;
		right: 20px;
		margin: 0;
		bottom: 20px;
	}
	.header__logo {
		margin-right: auto;
	}
	.header__buttons {
		display: none;
	}
	.header__menu .header__button {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		max-width: 320px;
		width: 100%;
	}
	.inverse.header__button {
		background: #33334f;
		border-color: #33334f;
	}

	.header__button-menu {
		display: block;
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 auto;
		        -webkit-flex: 0 1 auto;
		        flex: 0 1 auto;
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        -webkit-order: 3;
		        order: 3;
		min-width: 0;
		padding: 11px;
		margin: 0px 0px 0px 16px;
		-webkit-border-radius: 6px;
		        border-radius: 6px;
	}

	.header__button-menu svg {
		display: block;
		margin: 0px;
		fill: #000;
	}

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

	.header__button-menu.active ~ .header__menu {
		top: 100%;
		opacity: 1.00;
	}


	.header__button-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__button-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__button-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: 0px;
		width: 100%;
		height: auto;
		max-height: -webkit-calc(100vh - 67px);
		max-height: calc(100vh - 67px);
		overflow: auto;
		text-align: center;
		background: #1f2038;
		opacity: 0.00;
		padding: 10px 32px 80px 32px;
		margin: 0px !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 0px auto !important;
	}


	.header__menu ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        -webkit-flex-direction: column;
		        flex-direction: column;
		margin: 16px 0px;
		background-color: transparent;
	}
	.header__menu li > a {
		width: 100%;
		text-align: center;
		padding: 12px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        -webkit-justify-content: center;
		        justify-content: center;
		border: 1px solid #fff;
		-webkit-border-radius: 8px;
		        border-radius: 8px;
		color: #fff;
	}
	.header__menu li > a:hover {
		border-color: #FCC211;
	}
	.header__menu li {
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        -webkit-flex-direction: column;
		        flex-direction: column;
	}
	.header__menu li + li {
		margin: 10px 0 0 0;
	}
	.banner__title {
		margin-bottom: 40px;
	}
	.tiles__item {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 -webkit-calc(50% - 8px);
		    -ms-flex: 1 0 calc(50% - 8px);
		        flex: 1 0 calc(50% - 8px);
	}
	.article__inner{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

}

@media screen and (max-width: 900px) {
	.page {
		padding-top: 61px;
	}
	.header__menu {
		max-height: -webkit-calc(100vh - 61px);
		max-height: calc(100vh - 61px);
	}
	.cover {
		padding: 0px 16px;
	}
	.cover.header {
		padding: 10px 16px;
	}
	.section {
		width: -webkit-calc(100% - 32px);
		width: calc(100% - 32px);
	}
	.footer__nav ul {
		-webkit-border-radius: 20px;
		        border-radius: 20px;
	}
	.footer__section {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.comprasion {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.comprasion-item {
		width: 100%;
	}
	.prime {
		padding: 40px 16px;
	}

	.table td {
		padding: 12px;
	}
	.table tr:nth-child(1) td {
		font-size: 14px;
	}
	.table td{
		font-size: 14px;
	}
	.article__wrap-logo{
		display: none;
	}
	.reviews__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.reviews__list-item {
		width: 100%;
	}
	.info__wrap {
		padding: 0;
	}
	.info__image {
		position: static;
		margin-top: 16px;
	}
	.article__wraps {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.live{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.live__item {
		width: 100%;
	}
	.bonus .article__wrap{
		width: 100%;
	}
	.bonus__image {
		display: none;
	}
	.app {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		-webkit-justify-content: space-around;
		    -ms-flex-pack: distribute;
		        justify-content: space-around;
		padding: 15px 15px 0 15px
	}
	.app__buttons {
		width: 100%;
		padding: 0 0 20px 0;
	}
	.app__image {
		width: auto;
		max-width: 350px;
	}
	.app__pic {
		width: auto;
		max-width: 160px;
	}
}

@media screen and (max-width: 800px) {
	.table {
		overflow-x: auto;
		white-space: nowrap;
		border: none;
		-webkit-border-radius: 0;
		        border-radius: 0;
	}
	.table tbody {
		width: 800px;
		white-space: normal;

	}
	.program h2 {
		margin-bottom: 16px;
	}
	.program__wrap{
		margin: 0;
	}
	.slots-item{
		width: 100%;
	}
	.table-games td:nth-child(1) {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 150px;
		    -ms-flex: 0 1 150px;
		        flex: 0 1 150px;
	}
	.table-games td:nth-child(2), .table-games td:nth-child(3) {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 -webkit-calc(50% - 75px);
		    -ms-flex: 0 1 calc(50% - 75px);
		        flex: 0 1 calc(50% - 75px);
	}
	.grade-item{
		width: 100%;
	}
	.grand__title{
		margin-bottom: 20px;
	}
	.grand__wrap{
		max-width: 100%;
	}
}
@media screen and (max-width: 700px){
	.prime__background img {
		-o-object-position: 85%;
		   object-position: 85%;
	}
	h2, .title.high {
		font-size: 5vw;
		line-height: 6vw;
		padding: 8px 10px;
		-webkit-border-radius: 8px;
		        border-radius: 8px;
	}

	h3, .title.middle {
		font-size: 4vw;
		line-height: 5vw;
	}

	h4, .title.mini {
		font-size: 4vw;
		line-height: 5vw;
	}
	.section {
		padding: 20px 15px;
	}
	.prime__title {
		font-size: 8vw;
		line-height: 9vw;
	}
	.prime__wrap {
		max-width: 100%;
	}
	.review li + li {
		margin-top: 6px;
	}
	.header__button-menu {
		min-width: auto;
	}
	.article__wrap {
		max-width: 100%;
		padding: 15px;
	}

	.faq-item{
		-webkit-border-radius: 12px;
		        border-radius: 12px;
	}
	.faq-item__title {
		font-size: 16px;
		padding: 10px 40px 10px 10px;
	}
	.faq-item__title::before{
		right: 8px;
		top: 13px;
	}
	.faq-item__desc .wrap{
		padding: 10px;
	}
	.table img + img {
		margin-left: 2px;
	}
	.table-games td:nth-child(1), .table-overview td:nth-child(1) {
		width: 200px;
	}
	.table-games td:nth-child(2), .table-overview td:nth-child(2){
		width: -webkit-calc(100% - 200px);
		width: calc(100% - 200px);
	}
	.footer__additional {
		-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;
	}
	.footer__additional img {
		margin: 0 0 20px 0;
	}
	.footer__additional p {
		width: 100%;
	}
	.main__review {
		padding-right: 0;
	}
	.footer__flags {
		gap: 10px;
	}
	.footer__flags li {
		padding: 10px;
	}
	.footer__section {
		padding: 0 0 30px 0;
	}
	.button.button-bg {
		font-size: 15px;
		padding: 14px 20px;
    min-width: 222px;
    min-height: 52px;
	}

	.grand__background img {
		-o-object-position: 65%;
		   object-position: 65%;
	}
	.reviews__item-name {
		padding: 0;
		margin: 0 0 8px 0;
	}
	.reviews__item-rate {
		position: static;
		margin-bottom: 16px;
	}
	.banner__background img {
		-o-object-position: 10%;
		   object-position: 10%;
	}
	.live__inner{
		padding: 15px;
	}
	.app {
		padding: 30px 0 0 0;
	}
	.app__pic {
		-webkit-box-ordinal-group: 0;
		-webkit-order: -1;
		    -ms-flex-order: -1;
		        order: -1;
	}
	.app__buttons{
		padding: 0;
	}
	.tiles__item {
		-webkit-box-flex: 100%;
		-webkit-flex: 100%;
		    -ms-flex: 100%;
		        flex: 100%;
	}
	.prime__wrap {
		-webkit-backdrop-filter: none;
		        backdrop-filter: none;
		background-color: rgba(20, 21, 45, 0.6);
	}
	.back-top{
		right: 16px;
	}
}


@media screen and (max-width: 420px) {
	.reviews__list-item {
		padding: 20px;
	}
	.comprasion ul {
		padding: 0;
	}
	.comprasion__head img {
		max-width: 26px;
		margin-right: 16px;
	}
	.grade-item {
		padding: 20px;
	}
	.grade-item__rate{
		font-size: 20px;
		padding: 10px 14px;
	}
	.grade-item__rate img{
		max-width: 22px;
	}
	.table-payments td:first-child{
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 180px;
		    -ms-flex: 0 1 180px;
		        flex: 0 1 180px;
	}
	.table-payments td:last-child {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 -webkit-calc(100% - 180px);
		    -ms-flex: 0 1 calc(100% - 180px);
		        flex: 0 1 calc(100% - 180px);
	}
	.slots-item{
		padding: 20px;
	}
	.slots-item__title{
		font-size: 22px;
	}
	.program__background img {
		-o-object-position: 90%;
		   object-position: 90%;
	}
	.prime__wrap {
		padding: 20px 15px;
	}
	.bonus__image {
		position: static;
		display: block;
		height: auto;
		margin-bottom: -16px;
	}
	.bonus__image img {
		max-width: 200px;
		margin-left: auto;
	}
	.bonus__background img {
		-o-object-position: right;
		   object-position: right;
	}
	.bonus .article__wrap{
		-webkit-border-top-right-radius: 0;
		        border-top-right-radius: 0;
	}
	.live__title{
		font-size: 20px;
	}
	.tiles__title {
		font-size: 18px;
	}
	.article__inner .article__wrap h3{
		font-size: 20px;
	}
}

@media screen and (max-width: 374px) {
	.header__logo {
		max-width: 135px;
	}
	.header__button-menu {
		margin-left: 20px;
	}

}
