/* Default */
@font-face {
    font-family: 'Futurium';
    src: url('../assets/libraries/futurium/verdana.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*::-webkit-scrollbar {
    display: none;
}

*{
    scrollbar-width: none;
}

body{
    position: relative;
    background-color: #000;
    font-family: 'Futurium', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, div, button {
    margin: 0;
    font-family: 'Futurium', sans-serif;
}

a{
    text-decoration: none;
}

button{
    outline: none;
    box-shadow: none;
    border: none;
}

.t-center{
    text-align: center !important;
}

.flex {
    display: flex;
}

.j-start {
    justify-content: flex-start
}

.j-center {
    justify-content: center
}

.j-end {
    justify-content: flex-end
}

.j-between {
    justify-content: space-between;
}

.j-around {
    justify-content: space-around;
}

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

.a-center {
    align-items: center;
}

.a-end {
    align-items: flex-end;
}

.column {
    flex-direction: column;
}

.hidden {
    display: none;
}

.visible {
    display: block !important;
}

.w-100 {
    width: 100%;
}

.pl-16{
    padding-left: 16px;
}

.block{ 
    display: block;
}

.divide_icon{
    font-size: 48px;
    margin: 0 20px;
}

.hidden_icon{
    display: none;
    color: white;
}

.hidden-comming_soon{
    display: none;
}

.main-page{
    z-index: 10;
    padding: 20px;
}

.main .menu{
    margin: 0 30px;
}

.mainBody .menu .swiper{
    margin-bottom: 45px;
}

.menu .swiper{
    display: flex;
    width: 100%; 
    margin-bottom: 45px;
    border: 1px solid #CC3AF7;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    overflow: scroll;
    transition: 0.4s ease-in-out;
    backdrop-filter: blur(5px);
}

.menu .swiper{
    overflow: hidden;
}

.menu .swiper .swiper-slide-active{
    padding-left: 20px;
    border-left: 1px solid #CC3AF7;
}

.menu .swiper::before,  .menu .swiper-button-next::before{
    content: ''; /* Required for the pseudo-element */
    position: absolute; /* Position the pseudo-element */
    top: 0; /* Align to the top of the element */
    right: 0; /* Align to the right of the element */
    bottom: 0; /* Align to the bottom of the element */
    left: 0; /* Align to the left of the element */
    z-index: -1; /* Place the pseudo-element behind the main element */
    border: 1px solid; /* Solid border */
    border-image: linear-gradient(90deg, #AF0AEF, #E86AFF); /* Gradient border */
    border-image-slice: 1; /* Ensure the gradient covers the entire border */
    border-radius: inherit;
}

.swiper-slide{
    padding: 18px 0;
    line-height: 34px;
    color: white;
    text-transform: uppercase;
}

.swiper-slide:hover{
    color: #E86AFF;
    transition: .2s ease-in-out;
}

.menu .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}

.menu .swiper-button-next {
    background: #00000040;
    padding: 0 16px;
    margin: 0;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url('../assets/imgs/Arrow.svg'); 
    background-position: center;
    background-size: unset; 
    background-repeat: no-repeat;
}

.active-page, .active-page a{
    color: #E86AFF !important;
}

/* toggle */
#toggle{
    display: none;
    width: 24px;
    padding: 22px 11px;
    border: 1px solid #AF0AEF;
    border-radius: 12px;
  }
  #toggleGaming {
    width: 24px;
    padding: 22px 11px;
    border-radius: 12px;
    background: #FFFFFF1F;
    backdrop-filter: blur(5px);
  }
  
  #toggle span:after,
  #toggle span:before,#toggleGaming span:after,
  #toggleGaming span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
  }
  #toggle span:after, #toggleGaming span:after{
    top: 9px;
  }
  #toggle span, #toggleGaming span {
    position: relative;
    display: block;
  }
  
  #toggle span,
  #toggle span:after,
  #toggle span:before, #toggleGaming span,
  #toggleGaming span:after,
  #toggleGaming span:before {
    width: 100%;
    height: 1px;
    background-color: #7D7D7D;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  
  /* on activation */
  #toggle.on span {
    background-color: transparent;
  }
  #toggle.on span:before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #toggle.on span:after {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  #toggle.on + #menu {
    display: block;
  }
  
  /* menu appearance*/
  #menu {
    position: absolute;
    top: 12%;
    left: 0;
    z-index: 2;
    color: #999;
    width: 100%;
    height: 85vh; /* Adjust this value as needed */
    margin: auto;
    text-align: center;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    overflow: scroll;
    transition: 0.4s ease-in-out;
    backdrop-filter: blur(4px);
}

  #menu ul{
    list-style: none;
    height: 100%;
    padding: 0;
  }

/* header main page */
.header{
    padding: 0 30px;
}

.header-title{
    color: #f5f5f5;
    font-weight: 400;
    font-size: 	2.125rem;
    text-transform: uppercase;
}

.header-btn{
    font-size: 14px;
    display: block;
    color: white;
    background-color: #AF0AEF;
    padding: 8px 64px 8px 16px;
    border-radius: 100px;
}

/* main page */
main{
    position: relative;
}

.main .main-welcome_logo{
    max-height: 300px;
    height: 300px;
}

.main .main-welcome_logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.mainBody .main-welcome_title, .miningBody .main-welcome_title, .cryptoBody .main-welcome_title, .cryptoXRBody .main-welcome_title{
    background-image: linear-gradient(90deg, #E86AFF, #FFFFFF);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mainBody .header-logo{
    height: 80px;
}

.main-welcome_title{
    color: white;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.35em;
}

.main-welcome_subtitle{
    text-align: start;
    margin: 33px 0 30px 0;
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-welcome_img{
    margin: 22px 0;
}

/* miningXr */
.pageBody{
    min-height: 100vh;
    padding: 0 43px;
}

.mainBody{
    min-height: 100vh;
    background: url('../assets/imgs/waves.png') bottom no-repeat,
    url('../assets/imgs/Ellipse1.png') center no-repeat,
    url('../assets/imgs/Ellipse2.png') center no-repeat,
    #000;
    background-size: 100% auto;
}

.mainBody .main{
    height: 100%;
}

.mainBody footer{
    padding: 0 43px;
}

.miningBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/miningBg.png') center no-repeat;
    background-size: cover;
}

.miningBody .main-welcome_title{
    letter-spacing: 0.1em;
}

.pageBody header{
    padding: 16px 0;
}

.main-welcome_stats h1{
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: 0.25em;
}

.main-welcome_stats h5{
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    letter-spacing: 0.1em;
}

.container_list {
    padding: 40px;
    backdrop-filter: blur(3px);
    color: #fff;
    position: relative;
    max-width: 750px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
    border-radius: 8px;
}
.container_list:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(232, 106, 255, 1);
    clip-path: polygon(0 0, 65% 0, 85% 100%, 0 100%);
    border-radius: 8px;
}
.container_list .title {
    z-index: 9;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 20px;
    left: 25px;
    transform: rotate(180deg);
}
.container_list .device {
    display: flex;
    color: #fff;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 80px;
    padding-bottom: 30px;
}
.container_list .device svg{
    padding-right: 20px;
}
.container_list .device span {
    font-size: 32px;
    z-index: 99;
    color: white;
    letter-spacing: 0.1em;
}
.no_pd{
    padding-bottom: 0 !important;
}
.elem{
    top: -12%;
    position: absolute;
    right: 24%;
    width: 1px;
    transform: rotate(-32deg);
    height: 132%;
    background: rgba(232, 106, 255, 1);
}

.item::before {
    content: 'x';
    font-size: 24px;
    color: white;
    margin-right: 10px;
}

/* comming soon */
.comming-soon{
    margin: 40px 0;
}
.comming-soon h1{
    width: 28%;
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.comming-soon hr{
    width: 100%;
}

.countdown{
    margin-left: 20px;
    color: white;
    gap: 40px;
    text-transform: uppercase;
}

.countdown span{
    font-size: 32px;
    line-height: 55px;
}

.countdown p{
    color: #fff;
    font-size: 14px;
}

/* Tourism */
.tourismBody{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 88.29%),
    url('../assets/imgs/tourismBg.jpeg') center no-repeat;
    background-size: cover;
}

/* ClueXr */
.clueBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/clueBg.jpeg') center no-repeat;
    background-size: cover;
}

/* VoteXr */
.voteBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/voteBg.jpeg') center no-repeat;
    background-size: cover;
}

/* TootXr */
.tootBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/tootBg.jpeg') center no-repeat;
    background-size: cover;
}

/* FestXr */
.festBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/festBg.jpeg') center no-repeat;
    background-size: cover;
}

/* RealEstateXr */
.estateBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/estateBg.jpeg') center no-repeat;
    background-size: cover;
}

.links{
    width: 40%;
    padding: 18px 36px;
    border-radius: 20px;
    background: #F5F5F524;
}

.link{
    color: rgba(245, 245, 245, 1);
    text-transform: uppercase;
}

.tourismBody .main-welcome .links{
    display: none;
}

/* CryptoCafe */
.cafeBody{
    background-color: #000;
}

.cafeBody .main-welcome .main-welcome_title{
    letter-spacing: 0.1em;
}

.cryptocafe-img{
    height: 406px;
}

.cryptocafe-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* WorldSummit */
.worldSummitBody{
    background: #000 url('../assets/imgs/handFrame.png') no-repeat right center / auto;
}

.worldSummitBody .main-welcome_stats{
    letter-spacing: 0.1em;
    line-height: 38px;
    padding-top: 38px;
}

.worldSummitBody .main-welcome_stats h1{
    letter-spacing: 0.1em;
    line-height: 38px;
}

.visit-site{
    display: block;
    color: white;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 40px;
    background-color: #002FA9;
    border: 1px solid #E86AFF;
    line-height: 34px;
    letter-spacing: 0.1em;
}

/* CryptoXR */
.left_btn{
    padding: 23px 26px;
    position: absolute;
    left: -1px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    border-left: none;
    border-top: 1px solid rgba(175, 10, 239, 1);
    border-right: 1px solid rgba(175, 10, 239, 1);
    background: black;
    border-bottom: 1px solid rgba(175, 10, 239, 1);
    top: 48.5%;
}
.right_btn{
    padding: 23px 26px;
    position: absolute;
    right: -1px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    border-right: none;
    border-top: 1px solid rgba(175, 10, 239, 1);
    border-left: 1px solid rgba(175, 10, 239, 1);
    border-bottom: 1px solid rgba(175, 10, 239, 1);
    background: black;
    top: 48.5%;
}
.header-right_menu{
    color: white;
    list-style: none;
}
.header-right_menu li{
    margin-right: 12px
}
.header-right_menu a{
    color: white;
}
.cryptoBody, .cryptoXRBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/cryptoBg.jpeg') center no-repeat;
    background-size: cover;
}
.cryptoBody .main-welcome_title{
    padding-bottom: 20px;
    letter-spacing: 0.1em;
}
.cryptoBody .main-welcome_title, .cryptoXRBody .main-welcome_title, .blockChainBody .main-welcome_title, .investBody .main-welcome_title{
    line-height: 50px;
    letter-spacing: 0.1em;
}
.cryptoXRBody main{
    border: 1px solid rgba(175, 10, 239, 1);
    border-radius: 20px;
    margin-bottom: 30px;
    /* background: url('../assets/imgs/Subtract.png') center no-repeat; */
    background-size: contain;
}
.cryptoXRBody .main-welcome{
    padding: 84px 152px;
}
.uppercase{
    text-transform:uppercase;
}
.cryptoXRBody .uppercase{
    color: white;
    font-size: 48px;
    padding: 62px 0 10px;
}
.cryptoXRBody h5{
    text-transform:uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: left;
    color: white;
    padding-bottom: 62px;
}
.xrb{
    padding-top: 90px;
}
.cryptoXRBody .main-welcome p{
    color: white;
    padding-top: 30px;
    padding-bottom: 62px;
    font-size: 20px;
}

.coins-section .main-welcome_subtitle{
    padding-left: 30px;
}

.coins-section .main-welcome_subtitle h6{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
}

.coins-section .main-welcome_subtitle h5{
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
}

.coin-1, .coin-2{
    height: 240px;
}

.coin img{
    height: 100%;
}

/* GamingXR */
.gamingBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/gamingBg.jpeg') center no-repeat;
    background-size: cover;
}

.gamingPage .countdown{
    width: auto;
    padding: 18px 0;
}

.gamingPage .comming-soon h1{
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid white;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: 0.25em;
    text-align: left;
}

.gamingPage .gaming-list{
    gap: 10px;
    margin-bottom: 20px;
}

.gamingBody .gaming-list .game{
    height: 140px;
    width: 100%;
    border-radius: 10px;
}

.hunter{
    background: #00000033 url('../assets/imgs/hunterBg.png') center no-repeat;
    background-size: cover;
}
.tortuga{
    background: #00000033 url('../assets/imgs/tortugaBg.png') center no-repeat;
    background-size: cover;
}
.tortugaBody .main-welcome_subtitle{
    text-align: center;
    width: 85%;
}
.tortugaBody .comming-soon{
    margin: 0;
}
.landOfKarabakh{
    background: #00000033 url('../assets/imgs/lokBg.png') center no-repeat;
    background-size: cover;
}
.warOfKarabakh{
    background: #00000033 url('../assets/imgs/wokBg.png') center no-repeat;
    background-size: cover;
}

.hunterBody{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.075) 29.84%, rgba(0, 0, 0, 0.75) 100%),
    url('../assets/imgs/hunterBgBig.jpeg') center no-repeat;
    background-size: cover;
}

.gamingPage .main-welcome_title{
    color: white;
    -webkit-text-fill-color: unset;
    font-size: 34px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.1em;
}

.gamingPage .main-welcome_subtitle{
    margin: 8px 0 16px;
}

.tortugaBody{
    background: url('../assets/imgs/tortugaRectangle.png') center no-repeat,
    linear-gradient(180deg, #000000 29.84%, #C11BDC 100%);
    background-size: cover;
}

.tortuga-img{
    max-width: 338px;
    max-height: 338px;
}

.tortuga-img img{
    width: 100%;
    height: 100%;
}

.wokBody{
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.1875) 17.9%, rgba(0, 0, 0, 0.75) 76.59%),
    url('../assets/imgs/wokBgBig.jpeg') center no-repeat;
    background-size: cover;
}

.lokBody{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%),url('../assets/imgs/wokBigBg.jpeg') center no-repeat;
    background-size: cover;
}

.lokBody .countdown{
    margin: 0;
}

.mobile-img{
    display: none;
}

.gaming_menu{
    margin-bottom: 20px;
}

.games_menu{
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 8px 48px;
    background: #00000040;
    backdrop-filter: blur(3px);
    border-radius: 20px;
    gap: 50px;
}

.games_menu.show {
    display: flex;
    opacity: 1;
}

.back_button{
    display: none;
    color: white;
    background: #FFFFFF24;
    padding: 12px 46px;
    border-radius: 10px;
    font-size: 10px;
}

.hide{
    display: none;
}

.tortugaBody .gaming-logo img{
    width: 244px;
    height: 144px;
}

.no_mobile{
    display: none;
}

/* Responsive */
@media (min-width: 992px){
    .coins-section{
        align-items: flex-end;
    }
    #menu{
        display: none !important;
    }
    .hunterBody .gaming-logo img{
        width: 230px;
        height: 140px;
    }
    .hunterBody .comming-soon{
        margin: 40px 0 20px 0;
    }
}
@media (max-width: 992px){
    .countdown span{
        line-height: normal;
    }
    .miningBody .main-welcome{
        display: flex;
        flex-direction: column;
    }
    .cryptoXRBody .header-right_menu, .blockChainBody .header-right_menu, .investBody .header-right_menu{
        display: none;
    }
    .no_mobile{
        display: flex !important;
    }
    .coin-1, .coin-2{
        height: 100%;
    }
    .pageBody{
        justify-content: normal;
    }
    main{
        /* padding: 20px 0 0 0; */
        height: 100%;
    }
    .header-right{
        display: none;
    }
    .menu .swiper{
        width: auto;
    }
    .menu .swiper-wrapper,.menu .swiper-button-next{
        display: none;
    }
    .pageBody{
        height: auto;
    }
    .pageBody header{
        padding: 16px 0;
    }
    .miningBody, .estateBody, .tourismBody, .clueBody, .voteBody, .worldSummitBody, .tootBody, .festBody, .hunterBody, .lokBody, .wokBody{
        height: 100vh;
    }
    .lokBody main, .wokBody main, .hunterBody main{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .worldSummitBody{
        background: #000 url('../assets/imgs/handFrame.png') no-repeat left center / auto;
    }
    .cafeBody, .cryptoBody{
        height: 100vh;
    }
    .gamingBody{
        overflow-y: scroll;
    }
    .gamingPage .main-welcome_title{
        font-size: 16px;
    }
    #toggleGaming{
        display: none;
    }
    .back_button{
        display: block;
    }
    .header-btn{
        padding: 8px 36px 8px 16px;
    }
    #toggle{
        display: block;
    }
    .header-logo{
        width: 69px;
    }
    .header-title{
        font-size: 14px;
    }
    .menu{
        display: flex;
        justify-content: center;
    }
    .menu .swiper{
        display: inline-flex;
        margin: 0 auto 20px;
        justify-content: center;
    }
    .main{
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .main-page{
        padding: 20px;
    }
    .main-welcome_title{
        font-size: 16px;
    }
    .main-welcome_subtitle{
        font-size: 12px;
        margin: 10px 0 30px;
    }
    .comming-soon{
        flex-direction: column;
        align-items: flex-start;
    }
    .countdown{
        gap: 16px;
    }
    .comming-soon h1, .countdown, .countdown span, .countdown p{
        width: 100%;
        font-size: 14px;
        margin-left: 0;
    }
    .main-welcome_stats .stat_title, .main-welcome_stats .stat_subtitle{
        font-size: 14px;
    }
    .miningBody .header-logo{
        width: 31px;
    }
    .pageBody{
        padding: 0 12px;
    }
    .divide_icon{
        display: none;
    }
    .miningBody .divide_icon{
        display: block;
    }
    .main-welcome_stats{
        margin-top: 20px;
    }
    .main-welcome_stats h1{
        font-size: 12px !important;
        line-height:normal;
    }
    .main-section{
        flex-direction: column;
        align-items: flex-start;
    }
    .gaming-list{
        flex-direction: column;
    }
    .links{
        width: 75%;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: normal;
        gap: 5px;
        padding: 16px;
        margin-top: 10px;
    }
    .hidden_icon{
        display: block;
    }
    .tourismBody .header .links{
        display: none;
    }
    .tourismBody .main-welcome .links{
        display: flex;
    }
    .worldSummitBody .main-welcome_stats{
        flex-direction: column;
        align-items: start;
    }
    .worldSummitBody .main-welcome_stats h1{
        line-height: normal;
    }
    .visit-site{
        font-size: 12px;
        margin-top: 8px;
        padding: 0 28px;
    }
    .cryptocafe-section{
        flex-direction: column-reverse;
    }
    .cryptocafe-img{
        margin-top: 10px;
    }
    .cryptocafe-img, .cryptocafe-img img, .gaming-logo img{
        width: 100%;
    }
    .hunterBody .header-left, .tortugaBody .header-left, .lokBody .header-left, .wokBody .header-left{
        display: none;
    }
    .gaming-logo{
        max-width: 171px;
        margin: auto;
    }
    .tortugaBody .gaming-logo{
        max-width: none;
    }
    .hunterBody .main-welcome_title, .tortugaBody .main-welcome_title{
        text-align: center;
        font-size: 18px;
        line-height: normal;
    }
    .hunterBody .main-welcome_subtitle, .tortugaBody .main-welcome_subtitle{
        text-align: center;
        font-size: 12px;
    }
    .tortugaBody .main-welcome_title{
        padding: 20px 0 0 0;
    }
    .mobile-img{
        display: block !important;
    }
    .tortuga-img{
        display: none;
    }
    .tortugaBody .main-welcome{
        justify-content: center;
    }
    .tortugaBody .comming-soon, .lokBody .comming-soon, .wokBody .comming-soon{
        margin: 0;
        align-items: center;
    }
    .lokBody .comming-soon h1, .wokBody .comming-soon h1{
        display: flex;
        justify-content: center;
    }
    .lokBody .main-welcome, .wokBody .main-welcome{
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    .lokBody .main-left, .wokBody .main-left{
        width: 186px;
    }
    .lokBody .main-left img, .wokBody .main-left img{
        width: 100%;
        height: 100%;
    }
    .lokBody .main-welcome_title, .wokBody .main-welcome_title{
        font-size: 18px;
        text-align: center;
        line-height: normal;
        padding-top: 18px;
    }
    .lokBody .main-welcome_subtitle, .wokBody .main-welcome_subtitle{
        font-size: 12px;
        text-align: center;
    }
    .hunterBody .header-right, .tortugaBody .header-right, .lokBody .header-right, .wokBody .header-right{
        display: none;
    }
    .coins-section{
        flex-direction: column-reverse;
    }
    .coins-section .main-welcome_subtitle{
        display: flex;
        flex-direction: column-reverse !important;
    }
    .cryptoBody .header-right_menu{
        display: none;
    }
    .cryptoBody .main-welcome .header-right_menu{
        font-size: 12px;
        padding-left: 0;
    }
    .swiper-slide{
        padding: 18px 0 0;
    }
    .estateBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/estateBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .tourismBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/tourismBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .clueBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/clueBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .voteBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/voteBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .tootBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/tootBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .festBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/festBg.jpeg') center no-repeat;
        background-size: cover;
    }
    .hunterBody footer, .tortugaBody footer, .lokBody footer, .wokBody footer{
        display: none;
    }
   .mainBody .main .main-welcome_logo{
    height: 100%;
   }
   .main .main-welcome_logo{
       max-width: 270px;
   }
   .coin img{
        /* max-width: 90vw; */
        object-fit: contain;
        width: 100%;
        height: 165px;
   }
    .cryptoXRBody .main-welcome{
        padding: 31px 25px;
    }   
    .cryptoXRBody main{
        padding: 0;
    }
    .cryptoXRBody .main-welcome p{
        font-size: 12px;
        padding-top: 0;
    }
    .cryptoXRBody .main-welcome .cryptoXR_img{
        max-width: 181px;
        margin: auto;
        display: flex;
        padding-top: 90px;
    }
    .blockChainBody .main-welcome img{
        width: 50%;
    }
    .blockChainBody .main-welcome .blockchain_img{
        padding-top: 60px;
    }
    .blockChainBody .main-welcome h1{
        font-size: 18px;
        padding-top: 18px;
    }
    .blockChainBody .main-welcome h5{
        display: none;
    }
    .blockchain_column{
        flex-direction: column;
    }
    .cryptoXRBody .header-right_menu{
        margin-top: 42px;
        font-size: 12px;
        justify-content: center;
        padding: 0;
    }
    .investBody .xrb img{
        width: 100%;
    }
    .investBody .xrb{
        padding-top: 150px;
    }
    .mobile_column{
        flex-direction: column;
    }
    .mobile_column .visit-site{
        width: fit-content;
    }
    .container_list{
        width: 400px;
        margin-top: 24px;
        padding: 24px;
        backdrop-filter: blur(0px)
    }
    .elem {
        top: -12%;
        position: absolute;
        right: 24%;
        width: 1px;
        transform: rotate(-21deg);
        height: 132%;
        background: rgba(232, 106, 255, 1);
    }
    .container_list .device span{
        font-size: 16px;
    }
    .container_list .title{
        font-size: 12px;
        padding-bottom: 48px;
        position: relative;
        writing-mode: lr;
        transform: rotate(0);
        top: 0;
        left: 0;
    }
    .container_list .device{
        padding-left: 0;
        padding-bottom: 10px;
    }
    .coins-section .main-welcome_subtitle{
        padding-left: 0;
    }
}
@media(max-width: 576px){
    .cryptoBody{
        background: black;
    }
    .cryptoBody .header-right_menu a, .cryptoXRBody .header-right_menu a, .blockChainBody .header-right_menu a, .investBody .header-right_menu a{
        font-size: 12px;
    }
    /* .cryptoXRBody{
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.875) 17.9%, rgba(0, 0, 0, 0.45) 76.59%),
        url('../assets/imgs/cryptoXrMobile.jpeg') center no-repeat;
        background-size: cover;
    } */
    .left_btn{
        padding: 14px 6px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: rgb(0 0 0 / 80%);
    }
    .left_btn svg{
        width: 20px;
    }
    .right_btn{
        padding: 14px 6px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        background-color: rgb(0 0 0 / 80%);
    }
    .right_btn svg{
        width: 20px;
    }
    .cafeBody .main-welcome {
        width: 100%;
    }
    .mainBody .header{
        padding: 0;
    }
    .mainBody .main .main-welcome_img{
        height: 74px;
        margin-bottom: 0;
    }
    .mainBody .main .main-welcome_img img{
        width: 100%;
        height: 100%
    }
    .main-welcome_subtitle{
        margin: 10px 0 0;
        padding-left: 0 !important;
    }
    .main-welcome_subtitle h5{
        font-size: 14px !important;
    }
    .coin img{
        height: 165px;
    }
    .link{
        font-size: 12px;
    }
    .comming-soon{
        margin: 20px 0;
    }
    /* .cryptocafe-img img{
        height: 120px;
        object-fit: contain;
    } */
    .cryptocafe-img{
        height: 100%;
    }
    footer{
        margin-bottom: 40px;
    }
    .cryptocafe-text{
        /* padding: 50px 0 0 0; */
        flex-direction: column-reverse;
    }
    .coins-section .main-welcome_subtitle h6{
        font-size: 12px;
    }
}
@media(max-height: 600px){
    .cryptocafe-img{
        top: 55% !important;
    }
}
@media(min-height: 600px) and (max-width: 768px){
    main{
        padding-top: 70px;
    }
    .tortugaBody main{
        padding: 0;
    }
    .cryptocafe-section{
        padding: 50px 0 0 0;
    }
}
@media(max-width: 475px){
    .cryptocafe-img{
        position: absolute;
        top: 40%;
        z-index: -1;
    }
    .cryptocafe-img img{
        width: 100%;
        height: 100%;
    }
    .hidden-comming_soon{
        width: 100%;
        display: flex !important;
    }
    .cafeBody .comming-soon{
        display: none;
    }
    footer{
        margin-bottom: 45px;
    }
}
@media(max-width: 425px){
    .container_list{
        width: 320px;
    }
    .elem {
        right: 24%;
        transform: rotate(-17deg);
    }
}
