@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@700&family=Roboto:wght@400;700&display=swap');

body {
   overflow-x: hidden;
   min-height: 100vh;
   background: #fff;
   font-family: 'Roboto', 'Arial', sans-serif;
   font-size: 24px;
   font-weight: 400;
   line-height: 1.5;
   color: #2d3c46;
   text-align: left;
   -webkit-text-size-adjust: 100%;
   text-size-adjust: 100%;
}

p {
   margin-top: 25px;
   line-height: 1.25;
   width: 100%;
}

p+ul,
p+ol {
   margin-top: 16px;
}

ul,
ol {
   text-align: left;
   width: 100%;
}

ol>li {
   counter-increment: ol;
}

ul>li:before,
ol>li:before {
   display: inline-block;
   vertical-align: middle;
   font: inherit;
   margin-right: 5px;
}

ul>li:before {
   content: '-';
}

ol>li:before {
   content: counter(ol);
}

.list-wide {
   margin: 44px -30px 0;
   width: -webkit-calc(100% + 60px);
   width: -moz-calc(100% + 60px);
   width: calc(100% + 60px);
}

.list-wide li {
   background: #5f5b5b;
   padding: 14px 63px;
   min-height: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.list-wide li+li {
   margin-top: 25px;
}

nav ul {
   width: auto;
}

nav ul li:before {
   display: none;
}

nav a {
   color: inherit;
}

/* Title */
h1,
h2,
h3,
.title {
   display: block;
   position: relative;
   width: 100%;
   font-weight: 700;
   line-height: 1.2;
   color: #2d3c46;
   text-transform: uppercase;
}

h1.title {
   color: #01a77f;
   text-align: center;
}

h1,
.title.general {
   font-size: 48px;
}

h2,
.title.high {
   font-size: 36px;
}

h3,
.title.middle {
   font-size: 36px;
}

h4,
.title.mini {
   font-size: 24px;
}

/* Article */
article,
.article {
   font-size: 24px;
   font-weight: 400;
   line-height: 1.5;
   text-align: left;
}

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

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

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

/* Button */
.button {
   display: inline-block;
   position: relative;
   width: auto;
   height: auto;
   font-size: 15px;
   line-height: 2;
   font-weight: 700;
   color: #fff;
   text-transform: uppercase;
   text-align: center;
   white-space: nowrap;
   background: #01a77f;
   border: 2px solid #01a77f;
   min-width: 180px;
   min-height: 50px;
   padding: 9px 20px 6px;
   margin: 25px 0 0;
}

.button:hover {
   background: transparent;
   color: #01a77f;
}

.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: start;
   -ms-flex-align: start;
   align-items: flex-start;
   height: 100%;
   width: 100%;
   max-width: 1230px;
   margin: 0px auto;
   position: relative;
   overflow: hidden;
}

.content {
   margin-top: 25px;
}

.cover {
   max-width: 100%;
   overflow: hidden;
   padding-left: -webkit-calc(50% - (1230px / 2));
   padding-left: -moz-calc(50% - (1230px / 2));
   padding-left: calc(50% - (1230px / 2));
   padding-right: -webkit-calc(50% - (1230px / 2));
   padding-right: -moz-calc(50% - (1230px / 2));
   padding-right: calc(50% - (1230px / 2));
   margin-top: 40px;
}

.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: #01a77f;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   overflow: visible;
   padding-top: 25px;
   padding-bottom: 25px;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   z-index: 10;
   height: auto;
   margin-top: 0;
}

.logo {
   display: inline-block;
}

.logo img {
   display: block;
}

.header__logo {
   max-width: 154px;
}

.header__menu-button,
.header__menu .header__button {
   display: none;
}

.header__menu {
   margin: 0 auto 0 7.7vw;
}

.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: 3.3vw;
}

.header__menu ul li a {
   font-size: 15px;
   font-weight: 400;
   color: #010101;
   text-transform: uppercase;
}

.header__menu ul li a:hover {
   color: #fff;
}

.header__button {
   font-weight: 400;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   margin-top: 0;
}

.header__button-login {
   background: #fff;
   border-color: #fff;
   color: #192228;
   margin-right: 30px;
}

.header__button-login:hover {
   color: #192228;
}

.header__button-signup {
   color: #fff;
   background: #3e3d3d;
   border-color: #3e3d3d;
}

.header__button-signup:hover {
   color: #fff;
}

.header.scroll {
   padding-top: 10px;
   padding-bottom: 10px;
}

/* Main */
.main {
   padding-top: 100px;
   padding-bottom: 25px;
   position: relative;
}

.main:before {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 100px;
   height: 50px;
   background: #01a77f;
}

/* Prime */
.prime {
   background: #3e3d3d;
   padding: 34px 30px 50px;
   text-align: center;
   margin-top: 0;
}

.prime__wrap {
   margin: 0 auto;
   z-index: 1;
}

.prime__text {
   font-size: 18px;
   color: #fff;
   line-height: 1.66;
   margin: 36px 0 23px;
}

/* Características */
.characteristics__table th {
   background: #3e3d3d;
   font-weight: 400;
   color: #fff;
   width: 390px
}

.characteristics__table tr:last-child th {
   padding-bottom: 50px;
}

.characteristics__table td {
   background: #f2f3f5;
   line-height: 1.06;
}

.characteristics__table th,
.characteristics__table td {
   padding: 13px 27px;
}

/* Pros Cons */
.pros-cons__desc {
   background: #3e3d3d;
   color: #fff;
   padding: 30px;
}

.pros-cons__table {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   width: 100%;
}

.pros-cons__item {
   color: #fff;
   width: 50%;
   padding: 25px 32px 40px;
}

.pros__item {
   background: #01a77f;
}

.cons__item {
   background: #10b18a;
}

.pros-cons__item .title {
   color: #fff;
}

.pros-cons__item ul {
   margin-top: 30px;
}

.pros-cons__item li {
   line-height: 1.2;
}

.pros-cons__item li+li {
   margin-top: 33px;
}

/* Registration */
.registration__subtitle {
   font-weight: 700;
   text-transform: uppercase;
}

.registration__list {
   margin-top: 35px;
}

.registration__list li {
   background: #3e3d3d;
   color: #fff;
   padding: 15px 100px 15px 130px;
   min-height: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   position: relative;
}

.registration__list li+li {
   margin-top: 25px;
}

.registration__list li:before {
   background: #01a77f;
   font-weight: 700;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   width: 105px;
   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;
}

/* App */
.app__desc {
   background: #f2f3f5;
   padding: 25px 30px;
}

.app__item {
   padding: 25px 30px;
   font-weight: 700;
   color: #fff;
   width: 100%;
}

.app__ios {
   background: #01a77f;
}

.app__item-title {
   color: #fff;
   margin-bottom: 25px;
   text-transform: none;
}

.app__android {
   background: #098a6b;
}

.app__item li span {
   color: #55e1bf;
}

.app__android ul li:nth-child(4) {
   margin: 20px 0;
}

/* Banner */
.banner {
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
}

.banner__img {
   background: #01a77f;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
}

.banner__img img {
   display: block;
}

.banner__desc {
   background: #3e3d3d;
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
   padding: 62px 60px 50px 74px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
}

.banner__title {
   color: #fff;
   font-size: 30px;
}

.banner__title span {
   color: #0dc599;
}

.banner__button {
   margin-top: 40px;
}

/* Slots Table */

.slots__table {
   background: #3e3d3d;
   font-weight: 700;
   font-size: 15px;
   color: #fff;
   width: 100%;
   margin-top: 50px;
}

.slots__table th:first-child,
.slots__table td:first-child {
   padding-left: 75px;
}

.slots__table th:last-child,
.slots__table td:last-child {
   padding-right: 75px;
}

.slots__table th {
   background: #01a77f;
   padding: 14px 10px;
}

.slots__table tr:nth-child(2) td {
   padding-top: 25px;
}

.slots__table tr:last-child td {
   padding-bottom: 30px;
}

.slots__table td {
   padding: 4px 10px;
}

/* Games */
.games__table {
   margin-top: 50px;
   width: 100%;
   background: #3e3d3d;
   font-family: 'Lato', sans-serif;
   font-size: 15px;
   color: #fff;
}

.games__table th {
   background: #01a77f;
   padding: 26px 30px;
}

.games__table th:first-child {
   width: 180px;
}

.games__table th:nth-child(2) {
   background: #07b087;
}

.games__table td {
   padding: 30px;
   border-bottom: 25px solid #3e3d3d;
}

.games__table td:nth-child(2) {
   background: #4d4d4d;
}

.games__table td:last-child {
   background: #252222;
}

.games__table ul li+li {
   margin-top: 25px;
}

.games__table ul li:before {
   display: none;
}

/* Payment */
.payment__table {
   font-family: 'Lato', sans-serif;
   color: #fff;
   font-size: 15px;
   width: 100%;
   margin-top: 50px;
}

.payment__table th {
   background: #01a77f;
   width: 33.3%;
   padding: 14px 30px;
}

.payment__table td {
   padding: 1.3px 30px;
}

.payment__table tr:nth-child(2) td {
   padding-top: 25px;
}

.payment__table tr:last-child td {
   padding-bottom: 42px;
}

.payment__table td:first-child {
   background: #3e3d3d;
}

.payment__table td:nth-child(2) {
   background: #4d4d4d;
}

.payment__table td:last-child {
   background: #252222;
}

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

.faq__item {
   font-family: 'Poppins', sans-serif;
}

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

.faq__item:before {
   display: none;
}

.faq-item__title {
   background: #5f5b5b;
   font-weight: 700;
   color: #fff;
   text-align: left;
   text-transform: none;
   padding: 23px 38px;
   -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,
.faq__item.active .faq-item__title {
   background: #01a77f;
}

.faq-item__desc {
   background: #089472;
   font-size: 16px;
   font-weight: 400;
   padding: 20px;
   color: #fff;
}

.faq-item__desc p:first-child {
   margin-top: 0;
}

/* Comments */
.comments__list {
   font-family: 'Lato', 'Arial', sans-serif;
   color: #fff;
   font-size: 15px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   grid-gap: 30px;
   margin-top: 40px;
}

.comments__list li {
   background: #3e3d3d;
   width: -webkit-calc(33.3% - 20px);
   width: -moz-calc(33.3% - 20px);
   width: calc(33.3% - 20px);
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
}

.comments__list li:before {
   display: none;
}

.comments__text {
   margin-top: 0;
   padding: 12px 28px 15px;
   line-height: 1.66;
}

.comments__autor {
   background: #01a77f;
   padding: 11px 28px;
   margin-top: auto;
}

/* Summary */
.summary {
   background: #3e3d3d;
   color: #fff;
   padding: 30px 30px 30px 0;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   -ms-flex-direction: row;
   flex-direction: row;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.summary__item {
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
}

.summary__rating {
   width: 50%;
}

.summary__rating-title {
   background: #6d6a6a;
   color: #fff;
   padding: 32px 45px;
}

.summary__rating-tabel {
   padding: 30px 35px;
}

.summary__rating-tabel td {
   padding: 14px 10px;
}

.summary__desc {
   background: #525151;
   font-size: 18px;
   padding: 32px 33px;
   width: -webkit-calc(50% - 30px);
   width: -moz-calc(50% - 30px);
   width: calc(50% - 30px);
}

.summary__desc .title {
   color: #fff;
}

.summary__desc p {
   line-height: 1.66;
}