@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body * {
    font-family: "Montserrat", serif;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

/* .page {
    background: url(../img/page-bg.webp);
} */

.container {
    max-width: 1300px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.header {
    position: relative;
    z-index: 4;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 50px 0;
}

.language__wrap {
    flex: 1;
}

.header__btnBlock {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.language {}

.language__li {}

.language__current {}

.language__sub {}

.languageSub__li {}

.languageSub__link {}

.languageSub__link-span {}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo__link {
    display: flex;
}

.logo__img {}

.header__btnWrap {
    max-width: 220px;
    width: 100%;
}

.header__btn {
    width: 100%;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff5e6;
    border-radius: 30px;
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    transition: 500ms all;
    display: flex;
    gap: 7px;
}

.headerBtn__square {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff0045;
    left: -6px;
    transition: 500ms all;
}

.headerBtn__arrow {
    width: 9px;
    height: 2px;
    background-color: #000000;
    position: relative;
    transition: 500ms all;
}

.headerBtn__arrow:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    right: -2px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    rotate: -45deg;
    transition: 500ms all;
}

.header__btn:hover {
    background-color: #ff0045;
    color: #fff5e6;
}

.header__btn:hover .headerBtn__square {
    background-color: #fff5e6;
}

.header__btn:hover .headerBtn__arrow {
    background-color: #fff5e6;
    transform: translateX(5px);

}

.header__btn:hover .headerBtn__arrow:after {
    border-color: #fff5e6;
}

.language {}

.language__li {
    position: relative;
    padding: 10px 0;
}

.language__current {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background-color: #ffecc9;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.language__current-img {
    width: 80px;
    height: 80px;
    position: relative;
}

@keyframes wave {
    0% {
        top: 5%
    }

    100% {
        top: -5%
    }
}

.language__sub {
    position: absolute;
    top: 100%;
    left: 20px;
    background: #ffecc9;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    min-width: 50px;
    padding: 25px 10px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    box-shadow: 0 13px 48px 0 rgb(0 0 0 / 15%)
}

.language__li:hover .language__sub {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    left: -15px;
}

.languageSub__li {
    margin: 0;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    padding-left: 10px
}

.languageSub__li:last-of-type {
    margin-bottom: 0
}

.languageSub__link {
    border: none;
    background: no-repeat;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.languageSub__link-img {
    width: 20px;
    height: 20px;
    margin-right: 20px
}

.languageSub__link-span {
    font-size: 14px;
    text-transform: capitalize;
    color: #484e5c;
    font-weight: 500;
    transition: .5s all;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.languageSub__link:hover .languageSub__link-span {
    color: #ff0045;
}

.language__li:hover .languageSub__li {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.language__li:hover .languageSub__li:nth-of-type(1n) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.language__li:hover .languageSub__li:nth-of-type(2n) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.language__li:hover .languageSub__li:nth-of-type(3n) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language__li:hover .languageSub__li:nth-of-type(4n) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.language__li:hover .languageSub__li:nth-of-type(5n) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.menu {}

.nav {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    background-color: rgb(37 45 49 / 80%);
    border-radius: 30px;
    box-shadow: 1px 1px 35px rgb(255 255 255 / 40%);
}

.navMenu {
    display: flex;
    padding: 0 40px;
    align-items: center;
    /* gap: 50px;
    justify-content: space-between; */
    justify-content: center;
    gap: 70px;
}

.navMenu__li {
    position: relative;
    padding: 9px 0;
}

.active {}

.navMenu__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 500ms all;
    position: relative;
}

.navMenu__li:hover .navMenu__link {
    color: #fad700;
}

.navMenu__li.active .navMenu__link {
    color: #fad700;
    font-weight: bold;
}

.navMenu__link:after {
    content: "";
    clear: both;
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #ff0045;
    top: 3px;
    left: -17px;
    transition: 500ms all;
    opacity: 0;
}

.navMenu__li.active .navMenu__link::after {
    opacity: 1;
}

.navMenu__sub {
    position: absolute;
    top: 110%;
    left: 20px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    min-width: 140px;
    padding: 10px 10px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    background-color: rgb(37 45 49 / 80%);
    border-radius: 7px;
    box-shadow: 1px 1px 35px rgb(255 255 255 / 40%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.navMenu__li:hover .navMenu__sub {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    left: -15px;
}

.navMenuSub__li {}

.navMenuSub__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 500ms all;
}

.navMenuSub__link:hover {
    color: #fad700;
}

.main {}

.mainHome__section {
    height: calc(100vh + 1px);
    border-bottom: 1px solid #fee302;
    margin-top: -223px;
    padding-top: 270px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.mainHome__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInOut 12s infinite ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.mainHome__content {
    position: relative;
    z-index: 3;
}

.mainHome__symbols {
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0.8;
}

.mainHome__logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.mainHomeLogo__img {
    max-width: 100%;
}

.mainHomeLogo__slug {
    color: #fff000;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    /* margin-right: 70px; */
}

.mainHomeLogo__slug span {
    color: #a2ff00;
}

.mainHome__wrap {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-top: -70px;
    max-width: 1040px;
    width: 100%;
    margin: -70px auto 0;
    position: relative;
}

.mainHome__left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15%;
}

.mainHome__textBlocks {
    max-width: 420px;
    width: 100%;
}

.mainHomeText__block {
    display: flex;
}

.mainHomeText__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: #fff;
}

.mainHomeText__title b {

    font-weight: 900;
}

.yellowCollor {
    color: #ffe100;
}

.mainHomeText__line {
    width: 150%;
    height: 3px;
    background: rgba(255, 255, 255, 1);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
    margin: 25px 0;
    margin-left: -50px;
}

.text-right {
    text-align: right;
}

.mainHome__right {}

.mainHome__imgWrap {
    transform: translateX(40px);
}

.mainHome__img {}

.download {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.download__top {
    display: flex;
    gap: 25px;
}

.downloadTop__label {}

.downloadTop__title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 140%;
}

.downloadTop__title2 {
    font-size: 34px;
    font-weight: 900;
    color: #ffe100;
    line-height: 140%;
    margin-left: 30px;
}

.downloadTop__btns {
    display: flex;
    align-items: center;
    gap: 4px;
}

.downloadTop__btn {
    display: flex;
    align-items: center;
}

.downloadTop__btn-icon {}

.downloadTop__square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
}

.download__bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 746px;
    width: 100%;
}

.download__arrow {
    width: 312px;
    height: 3px;
    background: rgba(46, 39, 83, 1);
    background: -moz-linear-gradient(left, rgba(46, 39, 83, 0.1) 0%, rgba(255, 242, 0, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(46, 39, 83, 0.1)), color-stop(100%, rgba(255, 242, 0, 1)));
    background: -webkit-linear-gradient(left, rgba(46, 39, 83, 0.1) 0%, rgba(255, 242, 0, 1) 100%);
    background: -o-linear-gradient(left, rgba(46, 39, 83, 0.1) 0%, rgba(255, 242, 0, 1) 100%);
    background: -ms-linear-gradient(left, rgba(46, 39, 83, 0.1) 0%, rgba(255, 242, 0, 1) 100%);
    background: linear-gradient(to right, rgba(46, 39, 83, 0.1) 0%, rgba(255, 242, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e2753', endColorstr='#fff200', GradientType=1);
    position: relative;
}

.download__arrow:after {
    content: "";
    clear: both;
    position: absolute;
    right: -12px;
    top: -3px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 0 5px 12px;
    border-color: transparent transparent transparent #fff200;
    transform: rotate(0deg);
}

.download__label {
    color: #f4f4f4;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    line-height: 140%;
}

.aboutSection {
    background: linear-gradient(to bottom, rgba(19, 17, 109, 1) 0%, rgba(1, 33, 80, 1) 20%, #00234a 100%);
    padding: 80px 0 40px;
}

.about__content {
    display: flex;
    justify-content: center;
}

.aboutBlock {
    border: 2px solid #6c6c6c;
    border-radius: 16px;
    padding: 0 45px 75px;
    max-width: 1040px;
    width: 100%;
    box-sizing: border-box;
    background: url(../img/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.aboutBlock__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
}

.aboutBlock__logo-icon {}

.aboutBlock__textWrap {
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.aboutBlock__text {
    color: #ffffff;
    font-size: 22px;
    line-height: 140%;
    text-indent: 30px;
    text-align: justify;
    text-shadow: 0px 0px 12px rgba(45, 45, 120, 0.4);
}

.aboutBlock__text span {
    color: #fff047;
}

.aboutBlock__slug {
    margin-top: 35px;
}

.aboutBlockSlug__title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0px 0px 76px rgba(0, 34, 77, 0.3);
    line-height: 120%;
}

.aboutBlockSlug__title span {
    color: #ffe100;
}

.aboutBlock__square {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
}

.whiteListSection {
    background: linear-gradient(to bottom, rgba(0, 35, 74, 1) 0%, rgba(0, 16, 32, 1) 20%, rgba(0, 14, 31, 1) 100%);
}

.whiteList {
    border: 2px solid #6c6c6c;
    border-radius: 16px;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 25px 75px;
    box-sizing: border-box;
    position: relative;
    background: url(../img/drop-icon.webp);
    background-color: #3e6380;
    background-repeat: no-repeat;
    background-position: right 100px bottom 30px;
}

.whiteList__titleWrap {}

.whiteList__title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.whiteList__subTitleWrap {
    margin-top: 20px;
}

.whiteList__subTitle {
    color: #ffe100;
    font-size: 22px;
    font-weight: 900;
    line-height: 140%;
    text-align: center;
}

.whiteList__content {
    display: flex;
    margin-top: 40px;
}

.whiteList__left {
    flex: 1;
}

.whiteList__textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whiteList__text {
    color: #ffffff;
    font-size: 22px;
    line-height: 130%;
    text-align: right;
    text-shadow: 0px 0px 12px rgba(45, 45, 120, 0.4);
}

.whiteList__text span {
    color: #ffe100;
    font-weight: bold;
}

.whiteList__right {
    max-width: 370px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whiteList__btnWrap {
    max-width: 220px;
    width: 100%;
}

.whiteList__btn {
    width: 100%;
    border: 2px solid #fff;
    background-color: #5a638a;
    border-radius: 40px;
    padding: 2px;
    cursor: pointer;
    transition: 500ms all;
    display: flex;
}

.whiteList__btnWrap-span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #e2d856;
    border-radius: 40px;
    height: 68px;
    border: 2px solid #fff;
    box-sizing: border-box;
    color: #28286d;
    font-size: 32px;
    font-weight: 600;
    gap: 12px;
}

.socials {
    max-width: 880px;
    width: 100%;
    margin: -50px auto 0;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.social__link {
    flex: 1;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(33 26 59 / 70%);
    border-radius: 20px;
    border: 2px solid #6c6c6c;
    text-decoration: none;
    transition: 500ms all;
    position: relative;
}

.socialLink__icon {
    border-radius: 50%;
    background-color: #171c3a;
    display: flex;
    border: 1px solid #171c3a;
}

.socialLink__icon-img {}

.socialLink__label {
    color: #fff0eb;
    font-size: 16px;
    font-weight: 500;
    transition: 500ms all;
}

.social__link:hover {
    background-color: #fded00;
}

.social__link:hover .socialLink__label {
    color: #171c3a;
}

.mainHome__people {
    position: absolute;
    bottom: 140px;
    left: 0;
}

.experienceSection {
    padding-top: 240px;
    /* margin-top: -145px; */
    position: relative;
    /* background: linear-gradient(to bottom, #000e1f 0%, rgba(0, 18, 39, 1) 20%, rgba(0, 18, 41, 1) 100%); */
    background: linear-gradient(to bottom, rgba(0, 35, 74, 1) 0%, rgba(0, 16, 32, 1) 10%, rgba(0, 14, 31, 1) 100%);
    padding-bottom: 30px;
}

.experience__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.experience__blocks {
    /* max-width: 934px; */
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* z-index: 1; */
    padding: 0 160px;
    box-sizing: border-box;
}

.experience__blocks:after {
    content: "";
    clear: both;
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: calc(100% + 60px);
    background: linear-gradient(to bottom, rgb(0 16 35) 0%, rgba(0, 34, 75, 1) 30%, rgba(0, 34, 75, 1) 70%, rgb(0, 14, 31) 100%);
}

.experienceBlocks__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 3;
    margin-bottom: -17px;
}

.experienceBlocks__square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
}

.experienceBlocks__title {
    color: #f7e90c;
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0px 0px 76px rgba(0, 34, 77, 0.3);
}

.experienceBlocks__content {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.experienceBlock {
    flex: 1;
    background-color: rgb(255 240 71 / 10%);
    border-radius: 16px;
    border: 2px solid #6c6c6c;
    padding: 45px 30px 55px;
}

.experienceBlock__logoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    min-height: 42px;
}

.experienceBlock__logo {}

.experienceBlock__slug {
    color: #ffe100;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

.experienceBlock__textWrap {
    margin-top: 40px;
}

.experienceBlock__text {
    color: #ffffff;
    font-size: 22px;
    line-height: 140%;
    text-shadow: 0px 0px 12px rgba(45, 45, 120, 0.4);
}

.experienceBlock__text b {
    font-weight: bold;
}

.experienceBlocks__btnWrap {
    max-width: 726px;
    width: 100%;
    margin: -40px auto 0;
    position: relative;
    z-index: 1;
}

.whiteList__btn {}

.whiteList__btnWrap-span {}

.whiteList__btnWrap-span strong {
    font-weight: 900;
    text-transform: uppercase;
}

.experienceBlocks__textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 35px;
}

.experienceBlocks__text {
    color: #ffffff;
    font-size: 22px;
    line-height: 140%;
}

.experienceBlocks__text span {
    color: #f7e90a;
}

.experienceBlocks__text b {
    font-weight: bold;
}

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

.aboutGame {
    margin-top: 65px;
    position: relative;
    z-index: 2;
}

.aboutGame__header {
    text-align: center;
    margin-bottom: -17px;
    position: relative;
    z-index: 1;
}

.aboutGameHeader__title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-shadow: 0px 0px 76px rgba(0, 34, 77, 0.3);
}

.aboutGame__content {
    border-radius: 19px;
    border: 1px solid #fcebc9;
    background-color: #111230;
    padding: 40px;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.swiper {}

.aboutGameSwiper {}

.swiper-wrapper {}

.swiper-slide {}

.aboutGame__block {
    display: flex;
    align-items: center;
    gap: 45px;
    min-height: 250px;
}

.aboutGameBlock__imgWrap {}

.aboutGameBlock__img {}

.aboutGameBlock__textWrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aboutGameBlock__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    text-indent: 30px;
}

.aboutGameSwiper__pagination {}

.swiper-pagination-bullet {
    background: #fdfdfd;
    border: none;
    width: 11px;
    height: 11px;
    opacity: initial;
    margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
    background: #f4ef09;
    box-shadow: 0px 0px 20px #fff;
}

.aboutGameSwiper__pagination {
    bottom: -8px !important;
}

.aboutGame__arrows {
    display: flex;
    position: absolute;
    top: 3px;
    width: calc(100% - 40px);
    justify-content: space-between;
    left: 20px;
    z-index: 2;
}

.aboutGame__arrow {
    background: no-repeat;
    cursor: pointer;
    transition: 500ms all;
    border: none;
    padding: 0;
}

.aboutGame__arrow-img {}

.aboutGame__arrow-prev {}

.aboutGame__arrow-next {
    transform: rotate(180deg) translateY(4px);
}

.aboutGame__arrow:hover {
    opacity: 0.8;
}

.aboutGame__arrow:focus {
    outline: none;
}

.aboutGame__square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.gameObjects {
    position: relative;
    z-index: 2;
    margin-top: 55px;
}

.gameObjects__header {
    text-align: center;
    margin-bottom: -15px;
    position: relative;
    z-index: 1;
}

.gameObjectsHeader__title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-shadow: 0px 0px 76px rgba(0, 34, 77, 0.3);
    text-transform: uppercase;
}

.gameObjectsHeader__title span {
    color: #f7e90c;
}

.gameObjects__content {
    display: flex;
    gap: 7px;
}

.gameObjects__link {
    display: flex;
    flex: 1;
    position: relative;
    border: 2px solid #6c6c6c;
    border-radius: 16px;
    overflow: hidden;
}

.gameObjects__link:after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001229;
    opacity: 0;
    transition: 500ms all;
}

.gameObjects__link:hover:after {
    opacity: 0.7;
}

.gameObjects__img {
    transition: 800ms all;
}

.gameObjects__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffe100;
    font-size: 22px;
    font-weight: 900;
    text-shadow: 0px 0px 15px rgba(0, 15, 35, 1);
    z-index: 1;
    text-align: center;
}

.gameObjects__link:hover .gameObjects__img {
    transform: scale(1.1);
}

.roadmapSection {
    background: linear-gradient(to bottom, rgb(0, 14, 31) 0%, rgb(0 18 40) 10%, rgba(9, 21, 100, 1) 70%, rgba(19, 14, 103, 1) 100%);
    padding-top: 80px;
}

.roadmap {
    display: flex;
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    align-items: flex-end;
    background: url(../img/roadmap-bg.webp);
    background-repeat: no-repeat;
    background-position: right -50px center;
}

.roadmap__header {}

.roadmapHeader__title {
    writing-mode: tb-rl;
    transform: rotate(180deg);
    color: #f7e90c;
    font-size: 70px;
    font-weight: 900;
}

.roadmapHeader__title span {
    color: #ffffff;
}

.roadmap__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-sizing: border-box;
    flex: 1;
    position: relative;
}

.roadmap__arrow {
    content: "";
    clear: both;
    position: absolute;
    bottom: 25px;
    left: 20px;
    width: 10px;
    height: 100%;
    background-color: #f7e903;
}

.roadmap__arrow:after {
    content: "";
    clear: both;
    position: absolute;
    top: -12px;
    left: -5px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 12px 10px;
    border-color: transparent transparent #F7E903 transparent;
    transform: rotate(0deg);
}

.roadmap__row {
    padding: 12px;
    background-color: rgb(18 18 51 / 80%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    flex: 1;
}

.roadmap__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.roadmap__icon:after {
    content: "";
    clear: both;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #66686b;
    border-radius: 50%;
    width: 14px;
    height: 14px;
}

.roadmap__text {
    color: #ffffff;
    font-size: 20px;
    line-height: 140%;
}

.roadmap__row.done .roadmap__icon {
    background-color: #faed02;
}

.roadmap__row.done .roadmap__icon:after {
    background-color: #00c202;
}

.roadmap__row.active .roadmap__icon {
    background-color: #00bb04;
}

.roadmap__row.active .roadmap__icon:after {
    background-color: #faed02;
}

.roadmap__square {
    top: -60px;
}

.community {
    margin-top: 55px;
    max-width: 980px;
    width: 100%;
    margin: 55px auto 0;
}

.community__header {
    text-align: center;
    margin-bottom: -18px;
    position: relative;
    z-index: 1;
}

.communityHeader__title {
    color: #f7e90c;
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
}

.community__content {
    background-color: rgb(255 240 71 / 10%);
    border-radius: 16px;
    padding: 40px 25px 25px;
    border: 2px solid #696b6b;
}

.community__links {

    margin-top: 0;
}

.community__textWrap {
    margin-top: 30px;
}

.community__text {
    color: #ffffff;
    font-size: 22px;
    line-height: 140%;
    text-wrap-style: pretty;
    text-shadow: 0px 0px 12px rgba(45, 45, 120, 0.4);
}

.community__text b {
    font-weight: 900;
}

.community__text span {
    color: #f7e802;
}

.subscribe {
    max-width: 1040px;
    width: 100%;
    margin: 35px auto 0;
    display: flex;
    gap: 20px;
    position: relative;
    border: 2px solid #fdecc9;
    border-radius: 19px;
    background-color: #0b0810;
    padding: 50px 45px;
    box-sizing: border-box;
}

.subscribe__square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.subscribe__left {
    flex: 1;
}

.subscribe__title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    line-height: 130%;
}

.subscribe__title span {

    color: #fad700;
}

.subscribe__right {
    flex: 1;
}

.subscribeForm {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.subscribeForm__label {
    color: #fad700;
    font-size: 24px;
    font-weight: 500;
}

.subscribeForm__input {
    border: none;
    background: none;
    font-size: 18px;
    padding: 0 15px;
    height: 40px;
    border-bottom: 1px dashed #fff;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    filter: drop-shadow(0px 0px 8px #fff);
}

.subscribeForm__input:focus {
    outline: none;
}

.subscribeForm__btnWrap {
    display: flex;
    justify-content: flex-end;
}

.subscribeForm__btn {
    max-width: 410px;
    width: 100%;
    box-sizing: border-box;
    height: 45px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: 500ms all;
    background-color: #fcf601;
    color: #0a0a0a;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.subscribeForm__btn:focus {
    outline: none;
}

.subscribeForm__btn span {
    position: relative;
    width: 12px;
    height: 4px;
    background-color: #0a0a0a;
    transition: 500ms all;
}

.subscribeForm__btn span:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    right: -2px;
    width: 7px;
    height: 7px;
    border-right: 3px solid #0a0a0a;
    border-bottom: 3px solid #0a0a0a;
    rotate: -45deg;
    transition: 500ms all;
}

.subscribeForm__btn:hover {
    background-color: #ff0044;
    color: #fff;
}

.subscribeForm__btn:hover span {
    background-color: #fff;
    transform: translateX(10px);
}

.subscribeForm__btn:hover span:after {
    border-color: #fff;
}

.footer {
    background: url(../img/footer-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 140px 0 0px;
    background-color: #130e67;
}

.footer__content {
    display: flex;
    gap: 100px;
}

.footer__info {
    flex: 1.2;
}

.footer__logoWrap {}

.footer__logo {}

.footer__textWrap {
    margin-top: 30px;
}

.footer__text {
    color: #ffffff;
    font-size: 14px;
    line-height: 170%;
    text-indent: 20px;
}

.footer__menu {
    flex: 3;
    display: flex;
    gap: 20px;
}

.footerMenu__col {
    flex: 1;
}

.footerMenu__title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.footerMenu__ulWrap {
    margin-top: 40px;
}

.footerMenu__ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footerMenu__li {}

.footerMenu__link {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: 500ms all;
}

.footerMenu__link:hover {
    color: #fcf601;
}

.copyright {
    padding: 100px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright__text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

.social__square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
    position: absolute;
    left: -5px;
    top: 30px;
}

.burgerMenu {
    display: none;
}

.header__content {
    padding: 30px 0;
}


.adaptiveLang__ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.adaptiveLang__li {
    position: relative;
}

.adaptiveLang__link {
    color: #fff !important;
    font-size: 16px;
}

.adaptiveLang__link.active {
    font-weight: bold;
    color: #ffe100 !important;
}

.adaptiveLang__li:not(:last-of-type):after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    right: -10px;
    height: 100%;
    width: 1px;
    background-color: #fff;
}

.adaptiveHeader {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 30px;
}

.adaptiveLogo {
    padding: 15px 0;
}

.adaptiveLogo__link {
    display: flex;
}

.adaptiveLogo__img {
    max-width: 190px;
}

.mm-navbar, .mm-panel {
    background-color: #01224d!important;
}

.mm-menu a {
    color: #fff!important;
}

.mm-listitem:after {
    border-color: #fff!important;
}

.mm-btn--next:after, .mm-btn--prev:before {
    border-color: #fff!important;
}

.mm-navbar {
    border-color: #fff!important;
}

.whiteList__btnWrap-span2 {
    font-size: 28px;
}

@media(max-width: 1500px) {
    .mainHome__section {
        height: initial;
        padding-bottom: 50px;
    }

    .aboutBlock__logo-icon {
        max-width: 320px;
    }

    .aboutBlock__text {
        font-size: 20px;
    }

    .aboutBlock__textWrap {
        gap: 25px;
    }

    .aboutBlockSlug__title {
        font-size: 26px;
    }

    .aboutBlock {
        padding: 0 45px 45px;
    }

    .experienceBlock__text {
        font-size: 20px;
    }

    .experienceBlocks__text {
        font-size: 20px;
    }

    .aboutGameBlock__text {
        font-size: 16px;
    }

    .aboutGameBlock__textWrap {
        gap: 15px;
    }

    .gameObjects__text {
        font-size: 18px;
    }

    .whiteList__btnWrap-span {
        font-size: 26px;
    }

    .roadmap__text {
        font-size: 18px;
    }

    .community__text {
        font-size: 20px;
    }
}

@media(max-width: 1200px) {
    .download__top {
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .mainHome__imgWrap {
        transform: translateX(0px);
    }

    .aboutSection
    {
        padding: 80px 0 200px;
    }

    .downloadTop__label {
        display: flex;
        align-items: center;
    }

    .downloadTop__title2 {
        margin-left: 15px;
    }

    .download__arrow {
        width: 212px;
    }

    .mainHome__img {
        max-width: 230px;
    }

    .mainHome__wrap {
        margin: 50px auto 0;
    }

    .mainHomeLogo__img {
        max-width: 250px;
    }

    .mainHomeLogo__slug {
        font-size: 11px;
    }

    .mainHomeText__title {
        font-size: 32px;
    }

    .downloadTop__title {
        font-size: 32px;
    }

    .downloadTop__title2 {
        font-size: 32px;
    }

    .downloadTop__btn-icon {
        max-width: 200px;
    }

    .download__bottom {
        justify-content: flex-end;
    }

    .aboutBlock__text {
        font-size: 18px;
    }

    .aboutBlock__textWrap {
        margin-top: 30px;
    }

    .aboutBlockSlug__title {
        font-size: 24px;
    }

    .whiteList__text {
        font-size: 20px;
    }

    .whiteList__content {
        margin-top: 30px;
    }

    .experienceSection {
        margin-top: -195px;
    }

    .experienceBlocks__title {
        font-size: 28px;
    }

    .experience__blocks {
        padding: 0 30px;
    }

    .experienceBlock__text {
        font-size: 18px;
    }

    .experienceBlocks__text {
        font-size: 18px;
    }

    .experienceBlocks__textWrap {
        gap: 15px;
    }

    .aboutGameHeader__title {
        font-size: 28px;
    }

    .gameObjectsHeader__title {
        font-size: 28px;
    }

    .communityHeader__title {
        font-size: 28px;
    }

    .community__text {
        font-size: 18px;
    }
}

@media(max-width: 1024px) {
    .menu {
        display: none;
    }

    .language__wrap {
        display: none;
    }

    .header__btnBlock {
        display: none;
    }

    .burgerMenu {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }

    .burgerMenu__button {
        width: 50px;
        position: relative;
        border: none;
        padding: 0;
        background: transparent;
    }

    .burgerMenu__button:before,
    .burgerMenu__button:after,
    .burgerMenu__button div {
        background: #fff;
        content: "";
        display: block;
        height: 6px;
        border-radius: 3px;
        margin: 7px 0;
        transition: 0.5s;
    }

    .mm-wrapper--opened .burgerMenu__button:before {
        transform: translateY(10px) rotate(135deg);
    }

    .mm-wrapper--opened .burgerMenu__button:after {
        transform: translateY(-12px) rotate(-135deg);
    }

    .mm-wrapper--opened .burgerMenu__button div {
        transform: scale(0);
    }

    .logo__img {
        max-width: 190px;
    }

    .logo {
        justify-content: flex-start;
    }

    .header__content {
        padding: 30px 0;
        align-items: center;
    }

    .mainHome__people {
        display: none;
    }

    .mainHome__symbols {
        display: none;
    }

    .mainHome__section {
        margin-top: -183px;
        padding-top: 200px;
    }

    .download__arrow {
        width: 82px;
    }

    .download__label {
        font-size: 14px;
    }

    .aboutBlock__logo-icon {
        max-width: 240px;
    }

    .aboutBlock__text {
        font-size: 16px;
    }

    .aboutBlock__textWrap {
        gap: 15px;
    }

    .aboutBlock {
        padding: 0 20px 30px;
    }

    .aboutBlockSlug__title {
        font-size: 20px;
    }

    .aboutBlock__slug {
        margin-top: 25px;
    }

    .whiteList__title {
        font-size: 28px;
    }

    .whiteList__subTitle {
        font-size: 16px;
    }

    .whiteList {
        padding: 30px 20px;
    }

    .whiteList__text {
        font-size: 16px;
    }

    .socials {
        margin-top: 40px;
    }

    .whiteList__btnWrap-span {
        height: 50px;
    }

    .whiteList__btnWrap-span {
        font-size: 22px;
    }

    .experienceBlock__text {
        font-size: 15px;
    }

    .experienceBlocks__btnWrap {
        margin-top: -30px;
        width: calc(100% - 30px);
    }

    .experienceBlocks__text {
        font-size: 16px;
    }

    .aboutGame__block {
        flex-direction: column;
        gap: 20px;
    }

    .aboutGameBlock__text {
        font-size: 14px;
    }

    .aboutGame__content {
        padding: 40px 20px 30px;
    }

    .gameObjects__content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gameObjects__link {
        flex: initial;
        max-width: 200px;
        aspect-ratio: 1/1;
    }

    .gameObjects__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .roadmap__text {
        font-size: 14px;
    }

    .roadmap {
        background-size: cover;
    }

    .community__content {
        padding: 20px;
    }

    .subscribe__title {
        font-size: 26px;
    }

    .subscribe {
        padding: 30px 20px;
    }

    .subscribeForm__btn {
        font-size: 20px;
    }

    .subscribeForm__input {
        font-size: 16px;
    }

    .subscribeForm__label {
        font-size: 20px;
    }

    .footer__content {
        flex-direction: column;
        gap: 40px;
    }

    .footer__textWrap {
        margin-top: 20px;
    }

    .copyright {
        margin-top: 40px;
        padding: 40px 0;
        border-top: 1px solid #a1a1a1;
    }

    .container {
        width: calc(100% - 40px);
    }

    #mm-1>.mm-navbar {
        display: none;
    }

    .footer {
        margin-top: -100px;
    }
}

@media(max-width: 768px) {
    .mainHome__right {
        position: absolute;
        right: 0;
    }

    .experienceBlocks__content {
        flex-direction: column;
        gap: 20px;
    }

    .experienceBlocks__title {
        font-size: 22px;
    }

    .experienceBlock__textWrap {
        margin-top: 20px;
    }

    .experienceBlock {
        padding: 45px 20px 30px;
    }

    .mainHome__left {
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }

    .download {
        align-items: flex-start;
    }

    .download__bottom {
        justify-content: flex-start;
    }

    .mainHomeText__line {
        width: 80%;
    }

    .mainHome__wrap {
        margin-top: 70px;
    }

    .aboutBlock__text {
        font-size: 14px;
    }
    
    .aboutBlockSlug__title {
        font-size: 18px;
    }

    .whiteList__content {
        flex-direction: column ;
    }

    .whiteList__text {
        text-align: center;
    }

    .whiteList__textWrap {
        gap: 10px;
    }

    .whiteList {
        position: relative;
        z-index: 1;
        background-position: center;
    }

    .whiteList__content {
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .socials {
        flex-wrap: wrap;
    }

    .social__link {
        flex: 1 1 40%;
    }

    .experienceBlocks__title {
        font-size: 20px;
    }

    .experienceBlocks__header {
        margin-bottom: -12px;
    }

    .experienceBlocks__btnWrap {
        margin-top: -20px;
    }

    .aboutGameHeader__title {
        font-size: 20px;
    }

    .aboutGame__header {
        margin-bottom: -11px;
    }

    .gameObjectsHeader__title {
        font-size: 20px;
    }

    .gameObjects__header {
        margin-bottom: -9px;
    }

    .whiteList__btnWrap-span {
        font-size: 18px;
    }

    .roadmap {
        background-size: 100%;
    }

    .communityHeader__title {
        font-size: 20px;
    }

    .community__header {
        margin-bottom: -11px;
    }

    .community__text {
        font-size: 16px;
    }

    .community__text br {
        display: none;
    }

    .subscribe {
        flex-direction: column;
    }

    .subscribe__title br {
        display: none;
    }

    .subscribe__title {
        font-size: 22px;
    }

    .subscribeForm__btnWrap {
        justify-content: center;
    }
    
    .mainHome__img {
        max-width: 170px;
    }

    .mainHomeText__title.text-right {
        text-align: left;
    }
}

@media(max-width: 576px) {
    .downloadTop__btns {
        flex-direction: column;
    }

    .downloadTop__btn-icon {
        max-width: initial;
    }

    .mainHome__right {
        display: none;
    }

    .mainHomeText__title {
        font-size: 22px;
    }

    .mainHomeText__line {
        margin: 15px auto;
    }

    .downloadTop__label {
        flex-direction: column;
        align-items: flex-start;
    }

    .downloadTop__title {
        font-size: 22px;
    }

    .downloadTop__title2 {
        font-size: 22px;
        margin-left: 0;
    }

    .logo__img {
        max-width: 120px;
    }

    .mainHomeLogo__slug {
        line-height: 140%;
        text-align: center;
        text-wrap-style: pretty;
    }

    .download__arrow {
        display: none;
    }

    .download__top {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .mainHomeText__block {
        justify-content: center;
    }

    .mainHome__textBlocks {
        text-align: center;
    }

    .mainHome__wrap {
        margin-top: 20px;
    }

    .aboutBlock__logo-icon {
        max-width: 170px;
    }

    .aboutBlock__logo {
        margin-top: -30px;
    }

    .aboutBlock__text {
        text-indent: 10px;
    }

    .experience__icon {
        max-width: 300px;
    }

    .footer__menu {
        flex-direction: column;
    }

    .burgerMenu__button {
        width: 40px;
    }

    .burgerMenu__button:before,
    .burgerMenu__button:after,
    .burgerMenu__button div {
        height: 4px;
    }

    .footer__content {
        gap: 30px;
    }

    .footer__menu {
        gap: 30px;
    }

    .footerMenu__ulWrap {
        margin-top: 20px;
    }

    .copyright__text {
        font-size: 14px;
    }

    .copyright {
        margin-top: 30px;
        padding: 30px 0;
    }

    .footerMenu__title {
        font-size: 18px;
    }

    .footerMenu__ul {
        gap: 20px;
    }

    .whiteList__title {
        font-size: 20px;
    }

    .whiteList__subTitle {
        font-size: 14px;
    }

    .whiteList__text {
        font-size: 14px;
    }

    .whiteList__content {
        margin-top: 20px;
    }

    .socialLink__icon-img {
        max-width: 40px;
    }

    .socialLink__label {
        font-size: 14px;
    }

    .experience__blocks {
        padding: 0;
    }

    .experienceBlocks__title {
        font-size: 18px;
        text-align: center;
        line-height: 140%;
    }

    .experienceBlocks__header {
        margin-bottom: -26px;
    }

    .experienceBlock__logo {
        max-width: 140px;
    }

    .experienceBlock__slug {
        font-size: 16px;
    }

    .experienceBlock__text {
        font-size: 14px;
        text-align: justify;
    }

    .experienceBlocks__btnWrap .whiteList__btnWrap-span {
        font-size: 13px;
    }

    .experienceBlocks__btnWrap .whiteList__btnWrap-span {
        gap: 6px;
    }

    .experienceBlocks__text {
        font-size: 14px;
    }

    .aboutGameBlock__img {
        max-width: 110px;
    }

    .aboutGameBlock__text {
        text-indent: 10px;
    }

    .aboutGame__arrows {
        top: -6px;
        width: calc(100% - 20px);
        left: 10px;
    }

    .aboutGameHeader__title {
        font-size: 18px;
    }

    .gameObjectsHeader__title {
        font-size: 18px;
        line-height: 140%;
    }

    .gameObjects__header {
        margin-bottom: -25px;
    }

    .roadmapHeader__title {
        writing-mode: initial;
        transform: initial;
    }

    .roadmap {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .roadmapHeader__title {
        font-size: 30px;
    }

    .roadmap__text {
        font-size: 12px;
        flex: 1;
    }

    .roadmap__row {
        gap: 10px;
    }

    .roadmap__content {
        gap: 15px;
    }

    .roadmap__square {
        top: -140px;
    }

    .community__text {
        font-size: 14px;
    }

    .subscribe__title {
        font-size: 16px;
    }

    .subscribeForm__label {
        font-size: 16px;
    }

    .subscribeForm {
        gap: 15px;
    }

    .subscribe {
        gap: 40px;
    }

    .subscribeForm__input {
        font-size: 14px;
    }

    .subscribeForm__btn {
        font-size: 16px;
    }

    .footer {
        margin-top: 0;
        padding-top: 50px;
        background-size: 260%;
        background-position: center bottom;
    }

    .gameObjects__link {
        max-width: 160px;
    }

    .gameObjects__header {
        margin: 0 40px 10px;
    }

    .download__bottom {
        justify-content: center;
    }

    .whiteList__btn {
        text-align: center;
    }

    .mainHomeText__title.text-right {
        text-align: center;
    }

    .experienceBlocks__btnWrap .whiteList__btnWrap-span3 {
        font-size: 11px;
    }

    .experienceBlocks__textWrap {
        margin: 35px 10px 0;
    }

    .aboutGameHeader__title2 {
        font-size: 15px;
    }
}