

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


body {
	overflow-x: hidden;
	min-height: 100vh;
	background: #E5E8ED;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #3C3F44;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
}

img  {
	display: block;
}
p {
	margin-top: 16px;
	width: 100%;
}

ul,
ol {
	text-align: left;
	margin: 16px 0 0;
	width: 100%;
}

.title+ul,
.title+ol {
	margin-top: 0;
}

li {
	position: relative;
	padding-left: 25px;
}

li+li {
	margin-top: 8px;
}

ol>li {
	counter-increment: ol;
}

ul>li:before,
ol>li:before {
	display: inline-block;
	position: absolute;
	font: inherit;

}

ul>li:before {
	content: "";
	line-height: 1;
	width: 16px;
	height: 16px;
	background: #E96E32;
	-webkit-border-radius: 50%;
	        -moz-border-radius: 50%;
	        border-radius: 50%;
	top: 4px;
	left: 0;
	color: #E96E32;
}

ol>li:before {
	content: counter(ol)'.';
	top: 0;
	left: 5px;
	color: #3C3F44;
}


/* Title */
h1,
h2,
h3,
h4,
.title {
	display: block;
	position: relative;
	width: 100%;
	font-weight: 700;
	text-transform: uppercase;
	color: #E96E32;
	margin: 0 0 16px 0;
	line-height: 120%;
}


h1, .title.general {
	color: #FFFFFF;
	font-size: 48px;
}

h2,
.title.hight {
	font-size: 40px;
}

h3,
.title.middle {
	font-size: 28px;
}

h4,
.title.mini {
	font-size: 36px;
}


/* Article */
article>*:first-child,
.article>*:first-child {
	margin-top: 0px;
}

article>*+*,
.article>*+* {
	margin-top: 16px;
}

article>*+h2,
.article>*+h2 {
	margin-top: 16px;
}

article>*+h3,
.article>*+h3 {
	margin-top: 16px;
}


article>*+h4,
.article>*+h4 {
	margin-top: 16px;
}

article>h3+*,
.article>h3+*,
article>h4+*,
.article>h4+* {
	margin-top: 16px;
}

article li:first-child,
.article li:first-child {
	padding-top: 0px;
}

article p:first-child,
.article p:first-child {
	margin-top: 0px;
}

article > h1 + p,
.article > h1 + p {
	margin: 0;
}
article > h2 + p,
.article > h2 + p {
	margin: 0;
}

article > h3 + p,
.article > h3 + p {
	margin: 0;
}

article h2 + .table,
.article h2 + .table{
	margin-top: 0;
}
article h3 + .table,
.article h3 + .table{
	margin-top: 0;
}
article h4 + .table,
.article h4 + .table{
	margin-top: 0;
}

.article h2 + h3 {
	margin-top: 0;
}
.article .button {
	margin-right: auto;
}
article div {
	padding: 20px;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	border: 2px solid #EC622B;
}
article .table, .article .table {
	padding: 0;
}
/* Button */
.button {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	position: relative;
	width: auto;
	min-width: 170px;
	height: auto;
	-webkit-border-radius: 100px;
	        -moz-border-radius: 100px;
	        border-radius: 100px;
	background: #E96E32;
	font-size: 16px;
	font-weight: 500;
	font-style: normal !important;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	padding: 16px 24px;
	margin: 16px 0 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.button:hover {
	-webkit-transform: scale(1.03);
	        -moz-transform: scale(1.03);
	        -o-transform: scale(1.03);
	        transform: scale(1.03);

}
.button.inverse {
	background: #9E2B86;
}

.button img,
.button span {
	display: inline-block;
	vertical-align: middle;
}

.button img {
	margin-right: 10px;
}

.button span {
	text-align: left;
}
.button-box  {
	margin: 0;
}

/* Special */
.image {
	z-index: -1;
}
.image img,
.background img {
	display: block;
	position: relative;
	margin: auto;
}

.background {
	display: block !important;
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index:-1;
}

.background img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.js-expand-content {
	display: none;
	overflow: hidden;
}

.js-expand-content.expanded {
	height: 100%;
}

svg {
	display: inline-block;
	position: relative;
	vertical-align: inherit;
	fill: rgba(255, 255, 255, 1);
	line-height: 1;
}

use {
	fill: rgba(255, 255, 255, 1);
	fill-rule: evenodd;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.path {
	fill: inherit;
	stroke: inherit;
	stroke-width: inherit;
}

/* Content */
.section,
.cover {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	position: relative;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -moz-box-pack: center;
	    justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	        -moz-box-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -moz-box-orient: vertical;
	    -moz-box-direction: normal;
	    flex-direction: column;
	height: 100%;
	width: 100%;
	max-width: 1240px;
	margin: 0px auto;
	overflow: hidden;
	z-index: 0;
}

.section {
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	background: #FDFDFD;
	margin-top: 20px;
	padding: 32px 20px;
	overflow: hidden;
}

.cover {
	max-width: 100%;
	padding-left: -webkit-calc(50% - (1240px / 2));
	padding-left: -moz-calc(50% - (1240px / 2));
	padding-left: calc(50% - (1240px / 2));
	padding-right: -webkit-calc(50% - (1240px / 2));
	padding-right: -moz-calc(50% - (1240px / 2));
	padding-right: calc(50% - (1240px / 2));
}


/* HEADER */
.header__cover {
	z-index: 10;
	padding-top: 13px;
	padding-bottom: 13px;
	background: #282B30;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	        -moz-box-orient: horizontal;
	        -moz-box-direction: normal;
	        flex-direction: row;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	overflow: visible;
}

.header__cover>* {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	        -moz-box-flex: 0;
	        flex: none;
}

.header__logo {
	display: inline-block;
	max-width: 193px;
	margin-right: 60px;
}

.header__logo img {
	display: block;
}

.header__menu .header__button {
	display: none;
}

.header__button-menu {
	display: none;
}
/* Menu */
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        -moz-box-pack: start;
	        justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
          -moz-box-align: center;
          align-items: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	        -moz-box-flex: 1;
	        flex: 1;
}

.header-menu__desc {
	white-space: nowrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	        -moz-box-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
	justify-content: flex-start;
	margin: 0px;
	padding: 0;
	width: auto;
}
.header-menu__item + .header-menu__item {
	margin: 0 0 0 16px;
}
.header-menu__item {
	display: block;
  position: relative;
	padding: 0;
}

.header__menu li:before { display: none; }

.header-menu__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -moz-box-pack: center;
	    justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -moz-box-align: center;
	    align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #838588;
	white-space: nowrap;
  padding: 0px;
  text-transform: uppercase;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
.header-menu__item a::after {
	content: '';
	width: 0;
	height: 5px;
	background-color: #9E2B86;
	position: absolute;
	left: 0;
	bottom: -21px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.header-menu__item a:hover::after {
	width: 100%;
}
.header__menu ul li svg {
	fill: #838588;
	margin-right: 8px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}

/* hover */
.header-menu__item:hover > a {
  text-decoration: none;
}

.header__menu ul li a:hover {
	color: #fff;
}


.header__menu ul li a:hover svg {
	fill: #9E2B86;
}
.header__button {
	margin: 0;
	padding: 12px 24px;
	min-width: 125px;
}
.header__signup {
	margin-left: 11px;
}

.header-menu__sub {
	position: relative;
	white-space: nowrap;
	margin: 0 16px;
}

.header-menu__sub .header-menu__item {
	padding: 0;
}



.header__language {
	margin-right: 16px;
	background: transparent;
	-webkit-box-shadow: none;
	        -moz-box-shadow: none;
	        box-shadow: none;
	outline: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	margin-left: auto;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	        -moz-box-flex: 0;
	        flex: none;
}
.header__language img {
	width: 24px;
	height: 24px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-border-radius: 100%;
	        -moz-border-radius: 100%;
	        border-radius: 100%;
}
.header__language span {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: #838588;
	margin-left: 8px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.header__language:hover span {
	color: #fff;
}

/* PRIME */
.prime__cover {
	padding-top: 95px;
	padding-bottom: 95px;
	color: #fff;
	background-color: #000;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	        -moz-box-align: start;
	        align-items: flex-start;
}


.prime__title {
	margin-bottom: 24px;
	max-width: 655px;
}
.prime__title span {
	color: #FDCD0A;
	display: block;
}
.prime__title small {
	font-size: 32px;
}
.prime__button {
	min-width: 270px;
	margin: 0;
}

.prime__desc {
	font-size: 10px;
	line-height: 150%;
	margin: 8px 0 0 0;
}
.prime__inner {
	text-align: center;
}

.prime__footnote {
	color: #fff;
	font-size: 10px;
	margin: 8px 0 0 0;
	max-width: 270px;
	text-align: center;
	width: 100%;
}

.prime__image {
	position: absolute;
	bottom: 0;
	right: -webkit-calc(50% - (1210px / 2));
	right: -moz-calc(50% - (1210px / 2));
	right: calc(50% - (1210px / 2));
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	        -moz-box-align: end;
	        align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	height: 100%;
}
.prime__image img {
	margin: 0;
}
.qualities li::before{
	display: none;
}
.qualities li {
	padding: 0;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
}
.qualities__image{
	width: 100%;
	max-width: 263px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	        -moz-box-flex: 0;
	        flex: 0 0 auto;
}
.qualities__desc {
	padding: 32px 20px 32px 0;
}
.qualities__title {
	color: #FFF;
	margin-bottom: 16px;
	font-size: 28px;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
}
.qualities__text{
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
/***table***/
.table {
	margin-top: 16px;
	width: 100%;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid #E96E32;
	text-align: center;
	overflow: hidden;
	background-color: #FDFDFD;
	word-break: break-word;
}

tbody, table {
	width: 100%;
}

.table th,
.table td {
	padding: 16px;
	vertical-align: middle;
	color: #3C3F44;
}
.table img {
	margin: 0 auto;
}
thead {
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
}
.table th {
	text-transform: uppercase;
	font-weight: 700;

	color: #fff;
}

.table td{
	border-right: 1px solid #E96E32;
	color: #3C3F44;
}
.table td:last-child {
	border-right: none;
}
.table tr:first-child td {
	border-top: none;
}
.table td {
	border-top: 1px solid #E96E32;
}
.table td span {
	max-width: 522px;
	display: inline-block;
}

.table-column-3 td{
	width: 33.3333%;
}
.table-column-4 td{
	width: 25%;
}

.table-column-3 td:nth-child(2) {
	border-right: 1px solid #E96E32;
}
.table-column-2 th, .table-column-2 td {
	width: 50%;
}
/* upto */

.upto {
	padding: 94px 70px 136px 70px;
	background-color: #000;
	z-index: 0;
}

.upto__wrapp {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	text-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
}

.upto__title {
	color: #fff;
	font-size: 40px;
	margin-bottom: 20px;
}

.upto__text {
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}

.upto__small {
	color: #fff;
	font-size: 10px;
	margin: 8px 0 0 0;
}
.upto__button {
	margin: 0;
	min-width: 273px;
	background: #E96E32;
}
.upto__image {
	z-index: 1;
	position: absolute;
	right: 0px;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	        -moz-box-align: end;
	        align-items: flex-end;
}
.upto__image img {
	margin: 0;
}

.casino {
	color: #fff;
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);

}
.casino__title {
	color: #fff;
}

.casino__text {
	padding: 20px;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	border: 1px solid #FFF;
	color: #fff;
	line-height: 150%;
	font-size: 16px;
	max-width: 850px;
}
.casino__image {
	position: absolute;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	height: 100%;
	right: 0;
}
.casino__image img {
	margin: 0;
	max-width: 402px;
}


.bonuses {
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	padding: 55px;
	width: 100%;
	margin-top: 0;
	background-color: #000;
	z-index: 0;
}
.bonuses p {
	color: #FFF;
	font-size: 32px;
	font-weight: 500;
	line-height: 150%;
	margin: 0;
	max-width: 595px;
}
.bonuses img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/* FAQ */


.faq__item {
	padding-left: 0;
	overflow: hidden;
	color: #fff;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
}


.faq__item+.faq__item {
	margin-top: 8px;
}

.faq__item:before {
	display: none;
}

.faq-item__title {
	font-size: 20px;
	line-height: 150%;
	text-transform: uppercase;
	color: inherit;
	font-weight: 700;
	padding: 10px 14px 10px 56px;
	position: relative;
	cursor: pointer;
	margin: 0;
}

.faq-item__title:after {
	content: '';
	position: absolute;
	width: 32px;
	height: 32px;
	top: 9px;
	left: 16px;
	background-image: url(../img/faq-arrow1.svg);
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	-moz-background-size: contain;
	background-size: contain;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.faq__item.active .faq-item__title:after {
	background-image: url(../img/faq-arrow2.svg);
}

.faq-item__desc .wrap{
	padding: 0 16px 10px 16px;
}

.faq-item__desc p:first-child {
	margin-top: 0;
}


/* footer */

.footer {
    background: #282B30;
    margin-top: 20px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.2;
}

.footer__content.content {
    padding: 30px 0;
    background: transparent;
    border: none;
    color: #868C96;
    font-weight: 500;
	max-width: 1240px;
	margin: auto;
}

.footer__payment {
    padding-bottom: 30px;
    padding-top: 20px;
	padding-left: 0;
	width: -webkit-calc(100% + 10px);
	width: -moz-calc(100% + 10px);
	width: calc(100% + 10px);
    margin-left: -10px !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	position: relative;
}

.footer__payment li {
    margin-top: 10px;
    margin-left: 10px;
    width: 113px;
    height: 66px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    padding: 15px;
}

.footer img {
    display: block;
    margin: auto;
}

.footer__payment:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 1px;
    background: #fff;
    left: -webkit-calc((1240px - 100vw) / 2 + 10px);
    left: -moz-calc((1240px - 100vw) / 2 + 10px);
    left: calc((1240px - 100vw) / 2 + 10px);
}

.footer__payment:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background: #fff;
    left: -webkit-calc((1240px - 100vw) / 2 + 10px);
    left: -moz-calc((1240px - 100vw) / 2 + 10px);
    left: calc((1240px - 100vw) / 2 + 10px);
}

.footer__payment > li:before {
	content: none !important;
}

.footer__wrap {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.footer__age {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 40px;
    -moz-box-flex: 0;
    flex: 0 1 40px;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #f04e34;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    text-align: center;
}

.footer__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 40px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 40px);
    padding-right: 25px
}

.footer__article > *:first-child {
	margin-top: 0;
}

.footer__article > * + * {
    margin-top: 16px;
}

.footer__article a {
    color: #0000EE;
    text-decoration: underline;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.footer__article a:hover {
    color: #3030ff;
}

.footer__list {
    margin-top: 0;
    margin-left: -25px !important;
	padding: 0;
	width: -webkit-calc(100% + 25px);
	width: -moz-calc(100% + 25px);
	width: calc(100% + 25px);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: auto;
}

.footer__list li {
    margin-left: 25px;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
	padding: 0 !important;
}

.footer__list > li:before {
    content: none !important;
}

.footer__list a {
    display: block;
}

.footer__list img {
    height: 40px;
}

@media screen and (max-width: 1260px) {
	.footer__content.content {
		margin: auto 10px;
	}

    .footer__payment:before {
        left: 0;
    }

    .footer__payment:after {
        left: 0;
    }
}

@media screen and (max-width: 700px) {
    .footer__list {
        margin-top: 10px;
    }

	.footer__payment li {
        width: 90px;
        height: 50px;
        padding: 10px;
    }
}



/* BONUS */

.bonus {
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	width: auto;
	margin: 0 -10px -10px -10px;
}
.bonus li {
	padding: 0;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	margin: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
	width: -webkit-calc(50% - 20px);
	width: -moz-calc(50% - 20px);
	width: calc(50% - 20px);
	margin: 10px;
}

.bonus li:before{
	display: none;
}

.bonus__img {
	width: 100%;
	background: -o-linear-gradient(right, rgba(252, 176, 69, 0.58) 0.14%, rgba(254, 45, 45, 0.58) 50%, rgba(148, 48, 216, 0.58) 99.87%);
	background: -webkit-gradient(linear, right top, left top, color-stop(0.14%, rgba(252, 176, 69, 0.58)), color-stop(50%, rgba(254, 45, 45, 0.58)), color-stop(99.87%, rgba(148, 48, 216, 0.58)));
	background: -webkit-linear-gradient(right, rgba(252, 176, 69, 0.58) 0.14%, rgba(254, 45, 45, 0.58) 50%, rgba(148, 48, 216, 0.58) 99.87%);
	background: -moz-linear-gradient(right, rgba(252, 176, 69, 0.58) 0.14%, rgba(254, 45, 45, 0.58) 50%, rgba(148, 48, 216, 0.58) 99.87%);
	background: linear-gradient(270deg, rgba(252, 176, 69, 0.58) 0.14%, rgba(254, 45, 45, 0.58) 50%, rgba(148, 48, 216, 0.58) 99.87%);
}


.bonus__desc {
	z-index: 1;
	position: relative;
	padding: 32px;
	-webkit-border-radius: 0px 0px 8px 8px;
	        -moz-border-radius: 0px 0px 8px 8px;
	        border-radius: 0px 0px 8px 8px;
	border: 2px solid #FF4303;
	background: #FFF;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
}

.bonus__title {
	color: #FF4303;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.bonus__text {
	color: #3C3F44;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}


.bonus__button {
	-webkit-box-shadow: none;
	        -moz-box-shadow: none;
	        box-shadow: none;
	padding: 11px 24px;
	min-width: 179px;
	margin: 16px auto 0 auto;
}



/* MOBILE */
.app {
	border: 2px solid #EC622B;
	padding-right: 383px;
}
.app__text {
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	padding: 20px;
	margin: 0;
	color: #fff;
}
.app__text + .app__text {
	margin-top: 16px;
}
.app__image {
	height: 100%;
	width: 100%;
	max-width: 383px;
	position: absolute;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	        -moz-box-align: end;
	        align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	margin: 0;
}
.app__image img {
	max-width: 192px;
	margin: 0;
}

.reviews__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: -10px;
	width: auto;
}
.reviews__list li::before{
	display: none;
}
.reviews__list li {
	margin: 10px;
	overflow: hidden;
	width: -webkit-calc(33.3333% - 20px);
	width: -moz-calc(33.3333% - 20px);
	width: calc(33.3333% - 20px);
	padding: 0;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.10)), to(rgba(0, 0, 0, 0.10))), -webkit-gradient(linear, left top, right top, from(#E96E32), to(rgba(162, 36, 137, 0.90)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -o-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -webkit-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), -moz-linear-gradient(left, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, #E96E32 0%, rgba(162, 36, 137, 0.90) 100%);
}


.reviews__inner {
	padding: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
	height: 100%;
}

.reviews__head {
	position: relative;
	padding-left: 80px;
	min-height: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	        -moz-box-orient: vertical;
	        -moz-box-direction: normal;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
}

.reviews__image {
	width: 60px;
	height: 60px;
	-webkit-border-radius: 100%;
	        -moz-border-radius: 100%;
	        border-radius: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: top;
	   object-position: top;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        -moz-transform: translateY(-50%);
	        -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.reviews__name {
	color: #fff;
	margin-bottom: 6px;
	font-size: 16px;;
	font-weight: 700;
	line-height: 150%;
}

.reviews__stars {
	width: 100%;
	max-width: 100px;
}
.reviews__text {
	font-size: 16px;
	margin-top: 8px;
	font-weight: 400;
	line-height: 150%;
	color: #fff;
}
.rating {
	-webkit-box-align: inherit;
	-webkit-align-items: inherit;
	        -moz-box-align: inherit;
	        align-items: inherit;
	background-color: #f3b067;
}
.rating__title {
	margin-bottom: 213px;
	color: #fff;
}

.rating__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: -10px;
	width: auto;
}
.rating__list li {
	overflow: hidden;
	margin: 10px;
	width: -webkit-calc(25% - 20px);
	width: -moz-calc(25% - 20px);
	width: calc(25% - 20px);
	padding: 20px 10px;
	-webkit-border-radius: 6px;
	        -moz-border-radius: 6px;
	        border-radius: 6px;
	text-align: center;
	background-color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
}
.rating li::before {
	display: none;
}


.rating__text {
	width: 100%;
	margin-top: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	        -moz-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        -moz-box-align: center;
	        align-items: center;
}
.rating__text p {
	font-weight: 700;
	margin: 0 20px 0 0;
	width: auto;
}
