:root {
    --color-blue: #1616A7;
    --color-accent-blue: #2E2EDE;
    --color-orange: #FF8B42;
    --color-white: #fff;

    --font-text: 'Montserrat', sans-serif;
    --font-title: 'Montserrat', sans-serif;
}

html,
body{
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-text);
    letter-spacing: 0;
    color: var(--color-white);
    background: var(--color-blue);
}

body.fixed{
    position: fixed;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-title);
    font-weight: 600;
}

h1{
    font-weight: 600;
    font-size: 46px;
    line-height: 54px;
}

h2{
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
}

h3{
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
}

p{
    font-size: 16px;
    line-height: 20px;
}

.large-text{
    font-size: 24px;
    line-height: 30px;
}


.text-large{
    font-size: 20px;
    line-height: 24px;
}

.text-small{
    font-size: 16px;
    line-height: 20px;
}

.text-upper{
    text-transform: uppercase;
}

.underline{
    position: relative;
}
.underline:after{
    content: "";
    position: absolute;
    display: block;
    bottom: -20px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    height: 5px;
    background: var(--color-orange);
}

.color-accent-blue{
    color:var(--color-accent-blue)
}

.color-orange{
    color:var(--color-orange)
}

.color-white{
    color:var(--color-white)
}

a{
    text-decoration: none;
    color: #fff;
    transition: all .3s;
}

a:hover{
    opacity: .8;
}

ul{
    padding: 0;
    margin: 0;
}

.p-relative{
    position: relative;
}

.d-flex{
    display: flex;
}

.d-none{
    display: none;
}

.f-align-center{
    align-items: center;

}

.f-justify-center{
    justify-content: center;
}

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

.f-wrap{
    flex-wrap: wrap;
}

.f-col{
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

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

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

.w-50{
    width: 50%;
}

.w-100{
    width: 100%;
}

.m-0{
    margin: 0;
}

.p-0{
     padding: 0;
 }

.mt-0{
    margin-top: 0;
}

.mt-5{
     margin-top: 5px;
}

.mt-10{
    margin-top: 10px;
}

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

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

.mt-50{
    margin-top: 50px;
}

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

.mb-0{
    margin-bottom: 0;
}

.mb-5{
    margin-bottom: 5px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 30px;
}

.ml-0{
    margin-left: 0;
}

.ml-5{
    margin-left: 5px;
}

.ml-10{
    margin-left: 10px;
}

.ml-20{
    margin-left: 20px;
}

.mr-0{
    margin-right: 0;
}

.mr-5{
    margin-right: 5px;
}

.mr-10{
    margin-right: 10px;
}

.mr-20{
    margin-right: 20px;
}

.mr-50{
    margin-right: 50px;
}

.mr-100{
    margin-right: 100px;
}

section{
    position: relative;
    overflow: hidden;
}

.container{
    width: 1300px;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
}

.container-wide{
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}


.btn{
    height: 44px;
    line-height: 44px;
    border-radius: 44px;
    transition: all .4s;
    display: inline-block;
    padding: 0 30px;
}

.btn-orange{
    background: linear-gradient(90deg, #FF5532 0%, #FF9746 103.43%);
}

.btn:hover{
    opacity: .8;
}

.card{
    background: linear-gradient(180deg, #2E2EDE 11.86%, #1616A7 71.88%);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.loading{
    background: var(--color-blue);
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 999;
}


.loading img{
	border-radius: 100px;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */



/***********************

        HEADER

***********************/
header{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 0;
	z-index: 2;
}

header .logo{
    float: left;
}

header .logo img{
	max-width: 330px;
}

header .nav{
    list-style: none;
    float: right;
    font-weight: 500;
    margin-top: 20px;
}

header .nav li{
    display: inline-block;
    margin-left: 15px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

header .nav li a:not(.btn){
    color: var(--color-white);
    transition: all .3s;
}

header .nav li a:not(.btn):hover{
    opacity: .8;
}

header .nav li.social-links{
    margin-left: 0;
}

header .nav li.social-links a{
    margin-left: 15px;
    position: relative;
    top: 4px;
    display: inline-block;
}

.nav-icon {
    display: none;
    width: 40px;
    height: 45px;
    position: absolute;
    right: 15px;
    top: 48px;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 2;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0;
}

.nav-icon span:nth-child(2) {
    top: 12px;
}

.nav-icon span:nth-child(3) {
    top: 24px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.nav-icon.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
}


/***********************
    SECTION HERO
***********************/

section.hero{
    display: flex;
    align-items: center;
}

.hero .hero-content{
    position: relative;
    z-index: 1;
    width: 40%;
    min-width: 700px;
}

.hero-video{
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
}

.hero-video video{
    height: 100%;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
}


.hero-video-mobile{
	display: none;
}


/***********************
    SECTION CORE
***********************/
.core{
    display: flex;
    align-items: center;
}

.core .container-wide{
    display: flex;
    align-items: center;
}

.core img.core-laptop{
    width: 100%;
}

.core ul li{
    list-style: none;
    padding: 20px;
    background: radial-gradient(314.47% 822.37% at 19.15% -43.11%, #2E2EDE 0%, #1616A7 100%);
    border-radius: 20px;
    margin-top: 20px;
}

.core ul li img{
    width: 50px;
    height: 50px;
}

.chart, .roadmap .text-center{
	background-color: var(--color-blue);
}

.chart video, .bitlaunch video, .roadmap video{
	max-width: 100%;
}

.future video{
	max-width: 600px;
}


.project-feature video, .roadmap video{
	mix-blend-mode: lighten;
}

.project-feature{
	background-color: var(--color-blue);
}



/***********************
  SECTION INTRODUCING
***********************/
.introducing{
    display: flex;
    align-items: center;
}

.introducing .container-wide{
    display: flex;
    align-items: center;
}

#bitlaunch-start{
    display: block;
}

#bitlaunch-loop{
    display: none;
}


/***********************
  SECTION FEATURES
***********************/
.features{
    display: flex;
    align-items: center;
}

.features ul{
    width: 90%;
    margin: 0 5%;
    display: flex;
    list-style: none;
}

.features ul li{
    margin: 1vw;
    position: relative;
    padding-top: 100px;
}

.features ul li img{
    position: absolute;
    top: -70px;
    left: 0;
}

/***********************
       SECTION NFT
***********************/
.nft{
    display: flex;
    align-items: center;
}

.nft .nft-top{
    display: flex;
    align-items: center;
}

img.nft-pool{
    width: 100%;
	max-width: 500px;
}

.nft-lottery{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nft-lottery li{
    list-style: none;
    background: linear-gradient(180deg, #2E2EDE 11.86%, #1616A7 71.88%);
    border-radius: 20px;
    padding: 10px 40px;
}

.nft-guaranteed{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nft-guaranteed li{
    position: relative;
    list-style: none;
    padding: 10px 0;
}

.nft-guaranteed li:after{
    content:"";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: #2E2EDE;
    top: 0;
    right: 0;
}
.nft-guaranteed li:last-child:after{
    display: none;
}

.nft-lottery-cond div{
    padding-right: 25px;
}
.nft-lottery-cond div:nth-child(2){
    padding-left: 25px;
    border-left: 2px solid #2E2EDE;
}

.nft-lottery-cond p{
    margin: 0;
}
.nft-lottery-cond h2{
    margin: 10px 0 0 0;
    font-weight: bold;
}

/***********************
     SECTION PROJECT
***********************/
.project{
    display: flex;
    align-items: center;
}

.project ul{
    width: 80%;
    margin: 0 10%;
    display: flex;
    list-style: none;
}

.project ul li{
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    position: relative;
}

.project ul li:after{
    content:"";
    position: absolute;
    height: 80%;
    top: 20%;
    right: 0;
    width: 1px;
    background: #2E2EDE;
}

.project ul li img{
    width: 250px;
}

.project ul li:last-child:after{
    display: none;
}

.project ul li p{
    margin-top: 50px;
    padding: 0 2vw;
}


/***********************
     SECTION PROJECT
***********************/
.roadmap{
    display: flex;
    align-items: center;
}

.roadmap .container-wide{
    display: flex;
    align-items: center;
}

.roadmap-image{
    width: 90%;
}
.roadmap ul{
    width: 80%;
    margin: 0 10%;
}
.roadmap ul li{
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 20px;
    list-style: none;
    background: radial-gradient(56.22% 37.36% at 48.16% 103.02%, #2E2EDE 0%, #1616A7 100%);
    border-radius: 41px;
}

.roadmap ul li h2 span{
    font-size: 16px;
    color: var(--color-orange);
    position: relative;
    top: -5px;
    margin-left: 20px;
}

.roadmap ul li p{
    line-height: 30px;
    font-size: 18px;
}

.roadmap ul li:after{
    content:"";
    display: block;
    position: absolute;
    height: 100%;
    width: 3px;
    top: 0;
    right: -5%;
    background: linear-gradient(0deg, #1616A7 7.42%, #2E2EDE 52.06%, #1616A7 94.88%);
    z-index: 1;
}

.roadmap ul li:before{
    content:"";
    display: block;
    position: absolute;
    top: 50%;
    right: -5%;
    background: var(--color-orange);
    width: 15px;
    height: 15px;
    border-radius: 37px;
    z-index: 2;
    border: 12px solid #2727CE;
    margin-top: -18px;
    margin-right: -18px;
}


/***********************
     SECTION FUTURE
***********************/
.future{
    display: flex;
    align-items: center;
}

.future .container-wide{
    display: flex;
    align-items: center;
}

.future .container-wide.main-content{
    margin-top: -200px;
}

.future img.future-image{
    width: 80%;
    position: relative;
    top: -50px;
}

footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-top: 0;
}
footer .container-wide{
    justify-content: center;
}

.footer-social{
    text-align: center;
}
.footer-social a{
    margin: 0 10px;
    position: relative;
    top: -10px;
}
.footer-social img{
    width: 35px;
    height: 35px;
    position: relative;
    top: 11px;
    margin-right: 5px;
}

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

.footer-nav{
    margin-top: 40px;
    margin-bottom: 30px;
}
.footer-nav li{
    display: block;
    list-style: none;

}


/***********************
     PAGINATION
***********************/
.onepage-pagination{
    transform: translate(-50%, -50%);
}
.onepage-pagination li a{
    height: 25px;
}

.onepage-pagination li a:before{
    border-radius: 0;
    width: 3px;
    height: 35px;
}
.onepage-pagination li a.active:before{
    width: 3px;
    height: 35px;
    background-color: var(--color-orange);
    border: none;
    left: inherit;
    margin-top: 0;
}