@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@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');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

svg use {
    fill: #fff;
    fill-rule: evenodd;
}

.path {
    fill: #fff;
    stroke: #fff;
}

.svg-menu rect, .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: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background: #203b57;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

body.active {
    margin-top: 100px;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.header {
    z-index: 1000;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#30628e), to(#224161));
    background: -webkit-linear-gradient(#30628e, #224161);
    background: -moz-linear-gradient(#30628e, #224161);
    background: -o-linear-gradient(#30628e, #224161);
    background: linear-gradient(#30628e, #224161);
}

.image img {
    margin: auto;
    display: block;
}

.content {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px 0;
}

.content:last-child {
    padding-bottom: 25px;
}

.main {
    padding-bottom: 25px;
}

.main:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    background-image: url(../images/main.png);
}

a {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

h1, h2, h3, h4, .title {
    font-weight: 400;
    z-index: 100;
    text-transform: uppercase;
}

h1, .title.general {
    font-size: 45px;
    line-height: 55px;
    color: #ffcf0e;
    text-align: center;
    font-family: 'Oswald', Arial, sans-serif;
}

h1 span {
    display: block;
}

h2, .title.high, h3, .title.middle {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 25px;
    color: #ffcf0e;
    font-family: 'Oswald', Arial, sans-serif;
}

h4, .title.small {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    text-transform: none;
}

h2, h3 {
    padding-left: 60px;
}

h2:before, h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9.5px;
    height: 31px;
    width: 45px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/title.png);
}

.title.high, .title.middle {
    padding-left: 0;
}

.title.high:before, .title.middle:before {
    content: none;
}

.button {
    min-width: 180px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#e99810));
    background: -webkit-linear-gradient(#ffcc00, #e99810);
    background: -moz-linear-gradient(#ffcc00, #e99810);
    background: -o-linear-gradient(#ffcc00, #e99810);
    background: linear-gradient(#ffcc00, #e99810);
    color: #2b1234;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    padding: 12.5px 15px;
    display: inline-block;
    position: relative;
	height: auto;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
    cursor: pointer;
    margin: auto;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: 'Oswald', Arial, sans-serif;
}

.button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}




/* header */


.content.header__content {
    padding: 10px 30px 10px 0;
    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;
    background: transparent;
    min-height: 100px;
}

.header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header__logo img {
    display: block;
    margin: auto;
}

.header__logo {
    display: block;
}

.header__left, .header__right {
    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;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.header__menu {
    margin-left: 70px;
}

.header__menu * {
    display: inline-block;
    vertical-align: middle;
}

.header__menu a, .header__expand-menu > *:nth-child(2) a {
    padding: 10px 30px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', Arial, sans-serif;
}

.header__menu a:hover {
    color: #ffbd04;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu > * {
    display: none;
    width: 100%;
}

.header__expand-menu > *:nth-child(n + 2) 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;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu > *:nth-child(2) a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12.5px;
    margin-bottom: 15px;
    width: 100vw;
}

.header__expand-menu > *:nth-child(2) > li:last-child a {
    margin-bottom: 0;
}

.header__right > .header__buttons {
    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;
}

.header__button + .header__button.button {
    margin-left: 30px;
    background: transparent;
    color: #274c70;
    background: #fff;
}





/* cover */



.cover__content.content {
    padding-bottom: 25px;
}

.cover__wrapper {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 75, 153, 0.6)), to(rgba(0, 123, 252, 0.6)));
    background: -webkit-linear-gradient(rgba(1, 75, 153, 0.6), rgba(0, 123, 252, 0.6));
    background: -moz-linear-gradient(rgba(1, 75, 153, 0.6), rgba(0, 123, 252, 0.6));
    background: -o-linear-gradient(rgba(1, 75, 153, 0.6), rgba(0, 123, 252, 0.6));
    background: linear-gradient(rgba(1, 75, 153, 0.6), rgba(0, 123, 252, 0.6));
    padding: 50px 6% 75px;
    text-align: center;
}

.cover__wrap {
    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;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cover__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 120px;
    -moz-box-flex: 0;
    flex: 0 1 120px;
}

.cover__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 120px - 120px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 120px - 120px);
    padding: 0 20px;
    text-align: center;
}




/* main info */

.main-info__content.content {
    padding-bottom: 15px;
}

.main-info__title.title {
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

.main-info__wrap {
    color: #1c192c;
    text-transform: uppercase;
    overflow: hidden;
    padding: 40px 30px 60px 40px;
}

.wrap {
    border: 1px solid #6192c5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}

.wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #305880;
}

.main-info__wrap:before {
    width: -webkit-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: -moz-calc((100% - 30px - 60px) * 0.30 + 60px);
    width: calc((100% - 30px - 60px) * 0.30 + 60px);
}

table {
    width: 100%;
    font-size: 18px;
    line-height: 36px;
    word-break: break-word;
}

.main-info__table {
    font-family: 'Oswald', Arial, sans-serif;
}

table tr td:first-child {
    color: #fff;
}

table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.main-info__table tr td:first-child {
    padding-right: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 200px;
}

.main-info__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    max-width: -webkit-calc(100% - 200px);
    max-width: -moz-calc(100% - 200px);
    max-width: calc(100% - 200px);
    padding-left: 60px;
}

.main-info__table tbody tr + tr {
    margin-top: 25px;
}



/* list */

.list {
    background: -webkit-gradient(linear, left top, left bottom, from(#387cc5), to(#1a5fc3));
    background: -webkit-linear-gradient(#387cc5, #1a5fc3);
    background: -moz-linear-gradient(#387cc5, #1a5fc3);
    background: -o-linear-gradient(#387cc5, #1a5fc3);
    background: linear-gradient(#387cc5, #1a5fc3);
    padding: 60px;
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.list li {
    display: block;
    padding-left: 45px;
}

.list li + li {
    margin-top: 15px;
}

.list li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 27px;
    height: 26px;
    top: 4.5px;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-image: url(../images/list.png);
}



/* registration */

.registration__content.content {
    padding-bottom: 15px;
}

.registration__content .list + * {
    margin-top: 25px;
    text-transform: uppercase;
}




.article .image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
}



/* form */

.form__content.content {
    padding-bottom: 15px;
    padding-top: 40px;
}

.form__wrap {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, right top, from(#003aff), to(#21d3fd));
    background: -webkit-linear-gradient(left, #003aff, #21d3fd);
    background: -moz-linear-gradient(left, #003aff, #21d3fd);
    background: -o-linear-gradient(left, #003aff, #21d3fd);
    background: linear-gradient(to right, #003aff, #21d3fd);
    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;
    padding: 50px 75px 50px 0;
    border: 1px solid #41b4fe;
    font-family: 'Poppins', Arial, sans-serif;
}

.form__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
    -moz-box-flex: 0;
    flex: 0 1 48%;
}

.form__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(52% - 75px);
    -moz-box-flex: 0;
    flex: 0 1 calc(52% - 75px);
}

.form__image img {
    display: block;
    margin: auto;
    max-width: 320px;
    width: 100%;
}

.form__field {
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #41b4fe;
    padding: 25px 30px;
    background: -webkit-gradient(linear, left top, right top, from(#007bff), to(#00bcff));
    background: -webkit-linear-gradient(left, #007bff, #00bcff);
    background: -moz-linear-gradient(left, #007bff, #00bcff);
    background: -o-linear-gradient(left, #007bff, #00bcff);
    background: linear-gradient(to right, #007bff, #00bcff);
}

.form__right > * + * {
    margin-top: 25px;
}

.form__check {
    padding-left: 40px;
    max-width: 400px;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    margin-top: 35px;
}

.form__check:before {
    content: '';
    position: absolute;
    left: 5px;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    top: -webkit-calc(50% - 10px);
    top: -moz-calc(50% - 10px);
    top: calc(50% - 10px);
    border: 2px solid #fff;
}

.form__button.button {
    margin-top: 35px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #000;
    min-width: 210px;
    padding: 15px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
}




/* download */

.download__content.content {
    padding-top: 40px;
    padding-bottom: 15px;
}



/* bonus */

.list span {
    color: #ffcf0e;
}



/* tournaments */

.tournaments__content.content {
    padding-top: 40px;
    padding-bottom: 15px;
}


/* slots */

.slots__content.content {
    padding-top: 40px;
    padding-bottom: 15px;
}


/* games */

.games__content.content {
    padding-top: 40px;
}



/* conclusion */

.conclusion__desc {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 35px;
}

.conclusion__list {
    background: rgba(22, 43, 66, 0.5);
    padding-top: 40px;
    padding-bottom: 40px;
    color: #f9be04;
}



/* article  */

article > *, .article > * {
    margin-top: 25px;
}

.article > * + .button, article > * + .button {
    margin-top: 25px;
}

article > *:first-child, .article > *:first-child, article > a.button:first-child, .article > a.button:first-child {
    margin-top: 0;
}

article li, .article li {
    padding-left: 30px;
    display: block;
    text-align: left;
}

article li + li, .article li + li {
    margin-top: 10px;
}

.article ul li:before, article ul li:before {
    content: ".";
    font-size: 25px;
    line-height: inherit;
    color: #fff;
    font-weight: 700;
    position: absolute;
    left: 10px;
    top: -6px;
}

.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-size: inherit;
    line-height: inherit;
    position: absolute;
    left: 10px;
    top: 0;
    font-weight: 400;
    color: #fff;
}

.article > ol > li:marker, article > ol > li:marker {
    content: counters(li);
}

.article * + h2, .article * + h3 {
    margin-top: 35px;
}


/* faq */

.faq__wrap {
    background: -webkit-gradient(linear, left top, left bottom, from(#3d638c), to(#335d86));
    background: -webkit-linear-gradient(#3d638c, #335d86);
    background: -moz-linear-gradient(#3d638c, #335d86);
    background: -o-linear-gradient(#3d638c, #335d86);
    background: linear-gradient(#3d638c, #335d86);
    padding: 30px 25px;
}

.faq__title.title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: none;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}

.faq__item {
    overflow: hidden;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #294c6e;
    font-family: 'Poppins', Arial, sans-serif;
}

.faq-item__question {
    color: #203b57;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffc705), to(#ffb302));
    background: -webkit-linear-gradient(#ffc705, #ffb302);
    background: -moz-linear-gradient(#ffc705, #ffb302);
    background: -o-linear-gradient(#ffc705, #ffb302);
    background: linear-gradient(#ffc705, #ffb302);
    padding: 18px 25px;
    -webkit-transition: background color 0.2s linear;
    -o-transition: background color 0.2s linear;
    -moz-transition: background color 0.2s linear;
    transition: background color 0.2s linear;
}

.faq__item + .faq__item {
    margin-top: 25px;
}

.faq-item__answer {
   padding: 15px 25px;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}




/* rating */

.rating__title.title {
    color: #ffc304;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    border: 2px solid #ffc705;
    padding: 16px 25px;
    margin-bottom: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
}

.rating__title.title:before {
    content: none;
}

.rating__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffc705), to(#ffad01));
    background: -webkit-linear-gradient(#ffc705, #ffad01);
    background: -moz-linear-gradient(#ffc705, #ffad01);
    background: -o-linear-gradient(#ffc705, #ffad01);
    background: linear-gradient(#ffc705, #ffad01);
    padding: 10px 20px 30px 15px;
    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-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 30px;
    color: #411c24;
    font-weight: 600;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    font-family: 'Poppins', Arial, sans-serif;
}

.rating__list li {
    display: block;
    margin-top: 20px;
    padding-left: 30px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}

.rating__list li:nth-child(4n + 1), .rating__list li:nth-child(4n + 2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 27%;
    -moz-box-flex: 0;
    flex: 0 1 27%;
}

.rating__list li:nth-child(4n + 3), .rating__list li:nth-child(4n + 4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 23%;
    -moz-box-flex: 0;
    flex: 0 1 23%;
}



/* banner */

.banner__link {
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 25px;
    overflow: hidden;
}

.banner__link:hover .banner__button {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.banner__wrap {
    max-width: 500px;
    margin: auto;
    text-align: center;
    z-index: 100;
    padding: 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 65%;
}

.banner__title span {
    display: block;
    color: #fff;
}

.banner__title span:last-child {
    color: #ffcf0e;
}

.banner__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner__bg img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.banner__image {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 100%;
}

.banner__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    height: 100%;
}

.banner__content.first .banner__image.left {
    bottom: 50px;
    left: 75px;
    height: -webkit-calc(100% - 50px - 50px);
    height: -moz-calc(100% - 50px - 50px);
    height: calc(100% - 50px - 50px);
}

.banner__content.first .banner__image.right {
    bottom: 50px;
    right: 75px;
    height: -webkit-calc(100% - 50px - 50px);
    height: -moz-calc(100% - 50px - 50px);
    height: calc(100% - 50px - 50px);
}


.banner__content.second .banner__image.left {
    left: 75px;
}

.banner__content.second .banner__image.right {
    right: 50px;
    height: -webkit-calc(100% - 25px);
    height: -moz-calc(100% - 25px);
    height: calc(100% - 25px);
}


.banner__content.third .banner__image.left {
    left: 0;
    height: -webkit-calc(100% - 40px);
    height: -moz-calc(100% - 40px);
    height: calc(100% - 40px);
}

.banner__content.third .banner__image.right {
    right: 40px;
    height: -webkit-calc(100% - 70px);
    height: -moz-calc(100% - 70px);
    height: calc(100% - 70px);
}
