@import "./reset.css";

/* 400 */
@font-face {
    font-family: 'Manrope-Regular';
    src: url(../fonts/Manrope/Manrope-Regular.ttf);
}

/* 500 */
@font-face {
    font-family: 'Manrope-Medium';
    src: url(../fonts/Manrope/Manrope-Medium.ttf);
}

/* 600 */
@font-face {
    font-family: 'Manrope-SemiBold';
    src: url(../fonts/Manrope/Manrope-SemiBold.ttf);
}

/* 700 */
@font-face {
    font-family: 'Manrope-Bold';
    src: url(../fonts/Manrope/Manrope-Bold.ttf);
}

/* Trajan Sans Pro
/* 400 */
@font-face {
    font-family: 'TrajanSansPro-Regular';
    src: url(../fonts/TrajanSansPro/TrajanSansPro-Regular.otf);
    font-weight: bold;
}

/* 600 */
@font-face {
    font-family: 'TrajanSansPro-Semibold';
    src: url(../fonts/TrajanSansPro/TrajanSansPro-Semibold.otf);
}

/* 700 */
@font-face {
    font-family: 'TrajanSansPro-Bold';
    src: url(../fonts/TrajanSansPro/TrajanSansPro-Bold.otf);
}

/* Roboto */
/* 400 */
@font-face {
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

/* 500 */
@font-face {
    font-family: 'Roboto-Medium';
    src: url(../fonts/Roboto/Roboto-Medium.ttf);
}


/* Inter */
/* 400 */
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-Regular.ttf);
}

/* 500 */
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-Medium.ttf);
}

/* 600 */
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-SemiBold.ttf);
}

/* 
html,
body {
    overflow-x: hidden;
} */

body {
    font-family: 'Manrope-Regular', sans-serif;
    font-weight: 400;
    background: url(../img/bg.jpg) no-repeat;
    background-color: #070B18;
    background-size: cover;
    color: #fff;
    padding-top: 120px;
    overflow-x: hidden;
    background-position: left;
}

/* a {
    transition: .4s opacity;
}

a:hover {
    opacity: 0.7;
} */

.container {
    width: 100%;
    max-width: 1420px;
    padding: 0 15px;
    margin: 0 auto;
}

.uppercase {
    text-transform: uppercase;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.btn {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    border-radius: 16px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
    display: inline-flex;
    transition: .4s background;
}

.btn-orange .btn-bordered-box {
    background: radial-gradient(128% 100% at 50% 0%, #FFC342 2.6%, #9F6E03 57.29%, #9F6E03 60.94%, #FF8717 100%);
    transition: .4s background;
}

.btn-orange:hover .btn-bordered-box {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
        radial-gradient(128% 100% at 50% 0%, #FFC342 2.6%, #9F6E03 57.29%, #9F6E03 60.94%, #FF8717 100%),
        radial-gradient(106.8% 45.71% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.btn-orange:active .btn-bordered-box {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
        radial-gradient(128% 100% at 50% 0%, #FFC342 2.6%, #9F6E03 57.29%, #9F6E03 60.94%, #FF8717 100%),
        radial-gradient(106.8% 45.71% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.text-bg {
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFF 28.01%, rgba(239, 201, 129, 0.6) 41.07%, #FFF 53.46%), #FFFFFF;
    background: linear-gradient(180deg, #FFF 38.01%, rgba(239, 201, 129, 0.6) 51.07%, #FFF 73.46%), #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
}

.btn-blue .text-bg {
    background: linear-gradient(0deg, #FFF 28.81%, rgba(108, 128, 156, 0.4) 54.52%, #FFF 72.62%), #FFFFFF;
    -webkit-background-clip: text;
}

.btn-blue:hover .btn-bordered-box {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
        radial-gradient(128% 100% at 50% 0%, #2F68B7 2.6%, #182E57 56.77%, #1F2C5A 100%),
        radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
}

.btn-blue:active .btn-bordered-box {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
        radial-gradient(128% 100% at 50% 0%, #2F68B7 2.6%, #182E57 56.77%, #1F2C5A 100%),
        radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
}

.btn-bordered {
    position: relative;
    background-clip: padding-box;
    display: inline-flex;
    align-items: stretch;
}

.btn-bordered:after {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    content: '';
    z-index: 0;
    border-radius: 16px;
}

.btn-bordered-box {
    padding: 18px 48px;
    width: 100%;
    height: auto;
    border-radius: inherit;
    position: relative;
    z-index: 2;
}

.btn-orange.btn-bordered:after {
    background: radial-gradient(106.8% 45.7% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.btn-blue .btn-bordered-box {
    background-image: radial-gradient(128% 100% at 50% 0%, #2F68B7 2.6%, #182E57 56.77%, #1F2C5A 100%);
}

.more-info,
.start-game {
    text-align: center;
}

.img-wrapper {
    position: absolute;
}

.subtitle_light {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);

    max-width: 956px;
    margin: 0 auto 60px auto;
}

.subtitle_dark {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    text-align: center;
    color: #0D142D;
    margin-bottom: 60px;
}

/* HEADER */
.header {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #0D142D;
    z-index: 7;
    margin-bottom: 0;
    height: 80px;
}

.header__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__box-col {
    display: flex;
    align-items: center;
}

.header.fixed .header__box-col-right {
    flex-direction: row-reverse;
    gap: 30px;
}

.header__box .start-game {
    padding-bottom: 0;
}

.header-btn {
    display: none;
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    border-radius: 12px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
    opacity: 1;
}

.header-btn.btn-bordered:after {
    border-radius: inherit;
}

.header.fixed .header-btn {
    display: inline-flex;
    margin-left: 32px;
}

.header-btn .btn-bordered-box {
    padding: 10px 28px;
}

.logo__image {
    margin-right: 40px;
    max-width: 180px;
    width: 100%;
}

/* nav */
.header__nav {
    display: flex;
    text-align: center;
    align-items: center;
}

/* ul */
.header__nav-list {
    display: flex;
    gap: 30px;
}

/* li */
.header__nav-item {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    transition: .4s ease;
}

.header__nav-item.header__nav-item_sub::after {
    content: url(../img/svg/dropdown-arrow.svg);
    transition: all .7s ease;
    width: 16px;
    height: 16px;
}


.header__nav-item_sub:hover .header__nav-item_submenu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 196px;
}

/*  nav ul li a */
.header__nav-item__link {
    font-family: 'Manrope-Bold', sans-serif;
    font-size: 16px;
    line-height: 115%;
    letter-spacing: 0.01em;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.header__nav-item_submenu {
    display: none;
    position: absolute;
    top: 0;
    padding-top: 28px;
    left: 0;
}

.header__nav-item_submenu-container {
    border-radius: 16px;
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #2F68B7 2.60%, #182E57 56.77%, #1F2C5A 100%), #070B18;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
}

.header__nav-item_submenu-container .header__nav-item__link.active {
    background: url(../img/svg/change-language.svg) no-repeat left;

}

.header__nav-item_sub-lang .header__nav-item_submenu-container .header__nav-item__link {
    justify-content: center;
}

.hide-on-sm {
    display: flex;
}

.show-on-sm, .rating-info__mobile {
    display: none;
}

/* сам блок подменю ?? */
.header__nav-item_submenu.active {
    display: inline-flex;
}

/* li подменю */
.header__nav-item_submenu__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* header__nav-item_submenu -- блок подменю */
.header__nav-item_submenu .header__nav-item_sub::after {
    transform: rotate(-90deg);
    content: url(../img/svg/dropdown-arrow.svg);
    transition: all .7s ease;
}

/* разворот стрелки для подменю при наведении */
.header__nav-item_submenu.active .header__nav-item_sub:hover::after {
    transform: rotate(0deg);
    transition: all .7s ease;
}

.header__nav-actions {
    display: flex;
    gap: 24px;
}

.burger__menu-account {
    transition: all .7s ease;
}


.header__nav-actions .header__nav-item {
    grid-gap: 6px;
    transition: all .7s ease;
    transform: rotate(0deg);
}

/* SERVER */
.server__text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 70px;
}

.h1-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 56px;
    line-height: 140%;
    text-align: center;
}

.subtitle {
    font-family: 'Manrope-SemiBold', sans-serif;
    font-size: 24px;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.01em;
}

/* server-name */
.server-name {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 60px auto;
    padding-top: 10px;
}

.server-block {
    position: relative;
}

.server-block_wrapper {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #090F27 22.04%, #CB8D08 100%);
    border-radius: 24px;
    padding: 30px 78px;
    text-align: center;
}

.revolution .server-block {
    margin-left: 60px;
}
.revolution .server-block_wrapper {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    padding: 40px;
    justify-content: space-between;
    height: 100%;
}

.revolution .inner-wrap:not(:last-child) {
    align-items: center;
    margin-bottom: 24px;
}

.revolution .table__item-inner {
    height: 100%;
}
.revolution .server-title {
    text-align: left;
    margin-bottom: 28px;
}
.revolution .block-subtitle {
    text-align: left;
}
.revolution .about-img {
    margin-right: 20px;
}
.revolution .inner-wrap:not(:last-child) {
    align-items: center;
    margin-bottom: 24px;
}
.revolution .block-subtitle {
    line-height: 140%;
}
.revolution .more-server {
    padding: 0;
}

.server-block .swiper-slide {
    height: 200px !important;
}

.block-bordered {
    position: relative;
    z-index: 2;
}

.block-bordered:after {
    content: '';
    position: absolute;
    z-index: -1;
}

.block-bordered-yellow:after {
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.7% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
    border-radius: 24px;
}

.burger__menu-server .block-bordered-yellow:after {
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    border-radius: 24px;
}

.new-icon {
    background: url(../img/svg/new-icon.svg);
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.server-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 4px;
}

.server-online {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.online-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid rgba(124, 229, 107, 0.2);
}

.online-icon_center {
    width: 10px;
    height: 10px;
    background-color: #7ce66d;
    border-radius: 50%;
}

.online-text {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin: 0 6px 0 10px;
}

.online-count {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 140%;
}

.start-game {
    padding-bottom: 16.5vh;
    transition: .4s opacity;
}

.btn-orange {
    box-shadow: 0px 0px 24px 0px rgba(255, 192, 57, 0.24);
}

/* BENEFITS */
.benefits-swiper {
    padding: 30px 0;
}

.benefits-wrap {}

.benefits-card {
    height: auto;
    border-radius: 24px;
    padding: 1.6px;
}

.benefits-card:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: inherit;
}

.benefits-card_box {
    background-image: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #CB8D08 100%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: relative;
    z-index: 2;
}

.benefits-card_orange:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.benefits-card_pink:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FCC2F6 31.33%, rgba(75, 0, 67, 0.6) 100%);
}

.benefits-card_blue:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #A5DEFE 31.33%, rgba(4, 67, 103, 0.6) 100%);
}

.benefits-card_red:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FBA4A4 31.33%, rgba(75, 4, 4, 0.6) 100%);
}

.benefits-card_orange .benefits-card_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #CB8D08 100%);
}

.benefits-card_pink .benefits-card_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #DB99D4 100%);
}

.benefits-card_blue .benefits-card_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #0E93DE 100%);
}

.benefits-card_red .benefits-card_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #FF4343 100%);
}

.benefits-img {
    position: relative;
    top: -27px;
    left: 2px;
    height: 268px;
}

.stable-img {
    background: url(../img/benefits-stable.png) no-repeat;
}

.high-online-img {
    background: url(../img/benefits-high-online.png) no-repeat;
}

.support-img {
    background: url(../img/benefits-support.png) no-repeat;
}

.light-start-img {
    background: url(../img/benefits-start.png) no-repeat;
}

.benefits-text {
    margin: 0 30px 30px 30px;
}

.benefits-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 4px;
}

.benefits-subtitle {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.8);
}


.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
    position: relative;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 80px;
}

.swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    transform: none !important;
    left: 0 !important;
    margin: 0 auto;
}

.swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    line-height: 20;
    font-size: 14px;
    background-color: #fff;
    left: 0 !important;
}



/* BURGER */
.burger {
    display: none;
    border: none;
    background-color: transparent;
    padding: 0;
}

.burger__menu {
    display: none;
}

/* CHANGES */
.changes {
    position: relative;
    background: url(../img/changes-bg.png) no-repeat right;
    background-size: cover;
    padding-top: 15vh;
}

.changes::before {
    content: "";
    background: url(../img/sky-bg.png);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    bottom: -25vh;
    left: 0;
    right: 0;
}

.changes::after {
    content: "";
    background: url(../img/changes-sky__12.png);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    bottom: -12vh;
    left: 0;
    right: 0;
}

.changes-text {
    text-align: center;
}

.more-info {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 21px 48px 15px;
    margin-top: 20px;
}

.h2-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 48px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 13px;
}

.changes-block {
    position: relative;
    margin: auto 0;
}

.changes-content:not(:last-child) {
    margin-bottom: 16px;
}

.changes-content {
    display: flex;
    gap: 22px;
}

.changes-content img {
    width: 52px;
    height: 52px;
}

.block-text {
    margin-top: 16px;
}

.block-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
}

.block-subtitle {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.8);
}

.changes-img {
    position: absolute;
    max-width: 45%;
    top: 0;
    right: 0;
}

.changes-sky img {
    position: absolute;
    width: 100%;
    top: 150px;
    left: 0;
}

.changes .container-second {
    padding-bottom: 40vh;
}

.changes-wrapper {
    position: relative;
    overflow: hidden;
}

/* HERO */
.hero {
    background: #fff;
    padding: 25vh 0 10vh 0;
}

.h2-title_black {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 48px;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    color: #070B18;
    margin-bottom: 8px;
}

.block-content {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.content-text {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: #070B18;
    margin-top: 24px;
}

.hero .more-info {
    display: none;
}

/* RACE */
.race {
    background-color: #fff;
    background: url(../img/race-bg.png) no-repeat center, #fff;
    padding-top: 5vh;
    background-size: cover;
}

.race,
.friends,
.banner__prizes,
.banner__prizes2,
.awards {
    margin: -1px;
}

.race-wrapper {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.race .container-second {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    position: relative;
    top: 70px;
}

.content-wrap {
    display: flex;
    align-items: baseline;
}

.content-wrap:not(:last-child) {
    margin-bottom: 16px;
}

.content-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    color: #070B18;
}

.race-choice__item {
    display: none;
}

.content-title {
    margin-bottom: 24px;
    text-align: start;
}

.content-icon::before {
    content: "";
    background: #1D65DE;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
}

.content-item {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #070B18;
    max-width: 500px;
    text-align: start;
}

.race-block {
    display: none;
}

.race-block.active {
    display: flex;
    max-height: 530px;
}

.race-img {
    display: block;
    position: relative;
    max-width: 50%;
    right: 0;
    bottom: 0;
}

.race-choice {
    position: relative;
    max-width: 1112px;
    margin: 0 auto;
}


.block-bordered-gray:after {
    border-radius: 32px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
}


.race-choice-wrapper {
    display: flex;
    padding: 16px;
    background-image: radial-gradient(213.27% 499.58% at 46.94% 265.42%, #357DEA 0%, #090F27 47.05%);
    border-radius: 32px;
}

.race-choice__mobile {
    display: none;
}

.races,
.classes {
    max-width: 181px;
    cursor: pointer;
    width: 100%;
    border-radius: 24px;
    position: relative;
}

.classes:hover svg path {
    fill: #FFC039;
    fill: none;
    fill: url(#myGradient);
    /* fill: linear-gradient(0deg, #FFC03A 38.81%, #BF8200 54.52%, #FFC03A 62.62%), linear-gradient(0deg, #FFF, #FFF); */
    /* background: linear-gradient(0deg, #FFC03A 38.81%, #BF8200 54.52%, #FFC03A 62.62%), linear-gradient(0deg, #FFF, #FFF); */
}

.classes.active:after {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    content: '';
    z-index: 0;
    border-radius: inherit;
}

.classes .btn-bordered-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: inherit;
    padding: 24px;
}

.classes.active .btn-bordered-box {
    background: radial-gradient(128% 100% at 50% 0%, #2F68B7 2.6%, #182E57 56.77%, #1F2C5A 100%),
        radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);

}

.classes:hover .choice-text {
    background: linear-gradient(0deg, #FFC039 48.81%, #B77D00 64.52%, rgba(255, 192, 57, 0.6) 82.62%), linear-gradient(0deg, #FFFFFF, #FFFFFF);
    background: linear-gradient(0deg, #FFC03A 38.81%, #BF8200 54.52%, #FFC03A 62.62%), linear-gradient(0deg, #FFF, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.classes-img {
    width: 40px;
    height: 40px;
}

.choice-text {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 14px;
    line-height: 140%;
    background: linear-gradient(0deg, #FFF 38.81%, rgba(159, 180, 208, 0.6) 54.52%, #FFF 62.62%), #FFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
}

/* ABOUT SERVER  */
.about-server {
    padding: 17vh 0 0 0;
    background: #070B18;
    margin-top: -20px;
}

.about-server .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-server .server-online {
    margin-bottom: 30px;
}

.about-block .subtitle_light {
    display: none;
}

.server-box {
    max-width: 698px;
    border-radius: 40px;
    margin: 0 auto 70px auto;
}

.server-box.block-bordered-gray:after {
    border-radius: 40px;

}

.server-box-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: radial-gradient(209.83% 499.58% at 46.94% 265.42%, #357DEA 0%, #090F27 47.05%);
    background-size: cover;
    border-radius: inherit;
    padding: 16px;
}

.server-item-wrapper>span:hover {
    background: linear-gradient(0deg, #ffc039 48.81%, rgba(183, 125, 0, 1) 64.52%, rgba(255, 192, 57, 0.6) 82.62%), #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .4s color;
}


.server-item {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 140%;
    border-radius: 24px;
    cursor: pointer;
}

.server-item.block-bordered:after {
    display: none;
    left: -2px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
}

.server-item.active.block-bordered:after {
    display: block;
}

.server-item.active .server-item-wrapper {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #2F68B7 2.60%, #182E57 56.77%, #1F2C5A 100%);
    border-radius: inherit;
}

.server-item-wrapper>span {
    /* background: linear-gradient(0deg, #D7E8FF 48.81%, rgba(108, 128, 156, 0.6) 64.52%, rgba(215, 232, 255, 0.6) 82.62%), #fff; */
    background: linear-gradient(0deg, #FFF 48.81%, rgba(108, 128, 156, 0.6) 64.52%, #FFF 82.62%), #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
    padding: 16px 23px 12px;
    display: inline-block;
    border-radius: inherit;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.server-content {
    display: none;
    justify-content: space-between;
    padding-bottom: 40px;
}

.server-content.active {
    display: flex;
}

.inner-block {
    margin-bottom: 42px;
}

.inner-block .block-title {
    margin-bottom: 16px;
}

.inner-wrap {
    display: flex;
    align-items: flex-start;
    max-width: 602px;
}

.inner-wrap:not(:last-child) {
    margin-bottom: 10px;
}

.about-img {
    margin-right: 12px;
}

.x-block {
    display: flex;
    gap: 24px;
    margin-bottom: 44px;
}

.x-count {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 2px;
    white-space: nowrap;
}

.x-bonus {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.x-bonus::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 12px;
    background: #1D65DE;
    margin-right: 8px;
}

.more-server {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 18px;
    line-height: 150%;
    color: #FFC039;
    display: flex;
    align-items: center;
    transition: .4s color;
    margin-top: auto;
    padding: 0 32px;
}

.more-server:hover {
    color: #C98900;
}

.more-server:after {
    content: "";
    background: url(../img/svg/about-arrow.svg) no-repeat center;
    display: inline-block;
    width: 20px;
    height: 13px;
    text-align: center;
    margin-left: 8px;
}

.statistics .server-online {
    justify-content: end;
}

.statistics-info {
    margin-top: 20px;
    padding: 16px 0px 16px 45px;
    position: relative;
    z-index: 2;
}

.statistics-info__inner {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #CB8D08 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    position: relative;
}

.statistics-info__inner:after {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    z-index: -1;
    border-radius: 24px;
    background: radial-gradient(106.8% 45.7% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.info-block {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 12px;
}

.info-block img {
    filter: drop-shadow(0px 0px 16px rgba(255, 192, 57, 0.24));
}

.info-text {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 18px;
    line-height: 140%;
    background: linear-gradient(180deg, #FFF2DB 28.01%, rgba(239, 201, 129, 0.6) 41.07%, rgba(255, 242, 219, 0.6) 53.46%), #FFFFFF;
    -webkit-background-clip: text;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
}


/*  NEWS */
.news {
    background: #070B18;
}

.news-block {
    margin: 60px 0 50px 0;
}

.news-text__laptop {
    display: none;
}

.news-item {
    position: relative;
    border-radius: 24px;
    height: auto;
}

.news-item-wrapper {
    border-radius: inherit;
    background: radial-gradient(125.87% 79.07% at 50% 130.95%, #357DEA 0%, #090F27 68.66%);
    position: relative;
    margin: 0 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
}

.news-item.block-bordered-gray:after {
    border-radius: 24px;
    top: -1px;
    bottom: -1px;
    left: 12px;
    right: 12px;
}

.news-icon {
    position: absolute;
    top: -10px;
    left: -5px;
    border-radius: 20px;
}

.news-icon__text {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 12px;
    line-height: 160%;
    padding: 5px 16px;
    background: linear-gradient(202.84deg, #FF5B5B 14.82%, #400707 85.18%);
}

.news-icon:after {
    background: linear-gradient(23deg, #460505 14.82%, #FD4343 85.18%);
    border-radius: 20px;
}

.news-img {
    border-radius: 24px 24px 0 0;
    width: 100%;
}

.item-block {
    padding: 32px;
    padding-bottom: 0;
}

.item-block .more-server {
    font-size: 16px;
}

.item-subtitle.block-subtitle {
    font-size: 16px;
    margin: 16px 0;
}

.best {
    padding-top: 100px;
    background: #070B18;
}

.table__row {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 50px;
}

.table__item-heading {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 16px;
}

.table__item-inner {
    border-radius: 24px;
    padding: 1.6px;
    position: relative;
}

.table__item-inner_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: radial-gradient(230.47% 295.42% at 50.00% 0.00%, #040815 21.83%, #DB99D4 100%);
    padding: 32px 22px;
    z-index: 2;
    border-radius: inherit;
}

.table__item-inner:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: inherit;
}

.table__item-pink .table__item-inner_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #DB99D4 100%);
}

.table__item-gold .table__item-inner_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #CB8D08 100%);
}

.table__item-red .table__item-inner_box {
    background: radial-gradient(230.47% 295.42% at 50% 0%, #040815 22.04%, #FF4343 100%);
}

.table__item-pink .table__item-inner:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FCC2F6 31.33%, rgba(75, 0, 67, 0.6) 100%);
}

.table__item-gold .table__item-inner:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FFE8BD 31.33%, rgba(84, 54, 0, 0.6) 100%);
}

.table__item-red .table__item-inner:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FBA4A4 31.33%, rgba(75, 4, 4, 0.6) 100%);
}

.table__item-subtitle {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
}

/* .table__item-row:first-child {
    padding: 4px 10px 4px 0;
} */

.table__item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    grid-gap: 8px;
}

.table__item-row__header {
    border-bottom: 0.4px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 8px;
    margin-bottom: 8px;
    padding-left: 0;
}

.table__item-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.table__item-col .icon {
    width: 28px;
    height: 28px;
}

.table__item-row__header .table__item-col:first-child {
    flex: 0 0 calc(10% + 10px);
}

.table__item-col:first-child {
    flex: 0 0 11%;
    max-width: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.table__item-col:nth-child(2) {
    flex: 1 0 40%;
}

.table__item-col:nth-child(3) {
    flex: 0 0 25%;
}

.table__item-col:nth-child(4) {
    flex: 0 0 25%;
}

.table__item-clans .table__item-col:nth-child(2) {
    flex: 1 0 42%;
}

.table__item-clans .table__item-col:nth-child(3) {
    flex: 1 0 25%;
}

.table__item-box {
    display: flex;
    flex-direction: column;
}

.table__item-col {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-family: 'Manrope-SemiBold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.8);
}

.gold {
    color: #FFC039;
}

.silver {
    color: #E2F4FF;
}

.bronze {
    color: #A96425;
}

.best-info {
    font-family: 'Manrope-SemiBold', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
}

/* bg-image */

.bg-image {
    position: relative;
    /* если есть, то фон сверху черный, если убрать -- то норм */
    /* background: linear-gradient(180deg, black 30%, transparent 70%); */
}

.bg-image:after {
    content: '';
    background: #FFF;
    height: 50%;
    width: 100%;
    position: absolute;
    display: inline-block;
    left: 0;
    /* поменяла bottom, чтобы убрать белую полоску */
    bottom: -30px;
    right: 0;
    z-index: -1;
}

.bg-image img {
    width: 100%;
}

/* STREAM */
.stream {
    padding-top: 180px;
    background: #fff;
}

.stream-block {

    margin-bottom: 60px;
}

.stream-block-img {
    border-radius: 12px;
}

.stream-box {
    position: relative;
    margin-bottom: 20px;
}

.stream-air {
    position: absolute;
    bottom: 8px;
    right: 20px;
}

.stream-profile {
    display: flex;
}

.stream-avatar {
    border-radius: 50%;
    margin-right: 18px;
    width: 52px;
    height: 52px;
}

.profile-title {
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #070B18;
    margin-bottom: 6px;
}

.profile-subtitle {
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #0D142D;
}

.awards-blocks {
    background: radial-gradient(218.4% 279.95% at 70% 15.47%, #357DEA 0%, #090F27 67.19%);
    border-radius: 24px;
    text-align: center;
    padding: 66px;
    position: relative;
}

.awards-block {
    text-align: center;
}

.award-image {
    max-width: 100%;
    height: auto;
}

.awards-img__left {
    position: absolute;
    bottom: 0;
    left: -150px;
    /* transform: scale(1); */
}

.awards-img__right {
    position: absolute;
    top: 15px;
    right: -90px;
    transform: scale(0.9);
}

.awards-btn {
    display: inline-flex;
    align-items: center;
    background: radial-gradient(128% 100% at 50% 0%, #FFFFFF 2.6%, #DFE6F1 56.77%, #A3ABBA 100%);
    border-radius: 16px;
    margin-top: 40px;
    z-index: 2;
}

.awards-btn:hover .btn-bordered-box {
    background: linear-gradient(0deg, rgba(147, 167, 205, 0.24), rgba(147, 167, 205, 0.24)), radial-gradient(128% 100% at 50% 0%, #FFFFFF 2.6%, #DFE6F1 56.77%, #A3ABBA 100%);
}

.awards-btn:active .btn-bordered-box {
    background: linear-gradient(0deg, rgba(147, 167, 205, 0.32), rgba(147, 167, 205, 0.32)), radial-gradient(128% 100% at 50% 0%, #FFFFFF 2.6%, #DFE6F1 56.77%, #A3ABBA 100%);
}

.awards-btn .text-bg {
    /* background: linear-gradient(0deg, #1D70E3 29.76%, #1255B3 54.52%, #1D70E3 72.62%); */
    background: linear-gradient(0deg, #3288ff 49.76%, #1576ff 64.52%, #1872eb 82.62%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
}

.awards-btn.btn-bordered:after {
    background: radial-gradient(128% 100% at 50% 0%, #DCE4EE 0%, rgba(114, 170, 246, .6) 100%);
}

.learn-more {
    font-family: 'TrajanSansPro-Bold';
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    background: linear-gradient(0deg, #1D70E3 49.76%, #1255B3 64.52%, #166DE3 82.62%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.awards {
    background: #FFF;
    overflow: hidden;
    padding-bottom: 170px;

}

.awards-blocks {
    background: radial-gradient(218.4% 279.95% at 70% 15.47%, #357DEA 0%, #090F27 67.19%);
    border-radius: 24px;
    text-align: center;
    padding: 66px;
    position: relative;
}

/* FRIENDS */
.friends {
    background: #fff;
}

.friends .block-text {
    margin-top: 0;
}

.friends-block {
    display: flex;
    justify-content: space-evenly;
}

.friends .block-title {
    color: #070B18;
}

.friends .block-subtitle {
    color: #0D142D;
}

/* CONTACTS */
.contacts {
    background: #fff;
    padding-top: 15vh;
}

.contacts-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.social-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 430px;
    width: 100%;
}

.social-block .btn-bordered-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-block .btn-orange .btn-bordered-box {
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
}

.social-btn:hover {
    opacity: 1;
}

.social-btn img {
    height: 40px;
    filter: drop-shadow(0px 1.5px 2.25px rgba(0, 0, 0, 0.32));
}

.social-btn .btn-bordered-box {
    padding: 9px 12px;
    transition: .4s background;
}

.tg-btn .btn-bordered-box {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #6FCFFF 2.60%, #2494CD 56.77%, #0F6B99 100%);
}

.tg-btn .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #6FCFFF 2.6%, #2494CD 56.77%, #0F6B99 100%);
}

.tg-btn:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #C9E9F9 31.33%, #136087 100%);
}

.vk-btn .btn-bordered-box {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #7FB6FA 2.60%, #2870C8 56.77%, #0F4E9B 100%);
}

.vk-btn .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #7FB6FA 2.6%, #2870C8 56.77%, #0F4E9B 100%);
}

.vk-btn:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D6E8FF 31.33%, #104484 100%);
}

.wt-btn .btn-bordered-box {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #45F084 2.60%, #18BC54 56.77%, #0A8A39 100%);
}

.wt-btn .btn-bordered-box {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #45F084 2.60%, #18BC54 56.77%, #0A8A39 100%);
}

.wt-btn .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #45F084 2.6%, #18BC54 56.77%, #0A8A39 100%);
}

.wt-btn:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #CEFEE0 31.33%, #10883C 100%);
}

.tt-btn .btn-bordered-box {
    background: radial-gradient(128% 100% at 50% 0%, #e99eb5 2.6%, #BD0044 68.15%);
}

.tt-btn .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #e99eb5 2.6%, rgb(197, 21, 132) 56.77%, #BD0044 100%);
}

.tt-btn:after {
    background: radial-gradient(87.83% 37.59% at 50% 27.41%, #FFB0CA 31.33%, #A5003C 100%);
}

.inst-btn .btn-bordered-box {
    background: radial-gradient(128.00% 100.00% at 50.00% -0.00%, #FA97D5 2.60%, #C9228B 56.77%, #8F1060 100%);
}

.inst-btn .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #FA97D5 2.6%, #C9228B 56.77%, #8F1060 100%);
}

.inst-btn:after {
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #FFD8F0 31.33%, #8C125F 100%);
}

.inst-btn {
    margin-bottom: 8px;
}

.social-block .btn-orange .btn-bordered-box:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(128% 100% at 50% 0%, #FFC342 2.6%, #9F6E03 57.29%, #9F6E03 60.94%, #FF8717 100%);
}

.btn-desc {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: rgba(13, 20, 45, 0.4);
    text-align: center;
}

.social-text {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 20px;
    line-height: 1;
    /* background: linear-gradient(0deg, #EBF3FF 48.81%, rgba(195, 208, 225, 0.6) 64.52%, rgba(235, 243, 255, 0.6) 82.62%), linear-gradient(0deg, #FFFFFF, #FFFFFF); */
    background: linear-gradient(0deg, #FFF 48.81%, rgba(108, 128, 156, 0.6) 64.52%, #FFF 82.62%), #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.overlay {
    position: relative;
}

.vk-block {
    max-width: 470px;
    width: 100%;
    height: 500px;
    overflow: auto;
    overflow-x: hidden;
}

.vk-block::before {
    content: '';
    z-index: 3;
    top: 0;
    width: 100%;
    height: 60px;
    display: block;
    position: absolute;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.vk-block::after {
    content: '';
    z-index: 3;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: block;
    position: absolute;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    transform: rotate(180deg);
}

.vk-block::-webkit-scrollbar {
    width: 12px;
    padding: 0 1px;
    background: radial-gradient(458.33% 105.83% at -283.33% 50%, #357DEA 0%, #E0E0E0 84.29%);
    border-radius: 32px;
}

.vk-block::-webkit-scrollbar-thumb {
    background: #438CEC;
    border-radius: 10px;
    margin: 0 1px;
}

.vk-item {
    background: url(../img/vk-page.png) no-repeat center;
    background-size: contain;
    height: 45vh;
    max-width: 22vw;
    margin-bottom: 10px;
}

/* GET PRIZES */

.banner__prizes {
    background: #FFF;
    padding: 15vh 0 15vh 0;
    position: relative;
}

.banner__prizes-bg {
    position: absolute;
    bottom: -90px;
    left: 0;
}

.banner__prizes-bg-2 {
    position: absolute;
    right: 0;
    bottom: -70px;
    z-index: 2;
    width: 40%;
}

.banner__prizes__body {
    position: relative;
    top: 16vh;
    left: 0;
    border-radius: 16px;
}

.banner__prizes__body_wrap {
    background: radial-gradient(148.25% 807.19% at 32.2% 110.25%, #357DEA 0%, #090F27 47.52%);
    padding: 62px 70px;
    position: relative;
    z-index: 2;
    border-radius: inherit;
}

.banner__prizes__body:after {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    content: '';
    z-index: 0;
    border-radius: 16px;
}

.banner__prizes__title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 40px;
}

.start-game__footer {
    text-align: center;
}

.banner__prizes__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 55px;
}

.banner__prizes__item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.banner__prizes__img {
    width: 56px;
    height: 56px;
}

.banner__prizes__desc {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
}

.banner__prizes__right-img {
    position: absolute;
    bottom: 0;
    right: -90px;
    border-radius: 0 0 24px 0;
}

.banner_prizes-bg-mobile {
    display: none;
}


/* PACKS */

.banner__prizes2 {
    background: #FFF;
    padding: 0vh 0 15vh 0;
    position: relative;
}

.banner__prizes2-bg {
    position: absolute;
    bottom: -90px;
    left: 0;
}

.banner__prizes2-bg-2 {
    position: absolute;
    right: 0;
    bottom: -70px;
    z-index: 2;
    width: 40%;
}

.banner__prizes2__body {
    position: relative;
    top: 16vh;
    left: 0;
    border-radius: 16px;
}

.banner__prizes2__body_wrap {
    background: radial-gradient(148.25% 807.19% at 32.2% 110.25%, #357DEA 0%, #090F27 47.52%);
    padding: 62px 70px;
    position: relative;
    z-index: 2;
    border-radius: inherit;
}

.banner__prizes2__body:after {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #D0DBEB 31.33%, rgba(13, 30, 53, 0.6) 100%);
    content: '';
    z-index: 0;
    border-radius: 16px;
}

.banner__prizes2__title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 10px;
}

.start-game__footer {
    text-align: center;
}

.banner__prizes2__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 55px;
}

.banner__prizes2__item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.banner__prizes2__img {
    width: 56px;
    height: 56px;
}

.banner__prizes2__desc {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
}

.banner__prizes2__right-img {
    position: absolute;
    bottom: 0;
    right: -90px;
    border-radius: 0 0 24px 0;
}

.banner_prizes-bg-mobile {
    display: none;
}

/* ---------------------FOOTER------------------------ */
.footer {
    background: #070B18;
    padding-top: 15vh;
}

.icon-plus {
    display: none;
}

.footer-title.gold {
    color: #E2F4FF;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-info {
    display: flex;
    gap: 140px;
}

.footer-info:last-child {
    justify-content: end;
}


.footer-title {
    font-family: 'TrajanSansPro-Bold', sans-serif;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 24px;
}

.footer-link {
    display: flex;
    gap: 14px;
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #E2F4FF;
}

.footer-link:not(:last-child) {
    margin-bottom: 14px;
}

/* нужно ли? если да, то убрать с 767px */
.footer-link:hover {
    /* color: #FFC342; */
    color: #FFC039;
}

.footer-website {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.website-title {
    font-family: 'TrajanSansPro-Semibold', sans-serif;
    font-size: 24px;
    line-height: 140%;
    color: #FFC039;
}

.website-desc {
    font-family: 'Manrope-Medium', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
}

.block-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid #D0DBEB;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-bottom__info {
    display: flex;
    gap: 30px;
}

.footer-copy,
.footer-info__item {
    font-family: 'Manrope-Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #E2F4FF;
    opacity: 1;
}

.rating-count, .rating-sub, .revolution .timer-text {
    font-family: TrajanSansPro-Bold;
    font-weight: 700
}

.rating-count, .rating-sub, .revolution .block-subtitle {
    line-height: 140%;
    text-align: left
}


.discord-block-wrap {
    position: relative;
    border: 1px solid;
    border-image-source: radial-gradient(106.8% 45.71% at 50% 30.71%, #5A64EA 31.33%, #D1D4FF 100%);
    z-index: 2;
}

.discord-block::after {
    position: absolute;
    top: -1px;
    bottom: 3px;
    left: 1px;
    right: 1px;
    /* background: radial-gradient(106.8% 45.71% at 50% 30.71%, #5A64EA 31.33%, rgba(13, 30, 53, 0.6) 100%); */
    background: radial-gradient(116.8% 55.71% at 90% 50.71%, #5A64EA 51.33%, rgb(106 136 177 / 40%) 100%);
    content: '';
    z-index: 1;
    border-radius: 16px;
}

.discord-block {
    position: relative;
}


/* ICONS */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
}

.icon-language {
    background-image: url(../img/svg/language.svg);
}

.icon-smile {
    background-image: url(../img/svg/icon-devil.svg);
}

/* поменяла */
.header__nav-item:hover>.header__nav-item__link .icon-smile {
    background-image: url(../img/svg/icon-devil__hover.svg);
}

.icon-place-first {
    background-image: url(../img/svg/best-first.svg);
}

.icon-place-second {
    background-image: url(../img/svg/best-second.svg);
}

.icon-place-third {
    background-image: url(../img/svg/best-third.svg);
}

.icon-arrow-right-darken {
    background-image: url(../img/svg/icon-arrow-right-darken.svg);
    width: 32px;
    height: 32px;
}

.icon-arrow-bottom-darken {
    background-image: url(../img/svg/icon-arrow-bottom-darken.svg);
}

.mobile-hidden, .rating-info__desktop {
    display: block !important;
}

.desktop-hidden {
    display: none !important;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: 100%;
}

.swiper-pagination-bullet-custom {
    display: flex;
    width: 60px;
    height: 8px;
    border-radius: 4px;
    background: radial-gradient(128% 100% at 50% 0%, #767676 2.6%, #A4A4A4 57.29%, #595959 60.94%, #393939 100%);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.swiper-pagination-bullet-custom span {
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(128% 100% at 50% 0%, #FFC342 2.6%, #9F6E03 57.29%, #9F6E03 60.94%, #FF8717 100%);
    height: 100%;
    border-radius: 4px;
}

.swiper-pagination-bullet-custom--active span {
    animation: BulletProgress calc(var(--delay) * 1ms) linear forwards;
}

@keyframes BulletProgress {
    from {
        width: 0
    }

    to {
        width: 100%;
    }
}

.swiper--pause .swiper-pagination-bullet-custom--active span {
    animation: none;
}

/* RATING */

.mode__list-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.revolution .table__item-inner {
    height: 100%
}

.revolution .inner-wrap:not(:last-child) {
    align-items: center;
    margin-bottom: 24px
}

.revolution .more-server {
    padding: 0
}

.rating {
    background: #fff;
    padding-top: 200px
}

.online-dot {
    width: 10px;
    height: 10px;
    background-color: #7ce66d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;

}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 229, 107, 0.2);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.server-online {
    max-width: fit-content;
    padding: 17px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    background: rgba(5, 9, 22, 0.4);
    backdrop-filter: blur(11px);
    gap: 1px;
    margin: 0 auto 42px auto;
}

.revolution .block-text {
    margin: 0
}

.revolution .table__item-inner_box {
    background: radial-gradient(230% 295% at 50% 0, #040815 22.038%, #0e93de 100%)
}

.revolution .icon-place-second {
    background-image: url(../img/svg/best-second__blue.svg)
}

.revolution .table__item {
    width: 900px;
    height: 100%
}

.revolution .table__item-pink .table__item-inner:after {
    background: radial-gradient(230% 295% at 50% 0, rgb(64 88 167) 22.038%, rgb(53 116 151) 100%)
}

.table__item-row__header .table__item-col:first-child {
    flex: 0 0 calc(10% + 10px)
}

.revolution .best-info {
    color: #0d142d;
}

.best-info {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
}

.best-info {
    font-family: Manrope-SemiBold, sans-serif;
    font-weight: 600;
}

.revolution .table__item-subtitle {
    font-family: TrajanSansPro-Semibold;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    margin-bottom: 24px
}

.revolution .table__item-col:first-child {
    flex: none;
    max-width: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.table__item-count {
    width: 28px;
    height: 28px;
    justify-content: center !important
}

.revolution .table__item-row__header {
    grid-gap: 10px;
    padding-left: 15px;
    align-items: center
}

.table__item-row .table__item-col:first-child {
    margin-right: 50px
}

.revolution .table__item-col {
    overflow: inherit;
    font-size: 16px
}

.revolution .table__item-col:nth-child(2), .revolution .table__item-col:nth-child(5) {
    flex: 1 0 20%
}

.revolution .table__item-col:nth-child(3), .revolution .table__item-col:nth-child(4) {
    flex: 0 0 15%
}

.revolution .table__item-inner_box {
    height: 100%;
    padding: 40px 50px;
    justify-content: center
}

.revolution .table__item-row:not(:last-child) {
    margin-bottom: 8px
}

.rating-info {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px
}

.rating__body {
    position: relative;
    left: 0;
    border-radius: 16px;
    height: 100%
}

.rating__body-wrap, .table__item-inner-overlay {
    border-radius: inherit;
    height: 100%
}

.rating__body-wrap {
    padding: 50px 60px;
    background: radial-gradient(229.14% 280.71% at 70% 15%, #357dea, #090f27 67.188%);
    position: relative;
    z-index: 2
}

.revolution .blue {
    color: #86b3ee;
}

.rating__body:after {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: radial-gradient(106.8% 45.71% at 50% 30.71%, #d0dbeb 31.33%, rgba(13, 30, 53, .6) 100%);
    content: "";
    z-index: 0;
    border-radius: 16px
}

.rating-top__block:not(:last-child) {
    margin-bottom: 32px
}

.rating-count {
    color: #fff;
    font-size: 52px
}

.rating-sub {
    color: #fff;
    font-size: 24px
}

.rating-sub__plus {
    top: -5px;
    position: relative;
    font-size: 42px
}

.rating-wrapper {
    display: flex;
    flex-direction: column;
    gap: 54px
}

.rating-footer {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.blue-text {
    color: #1d65de;
    transition: .7s
}

.revolution .website-title {
    color: #fff
}

.revolution .banner__prizes {
    padding: 10vh 0 15vh
}

@media screen and (max-width: 1919px) {
    .rating-top__block:not(:last-child) {
        margin-bottom: 22px
    }

    .rating-wrapper {
        gap: 70px
    }

    .revolution.inner-wrap {
        align-items: center
    }
}

@media screen and (max-width: 1440px) {
    .revolution .h1-title {
        font-size: 44px
    }

    .revolution .server-online {
        /*max-width: 170px;*/
        padding: 7px 14px
    }

    .revolution .mode__list-item img {
        max-height: 60vh
    }

    .revolution .server-block {
        margin-right: 50px
    }
}

@media screen and (max-width: 1366px) {
    .rating-wrapper {
        gap: 5px
    }

    .revolution .server-block_wrapper {
        max-width: 410px;
        gap: 10px;
        padding: 40px;
    }

    .revolution .server-block_wrapper {
        padding: 30px;
    }

    .revolution .server-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .revolution .server-online {
        /*max-width: 170px;*/
        padding: 7px 14px
    }

    .revolution .main__footer {
        margin-top: 40px
    }

    .revolution .server-block_wrapper {
        padding: 30px
    }

    .revolution .server-title {
        font-size: 18px;
        margin-bottom: 18px
    }

    .revolution .mode__list-item img {
        max-height: 63vh
    }

    .revolution .table__item-inner_box {
        padding: 30px 50px
    }
}

@media screen and (max-width: 1350px) {
    .revolution .block-subtitle {
        font-size: 16px
    }

    .revolution .header__box-col-right .start-game {
        display: none !important
    }

    .revolution .server-block_wrapper {
        padding: 30px
    }
}

@media screen and (max-width: 1280px) {
    .revolution .server-block_wrapper {
        padding: 30px
    }

    .revolution .table__item {
        width: 750px
    }

    .rating-wrapper {
        gap: 70px
    }
}

@media screen and (max-width: 1250px) {
    .revolution .server-block_wrapper {
        padding: 25px
    }

    .revolution .server-title {
        font-size: 18px
    }

    .revolution .block-subtitle, .revolution .more-server {
        font-size: 14px
    }

    .rating-wrapper {
        gap: 88px;
        gap: 120px
    }

    .table__item-row .table__item-col:first-child {
        margin-right: 20px
    }

    .rating-count {
        font-size: 44px
    }

    .revolution .header.fixed .header__nav-list .header__nav-item:nth-last-child(-n+3) {
        display: block
    }
}

@media screen and (max-width: 1024px) {
    .revolution .rating-info {
        padding: 0;
        flex-direction: column;
        flex-wrap: nowrap
    }

    .revolution .rating__body-wrap {
        padding: 20px
    }

    .revolution .rating-statistics, .revolution .rating__body, .revolution .rating__body-wrap {
        height: 100%
    }

    .revolution .rating-info .container {
        padding: 0
    }

    .revolution .h1-title {
        font-size: 34px
    }

    .revolution .main .container {
        margin-bottom: 130px
    }

    .revolution .table__item {
        width: 100%
    }

    .revolution .main__content {
        margin-bottom: 40px;
        margin-top: 90px
    }

    .online-count {
        font-size: 15px
    }

    .revolution .main__footer {
        margin-top: 20px
    }

    .revolution .server-online {
        /*max-width: 125px;*/
        margin: 0 auto 12px
    }

    .revolution .btn .btn-bordered-box {
        padding: 13px 33px
    }

    .revolution .main:after {
        height: 55px
    }

    .revolution .server-block {
        width: auto;
        margin-left: 40px;
        margin-right: 30px
    }

    .revolution .inner-block {
        margin-bottom: 0
    }

    .revolution .inner-wrap:not(:last-child) {
        margin-bottom: 10px
    }

    .revolution .table__item-part {
        max-width: 1000px
    }

    .revolution .table__item-inner {
        width: 100%;
        margin: 0 auto
    }

    .rating__body {
        max-width: 440px;
        margin: 0 auto
    }

    .revolution .rating-wrapper {
        gap: 70px
    }
}

@media screen and (max-width: 992px) {
    .online-count {
        position: relative;
        top: 2px;
        font-size: 16px;
    }

    .revolution .inner-block {
        margin-bottom: 22px
    }

    .mode__list-wrap {
        flex-direction: column;
    }

    .revolution .server-block_wrapper {
        max-width: 100%;
        padding: 23px 20px;
    }
    .revolution .server-block {
        width: 100%;
        margin: 35px auto 0 auto;
    }
    .revolution .inner-block {
        margin-bottom: 22px;
    }
    .revolution .about-img {
        width: 21px;
        height: 21px;
        margin-right: 10px;
    }
    .revolution .block-subtitle {
        padding-top: 0;
    }
    .revolution .inner-wrap:not(:last-child) {
        margin-bottom: 12px;
    }

    .revolution .inner-wrap:not(:last-child) {
        margin-bottom: 12px
    }

    .revolution .banner__prizes-left-img {
        left: -35px;
        bottom: 100px;
        transform: scale(.8)
    }

    .revolution .table__item-col .icon {
        width: 30px;
        height: 30px
    }
}

@media screen and (max-width: 874px) {
    .revolution .table__item-col .icon {
        width: 30px;
        height: 30px
    }
}

@media screen and (max-width: 767px) {
    .rating-info {
        gap: 38px
    }

    .revolution .rating__body-wrap {
        padding: 32px 30px
    }

    .revolution .rating-info {
        flex-direction: column
    }

    .table__item-inner-overlay {
        padding-right: 0
    }

    .revolution .rating-info .table__item {
        overflow: unset !important
    }

    .revolution .table__item-subtitle {
        margin-bottom: 16px
    }

    .revolution .table__item-inner_box {
        padding: 32px 20px
    }

    .revolution .btn-group {
        margin-bottom: 24px
    }

    .revolution .white-text {
        font-size: 14px
    }

    .rating {
        padding-top: 100px
    }

    .revolution .table__item-col .icon {
        width: 30px;
        height: 30px
    }

    .rating-wrapper {
        gap: 60px
    }

    .rating__body-wrap {
        padding: 40px
    }

    .revolution.rating .more-info {
        max-width: 335px;
        margin: 0 auto 20px
    }

    .rating .container .container {
        padding: 0
    }

    .revolution .btn-blue .text-bg {
        font-size: 14px;
        line-height: 2
    }
}

@media screen and (min-width: 500px) and (max-width: 540px) {
    .revolution .popup__content {
        margin: 0
    }
}

@media screen and (min-width: 600px) and (max-width: 640px) {
    .online-count {
        font-size: 13px;
    }
}

@media screen and (max-width: 600px) {
    .rating-info__desktop {
        display: none !important
    }

    .rating-info__mobile {
        display: block
    }

    .table__item-footer-body > .table__item-col:first-child {
        color: rgba(255, 255, 255, .2)
    }

    .table__item-row__mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        background-color: rgba(255, 255, 255, .1);
        border-radius: 12px
    }

    .table__item-footer, .table__item-top {
        display: flex;
        align-items: center
    }

    .table__item-footer-body {
        margin-right: 30px
    }

    .table__item-row__mobile .table__item-col {
        font-size: 14px
    }

    .table__item-row__mobile .table__item-count {
        font-size: 18px
    }

    .table__item-box {
        gap: 8px
    }

    .revolution .table__item-subtitle {
        font-size: 20px
    }
}

@media screen and (max-width: 520px) {
    .revolution.rating .more-info {
        max-width: 100%
    }
}

@media screen and (max-width: 375px) {
    .rating-sub, .revolution .friends .block-title {
        font-size: 16px
    }

    .revolution .table__item-subtitle {
        font-size: 20px;
        line-height: 24px
    }

    .revolution .table__item-inner_box {
        padding: 32px 20px
    }

    .revolution .table__item-row__header .table__item-col {
        font-size: 16px;
        margin-right: 16px
    }

    .revolution .table__item-id {
        margin-right: 25px
    }

    .revolution .table__item-row__header .table__item-col:nth-child(2) {
        flex: 1 0 25%
    }

    .revolution .table__item-row__header .table__item-col:nth-child(3), .revolution .table__item-row__header .table__item-col:nth-child(4) {
        flex: 0 0 10%
    }

    .revolution .table__item-row__header .table__item-col:nth-child(5) {
        flex: 1 0 30%
    }

    .revolution .table__item-col .icon {
        width: 30px;
        height: 28px
    }

    .rating-count {
        font-size: 28px
    }

    .rating-sub__plus {
        top: 0;
        font-size: 24px
    }

    .rating-top__block:not(:last-child) {
        margin-bottom: 16px
    }

    .rating-wrapper {
        gap: 22px
    }

    .rating-footer {
        gap: 8px
    }

    .rating__body-wrap {
        padding: 23px 30px
    }

    .rating-info {
        margin-bottom: 40px
    }

    .revolution .btn {
        font-size: 14px
    }

    .revolution .btn .btn-bordered-box {
        padding: 15px 48px
    }

    .table__item.active {
        width: 500px
    }

    .revolution .banner__prizes__body .start-game__footer .btn, .revolution .table__item.active {
        width: auto
    }
}

@media screen and (max-width: 374px) {
    .table__item-footer-body {
        margin-right: 20px
    }
}

@media screen and (max-width: 350px) {
    .revolution .more-info .btn .btn-bordered-box {
        padding: 15px 30px
    }

    .table__item-row__mobile .table__item-col {
        font-size: 11px
    }
}

@media screen and (max-width: 310px) {
    .table__item-footer {
        flex-direction: column;
        align-items: flex-start
    }
}