@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: #0c0c0c;
}

body.active {
    overflow: hidden;
}

.main {
    text-align: center;
}

.main > * {
    margin-bottom: 25px;
}

* {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #e9403a;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    transition: all 0.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: 25px 30px;
    margin: auto;
}

h1, h2, h3, h4, .title {
    font-weight: 700;
    text-transform: uppercase;
    color: #dc4141;
    word-break: break-word;
    text-align: center;
}

h1, .title.general {
    font-size: 45px;
    line-height: 50px;
    text-align: left;
    margin-bottom: 50px;
}

h2, .title.high {
    font-size: 45px;
    line-height: 50px;
}

h2.white, .title.high.white {
    color: #fff;
}

h3, .title.middle {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    text-transform: none;
}

h4, .title.small {
    font-size: 30px;
    line-height: 45px;
}

.button {
    border-radius: 25px;
    min-width: 160px;
    background-color: #dc4141;
    padding: 12.5px 20px;
    font-size: 15px;
    line-height: 25px;
    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;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

.button.gray {
    background-color: #4b4b4b;
    min-width: 120px;
}

.button.gray:hover {
    background-color: #fff;

}


.wrap {
    background-color: #03080a;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 25px 30px;
    border: 2px solid #dc4141;
    width: calc(100% + 60px);
    margin-left: -30px;
}

table {
    font-size: 22px;
    line-height: 25px;
    width: 100%;
    word-break: break-word;
    text-align: left;
}

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;
}

table:not(.black) thead + tbody tr:first-child {
    margin-top: 25px;
}

table:not(.black) tr + tr {
    margin-top: 25px;
}

table tr td:nth-child(n + 2) {
    padding-left: 30px;
}

table.black {
    font-weight: 700;
}

table.black tr td {
    padding-top: 25px;
}

table.black tr td:first-child {
    padding-left: 30px;
    padding-right: 30px;
    background-color: #000;
}

table.black tr:last-child td {
    padding-bottom: 25px;
}

table.black tr:first-child td:first-child {
    border-radius: 10px 10px 0 0;
}

table.black tr:last-child td:first-child {
    border-radius: 0 0 10px 10px;
}

table.black thead tr:last-child td:first-child {
    border-radius: 10px 10px 0 0;
}

table.black thead tr:last-child td {    
    padding-bottom: 0;
}

table.black thead + tbody tr:first-child td:first-child {
    border-radius: 0;
}

table.black:not(.main-info__table) tr td:nth-child(n + 2) {
    padding-left: 50px;
}

table.black tr td:nth-child(3) {
    color: #db4141;
    padding-right: 30px;
}



/* header */

.header {
    background-color: #141414;
    -webkit-box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.header__content {
    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: 12.5px 10% 12.5px 30px;
}

.header__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 140px;
    -moz-box-flex: 0;
    flex: 0 1 140px;
}

.header__logo img {
    display: block;
}

.header__right {
    flex: 0 1 420px;
}

.header__buttons > * + * {
    margin-left: 7px;
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.menu > *:not(.header__buttons) a {
    display: block;
    padding: 12.5px 0;
    color: #dc4141;
    -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;
    text-align: center;
}

.header-left__menu {
    flex: 0 1 calc(100% - 140px - 420px);
    padding: 0 80px;
}

.header-left__menu a:hover {
    color: #8b8989;
}

.header-left__menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.header-left__menu > ul > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 -webkit-calc(100% / 3);
    -moz-box-flex: 1;
    flex: 1 1 calc(100% / 3);
}

.header-right__menu {
    margin-left: 20px;
}

.header-right__menu a {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 100px;
}

.header-right__menu a:hover {
    color: #8b8989;
}

.header-right__menu span {
    display: inline-block;
    vertical-align: middle;
}

.header-right__menu span:first-child {
    margin-right: 7px;
}

.header-right__menu img {
    display: block;
}

.header__expand-menu {
    display: none;
}

.header__expand-menu .header__buttons {
    display: none;
}

.header__expand-menu li {
    display: block;
}

.header__expand-menu li a {
    background-color: rgba(0, 0, 0, 0.3);
}

.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: 15px;
}

article ul li:before, .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);
}


/* cover */

.cover__content {
    padding: 75px 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cover__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cover__image img {
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    object-position: 40%;
}

.cover__wrap {
    flex: 0 1 calc((100% - 30px) / 2 + 30px);
    text-align: left;
}

.cover__button {
    box-shadow: 0 0 50px 30px rgba(255, 0, 0, 0.3);
    border-bottom: 7px solid #a82b2b;;
}

.cover__button:hover {
    box-shadow: 0 0 50px 30px rgba(255, 255, 255, 0.3);
    border-bottom: 7px solid rgb(59, 59, 59);
}



/* bonus */

.bonus-deposit__wrap, .bonus-info__wrap {
    padding: 40px 30px;
}

.bonus-deposit__table, .bonus-info__table {
    text-transform: uppercase;
    font-size: 24px;
}

.bonus-deposit__table thead, .bonus-info__table tr td:nth-child(2) {
    color: #dc4141;
    font-weight: 700;
}

.bonus-deposit__table tr td:first-child, .bonus-info__table tr td:first-child {
    flex: 0 1 25%;
    min-width: 100px;
}

.bonus-deposit__table tr td:nth-child(2), .bonus-info__table tr td:nth-child(2) {
    flex: 0 1 75%;
    max-width: calc(100% - 100px);
}


.bonus-first__wrap {
    border: none;
    background: #1e1e1e;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-first__image {
    flex: 0 25%;
}

.bonus-first__desc {
    font-weight: 700;
    flex: 0 1 50%;
    padding: 0 30px;
    text-transform: none;
    font-size: 35px;
    line-height: 40px;
}

.bonus-first__desc > span {
    display: block;
}

.bonus-first__desc > span > span, .bonus-first__desc > span:last-child {
    color: #f1d05d;
}

.bonus-first__desc > span + span {
    margin-top: 25px;
}


/* main info */

.main-info__wrap {
    border: none;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.main-info__table {
    flex: 0 1 calc((100% - 30px) / 2);
    font-weight: 700;
    overflow: hidden;
}

.main-info__table tr td:first-child {
    padding-left: 30px;
    padding-right: 30px;
    flex: 0 1 45%;
    background: #000;
}

.main-info__table tr td:nth-child(2) {
    color: #000;
    flex: 0 1 55%;
}


/* registration */

.registration__wrap {
    padding: 100px 75px;
}

.registration__content h2:not(.white) {
    text-transform: none;
}

.registration__desc {
    font-size: 24px;
}

.button.registration__button {
    margin-top: 75px;
    padding: 37.5px 20px;
    min-width: 420px;
    font-size: 24px;
    border-radius: 50px;
}

.registration__image img {
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}


/* app */

.app__article > * + * {
    margin-top: 50px;
} 

.app__desc {
    font-size: 30px;
    line-height: 35px;
}

.app__android, .app__ios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.app__image {
    flex: 0 1 23%;
    min-width: 150px;
}

.app__article {
    flex: 0 1 calc(100% - 23% - 30px);
    text-align: left;
    max-width: calc(100% - 150px - 30px);
}

.app__ios > .app__article {
    order: 1;
}


.promotions__wrap {
    border: 1px solid #a5a5a5;
    background: #1e1e1e;
}

.promotions__wrap.white {
    border: none;
    background: #fff;
}

.promotions__table tr td {
    flex: 0 1 calc(100% / 3);
}

.promotions__wrap.white .promotions__table tr td:nth-child(2) {
    color: #000;
}

.promotions__types {
    font-weight: 700;
    color: #db4141;
}



/* tournaments */

.tournaments__list li {
    padding: 0;
    margin-top: 25px;
    flex: 0 1 calc((100% - 90px) / 4);
}

.article .tournaments__list li:before {
    content: none;
}

.tournaments__list li + li {
    margin-top: 25px;
}

.tournaments__list {
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tournaments-games__wrap {
    border: 1px solid #c1c1c1;
    background: #1e1e1e;
}

.tournaments__content table td {
    flex: 0 1 calc(100% / 3);
}

.tournaments__games {
    color: #db4141;
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.tournaments-payment__wrap {
    background: transparent;
    border: 1px solid #aeaeae;
}

.tournaments-payment__table.black tr td:first-child {
    background-color: #171717;
}

.tournaments-payment__table.black tbody tr td {
    padding-top: 0;
}

.tournaments-payment__table.black thead tr:last-child td {
    padding-bottom: 25px;
}


/* support */

.support__desc {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    color: #dc4141;
}

.support__desc > * + * {
    margin-top: 15px;
}


/* faq */


.faq__content h2 {
    margin-bottom: 25px;
}

.faq__list {
    text-align: left;
}

.faq-item__question {
    padding: 10px 60px;
    text-align: left;
    border-radius: 10px 10px 0 0;
    background: #dc4141;
}

.faq__item {
    display: block;
    margin-bottom: 25px;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq-item__answer {
    padding: 25px 30px;
    border-radius: 0 0 10px 10px;
    background: #1e1e1e; 
}


.footer {
    background: #1e1e1e;
    margin-top: 25px;
}

.footer__content {
    padding: 50px 60px;
}

.footer__desc span {
    color: #dc4141;
}

.footer__info {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -70px;
}

.footer__info li {
    flex: 0 1 25%;
    padding-left: 70px;
    margin-top: 25px;
}

.footer__info li > div:first-child {
    text-transform: uppercase;
    color: #dc4141;
    margin-bottom: 25px;
}

.footer__info li:last-child {
    color: #dc4141;
}
