@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;700&family=Noto+Sans:wght@400;700&family=Poppins:wght@500&display=swap');

body {
   overflow-x: hidden;
   min-height: 100vh;
   background: #05071A;
   font-family: 'Merriweather Sans', 'Arial', sans-serif;
   font-size: 16px;
   font-weight: 300;
   line-height: 1.5;
   color: #fff;
   text-align: left;
   -webkit-text-size-adjust: 100%;
   text-size-adjust: 100%;
}

p {
   margin-top: 16px;
   width: 100%;
}

p+ul,
p+ol,
ul+p,
ol+p {
   margin-top: 25px;
}

ul,
ol {
   text-align: left;
   width: 100%;
}

li {
   position: relative;
   padding-left: 23px;
}

ol>li {
   counter-increment: ol;
}

ul>li:before,
ol>li:before {
   display: inline-block;
   position: absolute;
}

ul>li:before {
   content: "";
   width: 12px;
   height: 12px;
   background: #FFAA00;
   border-radius: 50%;
   top: 0;
   bottom: 0;
   left: 1px;
   margin: auto;
}

ol>li:before {
   content: counter(ol)'.';
   top: 0px;
   left: 5px;
   font: inherit;
   color: #fff;
}

nav ul {
   width: auto;
}

nav ul li {
   padding: 0;
}

nav ul li:before {
   display: none;
}

a {
   color: inherit;
}

/* Title */
h1,
h2,
h3,
.title {
   display: block;
   position: relative;
   width: 100%;
   font-weight: 700;
   line-height: 1.2;
   color: #FFAA00;
   text-transform: uppercase;
   text-align: center;
}

h1.title {
   color: #fff;
   text-align: left;
}

h1,
.title.general {
   font-size: 48px;
}

h2,
.title.high {
   font-size: 40px;
}

h3,
.title.middle {
   font-size: 24px;
}

h4,
.title.mini {
   font-size: 16px;
}

/* Article */
article,
.article {
   font-size: 16px;
   font-weight: 300;
   line-height: 1.5;
   text-align: left;
}

article>*:first-child,
.article>*:first-child {
   margin-top: 0px;
}

article>*+*,
.article>*+* {
   margin-top: 16px;
}

article p:first-child,
.article p:first-child {
   margin-top: 0px;
}

/* Button */
.button {
   display: inline-block;
   position: relative;
   width: auto;
   height: auto;
   font-family: 'Merriweather Sans', 'Arial', sans-serif;
   font-size: 16px;
   font-weight: 700;
   color: #fff;
   line-height: 1;
   text-transform: capitalize;
   text-align: center;
   white-space: nowrap;
   background: #E93E3A;
   border: 2px solid #E93E3A;
   border-radius: 10px 10px 20px 20px;
   padding: 14px 32px;
   margin: 16px 0 0;
}

.button:hover {
   background: transparent;
   color: #E93E3A;
}

.button img,
.button span {
   display: inline-block;
   vertical-align: middle;
}

.button img {
   margin-right: 10px;
}

.button span {
   text-align: left;
}

/* Special */
.image img,
.background img {
   display: block;
   position: relative;
   margin: auto;
}

.background {
   display: block !important;
   position: absolute !important;
   top: 0px;
   bottom: 0px;
   left: 0px;
   right: 0px;
}

.background img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}

.js-expand-content {
   display: none;
   overflow: hidden;
}

.js-expand-content.expanded {
   height: 100%;
}

svg {
   display: inline-block;
   position: relative;
   vertical-align: inherit;
   fill: rgba(255, 255, 255, 1);
   line-height: 1;
}

use {
   fill: rgba(255, 255, 255, 1);
   fill-rule: evenodd;
   -webkit-transition: all 0.5s;
   -o-transition: all 0.5s;
   -moz-transition: all 0.5s;
   transition: all 0.5s;
}

.path {
   fill: inherit;
   stroke: inherit;
   stroke-width: inherit;
}

/* Content */
.content,
.cover {
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: flex;
   -webkit-box-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;
   -ms-flex-align: center;
   align-items: center;
   height: 100%;
   width: 100%;
   max-width: 1240px;
   margin: 0px auto;
   position: relative;
   overflow: hidden;
}

.content {
   background: #132031;
   padding: 32px 20px;
   margin-top: 20px;
   border-radius: 6px;
}

.cover {
   max-width: 100%;
   overflow: hidden;
   padding-left: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
   padding-left: -moz-calc(50% - ((1300px - 30px - 30px) / 2));
   padding-left: calc(50% - ((1300px - 30px - 30px) / 2));
   padding-right: -webkit-calc(50% - ((1300px - 30px - 30px) / 2));
   padding-right: -moz-calc(50% - ((1300px - 30px - 30px) / 2));
   padding-right: calc(50% - ((1300px - 30px - 30px) / 2));
}

.content>*,
.cover>* {
   display: block;
   position: relative;
   -webkit-box-flex: 1;
   -webkit-flex: 1 1 auto;
   -moz-box-flex: 1;
   flex: 1 1 auto;
}

/* Header */
.header {
   background: #05071A;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   overflow: visible;
   padding-top: 16px;
   padding-bottom: 16px;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   z-index: 100;
   height: auto;
}

.logo {
   display: inline-block;
}

.logo img {
   display: block;
}

.header__logo {
   max-width: 106px;
}

.header__menu-button,
.header__menu .header__button {
   display: none;
}

.header__menu {
   margin: 0 auto 0 46px;
}

.header__menu ul {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.header__menu ul li+li {
   margin-left: 55px;
}

.header__menu ul li a {
   font-weight: 400;
   color: #fff;
   text-transform: capitalize;
}

.header__menu ul li a:hover {
   color: #FFAA00;
}

.header__button {
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   padding-left: 30px;
   padding-right: 30px;
   margin-top: 0;
}

.header__button-login {
   background: #262A39;
   border-color: #262A39;
   border-radius: 20px 20px 10px 10px;
   margin-right: 10px;
}

.header__button-login:hover {
   color: #fff;
}

.header__button-signup {
   color: #05071A;
   background: #FCC211;
   border-color: #FCC211;
   box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.8);
}

.header__button-signup:hover {
   color: #FCC211;
}

/* Main */
.main {
   padding-top: 80px;
}

/* Prime */
.prime {
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   padding-top: 134px;
   padding-bottom: 133px;
}

.prime__wrap {
   max-width: 765px;
   z-index: 1;
}

.prime__title {
   text-shadow: 0 0 3px #000;
}

.prime__title-red {
   color: #E23F3A;
}

.prime__title-yellow {
   color: #FFAA00;
}

.prime__image {
   position: absolute;
   right: 17.5vw;
   bottom: 0;
}

/* Info */
.table {
   margin-top: 16px;
   width: 100%;
   border-radius: 6px;
   border: 1px solid #FCC211;
   text-align: center;
}

.table th,
.table td {
   padding: 16px 20px;
   vertical-align: middle;
}

.table th+th,
.table td+td {
   border-left: 1px solid #FCC211;
}

.table th {
   font-weight: 700;
   color: #FFAA00;
   text-transform: uppercase;
}

.table td {
   border-top: 1px solid #FCC211;
}

/* App */
.app {
   padding-top: 43px;
   padding-bottom: 57px;
}

.app__wrap {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   width: 100%;
}

.app__links {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   margin-left: 6vw;
}

.app__link-button {
   font-family: 'Poppins', 'Arial', sans-serif;
   font-weight: 500;
   font-size: 14px;
   color: #fff;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   background: rgba(41, 37, 38, 0.502);
   border: 2px solid #FFAA00;
   box-shadow: 0px 0px 20px 0px rgba(255, 191, 5, 0.451),
      0px 0px 60px 0px rgba(255, 191, 5, 0.451) inset;
   padding: 9px 36px;
}

.app__link-button:hover {
   box-shadow: 0px 0px 20px 0px rgba(255, 191, 5, 0.451);
}

.app__link-apple {
   border-radius: 30px 30px 10px 10px;
   margin-right: 10px;
}

.app__link-android {
   border-radius: 10px 10px 30px 30px;
}

.app__link-button span {
   max-width: 115px;
   margin-left: 16px;
   text-align: center;
}

/* Pros Cons */
.pros-cons__table th,
.pros-cons__table td {
   width: 50%;
}

/* Bonuses */
.bonuses__table {
   margin-bottom: 16px;
}

.bonuses__table th,
.bonuses__table td {
   width: -webkit-calc(100% / 6);
   width: -moz-calc(100% / 6);
   width: calc(100% / 6);
}

.bonuses__table td {
   padding: 15px 28px;
}

/* Banner */
.banner {
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   padding: 130px 5.2vw;
}

.banner__wrap {
   max-width: 510px;
   text-align: center;
   z-index: 1;
   text-shadow: 0 0 3px #000;
}

.banner__title {
   color: #fff;
   margin-bottom: 10px;
}

.banner__title-yellow {
   color: #FFBF05;
}

.banner__title-red {
   color: #E23F3A;
}

.banner__subtitle {
   font-weight: 700;
   font-size: 24px;
   color: #FFBF06;
   text-transform: uppercase;
}

.banner__button {
   min-width: 243px;
   box-shadow: 0px 4px 56px 0px rgba(255, 124, 3, 0.8);
}

/* Games */
.games {
   padding-bottom: 15px;
}

.games__table table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0 16px;
}

.games__table th,
.games__table td {
   vertical-align: middle;
   padding: 7px 16px;
}

.games__table th {
   font-weight: 700;
   font-size: 20px;
   text-transform: uppercase;
   color: #FFAA00;
   white-space: nowrap;
   border-radius: 6px 0 0 6px;
   border: 1px solid #FA0;
   border-right: none;
}

.games__table td {
   border-radius: 0 6px 6px 0;
   border: 1px solid #FA0;
   border-left: none;
}

/* Payments */
.payments__table th,
.payments__table td {
   width: -webkit-calc(100% / 5);
   width: -moz-alc(100% / 5);
   width: calc(100% / 5);
   padding: 16px 20px;
}

/* Support */
.support a {
   border-bottom: 1px solid #fff;
}

/* FAQ */
.faq__list {
   margin-top: 17px;
}

.faq__item {
   padding: 0;
   overflow: hidden;
}

.faq__item+.faq__item {
   margin-top: 8px;
}

.faq__item:before {
   display: none;
}

.faq-item__title {
   background: rgba(255, 170, 0, 0.302);
   border: 1px solid #fff;
   border-radius: 6px;
   font-weight: 400;
   font-size: 16px;
   color: #fff;
   text-align: left;
   padding: 13px 60px 13px 20px;
   -webkit-transition: all .4s;
   -moz-transition: all .4s;
   -ms-transition: all .4s;
   -o-transition: all .4s;
   transition: all .4s;
   cursor: pointer;
}

.faq-item__title:hover {
   background: rgba(255, 170, 0, 0.6);
}

.faq-item__title:before {
   content: '';
   width: 24px;
   height: 24px;
   background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M4.74106%207.7459C5.03326%207.44784%205.49051%207.42074%205.81272%207.66461L5.90503%207.7459L12.5%2014.4734L19.095%207.7459C19.3872%207.44784%2019.8444%207.42074%2020.1666%207.66461L20.2589%207.7459C20.5511%208.04396%2020.5777%208.51037%2020.3386%208.83904L20.2589%208.93321L13.082%2016.2541C12.7898%2016.5522%2012.3325%2016.5793%2012.0103%2016.3354L11.918%2016.2541L4.74106%208.93321C4.41965%208.60534%204.41965%208.07376%204.74106%207.7459Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
   position: absolute;
   top: 0;
   bottom: 0;
   right: 20px;
   margin: auto;
   -webkit-transition: all .4s;
   -moz-transition: all .4s;
   -ms-transition: all .4s;
   -o-transition: all .4s;
   transition: all .4s;
}

.faq__item.active .faq-item__title:before {
   -webkit-transform: rotate(-180deg);
   -moz-transform: rotate(-180deg);
   -ms-transform: rotate(-180deg);
   -o-transform: rotate(-180deg);
   transform: rotate(-180deg);
}

.faq-item__desc {
   padding: 12px;
   border-top: 1px solid #132031;
}

.faq-item__desc p:first-child {
   margin-top: 0;
}

/* Testimonials */
.testimonials__list {
   margin-top: 16px;
}

.testimonials__list li {
   padding-left: 17px;
}

.testimonials__list li:before {
   left: 0;
}

.testimonials__text:after {
   content: '-';
   display: inline-block;
   margin: 0 5px;
}

.testimonials__name {
   color: #FFAA00;
}

.testimonials__age:before {
   content: ',';
   display: inline-block;
}

/* Footer */
.footer {
   background: url('../img/footer-bg.svg') no-repeat bottom center / contain;
   padding-top: 59px;
   padding-bottom: 40px;
}

.footer__desc {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   font-size: 14px;
   margin-top: 20px;
}

.wrap {
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

.wrap p {
   margin-top: 21px;
}

.wrap p:first-child {
   margin-top: 0;
}

.footer__age {
   background: #F96464;
   font-weight: 700;
   font-size: 20px;
   width: 57px;
   height: 57px;
   border-radius: 50%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   margin-left: 20px;
}