html {
	scroll-behavior: smooth;
	min-width: 290px;
}

*{
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	font-family: "Century Gothic", CenturyGothic, Geneva, AppleGothic, sans-serif;
    color: white;
}
:root {
    --background-color: rgb(10, 10, 10);
	--orange-color: rgb(255, 81, 0);
	--glow-orange: 0 0 0.2rem rgba(255, 195, 117, 0.692),0 0 0.7rem rgba(255, 115, 0, 0.712),0 0 2rem rgba(255, 81, 0, 0.664);
	--glow-purple: 0 0 0.2rem rgb(216, 117, 255),0 0 0.7rem rgb(119, 0, 255),0 0 2rem rgb(98, 0, 255);
}
p {
	font-size: 1.2rem;
}
@media (max-width: 800px) {
	p {
		font-size: 1rem;
	}
}

h1 {
	font-weight: normal;
	}

.max-width-section {
	display: block;
	width: 100%;
	max-width: 80rem;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
/* HEADER */
.header-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 80rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	padding: 1rem 0rem;
	z-index: 1000;
	transition: 0.3s ease-in-out;
	/* background-color: var(--background-color); */
  }

/* .header-container.sticky {
	background: linear-gradient(180deg, var(--background-color) 0%, rgba(0,0,0,0) 100%);
	background-color: var(--background-color);
} 
*/



  .logo img{
	height: 3rem;
	margin-left: 2rem;
	filter: drop-shadow(0 0 0.5rem --background-color);
  }
  
  .header-container {
	flex-direction: row;
	height: auto;
	justify-content: space-between;
	align-items: center;
  }
  
  .menu-container, .footer-links-container {
	display: flex;
	gap: 2rem;
	margin-right: 3rem;
	place-items: center;
	position: relative;
	transform: translate(0px, 0px);
	transition: 0.5s;
  }
  .menu a {
	color: white;
	font-size: 1.2rem;
  }
  .menu:hover, .links:hover img{
	opacity: 0.7;
	transition: 0.5s;
  }
  .tooltip {
	color: black;
	background: rgb(255, 255, 255);
	padding: 0.3rem 0.8rem;
	border-radius: 5rem;
	box-shadow: 0.2rem 0.1rem 0.2rem 0rem rgb(0, 0, 0);
	width: 6.8rem;
	text-align: center;
	position: absolute;
	transform: translate(-3.2rem, 1.8rem);
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
  }
  .links:hover .tooltip {
	visibility: visible;
	opacity: 1;
	transform: translate(-3.2rem, 2.5rem);
  }
  
  .disabledbutton {
	opacity: 0.4;
  }

  .links {
	margin: 0rem 1rem;
	
}

.social-links {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.menu-container div, img {
	overflow: hidden;
  }


.menu-button-container {
	margin-right: 1rem;
	display: none;
	height: 3rem;
	width: 5rem;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }
  
  #menu-toggle {
	display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
	display: block;
	background-color: #fff;
	position: absolute;
	height: 4px;
	width: 30px;
	transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 2px;
  }
  
  .menu-button::before {
	content: '';
	margin-top: -8px;
  }
  
  .menu-button::after {
	content: '';
	margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(45deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
	background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-45deg);
  }


@media (max-width: 1000px) {
  .menu-button-container {
    display: flex;
  }
  .menu-container {
		position: absolute;
		width: 100%;
		top: 5rem;
		padding-top: 0rem;
		padding-bottom: 0rem;
		flex-direction: column;
		align-items: center;
		gap: 0rem;
		background-color: rgba(0,0,0,0.8);
	}

  #menu-toggle ~ .menu-container div {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu-container div {
    height: 3.5rem;
    padding: 0rem 0.5rem;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-container > div {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
  }
}


/* HEADER END */

body {
    background:url("../img/website_circuit_left.png"), url("../img/website_circuit_right.png");
	background-position: left, right;
	background-repeat: no-repeat, no-repeat;
	background-color: var(--background-color);
	background-size: auto 100%;
	background-attachment: fixed;
	
}

@media (max-width: 800px) {
	body {
		background: url("../img/website_circuit_mobile.png");
		background-color: var(--background-color);
		background-repeat: no-repeat;
		background-color: var(--background-color);
		background-size: 100% auto;
		background-attachment: fixed;
	}
}


.bottom-section {
	background-color: var(--background-color);
	background: linear-gradient(transparent, var(--background-color) 30%);
	padding-bottom: 2rem;
}



.home-container {
	text-align: center;
}

.home-text{
	text-shadow: 0 0 4rem var(--background-color),0 0 4rem var(--background-color),0 0 4rem var(--background-color),0 0 3rem var(--background-color);
}

.home-container h1{
	font-size: 4rem;
	padding-bottom: 1rem;
}
.home-container p{
	font-size: 2rem;
	margin-bottom: 4rem;
}

.btn {
	background-color: white;
	color: black;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: rgb(80, 80, 80);
	color: white;
	transition: 0.2s;
}

.follow-twitter-btn {
	font-size: 1.5rem;
	margin-top: 5rem;
	padding: 1rem 2.5rem;
	border-radius: 5rem;
}

.wallet-btn {
	
	font-size: 1.5rem;
	padding: 0.5rem 1rem;
	margin-right: 3rem;
	border-radius: 5rem;
}


.home-image img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 4rem;
	width: 70%;
}

.info-panel {
	margin-top: 6rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.info-panel img{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
}

@media (max-width: 800px) {
	.info-panel {
		flex-direction: column;
		margin-top: 2.5rem;
	}
	.info-panel img{
		width: 90%;
	}
}

@media (max-width: 700px) {
	.home-image img{
		width: 100%;
	}

	.home-container h1 {
		font-size: 2.5rem;
	}
	.home-container p{
		font-size: 1rem;
	}

	.follow-twitter-btn {
		font-size: 1rem;
		padding: 0.5rem 1.5rem;

	}
}

/* footer */
footer {
	
	margin: 4rem auto;
	padding-top: 3rem;
	text-align: center;

	
    height: auto;
    width: 90%;
	
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: rgb(80, 80, 80);
}
footer p{
	text-align: center;
	margin: 0 auto;
}



/* roadmap */

#roadmap {
	scroll-margin-top: 7rem;
}

.utility-container {
	width: 60%;
	height: auto;
	margin: 0 auto;
	position: relative;
	margin-top: 10%;
	/* box-shadow: 0 0 5rem var(--background-color),0 0 5rem var(--background-color),0 0 10rem var(--background-color),0 0 10rem var(--background-color); */
	
  }
  
  .headline {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 2rem;
	}
  
  
  .rb-container {
	
	width: 100%;
	margin: auto;
	display: block;
	position: relative;
	
  }
  
  .rb-container ul.rb {
	margin: 2.5em 0;
	padding: 0;
	display: inline-block;
  }
  
  .rb-container ul.rb li {
	list-style: none;
	margin: auto;
	min-height: 50px;
	border-left: 1px dashed white;
	padding: 0 0 50px 40px;
	position: relative;
  }
  .rb-container ul.rb li::after {
	content: " ";
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: -2px;
	border-left: 4px solid white;
	/* box-shadow: 0 0 0.3rem rgb(255, 144, 93),0 0 1rem rgb(255, 86, 19); */
	box-shadow: var(--glow-orange);
  }
  .rb-container ul.rb li:nth-last-child(4):after {
	border-left: 4px solid transparent;
	border-left: 0;
	background-image: linear-gradient(var(--background-color),var(--background-color)), radial-gradient(circle at top left, rgb(255, 211, 191),#ffffff00);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: none;
  }

  .rb-container ul.rb li:last-child {
	border-left: 0;
  }
  .rb-container ul.rb li:nth-last-child(1):after, .rb-container ul.rb li:nth-last-child(2):after, .rb-container ul.rb li:nth-last-child(3):after {
	border-left: 0;
  }

  /* Phase */
  .rb-container ul.rb li.phase {
	padding-bottom: 0;
  }
  li.phase h1 {
	font-size: 2rem;
	font-weight: 600;
	translate: 0px -4px;
	width: 8rem;
	background: rgb(255, 160, 82);
	background: linear-gradient(90deg, rgb(255, 189, 113) 0%, rgb(255, 72, 0) 100%); 
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
  li.phase.phase2 h1 {
	background: rgb(180,58,121);
	background: linear-gradient(90deg, rgb(251, 138, 255) 0%, rgb(132, 0, 255) 100%); 
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
  .rb-container ul.rb li.phase::before {
	height: 32px;
	width: 32px;
	left: -20px;
	top: -7px;
	border: double 4px transparent;
	border-radius: 80px;
	background-image: linear-gradient(var(--background-color),var(--background-color)), radial-gradient(circle at top left, rgb(255, 212, 155),#ff2600);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	z-index: 1;
	/* box-shadow: 0 0 0.4rem rgba(255, 160, 77, 0.336),0 0 2rem rgba(255, 184, 163, 0.753);
	box-shadow: inset 0 0 0.8rem rgba(255, 160, 77, 0.336),0 0 02rem rgba(255, 184, 163, 0.753); */
  }
  .rb-container ul.rb li.phase.phase2::before {
	background-image: linear-gradient(var(--background-color),var(--background-color)), radial-gradient(circle at top left, rgb(249, 189, 255),#8c00ff);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	z-index: 1;
  }
  .rb-container ul.rb li::before {
	position: absolute;
	left: -12px;
	top: 0px;
	content: " ";
	/* border: 9px solid var(--background-color); */
	border: 3px solid white;
	border-radius: 500%;
	background-color: var(--background-color);
	box-shadow: var(--glow-orange);
	height: 18px;
	width: 18px;
	transition: all 0.8s ease-in-out;
	z-index: 1;
  }
  
  .rb-container ul.rb li:hover::before {
	box-shadow: var(--glow-orange);
	transition: all 0s ease-in-out;
  }
  .rb-container ul.rb li:hover.phase2::before {
	box-shadow: var(--glow-purple);
	transition: all 0s ease-in-out;
  }
  .rb-container ul.rb li.phase2::before {
	box-shadow:  var(--glow-purple);
	transition: all 0s ease-in-out;
  }

  .rb-container ul.rb li.checked::before {
	background: url("../img/check-mark.svg");
	background-repeat: no-repeat;
	background-size: 18px;
	background-color: white;
	border-color: white;
	z-index: 1;
  }
  
  ul.rb li .timestamp {
	color: rgb(255, 255, 255);
	/* text-shadow: 0 0 0.2rem rgb(216, 117, 255),0 0 0.7rem rgb(119, 0, 255),0 0 2rem rgb(98, 0, 255); */
	position: relative;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 600;
	translate: 0px -4px;
  }
  ul.rb li:hover .timestamp {
	text-shadow: var(--glow-orange);
  }
  ul.rb li.phase2:hover .timestamp {
	text-shadow: var(--glow-purple);
  }
  ul.rb li:hover .timestamp h1 {
	background: none;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: white;
  }
  
  input::placeholder {
	padding: 5em 5em 1em 1em;
	color: var(--orange-color)0;
  }

	.item-title {
		color: rgb(197, 197, 197);
		font-size: 1rem;
		margin-top: 0.5rem;
	}

  @media (max-width: 800px) {
	.utility-container {
		width: 90%;
	}

	.item-title {
		font-size: 1rem
	}
}


/*----FAQ----*/
.faq_sect{
    padding-bottom: 120px;
    padding-top: 100px;
}
.faq_content{
    max-width: 840px;
    width: 100%;
    margin: auto;
    position: relative;
}
.faq_bg_wattermark{
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.faq_questions {
    margin-top: 57px;
    position: relative;
}
.faq_questions .faq_questions{
    position: relative;
    z-index: 1;
}
.faq_questions .accordion {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    height: 35px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 29px;
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    margin-top: 10px;
}
.faq_questions .accordion.active {
    color: #ffffff;
}
.faq_questions .accordion:hover {
    color: #ffffff;
}
.faq_questions .accordion span{
    min-width: 18px;
    margin-left: 20px;
    right: 20px;
}
.faq_questions .accordion .IconPlus{
    opacity: 0.5;
}
.faq_questions .accordion:hover .IconPlus{
    opacity: 1;
}
.faq_questions .accordion.active .IconPlus{
    display: none;
}
.faq_questions .accordion .IconMunise{
    display: none;
}
.faq_questions .accordion.active .IconMunise{
    display: block
}
.faq_questions .accordion-panel {
    padding: 0px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}
.faq_questions .accordion-panel p {
    padding: 0px 48px 24px 29px;
    font-style: normal;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0px;
    max-width: 100%;
}
.faq-section{
    padding-bottom: 130px;
    position: relative;
}
.faq-section .faq_text ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-section .faq_text ul li{
    color: #fff;
}
.faq-section .faq_text ul li span{
    color: #00FCA1;
    padding-left: 10px;
}
.faq_questions.v2_faq_questions .accordion{
    margin: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq_questions.v2_faq_questions .accordion.active{
    background: rgba(255, 255, 255, 0.03);
}
.faq_questions.v2_faq_questions .accordion-panel{
    background: rgba(255, 255, 255, 0.03);
}
.faq_bear_img{
    position: absolute;
    top: 80px;
    right: -163px;
    z-index: 2;
}

  
/* contact */

#contact {
	scroll-margin-top: 7rem;
}

.contact-container{
	
	margin: 2rem 0rem;
	padding: 2rem;
	padding-bottom: 3rem;
	text-align: center;
	outline: none;
}

.contact-text {
	margin-top: 3rem;
	margin-bottom: 4rem;
}

.contact-btn {
	font-size: 1.5rem;
	margin-top: 8rem;
	padding: 1rem 2.5rem;
	border-radius: 5rem;
}

.twitter-dm-link {
	text-decoration: underline;
}


.os-links {
	width: 48%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1100px) {
	.os-links {
		width: 30rem;
	}
}

@media (max-width: 700px) {
	.os-links {
		width: 20rem;
	}
}
