@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: 0;
   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: 163px;
   padding-bottom: 162px;
}

.prime__wrap {
   max-width: 640px;
   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: 19vw;
   bottom: 0;
}

/* Info */
.table {
   width: 100%;
   border-radius: 6px;
   border: 1px solid #FCC211;
   text-align: center;
}

*+.table,
.table+* {
   margin-top: 16px;
}

.table th,
.table td {
   padding: 15.5px 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: 0;
   border: 2px solid #FCC211;
}

.app__wrap {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   width: 100%;
   padding-left: 6.5vw;
}

.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;
   border-radius: 8px;
   box-shadow: 0px 0px 20px 0px rgba(255, 191, 5, 0.451);
   padding: 9px 36px;
}

.app__link-button:hover {
   box-shadow: 0px 0px 20px 0px rgba(255, 191, 5, 0.451),
      0px 0px 60px 0px rgba(255, 191, 5, 0.451) inset;
}

.app__link-apple {
   margin-bottom: 10px;
}

.app__link-button span {
   max-width: 115px;
   margin-left: 16px;
   text-align: center;
}

.app__img img {
   display: block;
}

/* Deposits */
.deposits__table th,
.deposits__table th {
   width: 33.3%;
}

/* Games */
.games__list li {
   padding: 0;
}

.games__list li+li {
   margin-top: 24px;
}

.games__list li:before {
   font-weight: 700;
   color: #FFAA00;
   position: static;
   display: inline-block;
}

.games__list li span {
   font-weight: 700;
   color: #FFAA00;
   text-transform: uppercase;
}

/* 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);
}

/* Pros Cons */

.pros-cons h3.title {
   text-align: left;
   margin: 16px 0;
}

.pros-cons ul+h3.title {
   margin-top: 32px;
}

.pros-cons ul li {
   padding-left: 40px;
}

.pros-cons ul li:before {
   background: none;
   width: 24px;
   height: 20px;
   border-radius: 0;
   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%2220%22%20viewBox%3D%220%200%2024%2020%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M23.4327%208.50226L15.5322%200.601776C15.3544%200.414698%2015.141%200.265092%2014.9045%200.161771C14.6679%200.0584488%2014.4132%200.00350035%2014.1551%200.000161853C13.897%20-0.00317665%2013.6409%200.0451623%2013.4018%200.142331C13.1627%200.239501%2012.9455%200.383535%2012.7629%200.56595C12.5803%200.748366%2012.4361%200.965473%2012.3387%201.20449C12.2413%201.4435%2012.1928%201.69958%2012.1959%201.95765C12.199%202.21572%2012.2537%202.47055%2012.3568%202.70715C12.46%202.94374%2012.6094%203.15731%2012.7963%203.33527L17.4665%207.99828H1.93432C1.42131%207.99828%200.929306%208.20208%200.56655%208.56483C0.203794%208.92759%200%209.41959%200%209.93261C0%2010.4456%200.203794%2010.9376%200.56655%2011.3004C0.929306%2011.6631%201.42131%2011.8669%201.93432%2011.8669H17.4233L12.7963%2016.5011C12.4486%2016.8669%2012.2577%2017.3541%2012.2642%2017.8587C12.2708%2018.3633%2012.4742%2018.8454%2012.8312%2019.2021C13.1882%2019.5588%2013.6705%2019.7618%2014.1751%2019.7679C14.6797%2019.774%2015.1667%2019.5826%2015.5322%2019.2346L23.4327%2011.3342C23.6129%2011.155%2023.7558%2010.9418%2023.853%2010.707C23.9503%2010.4721%2023.9999%2010.2204%2023.9991%209.96621C24.0003%209.95023%2024.0003%209.93418%2023.9991%209.91821C24.0002%209.90223%2024.0002%209.88619%2023.9991%209.87021C23.9989%209.35721%2023.7952%208.86524%2023.4327%208.50226Z%22%20fill%3D%22%23FFAA00%22%2F%3E%3C%2Fsvg%3E");
   background-repeat: no-repeat no-repeat;
   background-position: center center;
   background-size: contain;
}

.pros-cons ul li+li {
   margin-top: 8px;
}

/* FAQ */
.faq__list {
   margin-top: 15px;
}

.faq__item {
   padding: 0;
   overflow: hidden;
   background: #2A3645;
   border: 1px solid #FFAA00;
   border-radius: 6px;
}

.faq__item+.faq__item {
   margin-top: 14px;
}

.faq__item:before {
   display: none;
}

.faq-item__title {
   font-weight: 400;
   font-size: 16px;
   color: #fff;
   text-align: left;
   padding: 14px 60px 14px 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: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;
}

/* Rating */
.rating__list {
   margin-top: 16px;
}

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

.rating__list li:before {
   top: 3px;
}

.rating__list span,
.rating__list img {
   display: inline-block;
   vertical-align: middle;
}

.rating__name {
   min-width: 215px;
}

.rating__value {
   font-weight: 700;
   border: 2px solid #FFAA00;
   border-radius: 30px;
   padding: 3px 7px;
   line-height: 1;
}

/* 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;
}