/*reset css*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: normal;
    vertical-align: baseline;
    font-feature-settings: 'locl' 0;
    /*color: #1A1A1F;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


*{
    font-family: 'Pixelify Sans', sans-serif;
    box-sizing: border-box;
}

button,
button:hover,
button:focus{
    outline: none;
}

/*end reset css*/

html {
    scrollbar-width: 6px;
    scrollbar-color: #ffffff #000000;
}

-moz-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar{
    width: 6px;
}
body::-webkit-scrollbar-track{
    background:  #000000;
}

body::-webkit-scrollbar-thumb{
    background: #ffffff;
    height: 94px;
}

body{
    background: #000000;
}


.container{
    max-width: 1320px;
    margin: auto;
}


.h2{
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 24px;
    color: #ffffff;
}


.h3{

}

.h4{
    font-weight: 700;
    font-size: 34px;
    color: #000;
    margin: 0 0 16px;
}

.text{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 20px;
    color: #000000;
}

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

.text-white{
    color: #ffffff;
}

.header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}

.header-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #76553D;
    padding: 15px 28px 15px;
    position: relative;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}

.header-border-bottom {
    position: absolute;
    width: calc(100% - 8px);
    height: 4px;
    left: 4px;
    bottom: -4px;
    background: #5f4532;
}

.header-border-left{
    position: absolute;
    width: 4px;
    height: calc(100% - 4px);
    left: -4px;
    top: 0;
    background: #5f4532;
}

.header-border-left-bottom-dot{
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #5f4532;
}

.header-border-right{
    position: absolute;
    width: 4px;
    height: calc(100% - 4px);
    right: -4px;
    top: 0;
    background: #5f4532;
}

.header-border-right-bottom-dot{
    position: absolute;
    width: 5px;
    height: 5px;
    right: 0;
    bottom: 0;
    background: #5f4532;
}

.header-wrap .logo{
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    width: max-content;
    margin: auto;
    z-index: 1;
}

.header-left-menu-wrap{
    padding: 0 200px 0 0;
}

.header-right-menu-wrap{
    display: flex;
    align-items: center;
    padding: 0 0 0 200px;
    column-gap: 40px;
}

.header-bottom-img{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: auto;
}

.mobile-menu-toggle{
    display: none;
}

.menu-items{
    display: flex;
    column-gap: 34px;
    row-gap: 34px;
}

.menu-link{
    font-family: "Pixelify Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.25);
}

.social-menu-items{
    display: flex;
    column-gap: 24px;
}


.social-mobile-menu{
    display: none;
}


.front{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.front-box{
    width: 100vw;
    min-height: 100%;
    overflow: hidden;
}

.front-video{
    display: block;
    width: 100vw;
    height: auto;
    min-width: 100vw;
    min-height: 100%;
    pointer-events: none;
}

.front-top-line{
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100%;
    height: 300px;
    background-image: url("/img/front/top-line.svg");
    background-size: 1440px;
    z-index: 1;
}

.sound-button{
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    opacity: 1;
    background: center / contain no-repeat url(/img/front/sound-mutted.svg);
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 3;
}

.sound-button.sound{
    background: center / contain no-repeat url(/img/front/sound.svg);
}

.sound-button.hide{
    opacity: 0;
    pointer-events: none;
}

.play-button{
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    background: center / contain no-repeat url(/img/front/play-button.svg);
    cursor: pointer;
    transition: opacity 0.3s ease-out;
    z-index: 3;
}

.play-button.show{
    opacity: 1;
    pointer-events: all;
}

.roadmap{
    position: relative;
    padding: 200px 0;
    background: #53D2FD;
    overflow: hidden;
}


.roadmap .container-wrap{
    position: relative;
    z-index: 2;
}

.roadmap-items{
    display: flex;
    flex-direction: column;
    max-width: 1180px;
    margin: auto;
}

.roadmap-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
}

.roadmap-item__img{
    position: relative;
    transition: all 0.3s ease-out;
}

.roadmap-item:nth-child(odd) .roadmap-item__img{
    animation: horizontal-shaking 3s infinite;
    animation-delay: 1s;
}

.roadmap-item:nth-child(even) .roadmap-item__img{
    animation: vertical-shaking 3s infinite;
    animation-delay: 1s;
}

.roadmap-items-content{
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 47px 38px;
    background: #EAEAEA;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}

.roadmap-item-border-top{
    position: absolute;
    width: calc(100% - 8px);
    height: 4px;
    top: -4px;
    left: 4px;
    background: #ffffff;
}

.roadmap-item-border-bottom{
    position: absolute;
    width: calc(100% - 8px);
    height: 4px;
    bottom: -4px;
    left: 4px;
    background: #C1C1C1;
}


.roadmap-item-border-right{
    position: absolute;
    width: 4px;
    height: calc(100% - 8px);
    right: -4px;
    bottom: 4px;
    background: #ffffff;
}

.roadmap-item-border-right:after{
    content: '';
    position: absolute;
    width: 4px;
    height: 68px;
    bottom: 0;
    background: #C1C1C1;
}

.roadmap-item:nth-child(even) .roadmap-item-border-right{
    left: -4px;
}

.roadmap-item-border-left{
    position: absolute;
    width: 4px;
    height: calc(100% - 34px);
    left: -4px;
    bottom: 4px;
    background: #C1C1C1;
}

.roadmap-item:nth-child(even) .roadmap-item-border-left{
    left: auto;
    right: -4px;
}


.roadmap-item-left-top-dot,
.roadmap-item-right-top-dot,
.roadmap-item-left-bottom-dot,
.roadmap-item-right-bottom-dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffffff;
}

.roadmap-item-left-top-dot{
    left: 0;
    top: 0;
}

.roadmap-item-right-top-dot{
    right: 0;
    top: 0;
}

.roadmap-item-left-bottom-dot{
    left: 0;
    bottom: 0;
    background: #C1C1C1;
}

.roadmap-item-right-bottom-dot{
    right: 0;
    bottom: 0;
    background: #C1C1C1;
}

.roadmap-item-left-img{
    position: absolute;
    left: -17px;
    top: 0;
    width: 17px;
    height: 30px;
    background: right / contain no-repeat url("/img/roadmap/item-left-label.svg");
}


.roadmap-item-right-img{
    position: absolute;
    right: -16px;
    top: 0;
    width: 17px;
    height: 30px;
    background: left / contain no-repeat url("/img/roadmap/item-right-label.svg");
}

.roadmap-background{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}

.solana-fighters{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #53D2FD;
    overflow: hidden;
}


.solana-fighters__img{
    display: block;
    margin: 120px auto 0;
}

.solana-fighters-img-wrap{
    position: relative;
    display: flex;
}

.solana-fighters__img-person{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 125px;
    margin: auto;
}

.solana-fighters__img-video{
    position: absolute;
    left: -530px;
    right: 0;
    bottom: 325px;
    margin: auto;
}

.nft{
    padding: 60px 0 120px;
    background: url("/img/nft/background.png") center / contain no-repeat,  #693F56;
    margin: -2px 0 0;
    overflow: hidden;
}

.nft-heroes-wrap{
    position: relative;
    margin: 10px auto 120px;
}

.nft-heroes-wrap ~ .h2{
    padding-top: 50px;
    margin-top: -50px;
}

.nft-heroes__img{
    max-width: 100%;
    height: auto;
}

.nft-diagram-wrap{
    display: flex;
    position: relative;
    justify-content: center;
    margin: 50px auto 0;
}

.nft-diagram-text{
    position: absolute;
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
    color: #fff;
    height: max-content;
    max-width: 400px;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.25);
}

.nft-diagram__text-1{
    right: 60px;
    top: 50px;
    bottom: auto;
    margin: auto;
    color: #F3514A;
}

.nft-diagram__text-2{
    color: #EFB52A;
    right: 370px;
    top: 132px;
}

.nft-diagram__text-3{
    color: #60D7FF;
    right: 273px;
    top: 215px;
}


.nft-diagram__text-4{
    color: #5CB55D;
    right: 290px;
    bottom: 87px;
}

.nft-heroes__name{
    display: flex;
    position: absolute;
    font-size: 32px;
    line-height: 36px;
    height: max-content;
    color: #3E2332;
    text-transform: uppercase;
}

.nft-heroes__name span:nth-child(even){
    display: block;
    transform: translateY(7px);
}

.nft-heroes__name-1{
    left: 220px;
    top: -80px;
    bottom: 0;
    margin: auto;
}

.nft-heroes__name-2{
    left: 450px;
    top: -80px;
    bottom: 0;
    margin: auto;
}

.nft-heroes__name-3{
    left: 680px;
    top: -110px;
    bottom: 0;
    margin: auto;
}


.nft-heroes__name-4{
    right: 200px;
    top: -80px;
    bottom: 0;
    margin: auto;
}

.token{
    position: relative;
    padding: 250px 0 50px;
    background:  url("/img/token/background.png") center 100px / 1310px 1300px no-repeat,  #546986;
}

.token-content{
    overflow: hidden;
}

.token-top-line{
    position: absolute;
    width: 100%;
    left: 0;
    top: -80px;
    padding: 60px 0 80px;
    background-image: url(/img/token/top-line.png);
    background-size: 1920px;
    z-index: 1;
}

.token-coin-wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto 200px;
}

.token-text-wrap{
    max-width: 610px;
}

.token-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 160px auto;
}

.token-board-wrap{
    position: relative;
}

.token-wrap:nth-child(2){
    position: relative;
    left: 100px;
}

.token-wrap:nth-child(2) .token-board-wrap{
    right: -100px;
}

.token-wrap:last-child{
    position: relative;
    right: 100px;
}

.token-wrap:last-child .token-board-wrap{
    left: -100px;
}

.token__board-title{
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25);
    opacity: 0.8;
    margin: 0 0 12px;
}

.token__board-text-wrap{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 34px 38px 34px 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 27px;
    grid-row-gap: 24px;
}

.token__board-text .h4{
    white-space: nowrap;
}

.link-copy{
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #f6c015;
}

.token__board-label-wrap{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px 38px;
}

.token__board-label-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 8px;
}

.faq{
    padding: 40px 0 160px;
    background: center 270px / 1310px no-repeat url("/img/faq/background.png"), #546986;
}

.faq .text{
    font-size: 24px;
}


/* accordion styles */

.accordion-wrap{
    margin: 64px 0 0;
}

.tabs {
    overflow: hidden;
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 28px;
}

.tab-label {
    display: flex;
    position: relative;
    /*background: #76553D;*/
    background-image: url("/img/faq/background-tabs.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 26px 32px 32px 32px;
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    text-transform: uppercase;
}

.tab-label span{
    padding-right: 60px;
    text-shadow: 6px 6px rgba(0, 0, 0, 0.25);
}

.tab-label::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 24px;
    text-align: center;
    z-index: 1;
    background: center / contain no-repeat url("/img/faq/pointer.svg");
    left: auto;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease-out;
}

.tab-content {
    position: relative;
    font-size: 24px;
    line-height: 140%;
    max-height: 0;
    padding: 0 1em 0 48px;
    color: #ffffff;
    top: 24px;
    transition: all 0.35s;
    background: rgba(0, 0, 0, .25);
}

.tab-content-corners{
    pointer-events: none;
}

.tab-content-corner,
.tab-content-corner:before,
.tab-content-corner:after{
    position: absolute;
    width: 7px;
    height: 7px;
    background: #546986;
}

.tab-content-corner--left-top{
    left: 0;
    top: 0;
}

.tab-content-corner--left-top:before{
    content: '';
    left: 7px;
    top: 0;
}

.tab-content-corner--left-top:after{
    content: '';
    left: 0;
    top: 7px;
}


.tab-content-corner--right-top{
    right: 0;
    top: 0;
}

.tab-content-corner--right-top:before{
    content: '';
    right: 7px;
    top: 0;
}

.tab-content-corner--right-top:after{
    content: '';
    right: 0;
    top: 7px;
}


.tab-content-corner--left-bottom{
    left: 0;
    bottom: 24px;
}

.tab-content-corner--left-bottom:before{
    content: '';
    left: 7px;
    bottom: 0;
}

.tab-content-corner--left-bottom:after{
    content: '';
    left: 0;
    bottom: 7px;
}


.tab-content-corner--right-bottom{
    right: 0;
    bottom: 24px;
}

.tab-content-corner--right-bottom:before{
    content: '';
    right: 7px;
    bottom: 0;
}

.tab-content-corner--right-bottom:after{
    content: '';
    right: 0;
    bottom: 7px;
}

.accordion-field {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion-field:checked + .tab-label::after {
    top: -4px;
    transform: rotate(180deg);
}

.accordion-field:checked ~ .tab-content {
    max-height: 100vh;
    padding: 24px 48px 48px 48px;
}

/* accordion styles */


.footer{
    background: #425269;
}

.footer-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 64px 0 100px;
}

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

.footer-copyright{
    padding: 45px 0 20px;
    background-image: url("/img/footer-bottom-line.png");
    background-size: 1440px;
}

.footer-top-line{
    position: relative;
    top: -40px;
    padding: 45px 0 20px;
    background-image: url("/img/footer-top-line.svg");
    background-size: 1440px;
}

.footer-copyright__text{
    position: relative;
    font-family: "Pixelify Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #000;
    top: 5px;
}

.footer .logo-link-img{
    width: 280px;
    height: auto;
}

.footer-column .menu-items ~ .social-menu-items{
    display: none;
}

@media (min-width: 2560px) {
    .front{
        min-height: auto;
    }
    .front-video{
        width: 1920px;
        height: 1080px;
    }

    .front-overflow-wrap{
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .front-left-side{
        position: absolute;
        left: 0;
        top: 0;
        width: calc((100% - 1920px)/2);
        background: #53D2FD;
        height: 100%;
    }

    .front-left-side:before{
        content: '';
        position: absolute;
        width: 655px;
        height: 100%;
        right: -170px;
        top: 0;
        background: right / cover no-repeat url("/img/front/left-side.png");
    }

    .front-left-side:after{
        content: '';
        position: absolute;
        width: 860px;
        height: 100%;
        right: 0;
        top: 0;
        background: right center / contain no-repeat url("/img/front/left-side-background.png");
    }

    .front-right-side{
        position: absolute;
        right: 0;
        top: 0;
        width: calc((100% - 1920px)/2);
        background: #53D2FD;
        height: 100%;
    }

    .front-right-side:before{
        content: '';
        position: absolute;
        width: 655px;
        height: 100%;
        left: -170px;
        top: 0;
        background: right / cover no-repeat url("/img/front/right-side.png");
    }

    .front-right-side:after{
        content: '';
        position: absolute;
        width: 560px;
        height: 100%;
        left: -100px;
        top: 0;
        background: right center / contain no-repeat url("/img/front/right-side-background.png");
    }
}


@media (min-width: 1200px) and (max-width: 2559px) {
    .front-box{
        position: absolute;
        width: 100%;
        overflow: hidden;
    }
    .front-video{
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


@media (max-width: 1399px) {
    .container{
        max-width: 1160px;
    }

    .token-wrap:nth-child(2){
        left: 200px;
    }

    .token-wrap:last-child{
        right: 200px;
    }

    .nft-heroes__name{
        font-size: 28px;
    }

    .nft-heroes__name-1{
        left: 200px;
    }

    .nft-heroes__name-2{
        left: 390px;
    }

    .nft-heroes__name-3{
        left: 600px;
    }

    .nft-heroes__name-4{
        right: 175px;
    }

    .nft-diagram__img{
        max-width: 100%;
        height: auto;
    }

    .nft-diagram__text-1{
        right: -10px;
    }

    .nft-diagram__text-2{
        right: 300px;
    }

    .nft-diagram__text-3{
        right: 210px;
        top: 210px;
    }

    .nft-diagram__text-4{
        right: 230px;
        bottom: 83px;
    }
}


@media (max-width: 1199px) {
    .front{
        min-height: auto;
    }

    .front-top-line{
        background-size: 1200px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .sound-button,
    .play-button{
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto;
    }

    .container{
        max-width: 960px;
    }

    .menu-items{
        column-gap: 24px;
    }

    .header-right-menu-wrap{
        padding: 0 0 0 120px;
    }

    .roadmap-item{
        margin: 40px 0;
    }

    .roadmap-item__img{
        max-width: 350px;
        height: auto;
    }

    .roadmap-items-content{
        max-width: 550px;
        padding: 37px 28px;
    }

    .roadmap-background{
        width: 3210px;
        height: auto;
    }

    .nft-heroes__name{
        font-size: 24px;
    }

    .nft-heroes__name-1{
        left: 160px;
    }

    .nft-heroes__name-2{
        left: 320px;
    }

    .nft-heroes__name-3{
        left: 490px;
        top: -90px;
    }

    .nft-heroes__name-4{
        right: 140px;
    }

    .nft-diagram-text{
        font-size: 26px;
        max-width: 300px;
    }

    .nft-diagram__text-1{
        top: 45px;
        right: 20px;
    }

    .nft-diagram__text-2{
        right: 255px;
        top: 108px;
    }

    .nft-diagram__text-3{
        right: 180px;
        top: 175px;
    }

    .nft-diagram__text-4{
        right: 190px;
        bottom: 75px;
    }

    .token{
        background-size: 940px;
    }

    .token-coin-wrap{
        margin: 0 auto 100px;
    }

    .token-coin-wrap .token__img{
        width: 290px;
        height: 290px;
        object-fit: contain;
    }

    .token-text-wrap{
        max-width: 580px;
    }

    .token-wrap{
        margin: 80px auto;
    }

    .token-wrap:nth-child(2){
        left: 50px;
    }

    .token-wrap:nth-child(2) .token__img{
        position: relative;
        left: 100px;
        width: 800px;
        height: auto;
    }

    .token-wrap:last-child{
        right: 50px;
    }

    .token-wrap:last-child .token__img{
        width: 800px;
        height: auto;
    }

    .token__board-img{
        width: 440px;
        height: auto;
    }

    .token__board-text-wrap{
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .token__board-title{
        font-size: 18px;
    }

    .token__board-text .h4{
        font-size: 24px;
    }

    .token__board-label-img{
        width: 115px;
        height: 37px;
        object-fit: contain;
        object-position: center;
    }

    .footer-wrap{
        padding: 24px 0 70px;
    }

}


@media (max-width: 991px) {
    .container {
        max-width: 700px;
    }

    .h2{
        font-size: 60px;
    }

    .h4{
        font-size: 24px;
    }

    .text{
        font-size: 15px;
    }

    .mobile-menu-toggle{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        outline: none;
        height: 20px;
        padding: 0;
        z-index: 5;
    }

    .mobile-menu-toggle svg{
        pointer-events: none;
    }

    .mobile-menu-toggle__line-1{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: all 0.3s ease-out;
    }

    .mobile-menu-toggle__line-3{
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transition: all 0.3s ease-out;
    }

    .button-for-contact{
        z-index: 1;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .header:after{
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-toggle svg{
        box-shadow: 4px 2px  3px -1px rgba(0, 0, 0, 0.25);
    }

    .menu-open .mobile-menu-toggle__line-1{
        transform: rotate(45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }


    .menu-open .mobile-menu-toggle__line-3{
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .menu-open .mobile-menu-toggle__line-2{
        visibility: hidden;
    }

    .menu-open .mobile-menu-toggle__line-3{
        box-shadow: 0 4px  4px -1px rgba(0, 0, 0, 0.25);
    }

    .header:after{
        content: '';
        position: absolute;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.5);
        left: 0;
        top: 0;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-out;
    }

    .header-wrap{
        padding: 12px 28px 12px;
    }

    .header-bottom-img{
        bottom: -52px;
    }

    .header-wrap .logo{
        top: 7px;
    }

    .header-left-menu-wrap .menu-items{
        flex-direction: column;
        align-items: center;
        padding: 150px 0 70px;
    }

    .header-left-menu-wrap .menu-items .menu-link{
        font-size: 28px;
    }

    .header-right-menu-wrap {
        padding: 0 0 0 20px;
    }

    .header-right-menu-wrap .social-menu-items{
        display: none;
    }

    .menu-items-wrap {
        display: flex;
        /*justify-content: center;*/
        position: absolute;
        width: calc(100% + 8px);
        left: -4px;
        top: 0;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: height 0.3s ease-out;
        background: #76553D;
        margin: 60px 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .menu-open .menu-items-wrap {
        height: 600px;
        max-height: calc(100vh - 65px);
        overflow: auto;
        padding: 0 0 70px;
    }

    .button-for-contact img{
        position: relative;
        top: 3px;
        width: 114px;
        height: 32px;
    }

    .social-mobile-menu{
        display: block;
        margin: 20px auto 0;
    }


    .roadmap-item__img{
        max-width: 226px;
        height: auto;
    }

    .front-top-line{
        height: 200px;
        background-size: 1000px;
        background-repeat: no-repeat;
        background-position: bottom;
    }


    .roadmap-items-content{
        max-width: 425px;
        padding: 22px 23px;
    }

    .roadmap-background{
        width: 2470px;
    }

    .roadmap-items-content .text{
        margin: 0;
    }

    .solana-fighters .text{
        font-size: 24px;
    }

    .solana-fighters .text br{
        display: none;
    }

    .solana-fighters__img{
        width: 1700px;
        height: auto;
        margin-bottom: -3px;
    }

    .solana-fighters__img-person{
        width: 140px;
        height: 140px;
        bottom: 80px;
    }

    .solana-fighters__img-video{
        width: 265px;
        height: 147px;
        bottom: 170px;
        left: -400px;
    }

    .nft{
        padding: 60px 0 80px;
    }

    .nft-heroes-wrap {
        margin: 10px auto 80px;
    }

    .nft-diagram-text{
        font-size: 18px;
        max-width: 200px;
    }

    .nft-diagram__text-1{
        top: auto;
        left: 33px;
        right: auto;
        bottom: -10px;
    }

    .nft-diagram__text-2{
        top: auto;
        left: 235px;
        right: auto;
        bottom: 27px;
    }

    .nft-diagram__text-3{
        top: auto;
        left: 395px;
        right: auto;
        bottom: 27px;
    }

    .nft-diagram__text-4{
        top: auto;
        bottom: 27px;
        right: 70px;
    }

    .token{
        padding: 250px 0 0;
        background-size: 735px;
        background-position: left 148px;
    }

    .token-coin-wrap .token__img{
        width: 240px;
        height: 240px;
    }

    .token-text-wrap{
        max-width: 385px;
    }

    .token-text-wrap .h2{
        font-size: 52px;
        margin: 0 0 12px;
    }

    .token-wrap:nth-child(2){
        left: 150px;
    }

    .token-wrap:last-child{
        right: 150px;
    }

    .token-text-wrap .text{
        font-size: 18px;
    }

    .token__board-img{
        width: 323px;
        height: 151px;
    }

    .token__board-text-wrap{
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        padding: 15px 18px 15px 28px;
    }

    .token-wrap:nth-child(2){
        left: 0;
    }

    .token-wrap:nth-child(2) .token__img{
        width: 600px;
    }

    .token-wrap:last-child .token__img{
        position: relative;
        left: -80px;
        width: 600px;
    }

    .token-wrap:last-child {
        right: 0;
    }

    .token__board-title{
        font-size: 18px;
    }

    .token__board-text .h4{
        font-size: 16px;
    }

    .token__board-title{
        margin: 0 0 6px;
    }

    .token__board-label-wrap{
        padding: 8px 38px;
    }

    .token__board-label-img{
        width: 75px;
        height: 28px;
    }

    .nft-heroes__name{
        font-size: 18px;
    }

    .nft-heroes__name-1{
        left: 120px;
        top: -50px;
    }

    .nft-heroes__name-2{
        left: 232px;
        top: -50px;
    }

    .nft-heroes__name-3{
        left: 358px;
        top: -60px;
    }

    .nft-heroes__name-4{
        right: 100px;
        top: -60px;
    }

    .faq{
        padding: 40px 0 120px;
        background-size: 900px;
        background-position: center 100px;
    }

    .faq .text br{
        display: none;
    }

    .accordion-wrap {
        margin: 40px 0 0;
    }

    .tab-label{
        font-size: 30px;
        padding: 31px 32px 37px 32px;
    }


    .tab-content{
        font-size: 18px;
    }

    .footer-wrap {
        padding: 16px 0 50px;
    }

    .footer-column .logo ~ .social-menu-items{
        display: none;
    }

    .footer-column .menu-items ~ .social-menu-items{
        display: flex;
    }

    .footer-column{
        flex-direction: column;
        align-items: baseline;
        row-gap: 31px;
    }

    .footer-column .menu-items {
        column-gap: 36px;
    }
}


@media (max-width: 767px) {
    .container {
        max-width: 520px;
    }

    .h2 {
        font-size: 48px;
    }

    .roadmap{
        padding: 120px 0;
    }

    .roadmap-background{
        width: 2470px;
        top: 46%;
        left: 38%;
    }

    .roadmap-item__img{
        width: 180px;
    }

    .roadmap-items-content{
        max-width: 300px;
    }

    .solana-fighters__img{
        width: 1400px;
    }

    .solana-fighters__img-person{
        width: 120px;
        height: 120px;
        bottom: 65px;
    }

    .solana-fighters__img-video{
        width: 225px;
        height: 125px;
        left: -325px;
    }


    .nft-heroes__name{
        font-size: 13px;
    }

    .nft-heroes__name-1{
        left: 85px;
        top: -50px;
    }

    .nft-heroes__name-2{
        left: 175px;
        top: -40px;
    }

    .nft-heroes__name-3{
        left: 268px;
        top: -44px;
    }

    .nft-heroes__name-4{
        right: 77px;
        top: -38px;
    }

    .token-coin-wrap{
        flex-direction: column;
        align-items: center;
    }

    .token-text-wrap {
        max-width: 100%;
        text-align: center;
    }

    .token-coin-wrap .token__img{
        width: 180px;
        height: 180px;
        margin: 0 auto 30px;
    }

    .token-board-wrap{
        z-index: 1;
    }

    .token-wrap:last-child .token-board-wrap {
        left: -150px;
    }

    .token-wrap:nth-child(2) .token-board-wrap{
        right: -150px;
    }

    .token-wrap:nth-child(2) .token__img {
        width: 530px;
    }

    .token-wrap:last-child .token__img{
        width: 530px;
    }

    .nft-diagram-text{
        font-size: 15px;
        max-width: 120px;
    }

    .nft-diagram__text-1{
        top: auto;
        left: 25px;
        right: auto;
        bottom: -12px;
    }

    .nft-diagram__text-2{
        left: 175px;
        bottom: 20px;
    }

    .nft-diagram__text-3{
        bottom: 20px;
        left: 290px;
    }

    .nft-diagram__text-4{
        right: 42px;
        bottom: 20px;
    }

    .tab-label::after{
        width: 36px;
        height: 18px;
    }

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

    .footer-column .menu-items{
        order: 2;
    }

    .footer-column .menu-items ~ .social-menu-items{
        margin: 24px auto 0;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .h2 {
        font-size: 36px;
    }

    .h4 {
        font-size: 16px;
        margin: 0 0 6px;
    }

    .text {
        font-size: 12px;
    }

    .header .container{
        padding: 0;
    }

    .header-wrap {
        padding: 8px 16px 8px;
    }

    .header-bottom-img{
        width: 175px;
        bottom: -40px;
        height: auto;
    }

    .menu-items-wrap{
        margin: 53px 0;
    }

    .menu-open .menu-items-wrap{
        height: 470px;
    }

    .header-left-menu-wrap .menu-items{
        padding: 100px 0 50px;
        column-gap: 24px;
    }

    .header-left-menu-wrap .menu-items .menu-link{
        font-size: 24px;
    }

    .logo-link-img{
        position: relative;
        width: 118px;
        height: 45px;
        top: 7px;
    }

    .front-top-line{
        height: 145px;
        background-size: 670px;
        bottom: -50px;
    }

    .roadmap {
        padding: 100px 0 60px;
    }

    .roadmap-background{
        width: 1690px;
        left: 43%;
    }

    .roadmap-items{
        max-width: 400px;
    }

    .roadmap-item {
        margin: 25px 0;
    }

    .roadmap-item__img {
        width: 120px;
        height: auto;
    }

    .roadmap-items-content {
        width: calc(100vw - 190px);
        padding: 11px;
        max-width: 240px;
    }

    .roadmap-item-left-top-dot,
    .roadmap-item-right-top-dot,
    .roadmap-item-left-bottom-dot,
    .roadmap-item-right-bottom-dot{
        width: 4px;
        height: 4px;
    }

    .roadmap-item-border-top{
        width: calc(100% - 3px);
        height: 3px;
        top: -3px;
        left: 3px;
    }

    .roadmap-item-border-left{
        width: 3px;
        height: calc(100% - 34px);
        left: -3px;
        bottom: 3px;
    }

    .roadmap-item-border-bottom{
        width: calc(100% - 6px);
        height: 3px;
        bottom: -3px;
        left: 3px;
    }

    .roadmap-item-border-right:after{
        width: 3px;
    }

    .roadmap-item-border-right{
        width: 3px;
        height: calc(100% - 6px);
        right: -3px;
        bottom: 3px;
    }

    .roadmap-item:nth-child(even) .roadmap-item-border-left{
        right: -3px;
    }

    .roadmap-item:nth-child(even) .roadmap-item-border-right{
        left: -3px;
    }

    .solana-fighters .h2{
        font-size: 26px;
    }

    .solana-fighters .text{
        font-size: 16px;
    }

    .solana-fighters__img{
        width: 830px;
        margin: 30px auto 0;
    }

    .solana-fighters__img-person{
        width: 76px;
        height: 76px;
        bottom: 39px;
    }

    .solana-fighters__img-video{
        width: 132px;
        height: 72px;
        left: -210px;
        bottom: 90px;
    }

    .nft {
        padding: 40px 0 100px;
        background-size: 860px;
        background-position: left top;
    }

    .nft-heroes-wrap{
        display: flex;
        overflow: auto;
        margin: 10px -32px 20px;
    }

    .nft-heroes-wrap picture{
        display: flex;
    }

    .nft-heroes__img{
        max-width: inherit;
        height: auto;
    }

    .nft-heroes__name{
        font-size: 32px;
        line-height: 36px;
    }

    .nft-heroes__name-1{
        left: 240px;
        top: -80px;
        bottom: 0;
        margin: auto;
    }

    .nft-heroes__name-2{
        left: 490px;
        top: -80px;
        bottom: 0;
        margin: auto;
    }

    .nft-heroes__name-3{
        left: 740px;
        top: -110px;
        bottom: 0;
        margin: auto;
    }


    .nft-heroes__name-4{
        left: 1010px;
        top: -80px;
        bottom: 0;
        margin: auto;
    }

    .nft-heroes__img{
        position: relative;
    }

    .nft-diagram__img{
        display: block;
        width: calc(100% - 16px);
        max-width: 400px;
        margin: auto;
        padding: 0 10px;
    }

    .nft-diagram-wrap{
        max-width: max-content;
    }

   .nft-diagram__text-1{
       left: 45px;
       bottom: 58px;
       line-height: 12px;
    }

    .nft-diagram__text-2{
        left: 205px;
        bottom: 80px;
    }

    .nft-diagram__text-3{
        bottom: 36px;
        left: 45px;
    }

    .nft-diagram__text-4{
        left: 205px;
        bottom: 38px;
    }

    .token{
        padding: 100px 0 0;
        background-size: 100vw;
        background-position: center 50px;
    }

    .token-top-line{
        background-size: 1000px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .token-coin-wrap .token__img{
        width: 120px;
        height: 120px;
    }

    .token-text-wrap .h2{
        font-size: 26px;
    }

    .token-text-wrap .text {
        font-size: 16px;
    }

    .token-coin-wrap{
        margin: 0 auto 40px;
    }

    .token-wrap{
        flex-direction: column;
        row-gap: 40px;
        margin: 20px auto;
    }

    .token-wrap:nth-child(2) .token-board-wrap{
        right: 0;
    }

    .token-wrap:nth-child(2) .token__img{
        width: calc(100vw + 110px);
        left: 0;
    }

    .token-wrap:last-child .token-board-wrap{
        left: 0;
    }

    .token-wrap:last-child .token__img{
        display: none;
        width: 100%;
        left: 0;
    }


    .faq .text{
        font-size: 16px;
    }

    .tab{
        margin-bottom: 18px;
    }

    .tab-content{
        padding: 0 10px 0 10px;
    }

    .accordion-field:checked ~ .tab-content{
        padding: 14px 10px 34px 10px;
    }

    .tab-label{
        font-size: 18px;
        padding: 17px 18px 22px 15px;
    }

    .tab-label::after{
        width: 24px;
        height: 12px;
        right: 20px;
    }

    .tab-label span{
        padding-right: 30px;
    }

    .tab-content-corner,
    .tab-content-corner:before,
    .tab-content-corner:after{
        width: 5px;
        height: 5px;
    }

    .tab-content-corner--left-top:before{
        content: '';
        left: 5px;
        top: 0;
    }

    .tab-content-corner--left-top:after{
        content: '';
        left: 0;
        top: 5px;
    }

    .tab-content-corner--right-top:before{
        content: '';
        right: 5px;
        top: 0;
    }

    .tab-content-corner--right-top:after{
        content: '';
        right: 0;
        top: 5px;
    }

    .tab-content-corner--left-bottom:before {
        content: '';
        left: 5px;
        bottom: 0;
    }

    .tab-content-corner--left-bottom:after {
        content: '';
        left: 0;
        bottom: 5px;
    }

    .tab-content-corner--right-bottom:before {
        content: '';
        right: 5px;
        bottom: 0;
    }

    .tab-content-corner--right-bottom:after {
        content: '';
        right: 0;
        bottom: 5px;
    }

    .footer .logo-link-img{
        width: 164px;
        height: 62px;
    }

    .footer-top-line{
        background-size: 1000px;
        background-repeat: no-repeat;
        padding: 20px 0;
        top: -30px;
    }

    .footer-copyright{
        background-size: 1000px;
        background-repeat: no-repeat;
        padding: 20px 0;
    }

    .footer-wrap{
        padding: 0 0 30px;
    }

    .footer-column{
        row-gap: 23px;
    }
}


@media (max-width: 375px) {
    .button-for-contact img{
        width: 90px;
        height: auto;
    }
    .text{
        font-size: 11px;
    }

    .front-top-line{
        background-size: 560px;
        bottom: -42px;
    }

    .nft-diagram-text{
        font-size: 14px;
    }

    .nft-diagram__img{
        max-width: 290px;
    }

    .nft-diagram__text-2{
        bottom: 60px;
    }

    .nft-diagram__text-2,
    .nft-diagram__text-4{
        left: 170px;
    }

    .nft-diagram__text-3,
    .nft-diagram__text-4{
        bottom: 25px;
    }
}

@media (max-width: 360px) {
    .logo-link-img {
        width: 100px;
        height: auto;
    }

    .header-bottom-img{
        width: 140px;
        height: auto;
        bottom: -32px;
    }

    .header-left-menu-wrap{
        padding: 0 120px 0 0;
    }

    .header-right-menu-wrap{
        padding: 0;
    }

    .menu-items-wrap {
        margin: 48px 0;
    }

    .button-for-contact{
        position: relative;
        right: -10px;
    }

    .roadmap-item__img{
        width: 100px;
    }

    .roadmap-items-content{
        width: calc(100vw - 160px);
    }

    .solana-fighters__img{
        width: 710px;
    }

    .solana-fighters__img-person{
        width: 60px;
        height: 60px;
        bottom: 34px;
    }

    .solana-fighters__img-video{
        width: 112px;
        height: 62px;
        left: -180px;
        bottom: 80px;
    }

    .footer-column .menu-items{
        column-gap: 20px;
    }
}

@keyframes horizontal-shaking{
    0% { transform: translateX(0) }
    25% { transform: translateX(10px) }
    50% { transform: translateX(-10px) }
    75% { transform: translateX(10px) }
    100% { transform: translateX(0) }
}


@keyframes vertical-shaking{
    0% { transform: translateY(0) }
    25% { transform: translateY(10px) }
    50% { transform: translateY(-10px) }
    75% { transform: translateY(10px) }
    100% { transform: translateY(0) }
}