@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .header__menu-button path, .menu {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    overflow-x: hidden;
    background-color: #0d1d34;
}

body.active {
    margin-top: 75px;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #fff;
    font-weight: 400;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.content {
    max-width: 1290px;
    padding: 50px 30px;
    margin: auto;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    color: #fff;
}

h1, .title.general {
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 50px;
}

h1 span, .title.general span {
    color: #5ebe41;
}

h2, .title.high {
    font-size: 36px;
    line-height: 42px;
    color: #eb622b;
}

h2.green, .title.high.green {
    color: #4da532;
}

h2.white, .title.high.white {
    color: #fff;
}

h3, .title.middle {
    font-size: 30px;
    line-height: 35px;
}

h4, .title.small {
    font-size: 25px;
    line-height: 30px;
}

.button {
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    border-radius: 38px;
    min-width: 335px;
    background: #5ebe41;
    border: 5px solid;
    border-color: #5ebe41;
    padding: 12.5px 20px;
    font-size: 34px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-box-shadow: 0 0 50px 30px rgba(130, 255, 119, 0.3);
    -moz-box-shadow: 0 0 50px 30px rgba(130, 255, 119, 0.3);
    box-shadow: 0 0 50px 30px rgba(130, 255, 119, 0.3);
}

.button:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.button.outline {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: #182845;
}

.button.orange {
    border-color: #fd723b;
    background: #fd723b;
    -webkit-box-shadow: 0 0 50px 30px rgba(255, 146, 36, 0.3);
    -moz-box-shadow: 0 0 50px 30px rgba(255, 146, 36, 0.3);
    box-shadow: 0 0 50px 30px rgba(255, 146, 36, 0.3);
}

.button.orange.outline {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.button.dark {
    color: #061235;
}

table {
    width: 100%;
    word-break: break-word;
    z-index: 100;
}

table a {
    color: #5ebe41;
    font-weight: 700;
}

table a:hover {
    color: #fff;
}

table tr {
    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: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
}

table tr td {
    text-align: left;
}

.table__content {
    border: 1px solid #1a3768;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #132642;
    overflow: hidden;
}



/* header */

.header {
    background-color: #1a3768;
    z-index: 1000;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header__content.content {
    min-height: 75px;
    padding: 12.5px 0 12.5px 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;
}

.header__button.button.orange {
    min-width: 120px;
    font-size: 15px;
    line-height: 25px;
    border: none;
    padding: 12.5px 15px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    font-weight: 400;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 120px;
    -moz-box-flex: 0;
    flex: 0 1 120px;
    margin-right: 0;
    max-width: 120px;
    display: block;
}

.header__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.header__language {
    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;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header__language img {
    display: block;
    max-width: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.header__language span:first-child {
    margin-right: 5px;
}

.header__language:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    color: #fff;
}

.header__desc {
    color: #7695ca;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    text-align: center;
}

.header__logo img {
    display: block;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.menu {
    text-align: center;
}

.header__menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}

.menu:not(.header__expand-menu) ul > li + li {
    margin-left: 70px;
}

.menu ul a {
    display: block;
    padding: 19.5px 0 14.5px;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    border-bottom: 5px solid transparent;
}

.menu ul a:hover {
    border-bottom: 5px solid #eb642d;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu .header__button {
    display: none;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu li a {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    padding: 12px 15px;
    border: none;
}

.header__expand-menu li + li {
    margin-top: 20px;
}



/* article  */

article > * + *, .article > * + * {
    margin-top: 25px;
}

/* article li, .article li {
    display: block;
    padding-left: 30px;
}

article li + li, .article li + li {
    margin-top: 20px;
}

article ul li:before {
    content: "—";
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 0;
    top: -2px;
}

.article ol, article ol {
    list-style-position: inside;
    list-style: none;
}

.article ol > li, article > ol li {
    counter-increment: ol;
}

.article ol > li:before, article ol > li:before {
    content: counter(ol);
    font-weight: 16px;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
} */



/* first bonus */

.first-bonus__content.content {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid #1a63ab;
    padding: 75px 70px 50px;
    overflow: hidden;
    background: #000;
}

.first-bonus__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.first-bonus__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.first-bonus__wrap {
    z-index: 100;
}

.first-bonus__button {
    margin-top: 50px;
}

.first-bonus__desc {
    font-size: 43px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 20px;
}

.first-bonus__desc > span {
    display: block;
}

.first-bonus__desc > span span {
    color: #5ebe41;
}

.first-bonus__desc.blue > span span {
    color: #0890f1;
}

.first-bonus__desc > span span {
    color: #5ebe41;
}

.first-bonus__desc.orange > span span {
    color: #eb622b;
}


/* main info */

.main-info__content.content {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 0;
    margin-top: 50px;
}

.main-info__table {
    font-size: 24px;
    line-height: 30px;
}

.main-info__table tr td:nth-child(2).green {
    color: #5ebe41;
    font-weight: 700;
}

.main-info__table td {
    padding: 9px 30px;
}

.main-info__table tr td:first-child {
    padding-left: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    min-width: 100px;
}

.main-info__table tr td:nth-child(2) {
    padding-right: 0;
    color: #eb622b;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
    -moz-box-flex: 0;
    flex: 0 1 68%;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
}

.main-info__content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 33%;
    height: 100%;
    background: #1a3768;
    min-width: 115px;
}


/* registration */

.registration__content.content {
    padding-left: 0;
    padding-right: 0;
}

.registration-list__item {
    display: block;
    border: 1px solid #1a3768;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #132642;
    font-size: 24px;
    line-height: 30px;
    padding: 40px 30px;
}

.registration-list__item + .registration-list__item {
    margin-top: 25px;
}

.registration-list__item p + p {
    margin-top: 20px;
}



/* image */

.image__content.content {
    padding: 0;
}



/* games */

.games__content.content {
    padding: 25px 80px 40px;
}

.games__content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 27%;
    height: 100%;
    background: #1a3768;
}

.games__table {
    font-size: 15px;
}

.games__table tbody tr:first-child {
    margin-top: 25px;
}

.games__table td {
    padding: 5px 15px 5px 0;
}

.games__table thead tr td:first-child {
    color: #5ebe41;
    font-size: 24px;
    line-height: 25px;
    font-weight: 700;
}

.games__table tr td:nth-child(2) {
    color: #5ebe41;
}

.games__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 28%;
    -moz-box-flex: 0;
    flex: 0 1 28%;
    padding-right: 90px;
}

.games__table tr td:nth-child(n + 2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20%;
    -moz-box-flex: 0;
    flex: 0 1 20%;
}

.games__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 12%;
    -moz-box-flex: 0;
    flex: 0 1 12%;
}

.games__table tr td:last-child {
    padding-right: 0;
}


/* live */

.live__content.content {
    padding: 50px 80px;
    margin-bottom: 50px;
}

.live__content:before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 19%;
    height: 100%;
    background: #eb622b;
}

.live__content:after {
    content:'';
    position: absolute;
    right: 0;
    top: 0;
    width: 29%;
    height: 100%;
    background: #162c4c;
}

.live__table {
    line-height: 40px;
}

.live__table thead {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.live__table tbody tr {
    margin-top: 50px;
}

.live__table td {
    padding: 0 0 0 30px;
}

.live__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 14%;
    -moz-box-flex: 0;
    flex: 0 1 14%;
    min-width: 100px;
    padding-left: 0;
}

.live__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
    -moz-box-flex: 0;
    flex: 0 1 60%;
    padding-left: 70px;
    max-width: -webkit-calc(100% - 100px - 150px);
    max-width: -moz-calc(100% - 100px - 150px);
    max-width: calc(100% - 100px - 150px);
}

.live__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 26%;
    -moz-box-flex: 0;
    flex: 0 1 26%;
    min-width: 150px;
}


/* bonus */

.bonus__content.content {
    padding-top: 25px;
    padding-bottom: 25px;
}

.bonus__content:before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 27%;
    height: 100%;
    background: #1a3768;
}

.bonus__content:after {
    content:'';
    position: absolute;
    right: 0;
    top: 0;
    width: 43%;
    height: 100%;
    background: #162c4c;
}

.bonus__table {
    line-height: 40px;
}

.bonus__table thead {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.bonus__table tbody tr:first-child {
    margin-top: 25px;
}

.bonus__table tbody tr + tr {
    margin-top: 50px;
}

.bonus__table td {
    padding: 0 0 0 30px;
}

.bonus__table tr td:first-child {
    padding-left: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}

.bonus__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
}

.bonus__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 43%;
    -moz-box-flex: 0;
    flex: 0 1 43%;
}


/* vip */

.vip h2, .vip p {
    color: #eb622b;
}

.vip {
    margin-bottom: 50px;
}

.table__content.orange {
    background: transparent;
    border: 1px solid #eb622b;
    padding-top: 0;
    padding-bottom: 0;
}

.vip__table, .vip__table p {
    color: #fff;
}

.vip__table {
    line-height: 40px;
}

.vip__table thead {
    color: #eb622b;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.vip__table td {
    padding: 25px 30px;
}

.vip__table tr td:first-child {
    padding-left: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 23%;
    -moz-box-flex: 0;
    flex: 0 1 23%;
}

.vip__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 18%;
    -moz-box-flex: 0;
    flex: 0 1 18%;
    min-width: 100px;
}

.vip__table tr td:nth-child(3) {
    padding-right: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 59%;
    -moz-box-flex: 0;
    flex: 0 1 59%;
}

.vip__table tr td:nth-child(1), .vip__table tr td:nth-child(2) {
    border-right: 1px solid #eb622b;
}


/* payment */

.payment h2, .payment p {
    color: #eb622b;
}

.payment__table {
    line-height: 40px;
}

.payment__table td {
    padding: 25px 30px;
}

.payment__table tr td:first-child {
    color: #eb622b;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    padding-left: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
    -moz-box-flex: 0;
    flex: 0 1 32%;
    border-right: 1px solid #eb622b;
}

.payment__table tr td:nth-child(2) {
    padding-right: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
    -moz-box-flex: 0;
    flex: 0 1 68%;
}


/* info */

.info__content.content {
    padding-top: 25px;
    padding-bottom: 25px;
    border: 1px solid #4da532;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.info__content h2 {
    color: #4da532;
}

.info__content p + h2 {
    margin-top: 50px;
}



/* faq */

.faq__content.content {
    padding: 0;
    margin-top: 35px;
}

.faq-item__question {
    border: 1px solid #1a3768;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #132642;
    padding: 13px 25px;
    text-align: left;
    display: block;
    width: 100%;
}

.faq__item {
    margin-bottom: 20px;
    display: block;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq-item__answer {
    padding: 20px 25px 0;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}


/* conclusion */

.conclusion {
    margin-top: 50px;
    background: #0a172a;
    padding-bottom: 25px;
}

.conclusion h2 {
    color: #fff
}
