@charset "UTF-8";

/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}
body {
    overflow-x: hidden;
    font-family: "Montserrat";
}

nav,
footer,
header,
aside {
    display: block;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/*--------------------*/

/* Fonts */




/* Header */

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.header {
  background: url(../img/header-bg.png) top center no-repeat;
  padding-top: 50px;
  background-size: cover;
}
.header__mobile {
    display: none;
}
.header__burger {
    display: none;
    cursor: pointer;
}
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    display: flex;
    align-items: center;
}
.header__nav ul {
    display: flex;
    align-items: center;
}
.header__nav--list {
    margin-right: 60px;
}
.header__nav--list:last-child {
    margin-right: 0;
}
.header__nav--link {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgb(114, 116, 122);
    font-weight: 700;
    position: relative;
}
.header__nav--link::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 75px;
    border: 1px solid rgb(233, 85, 13);
    height: 33px;
    transition: .2s;
}
.header__nav--link:hover {
    color: rgb(183, 141, 11);
}
.header__nav--link:hover::after {
    top: -60px;
}
.header__nav--link:hover img {
    opacity: 1;
    filter: grayscale(0%);
}
.header__nav img {
    filter: grayscale(100%);
    opacity: 0.65;
    margin-right: 10px;
}
.header__lang {
    margin-left: 20px;
    position: relative;
    cursor: pointer;
}
.header__lang:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 40px;
    width: 9px;
    height: 1px;
    border: 1px solid #f3a827;
    transform: rotate(45deg);
}
.header__lang::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 45px;
    width: 9px;
    height: 1px;
    border: 1px solid #ec7b2f;
    transform: rotate(-45deg);
}
.header__lang>span {
    border-radius: 50%;
    background-color: #e0e6ee;
    padding: 7px;
    font-size: 11px;
    color: rgb(69, 67, 64);
    font-weight: 700;
}
.header__lang span:hover {
    background-color: #bec3ca;
}
.header__lang--hover {
    position: absolute;
    top: 30px;
    left: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
}
.header__lang--hover.active {
    opacity: 1;
    visibility: visible;
}
.header__lang--hover span {
    border-radius: 50%;
    padding: 7px;
    font-size: 11px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    background-color: #e0e6ee;
    margin-right: 5px;
}
.header__sign button {
    background: url(../img/sign-bg.png) no-repeat;
    width: 135px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    box-shadow: 0px 15px 28.8px 3.2px rgba(194, 59, 0, 0.27);
	text-shadow: 
		-0   -1px 3px #AD4F11,
		 0   -1px 3px #AD4F11,
		-0    1px 3px #AD4F11,
		 0    1px 3px #AD4F11,
		-1px -0   3px #AD4F11,
		 1px -0   3px #AD4F11,
		-1px  0   3px #AD4F11,
		 1px  0   3px #AD4F11,
		-1px -1px 3px #AD4F11,
		 1px -1px 3px #AD4F11,
		-1px  1px 3px #AD4F11,
		 1px  1px 3px #AD4F11,
		-1px -1px 3px #AD4F11,
		 1px -1px 3px #AD4F11,
		-1px  1px 3px #AD4F11,
		 1px  1px 3px #AD4F11;
}
.header__sign button:hover img {
    transform: translateX(-10px);

}
.header__sign button img {
    margin-left: -10px;
    margin-right: 5px;
    transition: transform .3s;
}
.header__info {
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
}
.header__server {
    border-radius: 20px;
    background-color: rgb(252, 252, 254);
    box-shadow: 0px 43px 42.57px 0.43px rgba(40, 42, 57, 0.07);
    width: 305px;
    height: 149px;
}
.header__server--info {
    padding: 10px 10px 0 10px;
    display: flex;
    justify-content: space-around;
}
.header__server--infoBlock {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    padding: 15px 20px 0 0;
    position: relative;
}
.header__server--infoBlock>span {
    border-radius: 50%;
    background-color: #ba884e;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.header__server--infoBlockSecond {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    padding: 15px 20px 0 0;
    position: relative;
}
.header__server--infoBlockSecond>span {
    border-radius: 50%;
    background-color: #ff9d29;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.header__server--blockHover.active {
   opacity: 1;
   visibility: visible;
}
.header__server--blockHover {
    position: absolute;
    top: 45px;
    right: -30px;
    border-radius: 5px;
    background-color: #afb5c0;
    padding: 20px 25px;
    box-shadow: 0px 13px 21.33px 5.67px rgba(40, 42, 57, 0.07);
    color: #fff;
    opacity: 0;
    visibility: hidden;
}
.header__server--blockHover:after, .header__server--blockHover:before {
	bottom: 100%;
	left: 46%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.header__server--blockHover:after {
	border-bottom-color: #afb5c0;
	border-width: 4px;
}
.header__server--blockSecondHover:after, .header__server--blockSecondHover:before {
	bottom: 100%;
	left: 46%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.header__server--blockSecondHover:after {
	border-bottom-color: #afb5c0;
	border-width: 4px;
}
.header__server--blockHover a {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 700;
}
.header__server--blockHover a:hover {
    text-decoration: underline;
}
.header__server--blockSecondHover.active {
    opacity: 1;
    visibility: visible;
 }
 .header__server--blockSecondHover {
     position: absolute;
     top: 45px;
     right: -30px;
     border-radius: 5px;
     background-color: #afb5c0;
     padding: 20px 25px;
     box-shadow: 0px 13px 21.33px 5.67px rgba(40, 42, 57, 0.07);
     color: #fff;
     opacity: 0;
     visibility: hidden;
 }
 .header__server--blockSecondHover a {
     font-size: 12px;
     color: rgb(255, 255, 255);
     font-weight: 700;
 }
 .header__server--blockSecondHover a:hover {
     text-decoration: underline;
 }
.header__server--block {
    background: url(../img/polygon.png) no-repeat;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__server--block span {
    font-size: 14px;
    color: rgb(69, 67, 64);
}
.header__server--text p:nth-child(1) {
    font-size: 15px;
    color: rgb(69, 67, 64);
    font-weight: 700;
}
.header__server--text p:nth-child(2) {
    font-size: 13px;    
    color: rgb(155, 158, 170);
}
.header__server--text button {
    margin-top: 10px;
    font-size: 13px;
    color: rgb(184, 113, 12);
    background: transparent;
    border: 1px dashed rgb(205, 176, 120);
    padding: 5px 10px;
    transition: .3s;
}
.header__server--text button:hover {
    background: rgb(184, 113, 12);
    color: #fff;
}
.header__server--blockSecond {
    background: url(../img/polygon-2.png) no-repeat;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__server--blockSecond span {
    font-size: 14px;
    color: rgb(69, 67, 64);
}
.header__text {
    margin-top: 80px;
    padding-bottom: 40px;
    text-align: center;
}
.header__text p {
    font-size: 13px;
    color: rgb(25, 124, 76);
    font-weight: 700;
}

/* Popup */

.sign {
    background: rgba(217, 221, 228, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 201;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.sign.active {
    opacity: 1;
    visibility: visible;
}
.registration {
    background: url(../img/popup-bg.png) no-repeat;
    background-color: #fff;
    position: fixed;
    top: 45%;
    left: 50%;
    padding: 10px 50px;
    width: 440px;
    margin-top: -250px;
    margin-left: -210px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    border-radius: 10px;
}
.registration.active {
    opacity: 1;
    visibility: visible;
}
.registration__btn {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}
.popup {
    background: url(../img/popup-bg.png) no-repeat;
    background-color: #fff;
    position: fixed;
    top: 45%;
    left: 50%;
    padding: 10px 50px;
    width: 440px;
    margin-top: -250px;
    margin-left: -210px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    border-radius: 10px;
}
.popup.active {
    opacity: 1;
    visibility: visible;
}
.popup__close:hover {
    transition: 0.2s;
    transform: scale(1.1);
}
.form__title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.102);
    padding-top: 20px;
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.form__title a {
    position: absolute;
    top: 25px;
    right: 25px;
}
.form__title span {
    font-size: 20px;
    color: rgb(69, 67, 64);
    font-weight: 400;
    text-transform: uppercase;
}
.form__connect {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.102);
    padding-bottom: 25px;
}
.form__connect img {
    padding-right: 15px;
}
.form__connect--facebook {
    width: 335px;
    padding: 20px 30px;
    background: url(../img/popup-facebook-bg.png) no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    box-shadow: 0px 15px 28.8px 3.2px rgba(30, 47, 114, 0.27);
}
.form__connect--facebook:hover {
    color: rgb(15, 14, 14);
}
.form__connect--google {
    padding: 20px 30px;
    width: 335px;
    margin-top: 25px;
    background: url(../img/popup-google-bg.png) no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgb(255, 255, 255);  
    box-shadow: 0px 15px 28.8px 3.2px rgba(194, 59, 0, 0.27);
}
.form__connect--google:hover {
    color: rgb(15, 14, 14);
}
.form__main--block {
    margin-top: 35px;
}
.form__block {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.form__block--log { 
    font-size: 11px;
    color: rgb(179, 122, 23);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}
.form__block--log::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    border-left: 135px solid #997d4c;
    height: 1px;
}
.form__block--log::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 0;
    border-left: 135px solid #997d4c;
    height: 1px;
}
.form__block--pass {
    color: rgb(69, 67, 64);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}
.form__block--pass::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    border-left: 115px solid #c7c6c5;;
    height: 1px;
}
.form__block--pass::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 0;
    border-left: 115px solid #c7c6c5;
    height: 1px;
}
.form__block:nth-child(3) .form__block--pass::after {
    border-left: 90px solid #c7c6c5;;
}
.form__block:nth-child(3) .form__block--pass::before {
    border-left: 90px solid #c7c6c5;;
}
.form__block:nth-child(4) .form__block--pass::after {
    border-left: 130px solid #c7c6c5;;
}
.form__block:nth-child(4) .form__block--pass::before {
    border-left: 130px solid #c7c6c5;;
}
.form__block input {
    width: 100%;
    background: transparent;
    border-right: 1px solid rgb(136, 93, 52);
    border-left: 1px solid rgb(136, 93, 52);
    border-bottom: 1px solid rgb(136, 93, 52);
    padding: 10px 0;
}
.form__block:nth-child(2) input {
    width: 100%;
    background: transparent;
    border-right: 1px solid #c7c6c5;
    border-left: 1px solid #c7c6c5;
    border-bottom: 1px solid #c7c6c5;
    padding: 10px 0;
}
.form__block:nth-child(3) input {
    width: 100%;
    background: transparent;
    border-right: 1px solid #c7c6c5;
    border-left: 1px solid #c7c6c5;
    border-bottom: 1px solid #c7c6c5;
    padding: 10px 0;
}
.form__block:nth-child(4) input {
    width: 100%;
    background: transparent;
    border-right: 1px solid #c7c6c5;
    border-left: 1px solid #c7c6c5;
    border-bottom: 1px solid #c7c6c5;
    padding: 10px 0;
}
.form__block--inputLog {
    color: rgb(136, 93, 52);
    text-align: center;
}
.form__block--inputLog::placeholder {
    font-size: 13px;
    color: rgb(136, 93, 52);
}
.form__block--inputPass {
    text-align: center;
    color: #c7c6c5;
    font-size: 16px;
}
.form__forgot {
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form__forgot--info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}
.form__forgot--infoPass {
    color: #635d59;
    margin-bottom: 5px;
}
.form__forgot--infoPass:hover {
    text-decoration: underline;
}
.form__forgot--infoSign {
    color: #a7b083;
}
.form__forgot--infoSign:hover {
    text-decoration: underline;
}
.form__btn {
    background: url(../img/sign-bg.png) no-repeat;
    width: 135px;
    height: 48px;    
    font-size: 12px;
    color: #fff;
    box-shadow: 0px 15px 28.8px 3.2px rgba(194, 59, 0, 0.27);
    text-shadow: 
    -0   -1px 3px #AD4F11,
     0   -1px 3px #AD4F11,
    -0    1px 3px #AD4F11,
     0    1px 3px #AD4F11,
    -1px -0   3px #AD4F11,
     1px -0   3px #AD4F11,
    -1px  0   3px #AD4F11,
     1px  0   3px #AD4F11,
    -1px -1px 3px #AD4F11,
     1px -1px 3px #AD4F11,
    -1px  1px 3px #AD4F11,
     1px  1px 3px #AD4F11,
    -1px -1px 3px #AD4F11,
     1px -1px 3px #AD4F11,
    -1px  1px 3px #AD4F11,
     1px  1px 3px #AD4F11;
}
.form__btn:hover {
    letter-spacing: 1px;
    transition: .3s;
}


/* Info */


.info {
    padding-top: 45px;
}
.info__flex {
    display: flex;
    justify-content: space-between;
}
.info__game {
    max-width: 530px;
}
.info__game--title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.info__game--title span {
    font-size: 25px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    text-transform: uppercase;
}
.info__game--step {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: url(../img/game-bg.png) no-repeat;
    height: 85px;
    margin-top: 40px;
}
.info__game--step span {
    font-size: 13px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-transform: uppercase;
}
.info__game--step span:nth-child(2) {
    margin-right: 0px;
}
.info__game--step span:nth-child(3) {
    margin-right: 10px;
}
.info__game--stat {
    margin-top: 27px;
}
.info__game--statBlock {
    border-width: 1px;
    border-color: rgb(233, 236, 238);
    border-style: solid;
    border-radius: 5px;
    padding: 20px 15px;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}
.info__game--statServer span:nth-child(1) {
    color: #454340;
}
.info__game--statServer span:nth-child(2) {
    color: #ee5c29;
}
.info__game--statCoin span:nth-child(1) {
    color: #bc770f;
}
.info__game--statCoin span:nth-child(2) {
    color: #d6aa12;
}
.info__game--statZen span:nth-child(1) {
    color: #0fa17d;
}
.info__game--statZen span:nth-child(2) {
    color: #1673ca;
}
.info__game--link {
    margin-top: 27px;
    padding-left: 20px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.info__game--link a {
    position: relative;
    margin-bottom: 15px;
    transition: .3s;
}
.info__game--link a:nth-child(1) {
    font-size: 13px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    max-width: 100px;
}
.info__game--link a:nth-child(1):hover {
    text-decoration: underline;
}
.info__game--link a:nth-child(2) {
    font-size: 13px;
    color: rgb(218, 64, 17);
    font-weight: 700;
    text-decoration: underline;
    max-width: 50px;
}
.info__game--link a:nth-child(2):hover {
    text-decoration: unset;
}
.info__game--link a:last-child {
    margin-bottom: 0;
}
.info__game--link a:after {
    content: '';
    position: absolute;
    top: 6px;
    left: -20px;
    width: 9px;
    height: 1px;
    border: 1px solid #f3a827;
    transform: rotate(45deg);
}
.info__game--link a::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -20px;
    width: 9px;
    height: 1px;
    border: 1px solid #ec7b2f;
    transform: rotate(-45deg);
}
.info__download {
    width: 560px;
}
.info__download--btn {
    margin-top: 38px;
}
.info__download--btn button {
    background: url(../img/download-bg.png) no-repeat;
    height: 100px;
    width: 560px;
    margin-top: -15px;
    filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(194, 59, 0, 0.7));
}
.info__download--btn button:hover img {
    transform: scale(1.1);
    transition: transform .3s;
}
.info__download--btn img {
    margin-top: 5px;
    margin-bottom: 5px;
}
.info__download--btn p {
    font-size: 11px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-align: center;
    text-shadow: 0px 1px 3.4px rgba(0, 0, 0, 0.17);
}
.info__download--other {
    max-width: 440px;
    margin: 27px auto;
}
.info__download--supp {
    display: flex;
    align-items: center;
}
.info__download--supp p {
    font-size: 12px;
    color: rgb(255, 50, 2);
    padding-left: 10px;
}
.info__download--guide {
    margin-top: 27px;
}
.info__download--guide>p {
    font-size: 13px;
    color: rgb(69, 67, 64);
    padding-left: 35px;
    font-weight: 700;
}
.info__download--guideList {
    margin-top: 10px;
}
.info__download--guideList span {
    background: url(../img/guide-icon.png) no-repeat;
    padding: 7px 10px;
    font-size: 8px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    width: 25px;
    height: 25px;
}
.info__download--guideListBlock {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info__download--guideListBlock p {
    margin-left: 10px;
    font-size: 12px;
    color: rgb(69, 67, 64);
}
.info__download--guideListBlock a {
    color: #ff3202;
    text-decoration: underline;
}
.info__download--guideListBlock a:hover {
    text-decoration: none;
}




/* News */

.news__info {
    display: flex;
    justify-content: space-between;
    background-color: #0c0914;
}
.news__item {
    position: relative;
    cursor: pointer;
}
.news__item img {
    width: 100%;
    display: block;
}
.news__item--text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px 30px 40px 30px;
}
.news__item--text span {
    font-size: 14px;
    color: rgb(255, 255, 255);
}
.news__item--text p {
  font-size: 16px;
  margin-top: 20px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  
}
.news__item:hover .news__item--text {
    background-color: #ffc83c;
    transition: .3s;
}
.news__item:hover .news__item--text p {
    color: rgb(69, 67, 64);
}
.news__item:hover .news__item--text span {
    color: rgb(69, 67, 64);
}
.news__btn {
    text-align: center;
}
.news__btn button {
    background: url(../img/news-btn-bg.png) no-repeat;
    background-size: cover;
    font-size: 18px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 30px 0;
    transition: .3s;
}
.news__btn button:hover {
    background-color: #222121;
    color: #fff;
}


/* Stat */

.stat {
    background-color: #f8f9fb;
}
.stat__main {
    padding-top: 85px;
    display: flex;
    justify-content: space-between;
}
.stat__rank--title {
    display: flex;
    align-items: center;
}
.stat__rank--title span {
    margin-left: 10px;
    font-size: 25px;
    color: rgb(255, 50, 2);
    font-weight: 700;
}
.stat__rank--info {
    margin-top: 35px;
}
.stat__table {
    width: 465px;
    border-top: 1px solid rgb(197, 202, 211);;
}
.stat__name {
    padding: 27px 20px;
    display: flex;
}
.arrow {
    border: solid #bfbab2;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    cursor: pointer;
}
.arrow.left:hover {
    border: solid #cc8923;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
.arrow.right:hover {
    border: solid #cc8923;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-right: 20px;
}
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 20px;
}
.stat__name span {
    font-size: 15px;
    color: rgb(69, 67, 64);
    font-weight: 700;
}
.stat__table--main {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 80.19px 0.81px rgba(40, 42, 57, 0.07);
    position: relative;
}
.stat__table span {
    font-size: 13px;
    color: rgb(69, 67, 64);
    font-weight: 700;
}
.stat__table--item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-top: 1px solid #e2e4e9;
}
.stat__table--item:first-child {
    border: none;
}
.stat__table--item>div {
    display: flex;
}
.stat__table--main span:nth-child(2) {
    padding-left: 35px;
    display: flex;
    align-items: center;
}
.stat__table--item>div img {
    margin-right: 5px;
}
.stat__table--itemFame {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-top: 1px solid #e2e4e9;
}
.stat__table--itemFame:first-child {
    border: none;
}
.stat__table--itemFame>div {
    display: flex;
}
.stat__table--itemFame>div img {
    margin-right: 5px;
}
.stat__table--title {
  font-size: 13px;
  color: rgb(156, 159, 165);
  display: flex;
  justify-content: space-between;
  padding: 27px 20px;
}
.stat__table--title>div span {
    font-weight: 400;
    font-size: 13px;
    color: rgb(156, 159, 165);
}
.stat__table--title span:nth-child(2) {
    margin-left: 35px;
}
.stat__btn {
    margin-bottom: 20px;
}
.stat__btn button {
    border-width: 1px;
    border-color: rgb(233, 236, 238);
    border-style: solid;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 15px;
    transition: .3s;
}
.stat__btn--horizon.notActive {
    background: transparent;
    color: rgb(158, 165, 178);
}
.stat__btn--nemezida {
    background: transparent;
    color: rgb(158, 165, 178);
}
.stat__btn--nemezida.active {
    background-color: #0f7adc;
    color: #fff;
}
.stat__btn--horizon {
    background-color: #0f7adc;
    color: #fff;
    margin-right: 10px;
}
.stat__btn button:hover {
    background-color: #0f7adc;
    color: #fff;
}
.stat__table--nav {
    position: absolute;
    top: 0;
    right: -75px;
    background-color: #e6e8ed;
    border-radius: 25px;
    padding: 5px;
}
.table__nav--icon {
    text-align: center;
    border-radius: 50%;
    background-color: #d8dce7;
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    margin: 5px 0px 10px 0;
}
.table__nav--icon:last-child {
    margin: 5px 0px 5px 0; 
}
.table__nav--icon:hover {
    background-color: #ec6717;
}
.table__nav--icon span {
    color: #fff;
}
.stat__rank--btn {
    max-width: 465px;
    text-align: right;
    margin-top: 20px;
    padding-bottom: 50px;
}
.stat__rank--btn button {
    font-size: 12px;
    color: rgb(239, 88, 14);
    background: transparent;
    border: 1px solid rgb(239, 88, 14);
    border-radius: 25px;
    padding: 5px 15px;
    font-weight: 700;
    transition: .3s;
}
.stat__rank--btn button:hover {
    background-color: rgb(239, 88, 14);
    color: #fff;
}


/* Market */

.market {
    background-color: #fff;
    height: 500px;
}
.market__title {
    padding-top: 60px;
    text-align: center;
}
.market__title span {
    font-size: 25px;
    color: rgb(69, 67, 64);
    font-weight: 700;
    text-transform: uppercase;
}
.slider {
    margin: 70px auto 0 140px;
    position: relative;
}
.slider:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 70%);
    height: 100%;
    width: 200px;
}
.slick-track {
    display: flex;
}
.slick-list {
    overflow: hidden;
}
.slider__item {
    width: 467px;
    padding: 15px 0;
    margin: 0 15px;
    position: relative;
}
.slider__hover {
    position: absolute;
    top: 15px;
    left: 40px;
    display: flex;
    opacity: 0;
    visibility: hidden;
}
.slider__hover--img img {
    height: 100px;
}
.slider__hover--text {
    margin-left: 10px;
}
.slider__hover--text p {
    font-size: 13px;
    color: rgb(78, 116, 187);
    font-weight: 700;
    padding-bottom: 5px;
}
.slider__hover--text p span {
    font-size: 13px;
    color: #454340;
    font-weight: 700;
}
.slider__item:hover {
    background-color: rgba(234, 237, 241, 0.9); 
    border: 1px solid rgba(135, 136, 141, 0.7);
}
.slider__item:hover>img {
    opacity: .3;
}
.slider__item:hover .slider__hover {
    opacity: 1;
    visibility: visible;
}
.slider__item:hover .slider__hover--btn {
    opacity: 1;
    visibility: visible;
}
.slider__item>img {
    width: 100%;
    object-fit: cover;
    padding: 0 40px 0 50px;
}
.slider__item--text {
    padding: 30px 0px 0px 35px;
}
.slider__hover--btn {
    padding: 15px 0px 0px 35px;
    opacity: 0;
    visibility: hidden;
}
.slider__hover--btn button {
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    width: 280px;
    height: 35px;
    background-color: #fc990f;
}
.slider__hover--btn button:hover {
    background-color: #e68702;
}
.slider__item--text p {
    font-size: 12px;
    color: rgb(69, 67, 64);
    margin-bottom: 15px;
}
.slider__item--text button {
    font-size: 11px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    background-color: #da4c07;
    padding: 5px 15px;
}



/* Footer */

.footer {
    background: url(../img/footer-bg.png) center no-repeat;
    background-size: cover;
    position: relative;
}
.footer__market {
    padding-top: 60px;
    text-align: center;
}
.footer__market button {
    font-size: 15px;
    color: rgb(25, 78, 127);
    font-weight: 700;
    background-color: #d2e5f6;
    width: 430px;
    height: 50px;
    transition: .3s;
    border-radius: 5px;
}
.footer__market button:hover {
    background-color: rgb(25, 78, 127);
    border: 1px solid #d2e5f6;
    color: #d2e5f6;
}
.footer__themes {
    margin-top: 25px;
}
.footer__themes img:hover {
    transform: scale(1.1);
    transition: transform .3s;
}
.footer__themes a:nth-child(1) {
    margin-right: 10px;
}
.footer__themes--dark a:nth-child(1) {
    margin-right: 10px;
}
.footer__main {
    padding-bottom: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__main--logo {
    margin-top: 45px;
    max-width: 360px;
    margin-right: 10px;
}
.footer__main--logoText {
    margin-top: 45px;
}
.footer__main--logoText p:nth-child(1) {
    font-size: 13px;
    color: rgb(255, 255, 255);
}
.footer__main--logoText p:nth-child(2) {
    margin-top: 15px;
    font-size: 10px;
    color: rgb(208, 218, 226);
}
.footer__main--logoText a {
    font-size: 10px;
    color: #3196e0;
    text-transform: uppercase;
}
.footer__main--logoText a:hover {
    text-decoration: underline;
}
.footer__nav {
    display: flex;
}
.footer__nav span {
    font-size: 19px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}
.footer__nav ul {
    margin-top: 25px;
}
.footer__nav ul li {
    margin-bottom: 10px;
}
.footer__nav ul li a {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-decoration: underline;
}
.footer__nav ul li a:hover {
    text-decoration: none;
    color: rgb(255, 226, 92);
}
.footer__nav--about {
    margin-right: 100px;
}
.footer__nav--account {
    margin-right: 70px;
}
.footer__toTop img:hover {
    transform: translateY(-10px);
    transition: transform .3s;
}
.footer__themes--d {
    opacity: .3;
}
.footer__themes--d:hover {
    opacity: 1;
}



/* Media */

@media (max-width: 1200px) {
    .slider__hover--btn button {
        width: 240px;
    }
}

@media (max-width: 1150px) {
    .header__lang {
        margin-left: 10px;
    }
    .header__lang::before {
        left: 40px;
    }
    .header__lang::after {
        left: 35px;
    }
    .header__nav--list {
        margin-right: 20px;
    }
    .info__flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 1100px) {
    .news__info {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 1080px) {
    .slider__hover--btn button {
        width: 200px;
    }
}
@media (max-width: 1070px) {
    .stat__main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 1012px) {
    .footer__main {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer__themes {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer__themes--dark.dark {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .footer__main--logo {
        margin-top: 0;
    }
}
@media (max-width: 1020px) {
    .header__nav {
        display: none;
    }
    .header__sign {
        display: none;
    }
    body.lock {
    overflow: hidden;
  }
  .header__menu {
    display: none;
  }
  .header__buttons {
    display: none;
  }
    .header__burger {
      display: block;
    }
    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 201;
        right: 20px;
    }
    .header__burger span {
        position: absolute;
        background-color: #ff9d29; 
        width: 100%;
        height: 3px;
        left: 0;
        top: 9px;
        transition: 0.2s;
    }
    .header__burger:before,
    .header__burger::after {
        content: '';
        position: absolute;
        background-color: #ff9d29;
        width: 100%;
        height: 3px;
        left: 0;
        transition: 0.2s;
    }
    .header__burger:before {
        top: 0;
    }
    .header__burger::after {
        bottom: 0;
    }
    .header__burger.active span {
        transform: scale(0);
    }
    .header__burger.active:before {
        transform: rotate(45deg);
        top: 8px;
        background-color: #ff9d29; 
    }
    .header__burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: #ff9d29; 
    }
    .header__mobile {
        padding: 50px 0;
        display: block;
        position: fixed;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        z-index: 200;
        transition: 0.2s;
        background-color: #0c0914;
    }
    .header__mobile.active {
        left: 0;
    }
    .header__btn--mob button {
      height: 50px;
      width: 150px;
      transition: .3s;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url(../img/sign-bg.png) no-repeat;
      padding-right: 20px;
    }
    .header__btn--mob {
        display: flex;
        justify-content: space-around;
    }
    .header__nav--mob {
        text-align: center;
        margin-top: 30px;
    }
    .header__nav--mob ul li {
        margin-bottom: 30px;
    }
    .header__nav--mob ul li:last-child {
      margin-bottom: 50px;
    }
    .header__nav--mob ul li a   {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        transition: .3s;
    }
    .header__nav--mob ul li a:hover {
      color: #ffc83c;
    }
}
@media (max-width: 968px) {
    .footer__main {
        flex-direction: column-reverse;
    }
    .footer__main--logo {
        margin-top: 20px;
    }
    .footer__toTop {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    .footer__nav {
        margin-top: 20px;
    }
}
@media (max-width: 953px) {
    .footer__toTop {
        margin-left: 20px;
    }
}
@media (max-width: 920px) {
    .slider {
        margin: 70px 0 0 0;
    }
}
@media (max-width: 768px) {
    .slider:after {
        display: none;
    }
}
@media (max-width: 700px) {
    .header__info {
        padding-top: 60px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header__server:nth-child(1) {
        margin-bottom: 20px;
    }
    .stat__table {
        width: 350px;
    }
    .stat__btn button {
        padding: 15px 30px;
    }
    .slider__hover--btn button {
        width: 280px;
    }
    .slider__item>img {
        width: auto;
        padding: 0 40px 0 150px;
    }
}
@media (max-width: 672px) {
    .footer__toTop {
        margin-top: 20px;
    }
}
@media (max-width: 600px) {
    .info__game--title span {
        font-size: 16px;
    }
    .info__game {
        width: 100%;
    }
    .info__game--title img {
        display: none;
    }
    .info__download--title img {
        display: none;
    }
    .info__game--step span:nth-child(3) {
        margin-right: 0;
    }
    .info__game--step {
        background: unset;
        flex-direction: column;
        background-color: #2982e6;
    }
    .info__game--step span {
        font-size: 10px;
    }
    .info__download {
        width: auto;
    }
    .info__download--btn button {
        background: url(../img/download-mob-bg.png) no-repeat;
        width: 100%;
    }
    .popup {
        width: 300px;
        left: 55%;
        padding: 10px 20px;
        margin-left: -165px;
    }
    .registration {
        width: 300px;
        left: 55%;
        padding: 10px 20px;
        margin-left: -165px;
    }
    .form__connect--facebook {
        background-size: 100% 100%;
        font-size: 10px;
        width: 240px;
    }
    .form__connect--google {
        background-size: 100% 100%;
        font-size: 10px;
        width: 240px;
    }
    .form__block--log::before {
        border-left: 80px solid #997d4c;
    }
    .form__block--log::after {
        border-left: 80px solid #997d4c;
    }
    .form__block--pass::before {
        border-left: 65px solid #c7c6c5;
    }
    .form__block--pass::after {
        border-left: 65px solid #c7c6c5;
    }
    .form__forgot--info {
        font-size: 8px;
    }
    .form__block:nth-child(3) .form__block--pass::after {
        border-left: 50px solid #c7c6c5;
    }
    .form__block:nth-child(3) .form__block--pass::before {
        border-left: 50px solid #c7c6c5;
    }
    .form__block:nth-child(4) .form__block--pass::before {
        border-left: 90px solid #c7c6c5;
    }
    .form__block:nth-child(4) .form__block--pass::after {
        border-left: 90px solid #c7c6c5;
    }
    .footer__nav--about {
        margin-right: 20px;
    }
    .footer__nav--account {
        margin-right: 20px;
    }
    .footer__nav span {
        font-size: 14px;
    }
    .footer__nav ul li a {
        font-size: 12px;
    }
}
@media (max-width: 560px) {
    .stat__rank--title span {
        font-size: 18px;
    }
    .stat__btn button {
        font-size: 12px;
        margin-top: 10px;
        width: 100%;
    }
    .stat__table--title>div span {
        font-size: 11px;
    }
    .stat__table span {
        font-size: 10px;
    }
    .stat__table {
        width: 270px;
        margin: 0 auto;
    }
    .stat__table--nav {
        display: none;
    }
    .stat__rank--info {
        width: 270px;
    }
    .stat__name span {
        font-size: 12px;
    }
    .footer__toTop {
        bottom: 170px;
    }
}
@media (max-width: 520px) {
    .footer__main {
        flex-direction: column-reverse;
    }
    .footer__market button {
        width: 230px;
    }
    .footer__nav--about {
        margin-top: 20px;
    }
    .footer__nav--account {
        margin-top: 20px;
    }
    .footer__nav--support {
        margin-top: 20px;
    }
    .slider__hover--btn button {
        width: 200px;
    }
    .slider__item>img {
        width: 100%;
        padding: 0 40px 0 50px;
    }
}
@media (max-width: 480px) {
    .info__download--supp {
        flex-direction: column;
        justify-content: center;
    }
    .info__download--supp p {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 420px) {
    .container {
        padding: 0 10px;
    }
    .info>.container {
        padding: 0;
    }
    .info__download--guideList {
        padding: 0 10px;
    }
    .header__lang {
        margin-top: 10px;
    }
    .header__burger {
        right: 0;
    }
    .header__server {
        width: 280px;
    }
    .info__game--link {
        padding-left: 35px;
    }
}
@media (max-width: 380px) {
    .header__logo-l {
        width: 180px;
    }
}
@media (max-width: 360px) {
    .popup {
        width: 280px;
        left: 59%;
    }
    .registration {
        width: 280px;
        left: 59%;
    }
    .header__server--blockHover {
        right: -5px;
    }
    .header__server--blockHover:after, .header__server--blockHover:before {
        left: 67%;
    }
    .header__server--blockSecondHover {
        right: -5px;
    }
    .header__server--blockSecondHover:after, .header__server--blockSecondHover:before {
        left: 67%;
    }
}