html,
body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
html {
	scroll-behavior: smooth;
  }
h1,
h2 {
	margin-top: 0;
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	color: #fff;
	font-size: 50px;
}

h3 {
	font-size: 28px;
	color: #84cdfa;
}

a {
	text-decoration: none;
	color: #fff;
}

html {
	box-sizing: border-box;
}

* {
	box-sizing: border-box;
}


/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 20px;
	margin-top: 0;
}

code,
kbd,
tt,
var {
	font-family: 'Poppins', sans-serif;
}

abbr,
acronym {
	border-bottom: 1px dotted #fff;
	cursor: help;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

/* Links
--------------------------------------------- */
a {
	color: #fff;

}

a:visited {
	color: #fff;
	opacity: 0.9;
}

a:hover,
a:focus,
a:active {
	color: #fff;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

.container {
	max-width: 1620px;
	margin: 0 auto;
	padding: 0 25px;
	position: relative;
    z-index: 1;
}
.container-fluid {
	max-width: 100%;
	margin: 0 auto;
}

.section-title {
	font-weight: 800;
	font-size: 100px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
}

.banner,
.about,
.roadmap,
.artist {
    overflow: hidden;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	z-index: 9999;
    transition: all 0.3s ease;
}

#masthead.sticky {
    background: #4372ab67;
}

#masthead .main-navigation ul {
    padding: 0;
    margin: 0;
    display: flex;
    column-gap: 20px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}


#masthead .container .nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    transition: all 0.3s ease;
}

#masthead .main-navigation .current-menu-item a:after,
#masthead .main-navigation ul a:hover:after {
    content: '';
    height: 7px;
    width: 20px;
    background: #fff;
    display: block;
    position: absolute;
    border-radius: 20px;
    left: calc(50% - 10px);
    bottom: -20px;
}

#masthead .main-navigation ul a {
    position: relative;
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Banner 
--------------------------------------------------------------*/
.banner {
	padding: 100px 0 50px;
	position: relative;
}
.banner-image {
    text-align: center;
    margin: 0 0 80px 0;
}
.banner-image img {
	max-width: 50%;
    position: relative;
    z-index: 9;
	animation: float 3s infinite ease-in-out;

}
.banner .banner-date .d_border {
    color: #fff;
    font-size: 20px;
    border: 2px solid #fff;
    font-weight: 800;
    font-family: 'Poppins';
    padding: 10px 50px;
    border-radius: 38px;
    max-width: 485px;
    margin: 0 auto;
    text-transform: uppercase;
}

.banner .banner-date {
    text-align: center;
}
@keyframes float {
	from {
	  transform: translate(0%, 0%);
   }
	65% {
	  transform: translate(0%, -10%);
   }
	to {
	  transform: translate(0%, 0%);
   }
  }
/*--------------------------------------------------------------
# About 
--------------------------------------------------------------*/
.about {
	padding: 100px 0;
	position: relative;
}
.about .row {
	display: flex;
	flex-wrap: wrap;
}
.about .row .about-content {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 40px;
	padding-right: 15px;
	box-sizing: border-box;
}
.about .row .about-video {
	flex: 0 0 100%;
	width: 100%;
}

.about .social-link .social-items {
    padding: 0;
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    align-items: flex-end;
    max-width: 540px;
}

.about .social-link .social-items a {
    display: block;
}
.about .social-link .social-items a img {
	transition: all 0.3s ease;
}

.social-link .social-items a img:hover {
	filter: drop-shadow(2px 4px 12px #feb8bb);
}

.about .about-video .video-wrapper {
    position: relative;
}

.about .about-video .video-thumbnail {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about .about-video .play-button {
    display: inline-block;
    position: absolute;
	z-index: 999;
	cursor: pointer;
    max-width: 125px;
}

.about .about-video .video-wrapper {
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .row .about-content .title h1 {
    font-weight: 800;
    color: #feb8bb;
    text-transform: uppercase;
}


.about .row .about-content .description {
    color: #899dd3;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.about .about-video .video-wrapper iframe {
    height: 320px;
}

.about .about-video .video-wrapper.videoplay .play-button,
.about .about-video .video-wrapper.videoplay .video-thumbnail{
    display: none;
}

.about .star.star1,
.roadmap .star.star1 {
	left: 3%;
}

.about .star.star8 {
	top: 0;
}
/*--------------------------------------------------------------
# Artist 
--------------------------------------------------------------*/
.artist {
	overflow: hidden;
}

.artist .artist-box {
    max-width: 575px;
    background: #84cdfa;
    text-align: center;
    margin: 0 auto;
    border-radius: 40px;
    padding: 25px;
    padding-bottom: 50px;
    padding-top: 0;
    box-sizing: border-box;
	position: relative;
    z-index: 9
}
.artist .artist-box img {
    max-width: 40%;
}
.artist .box-icon {
    display: block;
    font-size: 45px;
    font-weight: 800;
    line-height: 45px;
    margin: 50px 0;
}

.artist .artist-box img {
    margin-top: -30px;
}

.artist .box-content {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 460px;
    margin: 0 auto;
}

#artist .container {
    position: relative;
}

#artist .cloud {
    position: absolute;
    top: 20%;
    right: 0;
    opacity: 1;
    animation-name: cloud;
    animation-timing-function: linear;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    content: "";
}

#artist .cloud.cloud1 {
	top: 25%;
}
#artist .cloud.cloud2 {
  margin-right: 300px;
  animation-duration: 12s;
  top: 40%;
}
#artist .cloud.cloud3 {
  margin-right: 600px;
  animation-duration: 20s;
  top: 75%;
}
#artist .cloud.cloud4 {
  margin-right: 600px;
  top: 20%;
  animation-duration: 14s;
}
#artist .cloud.cloud5 {
  margin-right: 300px;
  top: 70%;
  animation-duration: 22s;
}

#artist .cloud.cloud6 {
  margin-right: 300px;
  top: 80%;
  animation-duration: 16s;
}
#artist .cloud.cloud6 {
  margin-right: 300px;
  top: 76%;
  animation-duration: 18s;
}
#artist .cloud.cloud6 {
  margin-right: 300px;
  top: 90%;
  animation-duration: 24s;
}


/*--------------------------------------------------------------
# Roadmap 
--------------------------------------------------------------*/
.roadmap {
	padding: 100px 0;
	position: relative;
}

.roadmap .steps .step-items .step-item .step-number {
	color: #ffee5a;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}

.roadmap .steps .step-items .step-item {
    display: flex;
    margin-bottom: 10px;
}

.roadmap .steps .step-items .step-content h3 {
    margin: 0;
    padding: 0;
    line-height: 1;
    text-transform: uppercase;
	width: 100%;
}

.roadmap .steps .step-items .step-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 20px;
    margin-left: 10px;
}

.roadmap .row {
    display: flex;
	flex-wrap: wrap;
}

.roadmap .row .steps {
    flex: 0 0 100%;
	width: 100%;
}
.roadmap-image-wrapper {
	flex: 0 0 100%;
	width: 100%;
}

.roadmap-image-wrapper {
    display: flex;
    align-items: center;
	justify-content: center;
}

.roadmap-image-wrapper .roadmap-image {
    text-align: center;
}
.roadmap-image-wrapper .roadmap-image img {
    max-width: 80%;
}


.page-not-found {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

}
.page-not-found h1 {
	color: rgb(255, 27, 58);
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/
#colophon {
	padding: 90px 0;
}
#colophon .site-info {
    text-align: center;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}

#colophon .social-link .social-items {
    display: flex;
    justify-content: center;
	align-items: flex-end;
    column-gap: 50px;
    padding: 0;
    margin-bottom: 50px;
}

#page:after {
    content: '';
    display: block;
    height: 125vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(transparent, #85b3ff);
}

#page {
    position: relative;
}
/*--------------------------------------------------------------
# Animation 
--------------------------------------------------------------*/
@keyframes cloud {
	0% {
	  opacity: 0.1;
	  transform: translateX(300px);
   }
	10% {
	  opacity: 0.7;
   }
	90% {
	  opacity: 0;
   }
	100% {
	  opacity: 0;
	  transform: translateX(-1000px);
   }
  
   
  }

@keyframes stoneRotate {
	0% {
	  transform: rotate(0deg);
   }
	100% {
	  transform: rotate(360deg);
   }
  
   
  }
  
  @keyframes stoneFlyR2L {
	0% {
	  opacity: 1;
	  right: 0;
	  transform: scale(1);
	  bottom: 80%;
   }
	10% {
	  opacity: 0.8;
   }
	90% {
	  opacity: 0.4;
   }
	100% {
	  opacity: 0;
	  right: 50%;
	 transform: scale(0);
	 bottom: 0;
   }
  
   
  }
  
  
  @keyframes stoneFlyL2R {
	0% {
	  opacity: 1;
	  left: 0;
	  transform: scale(1);
	  bottom: 0;
   }
	10% {
	  opacity: 0.8;
   }
	90% {
	  opacity: 0.4;
   }
	100% {
	  opacity: 0;
	  left: 50%;
	 transform: scale(0);
	 bottom: 100%;
   }
  
   
  }
  
  .stones .star,
  .stones .stone img {
	   animation-name: stoneRotate;
	  animation-timing-function: linear;
	  animation-direction: forwards;
	  animation-iteration-count: infinite;
	  animation-duration: 8s;
  }
  
  .stones .stone {
	display: inline-block; 
	animation-name: stoneFlyR2L;
	animation-timing-function: linear;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-duration: 8s;
	position:absolute;
	right: 0;
	top: 0;
    z-index: 0;
}

.stones .stone.stone1 {
	animation-name: stoneFlyR2L;
	top: 20%;
	animation-duration: 10s;
}
.stones .stone.stone2 {
	animation-name: stoneFlyR2L;
	top: 30%;
	animation-duration: 15s;
}
.stones .stone.stone3 {
	animation-name: stoneFlyR2L;
	top: 40%;
	animation-duration: 17s;
}
.stones .stone.stone4 {
	animation-name: stoneFlyR2L;
	top: 50%;
	animation-duration: 13s;
}
.stones .stone.stone5 {
	animation-name: stoneFlyR2L;
	top: 10%;
	animation-duration: 19s;
}
.stones .stone.stone6 {
	animation-name: stoneFlyL2R;
	top: 20%;
	animation-duration: 14s;
}
.stones .stone.stone7 {
	animation-name: stoneFlyL2R;
	top: 30%;
	animation-duration: 20s;
}
.stones .stone.stone8 {
	animation-name: stoneFlyL2R;
	top: 40%;
	animation-duration: 15s;
}
.stones .stone.stone9 {
	animation-name: stoneFlyL2R;
	top: 50%;
	animation-duration: 20s;
}
.stones .stone.stone10 {
	animation-name: stoneFlyL2R;
	top: 60%;
	animation-duration: 16s;
}

.star {
    position: absolute;
}
.star.star1 {
    top: 50%;
	left: 10%;
	animation-duration: 15s;
	max-width: 45px;
}
.star.star2 {
    top: 68%;
	left: 54%;
	animation-duration: 25s;
	max-width: 39px;
}
.star.star3 {
    top: 64%;
	left: 83%;
	animation-duration: 10s;
	max-width: 30px;
}
.star.star4 {
    top: 67%;
	left: 30%;
	animation-duration: 14s;
	max-width: 34px;
}
.star.star5 {
    top: 30%;
	left: 70%;
	animation-duration: 16s;
	max-width: 56px;
}
.star.star6 {
    top: 90%;
	left: 76%;
	animation-duration: 18s;
	max-width: 37px;
}
.star.star7 {
    top: 1%;
	left: 32%;
	animation-duration: 17s;
	max-width: 54px;
}
.star.star8 {
    top: 10%;
	left: 88%;
	animation-duration: 12s;
	max-width: auto;
}


/*--------------------------------------------------------------
# Responsive 
--------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
	h2,
	.about .row .about-content .title h1 {
		font-size: 60px;
	}
	h3 {
		font-size: 30px;
	}
	#masthead .container .nav-wrapper {
		padding: 30px 0;
	}
    #masthead.sticky .container .nav-wrapper {
		padding: 20px 0;
	}

	#masthead .main-navigation ul {
		column-gap: 50px;
		font-size: 20px;
	}

	.banner {
		padding: 150px 0 70px;
	}

	.roadmap .steps .step-items .step-item .step-number {
		font-size: 55px;
	}


	.roadmap .steps .step-items .step-item {
		margin-bottom: 35px;
	}
	.roadmap .steps .step-items .step-content {
		margin-top: 25px;
		margin-left: 10px;
	}

	.section-title {
		margin-bottom: 50px;
	}
	
    .about .about-video .play-button {
        max-width: 130px;
    }
    .about .about-video .video-wrapper iframe {
        height: 350px;
    }
	
	
}
@media only screen and (min-width: 992px) {
	h2,
	.about .row .about-content .title h1 {
		font-size: 70px;
	}
	h3 {
		font-size: 35px;
	}
	#masthead .container .nav-wrapper {
		padding: 40px 0;
	}
    #masthead.sticky .container .nav-wrapper {
		padding: 30px 0;
	}

	
	#masthead .main-navigation ul {
		column-gap: 60px;
	}
	.banner {
		padding: 180px 0 80px;
	}

	.banner-image {
		margin: 0 0 120px 0;
	}

	.roadmap .steps .step-items .step-item .step-number {
		font-size: 75px;
	}

	.roadmap .row .steps {
		flex: 0 0 55%;
		width: 55%;
	}
	.roadmap-image-wrapper {
		flex: 0 0 45%;
		width: 45%;
	}

	.banner .banner-date .d_border {
		font-size: 22px;
	}
	.roadmap .steps .step-items .step-item {
		margin-bottom: 40px;
	}
	.roadmap .steps .step-items .step-content {
		margin-top: 30px;
	}
	.section-title {
		margin-bottom: 60px;
	}
    .about .about-video .play-button {
        max-width: 140px;
    }
    .about .about-video .video-wrapper iframe {
        height: 380px;
    }

	.about .social-link .social-items,
	#colophon .social-link .social-items {
		column-gap: 65px;
	}
	
}
@media only screen and (min-width: 1024px) {
	.about .row .about-content .title h1,
	h2 {
		font-size: 80px;
	}
	h3 {
		font-size: 45px;
	}

	#masthead .container .nav-wrapper {
		padding: 50px 0;
	}
    #masthead.sticky .container .nav-wrapper {
		padding: 35px 0;
	}
	
	#masthead .main-navigation ul {
		column-gap: 70px;
	}

	.banner {
		padding: 200px 0 90px;
	}

	.banner-image {
		margin: 0 0 130px 0;
	}

	.about .row .about-content {
		flex: 0 0 45%;
		width: 45%;
		margin-bottom: 0;
	}
	.about .row .about-video {
		flex: 0 0 55%;
		width: 55%;
	}

	.about .row .about-content .description {
		font-size: 24px;
		line-height: 36px;
	}

	.roadmap .steps .step-items .step-item .step-number {
		font-size: 90px;
	}

	.banner .banner-date .d_border {
		font-size: 28px;
		border: 3px solid #fff;
	}
	.roadmap .steps .step-items .step-item {
		margin-bottom: 40px;
	}
	.roadmap .steps .step-items .step-content {
		margin-top: 40px;
		margin-left: 15px;
	}
	.section-title {
		margin-bottom: 70px;
	}
    .about .about-video .play-button {
        max-width: 100%;
    }
    .about .about-video .video-wrapper iframe {
        height: 400px;
    }
	
}
@media only screen and (min-width: 1366px) {
	.about .row .about-content .title h1,
	h2 {
		font-size: 100px;
	}
	h3 {
		font-size: 50px;
	}

	#masthead .container .nav-wrapper {
		padding: 65px 0;
	}
    #masthead.sticky .container .nav-wrapper {
		padding: 45px 0;
	}
	#masthead .main-navigation ul {
		column-gap: 80px;
	}

	.banner {
		padding: 220px 0 95px;
	}

	.roadmap .steps .step-items .step-item .step-number {
		font-size: 110px;
	}

	.banner .banner-date .d_border {
		font-size: 28px;
		border: 3px solid #fff;
	}
	.roadmap .steps .step-items .step-item {
		margin-bottom: 45px;
	}
	.roadmap .steps .step-items .step-content {
		margin-top: 60px;
		margin-left: 15px;
	}
	.section-title {
		margin-bottom: 75px;
	}
    .about .about-video .video-wrapper iframe {
        height: 480px;
    }
	.artist .box-content {
		font-size: 28px;
	}
	.artist .box-icon {
		font-size: 55px;
	}
	
}


@media only screen and (max-width: 768px) {
	#colophon .site-info {
		font-size: 14px;
    	margin-top: 20px;
	}
	
	.about, .roadmap, #colophon {
		padding: 40px 0;
	}

	.step-items {
		padding: 0;
	}
	
	.section-title {
		font-size: 83px;
		margin-bottom: 15px;
	}
	
	#colophon .social-link .social-items {
		margin-bottom: 10px;
	}
	
	#colophon .social-link .social-items img, .about .social-link .social-items a img {
		max-width: 35px;
	}
	#colophon .social-link .social-items .instagram, .about .social-link .social-items a .instagram {
		max-width: 30px;
	}
	.artist .box-content {
		font-size: 18px;
	}
	
	.artist .box-icon {
		margin: 25px 0;
	}
	
	.banner {
		padding: 60px 0 10px;
	}
	.about .social-link .social-items {
		justify-content: center;
		margin: 30px 0 0;
	}
	
	.about .about-video .play-button {
		max-width: 90px;
	}
	
	.about .row .about-content .description {
		color: #fff;
	}

	.stones .stone {
		max-width: 50px;
	}

	.stones .star {
		max-width: 20px;
	}

	.roadmap-image-wrapper,
	.banner .stones .stone,
	.banner .star.star5,
	.banner .star.star7,
	.banner .star.star8, 
	.star.star2,
	.star.star4,
	.star.star6 {
		display: none;
	}
	.about .about-video .video-wrapper {
		border-radius: 0;
	}

	.about .about-video .video-wrapper iframe {
		height: 200px;
	}
	.step-item .roadmap-image {
		text-align: center;
	}
	.step-item .roadmap-image img {
		max-width: 50%;
	}
}

@media only screen and (min-width: 1440px) {

	#masthead .container .nav-wrapper {
		padding: 75px 0;
	}
    #masthead.sticky .container .nav-wrapper {
		padding: 50px 0;
	}
	.banner {
		padding: 250px 0 100px;
	}

	.banner .banner-date .d_border {
		font-size: 30px;
		border: 4px solid #fff;
	}
	.roadmap .steps .step-items .step-item {
		margin-bottom: 50px;
	}
	.roadmap .steps .step-items .step-content {
		margin-top: 60px;
		margin-left: 15px;
	}
	.section-title {
		margin-bottom: 80px;
	}
    .about .about-video .video-wrapper iframe {
        height: 520px;
    }
}
	
@media only screen and (max-width: 575px) {
	.star.star5 {
		display: none;
	}
	
	.banner {
		padding: 90px 0 10px;
	}
	
	.banner-image {
		margin-bottom: 35px;
	}
}
