
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    outline: none;
    font-family: "Nunito", sans-serif;
}

footer {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
	will-change: opacity, transform;
}

footer.visible {
	opacity: 1;
	transform: translateY(0);
}



body {
	background: #063C37;
}
.container{
    width: 100%;
    max-width: 1280px;
}
/*** Header ***/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 12vh;
	background: linear-gradient(to top right, #8dde2a, #007166);
	display: flex;
	align-items: center;
	padding: 0 2%;
	z-index: 1000;
}
header .logo{
	position: relative;
}

.logo {
	height: 8vh;
	margin: 1vh 0;
}
.btn {
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	font-size: 1rem;
	padding: 0.6em 1.5em;
	border: none;
	cursor: pointer;
	color: white;
}

	.btn:hover {
		color: #8fd23c;
	}

.login-btn {
	background: transparent;
}

	.login-btn:hover {
		color: #001d26;
	}

.join-btn::before {
	content: 'JOIN NOW' !important;
}

.join-btn::after {
	content: '';
}

.join-btn {
	background-color: #001d26;
	border: none;
}
.header-buttons {
	display: flex;
	gap: 1em;
	margin-left: auto;
}

@media (max-width:576px) {
header .header-btn a {
	height: 35px;
	font-size: 14px;
	margin: 5px 1px;
}
	
}
/*** Hero Section ***/
.hero-section {
	position: relative;
	background: linear-gradient(to top right, #007166, #90d33d);
	background-size: cover;
}
/*** Text Box ***/
.hero-section .text-box{
	position: relative;
}
.hero-section .text-box h1{
	font-size: 32px;
	font-weight: 700;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	color: #FFFFFF;
	font-family: "Phudu", sans-serif;
}
.hero-section .text-box h2{
	font-size: 50px;
	line-height: 46px;
	font-weight: 900;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	color: #FFFFFF;
	font-family: "Poppins", sans-serif;
}
	.hero-section .text-box h2 .price {
		color: #FFF836;
		font-family: "Poppins", sans-serif;
	}
.hero-section .text-box p{
	font-size: 20px;
	font-weight: 600;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	color: #FFFFFF;
}
.hero-section .text-box .stack{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background: url(../images/stake-bg.png) no-repeat;
	background-size: cover;
	padding: 2px 25px;
	color: #FFF836;
	color: #FFFFFF;
	border-radius: 10px;
}
.hero-section .text-box .hero-btn {
	position: relative;
	margin-top: 0px;
}
.hero-section .text-box .hero-btn a, footer .footer-btn a {
	background-color: #90d33d;
	color: white;
	border: none;
	padding: 15px 30px;
	cursor: pointer;
	border-radius: 25px;
	font-size: 16px;
	font-weight: bold;
	transition: background-color 0.3s;
	width: 35vh;
	margin-bottom: 20px;
	margin-right: auto;
	justify-content: center;
	display: flex;
	font-family: "Poppins", sans-serif;
}

footer .footer-btn a
{
	margin-left: auto;
	margin-right: auto;
	background-color: #00B872
		
}
		.hero-section .text-box .hero-btn p {
			color: #FFFFFF;
			font-size: 16px;
			line-height: 26px;
			font-weight: 500;
			margin: 0px;
			padding: 0px;
		}
.hero-section .text-box .hero-btn p img{
	display:inline-block;
	vertical-align:middle;
}
/*** Hero Image ***/
.hero-section .hero-image{
	position: relative;
	margin: 16vh 0px 0px 0px;
}
.hero-section .hero-image img{
	display: block;
	margin: auto;
}
@media (max-width:991px){
.hero-section{
	background: url(../images/header-mobile.png) no-repeat;
}
/*** Text Box ***/
.hero-section .text-box{
	position: relative;
	padding: 50px 0px
}
}

@media (max-width:640px){
/*** Text Box ***/

.hero-section .text-box h1{
	font-size: 20px;
}

.hero-section .text-box p{
	font-size: 18px;
}

.hero-section .text-box .hero-btn p {
	font-size: 15px;
	line-height: 24px;
}
}
/*** Road Map ***/
.road-map{
	position: relative;
	z-index: 1;
}
.road-map .iner{
	position: relative;
	display: -webkit-box;           /* OLD - iOS 6-, Safari 3.1-6 */
	display: -ms-flexbox;           /* IE 10 */
	display: -webkit-flex;          /* Old Chrome/Safari */
	display: flex;                  /* Modern standard */

	-webkit-box-pack: justify;      /* OLD */
	-ms-flex-pack: justify;         /* IE 10 */
	-webkit-justify-content: space-between;
	justify-content: space-between;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	min-height: 80px;
	border-radius: 8px;
	padding: 15px 30px;
	margin-top: -40px;
}
.road-map .iner .boxes{
	position: relative;
	display: -webkit-box;             /* OLD - iOS 6-, Safari 3.1-6 */
	display: -ms-flexbox;             /* TWEENER - IE 10 */
	display: -webkit-flex;            /* NEW - Chrome */
	display: flex;                    /* Standard */

	-webkit-box-pack: start;          /* OLD */
	-ms-flex-pack: start;             /* TWEENER */
	-webkit-justify-content: flex-start;
	justify-content: flex-start;

	-webkit-box-align: center;        /* OLD */
	-ms-flex-align: center;           /* TWEENER */
	-webkit-align-items: center;
	align-items: center;
	margin: 10px;
}
.road-map .iner .boxes .counter{
	position: relative;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* Standard */

	-webkit-box-pack: center;  /* OLD */
	-ms-flex-pack: center;     /* TWEENER */
	-webkit-justify-content: center;
	justify-content: center;

	-webkit-box-align: center; /* OLD */
	-ms-flex-align: center;    /* TWEENER */
	-webkit-align-items: center;
	align-items: center;
	font-family: "Phudu", sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	font-weight: 700;
	min-width: 42px;
	width: 42px;
	max-width: 42px;
	height: 42px;
	background: url(../images/ellipse.png) no-repeat;
	background-size: cover;
	border-radius: 50%;
}
.road-map .iner .boxes .text-box{
	position: relative;
	margin-left: 20px;
}
.road-map .iner .boxes h3{
	color: #024b44;
	font-size: 18px;
	font-weight: 600;
	margin: 0px;
	padding: 0px;
	font-family: "Poppins", sans-serif;
}
.road-map .iner .boxes p{
	color: #012824;
	font-size: 13px;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
}
@media (max-width:640px){

.road-map .iner{
	-ms-flex-wrap: wrap;            /* IE 10 */
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	min-height: 80px;
	padding: 15px 20px;
	margin-top: -40px;
}
.road-map .iner .boxes{
	position: relative;
	margin: 10px 0px;
	width: 100%;
	min-width: 100%;
}
}
/*** Terms & Conditions ***/
.terms-condition{
	position: relative;
	padding: 15px 0px;
	background: #EDECEC;
}
.terms-condition .iner{
	position: relative;
	background: #F6F5F5;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 16px;
	padding: 40px 40px;
	padding-bottom: 100px;
	margin-bottom: 30px;
}
	.terms-condition h3 {
		color: #024b44;
		font-size: 22px;
		font-weight: 700;
		margin: 0px;
		padding: 0px;
		font-family: "Poppins", sans-serif;
	}
	.terms-condition p {
		color: #012824;
		font-size: 13px;
		font-weight: 400;
		margin: 0px;
		padding: 0px;
		font-family: "Nunito", sans-serif;
	}
.terms-condition .top-title{
	position: relative;
	padding: 0px 45px 0px 0px;
	margin-bottom: 10px;
}
.terms-condition .top-title .action-btn{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border:1px solid rgba(237,236,236,0.91);
	border-radius: 50%;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	color: #024B44;
	font-size: 18px;
	font-weight: 600;
}
.terms-condition .text-box{
	position: relative;
	margin-top: 30px;
}
.terms-condition .text-box p{
	margin-bottom: 20px;
}
.terms-condition .text-box p:last-child{
	margin-bottom: 0px;
}
@media (max-width:640px){
.terms-condition .iner{
	padding: 30px 20px;
	padding-bottom: 75px;
	margin-bottom: 30px;
}
}
/*** Footer ***/
footer {
	position: relative;
	background: #063C37;
	padding-bottom: 30px;
}
footer .footer-btn {
	position: relative;
	text-align:center;
}

footer p {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
	text-align:center;
}
footer p img{
	display:inline-block;
	vertical-align:middle;
}
/*** Top Footer ***/
.top-footer {
	position: relative;
	padding: 50px 0px;
	background: #063C37;
}
 .top-footer .footer-logo{
	 position:relative;
	 text-align:center;
	 margin-bottom:15px;
 }
 .top-footer .footer-logo img{
	 display:block;
	 margin:auto;
	 max-height:56px;
 }
 .top-footer .top-text{
	 position:relative;
	 text-align:center;
 }
 .top-footer .top-text p {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 400;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
	.top-footer .sponsor-box {
		position: relative;
		display: flex;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		align-items: center;
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		-ms-flex-wrap: wrap;            /* IE 10 */
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom:20px;
	}
	.top-footer .sponsor-box .boxes {
		position: relative;
		display: flex;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		align-items: center;
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		margin:5px;
		height:71px;
		padding:0px 15px;
		background:rgba(255,255,255,0.04);
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	}
	.top-footer .sponsor-box .boxes img{
		max-height:30px;
	}
.footer-navigation{
	position: relative;
	margin-bottom:15px;
}
.footer-navigation ul{
	margin:0px;
	padding:0px;
	list-style:none;
	text-align:center;
}
.footer-navigation ul li{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	text-align:center;
	font-size:13px;
	font-weight:500;
	margin:0px;
	padding:0px 15px;
	color:#FFFFFF;
	z-index:1;
}
.footer-navigation ul li:first-child{
	padding-left:0px;
}
.footer-navigation ul li:last-child{
	padding-right:0px;
}
.footer-navigation ul li:before {
	position: absolute;
	content: "|";
	top: 0px;
	right: 0px;
	bottom: 0px;
	color:#FFFFFF;
	z-index:-1;
}
.footer-navigation ul li:last-child:before{
	display:none;
}
.footer-navigation ul li a{
	color:#FFFFFF;
	text-decoration:underline;
	outline:none;
}
.footer-navigation p{
	position:relative;
	text-align:center;
	font-size:13px;
	font-weight:500;
	margin:0px;
	padding:0px;
	color:#FFFFFF;
}
.footer-navigation p a{
	text-decoration:none;
	color:inherit;
}
.copyright{
	position:relative;
	margin-top:20px;
}
.copyright p{
	position:relative;
	text-align:center;
	font-size:13px;
	font-weight:400;
	margin:0px;
	padding:0px;
	color:#FFFFFF;
}

@media (max-width:640px){
.top-footer .footer-logo img{
	 max-height:39px;
 }
	.top-footer .sponsor-box .boxes {
		position: relative;
		width: 100%;
		min-width: 100%;
		margin:5px 0px;
	}
}


/* Large Tablet Styles */

@media screen and (min-width: 900px) and (max-width: 1199px) {

	header {
		height: 9%;
		padding: 0 4%;
	}
	.logo {
		height: 4vh;
		margin-left: 22%;
	}
	.hero-section .text-box h1 {
		margin: 50px 0px 20px 50px;
	}
	.hero-section .text-box h2 {
		margin: 0px 0px 20px 50px;
	}
	.hero-section .text-box p {
		margin: 0px 0px 20px 50px;
	}

	.hero-section .text-box .hero-btn {
		position: relative;
		margin-top: 0px;
		margin-left: 50px;
	}

	.hero-section .text-box {
		position: relative;
		padding-top: 50px;
	}

		.hero-section .text-box .hero-btn a, footer .footer-btn a {
			padding: 20px 35px;
			font-size: 30px;
			width: 35vh;
			margin-bottom: 20px;
		}
}

/* Small Tablet Styles */

@media screen and (min-width: 601px) and (max-width: 899px) {

	header {
		height: 9%;
		padding: 0 4%;
	}

	.logo {
		height: 4vh;
		margin-left: 22%;
	}

	.hero-section .text-box h1 {
		margin: 100px 0px 20px 50px;
	}

	.hero-section .text-box h2 {
		margin: 0px 0px 20px 50px;
	}

	.hero-section .text-box p {
		margin: 0px 0px 20px 50px;
	}

	.hero-section .text-box .hero-btn {
		position: relative;
		margin-top: 0px;
		margin-left: 50px;
	}

	.hero-section .hero-image {
		position: relative;
		margin: 0vh 0px 0px 0px;
	}

	.top-footer {
		position: relative;
		padding : 50px 50px;
		background: #063C37;
	}

	.road-map .iner .boxes p {
		font-size: 12px;
	}
	.hero-section .text-box .hero-btn a, footer .footer-btn a {
		padding: 20px 35px;
		font-size: 20px;
		width: 35vh;
		margin-bottom: 20px;
	}
	.hero-section .text-box {
		position: relative;
		padding-top: 50px;
	}
}

@media (max-width: 600px) {
	header {
		height: 9%;
		padding: 0 4%;
	}
	.logo {
		height: 4vh;
		margin-left: 22%;
	}
	.btn {
		font-size: 0.8rem;
		padding : 0.6em 0.6em;
	}
	.header-buttons {
		gap: 0em;
		margin-left: auto;
		display: flex;
	}
	.hero-section .hero-image {
		position: relative;
		margin: 0vh 0px 0px 0px;
	}
	.hero-section .text-box h2 {
		font-size: 30px;
		line-height: 30px;
	}
	.hero-section .text-box {
		position  : relative;
		padding-top: 100px;
	}
	.join-btn::before {
		content : 'JOIN' !important;
	}
	.hero-section .text-box .hero-btn a, footer .footer-btn a {
		padding: 15px 30px;
		font-size: 16px;
		width: 35vh;
		margin-bottom: 20px;
	}
	.top-footer {
		position: relative;
		padding : 40px 0px;
		background: #063C37;
	}
	.hero-section .text-box {
		position : relative;
		padding-bottom: 20px
	}
		.hero-section .text-box p {
			font-size: 18px;
			line-height : 18px;
		}
}
