@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;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&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&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: 'Rubik', Arial, sans-serif;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    overflow-x: hidden;
    background-color: #161414;
}

body.active {
    overflow: hidden;
}

* {
    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;
}

ul {
    list-style: none;
}

ul > li {
    display: inline-block;
}

span {
    display: inline-block;
}

.image img {
    display: block;
    margin: auto;
}

.content {
    max-width: 1290px;
    padding: 35px 0 0;
    margin: auto;
}

h1, h2, h3, h4, .title {
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    word-break: break-word;
}

h1, .title.general {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
}

h2, .title.high {
    font-size: 35px;
    line-height: 40px;
}

h3, .title.middle {
    font-size: 35px;
    line-height: 40px;
}

h4, .title.small {
    font-size: 30px;
    line-height: 45px;
}

.button {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    min-width: 180px;
    background-color: #f5ca48;
    padding: 12.5px 20px;
    font-size: 15px;
    line-height: 25px;
    color: #000;
    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;
}

.button.outline {
    background-color: transparent;
    color: #fff;
    padding: 11.5px 20px;
    border: 1px solid #eb573b;
}

.button.outline:hover {
    background-color: #eb573b;

}


.wrap {
    background-color: #342f30;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 25px 30px;
}

.wrap > div {
    padding: 35px 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #292526;
}

table {
    font-size: 18px;
    width: 100%;
    word-break: break-word;
}

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 tr td:nth-child(n + 2) {
    padding-left: 30px;
}



/* header */

.header {
    background-color: #292526;
    -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: 20px 30px;
}

.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__buttons {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 390px;
    -moz-box-flex: 0;
    flex: 0 1 390px;
}

.header__buttons > * + * {
    margin-left: 20px;
}

.header__menu {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 140px - 390px - 100px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 140px - 390px - 100px);
}

.header__menu-button {
    display: none;
    background: transparent;
    z-index: 1001;
}

.header__menu-button svg {
    display: block;
}

.menu ul a {
    display: block;
    padding: 12.5px 0;
    color: #f5ca48;
    -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;
}

.header__menu a:hover {
    color: #eb573b;
}

.header__menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.header__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__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;
}


/* cover */

.cover__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cover__image img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
}

.cover__content {
    padding: 125px 30px 75px;
    text-align: center;
}

.button.cover__button {
    margin-top: 60px;
    padding: 17.5px 20px;
    min-width: 195px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ee6c3c), to(#e94a3a));
    background: -webkit-linear-gradient(#ee6c3c, #e94a3a);
    background: -moz-linear-gradient(#ee6c3c, #e94a3a);
    background: -o-linear-gradient(#ee6c3c, #e94a3a);
    background: linear-gradient(#ee6c3c, #e94a3a);
    color: #fff;
}

.button.cover__button:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.title.cover__title span {
    display: block;
}

.title.cover__title > *:nth-child(2) {
    color: #f5ca48;
}




/* 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);
}



/* main info */

.main-info__wrap {
    padding-top: 25px;
    padding-bottom: 25px;
}

.main-info__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 100px;
}

.main-info__table tr td:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    max-width: -webkit-calc(100% - 100px);
    max-width: -moz-calc(100% - 100px);
    max-width: calc(100% - 100px);
}

.main-info__table tbody tr:nth-child(n + 2) {
    margin-top: 20px;
}

.main-info__image {
    display: block;
}


/* pros */

.pros__table tbody {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.pros__table tr {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -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-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    justify-content: flex-start;
}

.pros__table td:nth-child(n + 2) {
    padding: 0;
}

.pros__table tr td:first-child {
    font-weight: 700;
    margin-bottom: 15px;
}

.pros__table tr:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
    min-width: 250px;
}

.pros__table tr:first-child td:nth-child(n + 2) + td:nth-child(n + 3) {
    margin-top: 20px;
}

.pros__table tr:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 70%;
    -moz-box-flex: 0;
    flex: 0 1 70%;
    padding-left: 50px;
    max-width: -webkit-calc(100% - 250px);
    max-width: -moz-calc(100% - 250px);
    max-width: calc(100% - 250px);
}

.pros__table tr:nth-child(2) td:nth-child(n + 2) + td:nth-child(n + 3) {
    margin-top: 50px;
}


/* offers */

.offers__table thead {
    font-weight: 700;
}

.offers__table tbody tr {
    margin-top: 20px;
}

.offers__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
    min-width: 80px;
}

.offers__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
    max-width: -webkit-calc(100% - 80px);
    max-width: -moz-calc(100% - 80px);
    max-width: calc(100% - 80px);
}


/* registration */



/* bonus */

.bonus__wrap {
    border: 1px solid #e93e3b;
}

.bonus__table {
    font-weight: 700;
}

.bonus__table tbody tr {
    margin-top: 15px;
}

.bonus__table tr td:nth-child(1) {
    -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 45%;
    -moz-box-flex: 0;
    flex: 0 1 45%;
}

.bonus__table tr td:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
    -moz-box-flex: 0;
    flex: 0 1 30%;
}


/* tournaments */

.tournaments__wrapper {
    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;
}

.tournaments__left > * + * {
    margin-top: 25px;
}

.tournaments__left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
    -moz-box-flex: 0;
    flex: 0 1 35%;
    min-width: 450px;
}

.tournaments__article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 65%;
    -moz-box-flex: 0;
    flex: 0 1 65%;
    padding-left: 75px;
    max-width: 550px;
    padding-top: 50px;
}

.tournaments__wrap {
    padding: 25px 60px;
}

.tournaments__table tbody tr:first-child {
    margin-top: 20px;
}

.tournaments__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}

.tournaments__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
    -moz-box-flex: 0;
    flex: 0 1 75%;
}



/* slots */

.slots__wrap {
    background-color: #292526;
    border: 1px solid #eed82f;
    overflow: hidden;
    padding: 50px 75px;
}

.slots__wrap:before {
    content: '';
    width: 27%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #342f30;
}

.slots__table {
    font-size: 15px;
    color: #eed82f;
}

.slots__table thead {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.slots__table tr td:first-child {
    font-weight: 700;
    color: #fff;
}

.slots__table tbody tr:first-child {
    margin-top: 25px;
}

.slots__table tr td:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
    -moz-box-flex: 0;
    flex: 0 1 25%;
}

.slots__table tr td:nth-child(n + 2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 15%;
    -moz-box-flex: 0;
    flex: 0 1 15%;
}


/* payment */

.payment__wrap {
    background: #292526;
    border: 1px solid #eed82f;
    padding: 75px 150px;
}

.payment__table {
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
}

.payment__table tr td:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 110px;
    -moz-box-flex: 0;
    flex: 0 1 110px;
    color: #ee703d;
}

.payment__table tr td:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 -webkit-calc(100% - 110px);
    -moz-box-flex: 0;
    flex: 0 1 calc(100% - 110px);
}


/* support */

.support__content h2 {
    color: #f5ca48;
}



/* faq */

.faq {
    margin-top: 100px;
    background-color: #292526;
    padding-bottom: 50px;
}

.faq__image {
    position: absolute;
    left: 0;
    top: -80px;
    width: 100%;
}

.faq__content h2 {
    margin-bottom: 25px;
}

.faq-item__question {
    font-size: 30px;
    line-height: 35px;
    padding: 5.5px 27px;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 3px solid #f5ca48;
    -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: none;
    color: #f5ca48;
}

.faq__item {
    display: block;
    cursor: pointer;
    margin-bottom: 25px;
}

.faq__item:last-child {
    margin-bottom: 0;
}

.faq__item:hover .faq-item__question {
    background-color: #fff;
}

.faq__item.active .faq-item__question {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#ee703d), to(#e9473a));
    background: -webkit-linear-gradient(left, #ee703d, #e9473a);
    background: -moz-linear-gradient(left, #ee703d, #e9473a);
    background: -o-linear-gradient(left, #ee703d, #e9473a);
    background: linear-gradient(to right, #ee703d, #e9473a);
    border: 3px solid transparent;
}

.faq-item__answer {
    padding: 25px 0 0;
}

.js-expand-content {
    display: none;
    overflow: hidden;
}

.js-expand-content.expanded {
    height: 100%;
}
