/*======================
   01. Google fonts
========================*/


/* @import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syncopate:wght@400;700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');

/*======================
   02. Basic css
========================*/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,

ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
	/* font-family: 'Bungee', cursive !important; */
	font-family: 'Rubik Dirt', cursive !important;
	
}

h1, p, h2,h3,h4,h5{
	color: #bd1818;
}
span{
	color: #545152;
}
html{
	font-size: 62.2%;
}

body{
	font-size: 1.6rem;
	overflow-x: hidden;
}

section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader3 {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #7D035B;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}

/* Button css------------- */

.btn-overlay{
	display: inline-block;
	position: relative;
	z-index: 1;
}
.btn-overlay::after{
	content: '';
	position: absolute;
	right: -.8rem;
	bottom: -.4rem;
	display: block;
	width: 100%;
	height: 8.7rem;
	background: #F4CE06;
	box-shadow: 0 .6rem 1rem rgba(0, 0, 0, 0.75);
	border-radius: 2rem;
	z-index: -1;
}
.btn{
	width: 40.8rem;
	height: 8.2rem;
	color: #FFFFFF;
	background: linear-gradient(180deg, #DE3855 0%, #7D035B 100%);
	font-size: 2.5rem;
	font-family: 'Pirata One';
	font-style: normal;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2rem;
	border: 0;
	outline: none;
	position: relative;
}
.btn:hover{
	background: linear-gradient(180deg,  #7D035B 20%, #DE3855 100%);
}
.btn .btn-icon{
	margin-right: 1.3rem;
}

.btn:hover{
	color: #fff;
}

/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	position: absolute;
	right: 1.5rem;
	top: -1.5rem;
	display: none;
	z-index: 999;
}
.hamburger-menu span {
	background: #626161;
	width: 3.5rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}
/*ofcanvas-menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 46%;
	background: #fff;
	z-index: -1;
	top: -100%;
	display: none;
	left: 0%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-align: center;
}

.ofcavas-menu.current {
	top: 0;
}

.ofcavas-menu a {
	color: #CA1D9A;
	font-size: 1.8rem;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 400;
	padding: 0;
	transition: .03s;
	margin: 2rem 0;
}

.ofcavas-menu ul {
	margin-top: 7rem;
}


header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	height: 8rem;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: transparent;

}

/*sticky START CSS*/
.sticky-top{
	position: fixed;
}
header.sticky {
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
	background: rgb(54 24 98);
    box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
	transition: 1s;
}
header.sticky .hamburger-menu span{
	background-color: #fff;
}
header.sticky .hamburger-menu span.current{
	background-color: #000;
}
header.sticky #menu li a{
	color: #fff;
	transition: 0.3s;
}

#menu {
	text-align: right;
	margin-right: 3rem;
}

#menu li {
	display: inline-block;
	color: #fff;
	margin-right: 1.3rem;
}

#menu li a {
	/* color: #CA1D9A; */
	color: #fff;
	font-size: 1.8rem;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 400;
	padding: 0;
	transition: .03s;
}

#menu li:last-child a{
	padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover,
header.sticky #menu li a:hover {
	color: #C02857;
}



.nav-btn{
	color: #fff !important;
	width: 19.6rem;
	height: 5.5rem;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	margin: 0 !important;
}
.nav-btn-overlay::after{
	height: 6rem;
}
/*======================
   03. Hero css
========================*/
.hero{
	/* background: url('../img/banner-1.jpg') no-repeat center; */
	background: url('../img/background-test3.jpg') no-repeat center;
	background-size: cover;
	padding-top: 14.9rem;
	position: relative;
}
.hero .title{
	margin-bottom: 16.4rem;
	position: relative;
	z-index: 1;
}
.hero .title::before {
	/* content: url('../img/shape-1.svg'); */
	position: absolute;
	left: 8rem;
	top: -13rem;
	z-index: -1;
}

.strokeMe{

	-webkit-text-stroke: 0.2rem #E13E62;
	color: #F3C506;
}

.yellowLetters{
	color: #FFFFFF;
}
.hero .token {
    font-family: 'Pirata One', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    color: #E5C00C;
    -webkit-text-stroke: .1rem #E13C68;
    transform: rotate(-35deg);
    z-index: 1;
    margin-bottom: -155px;
    margin-left: -45px;
    position: relative;
    z-index: 2;
}
.hero .token::before {
	content: url('../img/shape-2.svg');
	position: absolute;
	left: -7rem;
	top: -10rem;
	z-index: -1;
}
.hero-main-img{
	z-index: 1;
}
.hero-main-img::before{
	content: url('../img/shape-3.svg');
	position: absolute;
	left: 8rem;
	bottom: 0;
	z-index: -1;
}
.hero-main-img::after{
	content: url('../img/shape-4.svg');
	position: absolute;
	right: -15rem;
	bottom: 0;
	z-index: -1;
}
.hero-btn{
	max-width: 50.3rem;
	z-index: 1;
}
/*======================
   04. NFT css
========================*/
.nft{
	background: url('../img/back3.jpg') no-repeat center;
	background-size: cover;
	padding: 3rem 0 14.2rem;
	position: relative;
	z-index: 1;
}
.seeNtf-title{
	margin: 3.5rem 0 5.8rem;
}
/* 
@media only screen and (max-width: 600px) {
	.seeNtf-title{
		margin: 0;
	}
  } */
.seeNft .token {
    font-family: 'Pirata One', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    color: #E5C00C;
    -webkit-text-stroke: .1rem #E13C68;
    transform: rotate(-35deg);
    margin-bottom: -149px;
    position: relative;
    z-index: 2;
    margin-left: -46px;
}
.seeNft .token::before {
	content: url('../img/bubble.svg');
	position: absolute;
	left: -20rem;
	top: 7rem;
	z-index: -1;
}
.seeNft-main-img{
	padding-top: 20%;
	z-index: 1;
}

@media only screen and (max-width: 700px) {
	.seeNft-main-img{
		padding-top: 0;
		z-index: 1;
	}
  }
.seeNft-main-img::before{
	content: url('../img/bluemonster.svg');
	position: absolute;
	left: 0rem;
	bottom: 0;
	z-index: -1;
}
.explore-btn-overlay{
	margin-bottom: 2.5rem;
}
.explore-btn-overlay::before{
	content: url('../img/shape-9.svg');
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 8rem;
	z-index: -1;
}



.nftDragus-title{
	margin: 14rem 0 5.2rem;
	z-index: 1;
}
.video{
	cursor: pointer;
	z-index: 1;
}
.popup-youtube{
		background-color: transparent;
	border: none;
	outline: none;
}
/*======================
   05. Road Map css
========================*/
.last3-section{
	background: url('../img/back6.jpg') no-repeat center;
	padding-top: 6rem;
	background-size: cover;
	position: relative;
	margin-top: -3rem;
}
.roadMap-title{
	padding: 5.2rem 0 6.3rem;
}
.features .title{
	z-index: 1;
}
.features .title h3{
	width: 21.3rem;
	height: 6.3rem;
	color: #FFFFFF;
	background: #000000;
	font-size: 2.2rem;
	font-family: 'Pirata One';
	font-style: normal;
	font-weight: 400;
	border-radius: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: -0.02em;
	position: relative;
}
.features .content{
	max-width: 48.5rem;
	font-family: 'Permanent Marker';
	color: rgba(0, 0, 0, 0.9);
	font-style: normal;
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1.1;
	text-align: center;
	padding: 6rem 1.5rem ;
	transform: rotate(-4deg);
}
.features-1{
	margin-bottom: 23.8rem;
}
.features-2{
	margin-bottom: 10.8rem;
}
.features-1 .content{
	background-color: #FFD600;
}
.features-1 .title h3::before {
	content: url('../img/yellowmonster.svg');
	position: absolute;
	left: 0;
	top: -18rem;
	z-index: -1;
}
.features-1 .title h3::after {
	content: '';
	position: absolute;
	right: -21.5rem;
	top: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	width: 15rem;
	height: .5rem;
	z-index: 1;
	clip-path: polygon(97% 0, 100% 46%, 97% 100%, 0 100%, 0 0);
}
.features-2 .content{
	color: #000000;
	background-color: #2BFFFF;
}
.features-2 .title h3::after {
	content: url('../img/redmonster.svg');
	position: absolute;
	right: 0;
	top: -25rem;
	z-index: -1;
}
.features-2 .title h3::before {
	content: '';
	position: absolute;
	left: -7rem;
	top: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	width: 15rem;
	height: .5rem;
	z-index: 1;
	clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 0 50%);
}
.features-3 .content{
	color: #000000;
	background-color: #FFD600;
}
.features-3 .title h3::before {
	content: url('../img/bluemonster.svg');
	position: absolute;
	left: 0;
	top: -20rem;
	z-index: -120;
}
.features-3 .title h3::after {
	content: '';
	position: absolute;
	right: -21.5rem;
	top: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	width: 15rem;
	height: .5rem;
	z-index: 1;
	clip-path: polygon(97% 0, 100% 46%, 97% 100%, 0 100%, 0 0);
}
/*======================
   06. Time css
========================*/
.time{
	padding: 28.1rem 0 25.5rem;
}
.time-title{
	margin-bottom: 6.1rem;
	z-index: 1;
}
.time-content{
	margin-bottom: 6rem;
}
.time-content .days h1,
.time-content .hours h1,
.time-content .minutes h1,
.time .seconds h1{
	font-family: 'Pirata One';
	font-size: 8rem;
	font-style: normal;
	font-weight: 500;
	text-align: center;
	color: #E5C20A;
	-webkit-text-stroke: .5rem #E13C68;
}
.time .days p,
.time .hours p,
.time .minutes p,
.time .seconds p{
	font-size: 2.4rem;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: #E5C20A;
	-webkit-text-stroke: .1rem #E13C68;
}
.time .days,
.time .hours,
.time .minutes{
	position: relative;
}
.time .days::after, .time .hours::after, .time .minutes::after {
	content: ':';
	position: absolute;
	right: -70%;
	bottom: 15%;
	font-family: 'Pirata One';
	font-size: 12rem;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	color: #E5C20A;
	-webkit-text-stroke: .5rem #E13C68;
}
/*======================
   07. Footer css
========================*/
.footer{
	padding: 3.8rem 0 10rem;
	background: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
	border-top: 1px solid #DE3C61;
}
.footer .subscribe{
	margin-bottom: 6rem;
}
.footer .subscribe p{
	color: #FFFFFF;
	font-size: 2.4rem;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 700;
	align-items: center;
}
.footer .subscribe .email {
	width: 58.8rem;
	height: 8.8rem;
	padding-left: 2rem;
	background: #FFFFFF;
	border-radius: 3.8rem;
	border: none;
}
.footer .subscribe .email::placeholder{
	color: rgba(0, 0, 0, 0.4);
	font-size: 1.8rem;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 400;
}
.footer .subscribe .submit{
	width: 16.8rem;
	height: 8.8rem;
	background: #AC1C59;
	border-radius: 3.7REM;
	font-family: 'Philosopher';
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	color: #FFFFFF;
	transition: .3s;
	border: none;
	outline: none !important;
}
.footer .subscribe .submit:hover{
	background-color: #8C1849;
}
.submit-overlay{
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-left: -10rem;
}
.submit-overlay::after{
	content: '';
	position: absolute;
	right: -.8rem;
	bottom: -.4rem;
	display: block;
	width: 100%;
	height: 8.7rem;
	background: #F4CE06;
	box-shadow: 0 .6rem 1rem rgba(0, 0, 0, 0.75);
	border-radius:  3.7rem;
	z-index: -1;
	transition: .3s;
}

.v-center {
	display: flex;
	align-items: center;
 }

 