@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tektur:wght@400..900&display=swap");
:root {
	--primary-bg: #0b0d0c;
	--active-color: #d3b74a;
	--font-plusjs: "Plus Jakarta Sans", sans-serif;
	--font-poppins: "Poppins", sans-serif;
	--primary-text: #fff;
}

html {
	scroll-behavior: smooth;
}

.smooth-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.smooth-content {
	position: relative;
	min-height: 100%;
}

body {
	background-color: var(--primary-bg);
	font-family: var(--font-plusjs);
	font-optical-sizing: auto;
	font-style: normal;
}

.hue-rotate-whole {
	filter: hue-rotate(210deg);
}

.banner-wrap header.header-sticky {
	position: fixed !important;
	z-index: 9999;
	width: 100%;
	top: 0;
	left: 0;
	padding: 1.2rem 0;
	background-color: rgba(0, 0, 0, 0.6588235294);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	box-shadow: 0px 0px 87px 10px #2e2148;
}

.banner-wrap header {
	padding: 1.7rem 0;
	position: absolute;
	z-index: 9999;
	width: 100%;
	top: 0;
	left: 0;
}
.banner-wrap header .logo {
	min-width: 248px;
	width: 100%;
}
.banner-wrap header .nav-item + .nav-item {
	margin-left: 18px;
}
.banner-wrap header .navbar-nav .nav-link {
	color: var(--primary-text);
	font-family: var(--font-poppins);
	font-weight: 500;
	position: relative;
	padding-bottom: 10px;
}
.banner-wrap header .navbar-nav .nav-link.active {
	color: var(--active-color);
}
.banner-wrap header .navbar-nav .nav-link.active::after {
	content: "";
	position: absolute;
	width: calc(100% - 16px);
	height: 100%;
	inset: 0;
	top: 0;
	border-bottom: solid 2px var(--active-color);
	left: 50%;
	transform: translateX(-50%);
}
.banner-wrap header .btn-connect {
	text-decoration: none;
	color: #859cb1;
	line-height: 1;
	border: solid 2px #094bd0;
	background-color: #001223;
	padding: 0.9rem 2rem;
	border-radius: 12px;
	font-weight: 500;
}
.banner-wrap header .btn-connect:hover {
	background-color: #094bd0;
	transition: all 0.25s ease-in-out;
	color: #fff;
	border-color: #07389b;
}

.hue-rotate-logo {
	filter: hue-rotate(140deg);
}
.banner-wrap .right-side {
	padding: 3rem 0;
}
.banner-wrap .right-side img {
	max-width: 430px;
	width: 100%;
	filter: saturate(0.4);
}

.banner-wrap .left-side h1 {
	font-family: var(--font-plusjs);
	font-weight: 700;
	font-size: 48px;
	color: var(--primary-text);
	line-height: 1.3;
	margin-bottom: 0.7rem;
}
.banner-wrap .left-side h5 {
	color: #e6fef1;
	font-size: 19px;
	margin-bottom: 1rem;
}
.banner-wrap .left-side p {
	color: #cecfce;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 2rem;
}
.banner-wrap .left-side .banner-btn .button {
	--h-button: 48px;
	--w-button: 102px;
	--round: 0.75rem;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.25s ease;
	background: radial-gradient(
			65.28% 65.28% at 50% 100%,
			#e045ee 0%,
			rgba(223, 113, 255, 0) 100%
		),
		linear-gradient(0deg, #094bd0, #094bd0);
	border-radius: var(--round);
	border: none;
	outline: none;
	padding: 12px 2rem;
}
.banner-wrap .left-side .banner-btn .button::before,
.banner-wrap .left-side .banner-btn .button::after {
	content: "";
	position: absolute;
	inset: var(--space);
	transition: all 0.5s ease-in-out;
	border-radius: calc(var(--round) - var(--space));
	z-index: 0;
}
.banner-wrap .left-side .banner-btn .button::before {
	--space: 1px;
	background: linear-gradient(
		177.95deg,
		rgba(255, 255, 255, 0.19) 0%,
		rgba(255, 255, 255, 0) 100%
	);
}
.banner-wrap .left-side .banner-btn .button::after {
	--space: 2px;
	background: radial-gradient(
			65.28% 65.28% at 50% 100%,
			#e045ee 0%,
			rgba(223, 113, 255, 0) 100%
		),
		linear-gradient(0deg, #094bd0, #094bd0);
}
.banner-wrap .left-side .banner-btn .button:active {
	transform: scale(0.95);
}
.banner-wrap .left-side .banner-btn .fold {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	height: 1rem;
	width: 1rem;
	display: inline-block;
	transition: all 0.5s ease-in-out;
	background: radial-gradient(
		100% 75% at 55%,
		#e045ee 0%,
		rgba(223, 113, 255, 0) 100%
	);
	box-shadow: 0 0 3px black;
	border-bottom-left-radius: 0.5rem;
	border-top-right-radius: var(--round);
}
.banner-wrap .left-side .banner-btn .fold::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 150%;
	height: 150%;
	transform: rotate(45deg) translateX(0%) translateY(-18px);
	background-color: #e8e8e8;
	pointer-events: none;
}
.banner-wrap .left-side .banner-btn .button:hover .fold {
	margin-top: -1rem;
	margin-right: -1rem;
}
.banner-wrap .left-side .banner-btn .points_wrapper {
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point {
	bottom: -10px;
	position: absolute;
	animation: floating-points infinite ease-in-out;
	pointer-events: none;
	width: 2px;
	height: 2px;
	background-color: var(--primary-text);
	border-radius: 9999px;
}
@keyframes floating-points {
	0% {
		transform: translateY(0);
	}
	85% {
		opacity: 0;
	}
	100% {
		transform: translateY(-55px);
		opacity: 0;
	}
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(1) {
	left: 10%;
	opacity: 1;
	animation-duration: 2.35s;
	animation-delay: 0.2s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(2) {
	left: 30%;
	opacity: 0.7;
	animation-duration: 2.5s;
	animation-delay: 0.5s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(3) {
	left: 25%;
	opacity: 0.8;
	animation-duration: 2.2s;
	animation-delay: 0.1s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(4) {
	left: 44%;
	opacity: 0.6;
	animation-duration: 2.05s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(5) {
	left: 50%;
	opacity: 1;
	animation-duration: 1.9s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(6) {
	left: 75%;
	opacity: 0.5;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(7) {
	left: 88%;
	opacity: 0.9;
	animation-duration: 2.2s;
	animation-delay: 0.2s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(8) {
	left: 58%;
	opacity: 0.8;
	animation-duration: 2.25s;
	animation-delay: 0.2s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(9) {
	left: 98%;
	opacity: 0.6;
	animation-duration: 2.6s;
	animation-delay: 0.1s;
}
.banner-wrap .left-side .banner-btn .points_wrapper .point:nth-child(10) {
	left: 65%;
	opacity: 1;
	animation-duration: 2.5s;
	animation-delay: 0.2s;
}
.banner-wrap .left-side .banner-btn .inner {
	z-index: 2;
	gap: 6px;
	position: relative;
	width: 100%;
	color: var(--primary-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	transition: color 0.2s ease-in-out;
}
.banner-wrap .left-side .banner-btn .inner svg.icon {
	width: 18px;
	height: 18px;
	transition: fill 0.1s linear;
}
.banner-wrap .left-side .banner-btn .button:focus svg.icon {
	fill: var(--primary-text);
}
.banner-wrap .left-side .banner-btn .button:hover svg.icon {
	fill: transparent;
	animation: dasharray 1s linear forwards, filled 0.1s linear forwards 0.95s;
}
@keyframes dasharray {
	from {
		stroke-dasharray: 0 0 0 0;
	}
	to {
		stroke-dasharray: 68 68 0 0;
	}
}
@keyframes filled {
	to {
		fill: var(--primary-text);
	}
}

.banner-wrap .banner {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	padding-bottom: 6rem;
}
.banner-wrap .banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(/assets/img/Thumbnail.png);
	background-position: 100% 125%;
	background-size: 78% 109%;
	background-repeat: no-repeat;
}
.banner-wrap .banner .container {
	position: relative;
	z-index: 3;
}
.banner-wrap .banner::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: -13px;
	background-image: url(/assets/img/banner-after-shape.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% 129px;
}

.banner-shapewraper {
	position: relative;
	overflow: hidden;
}
.banner-shapewraper::before {
	position: absolute;
	content: "";
	background-image: url(/assets/img/right-side-shape.png);
	width: 180px;
	height: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 350px 538px;
	bottom: 10%;
	left: 0;
}

.title-container h2 {
	font-family: var(--font-plusjs);
	color: var(--primary-text);
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 0.1px;
	line-height: 1.3;
}
.title-container h4 {
	font-family: var(--font-plusjs);
	color: var(--primary-text);
	font-size: 1.6rem;
	font-weight: 300;
	letter-spacing: 0.1px;
	margin-top: 1rem;
	max-width: 534px;
	line-height: 1.6;
}
.title-container p {
	color: #cecfce;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-size: 18px;
}

.bg-candle {
	background-image: url(/assets/img/candle-bg.png);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-repeat: no-repeat;
	background-position: bottom right;
	z-index: 0;
	opacity: 0.4;
}

.section-two-wrap .feature-boxs-wrap {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, 1fr);
	row-gap: 1rem;
	-moz-column-gap: 1.7rem;
	column-gap: 1.7rem;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-1 {
	grid-column: span 3 / span 3;
	grid-row: span 4 / span 4;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-2 {
	grid-column: span 3 / span 3;
	grid-row: span 2 / span 2;
	grid-column-start: 4;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-3 {
	grid-column: span 3 / span 3;
	grid-row: span 2 / span 2;
	grid-column-start: 4;
	grid-row-start: 3;
}
.section-two-wrap .feature-boxs-wrap .feature-box {
	padding: 2.8rem 3.5rem;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.section-two-wrap .feature-boxs-wrap .feature-box h3 {
	color: #fff;
	font-family: var(--font-plusjs);
	color: var(--primary-text);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 1.8rem;
}
.section-two-wrap .feature-boxs-wrap .feature-box p {
	color: #cecfce;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 17.5px;
}
.section-two-wrap .feature-boxs-wrap .feature-box img {
	max-width: 100%;
	position: relative;
	z-index: 2;
}
.section-two-wrap .feature-boxs-wrap .feature-box::before {
	content: "";
	position: absolute;
	bottom: -70%;
	left: 0;
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 0;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-1 {
	border: solid 2px #e227ff;
	background: radial-gradient(
		circle,
		rgb(11, 13, 12) 98%,
		rgb(224, 69, 238) 100%
	);
	box-shadow: inset 0 0px 22px rgba(226, 39, 255, 0.65);
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-1 p {
	max-width: 400px;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-1::before {
	background-color: #9140b3;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-3,
.section-two-wrap .feature-boxs-wrap .feature-box.item-2 {
	border: solid 2px #803dff;
	background: radial-gradient(
		circle,
		rgb(11, 13, 12) 98%,
		rgb(224, 69, 238) 100%
	);
	transition: all 0.225s ease-in-out;
	display: flex;
	align-items: center;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-3 img,
.section-two-wrap .feature-boxs-wrap .feature-box.item-2 img {
	max-width: 120px;
	width: 100%;
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-3:hover,
.section-two-wrap .feature-boxs-wrap .feature-box.item-2:hover {
	transition: all 0.225s ease-in-out;
	box-shadow: inset 0 0px 22px rgba(129, 61, 255, 0.651);
}
.section-two-wrap .feature-boxs-wrap .feature-box.item-3::before,
.section-two-wrap .feature-boxs-wrap .feature-box.item-2::before {
	background-color: #985dff;
}

.section-three-wrap {
	padding-top: 7rem;
	position: relative;
	overflow: hidden;
}
.section-three-wrap .left-side {
	position: relative;
	z-index: 2;
}
.section-three-wrap::before {
	content: "";
	position: absolute;
	left: -6%;
	bottom: 0;
	background-image: url(/assets/img/coin-blur.png);
	width: 231px;
	height: 200px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}
.section-three-wrap .right-side img {
	width: 100%;
}
.section-three-wrap .left-side .accordion .accordion-item {
	background-color: transparent;
	border: 0;
	color: var(--primary-text);
}
.section-three-wrap .left-side .accordion .accordion-item + .accordion-item {
	border-top: solid 1px #093158;
}
.section-three-wrap .left-side .accordion .accordion-button,
.section-three-wrap .left-side .accordion .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: var(--primary-text);
	padding: 1.2rem 0;
	padding-left: 2.5rem;
	box-shadow: 0px 0px 0px #000;
	font-family: var(--font-plusjs);
	font-size: 20px;
	font-weight: 300;
	color: #f8f8f8;
	position: relative;
}
.section-three-wrap .left-side .accordion .accordion-button::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 19px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 25px;
	height: 25px;
	background-image: url(/assets/img/check-icon.svg);
}
.section-three-wrap .left-side .accordion .accordion-body {
	padding: 1rem 0;
	padding-top: 0;
	color: #cecfce;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 14px;
	font-size: 18px;
	max-width: 501px;
	padding-left: 10px;
}
.section-three-wrap .left-side .accordion .accordion-button::after {
	display: none;
}

@media screen and (min-width: 992px) {
	.section-four-wrap .title-container .left {
		border-right: solid 1px #6e6e6e;
		padding-right: 1.5rem;
	}
}
.section-four-wrap .title-container .right {
	color: var(--primary-text) !important;
	margin-bottom: 0 !important;
}
.section-four-wrap .explore-box {
	padding: 1.4rem 2rem;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	border: solid 2px #803dff;
	transition: all 0.225s ease-in-out;
	box-shadow: inset 0 0px 22px hwb(261 24% 0%/0.459);
	height: 100%;
}
.section-four-wrap .explore-box h3 {
	color: #fff;
	font-family: var(--font-plusjs);
	color: var(--primary-text);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 1.8rem;
	position: relative;
}
.section-four-wrap .explore-box h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 100%;
	width: 70px;
	border-bottom: solid 2px #803eff;
}
.section-four-wrap .explore-box p {
	color: #cecfce;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 17.5px;
}
.section-four-wrap .explore-box img {
	max-width: 100%;
	max-width: 120px;
	margin-bottom: 10px;
}
.section-four-wrap .explore-box::before {
	content: "";
	position: absolute;
	bottom: -190px;
	right: -80px;
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	width: 250px;
	height: 250px;
	border-radius: 50%;
	z-index: 0;
	background-color: #985dff;
}

.section-five-wrap {
	padding-top: 1rem;
}
.section-five-wrap .bx-count-top-wraper {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	transition: all 0.25s ease-in-out;
}
.section-five-wrap .bx-count-top-wraper::before {
	content: "";
	position: absolute;
	bottom: -88px;
	left: 59%;
	transform: translateX(-50%);
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.4901960784),
		rgba(0, 0, 0, 0)
	);
	width: 111%;
	height: 118%;
	border-radius: 50%;
	z-index: 0;
	transition: all 0.25s ease-in-out;
}
.section-five-wrap .bx-count-top-wraper:hover {
	transition: all 0.25s ease-in-out;
}
.section-five-wrap .bx-count-top-wraper:hover::before {
	background-color: #985dff;
}
.section-five-wrap .bx-count-top-wraper .bx-count-top {
	padding: 1.5rem;
	border: solid 2px #292929;
	border-radius: 18px;
	position: relative;
	padding-top: 3.2rem;
	margin-top: 3.1rem;
	min-height: 185px;
}
.section-five-wrap .bx-count-top-wraper h6 {
	font-family: var(--font-plusjs);
	color: var(--primary-text);
	line-height: 1.7;
	font-weight: 500;
	font-size: 19px;
	text-align: center;
}
.section-five-wrap .bx-count-top-wraper .box-count {
	width: 82px;
	height: 82px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-family: var(--font-plusjs);
	color: #d3b74a;
	background: radial-gradient(
		circle,
		rgb(77, 13, 190) 29%,
		rgb(36, 6, 88) 70%
	);
	box-shadow: 0px 0px 0px 0px rgb(77, 13, 190);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -2.6rem;
	font-weight: 700;
	font-size: 27px;
}

.section-cta-wraper {
	padding-top: 5rem;
	width: 100%;
}
.section-cta-wraper .left-side {
	max-width: 600px;
}
.section-cta-wraper .cta-section {
	padding: 2rem 3rem;
	padding-bottom: 8rem;
	border-radius: 15px;
	box-shadow: rgba(238, 238, 238, 0.11) 0px 0px 22px inset;
	position: relative;
	overflow: hidden;
	background-image: url(/assets/img/moon-bg.png);
	background-size: 15%;
	background-repeat: no-repeat;
	background-position: center;
}
.section-cta-wraper .cta-section::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -10%;
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.63),
		rgba(0, 0, 0, 0)
	);
	width: 600px;
	height: 600px;
	border-radius: 50%;
	z-index: 0;
	background-color: #9140b3;
}
.section-cta-wraper .cta-section::after {
	content: "";
	position: absolute;
	background-image: url(/assets/img/cta-security-img.png);
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
.section-cta-wraper .cta-section .title-container {
	position: relative;
	z-index: 2;
}
.section-cta-wraper .cta-section ul {
	padding: 0;
	margin: 0;
}
.section-cta-wraper .cta-section ul li {
	position: relative;
	list-style: none;
	margin-bottom: 0.8rem;
	padding-left: 30px;
}
.section-cta-wraper .cta-section ul li p {
	margin: 0 !important;
}
.section-cta-wraper .cta-section ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 21px;
	height: 21px;
	background-image: url(/assets/img/check-icon-2.png);
	background-position: center;
	background-size: cover;
}
.section-cta-wraper .cta-text-btn-wraper {
	background-color: #2e093d;
	width: 88%;
	margin: 0 auto;
	padding: 1.6rem 3rem;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button {
	--h-button: 48px;
	--w-button: 102px;
	--round: 0.75rem;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.25s ease;
	background: radial-gradient(
			65.28% 65.28% at 50% 100%,
			#e045ee 0%,
			rgba(223, 113, 255, 0) 100%
		),
		linear-gradient(0deg, #094bd0, #094bd0);
	border-radius: var(--round);
	border: none;
	outline: none;
	padding: 12px 2rem;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button::before,
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button::after {
	content: "";
	position: absolute;
	inset: var(--space);
	transition: all 0.5s ease-in-out;
	border-radius: calc(var(--round) - var(--space));
	z-index: 0;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button::before {
	--space: 1px;
	background: linear-gradient(
		177.95deg,
		rgba(255, 255, 255, 0.19) 0%,
		rgba(255, 255, 255, 0) 100%
	);
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button::after {
	--space: 2px;
	background: radial-gradient(
			65.28% 65.28% at 50% 100%,
			#e045ee 0%,
			rgba(223, 113, 255, 0) 100%
		),
		linear-gradient(0deg, #094bd0, #094bd0);
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button:active {
	transform: scale(0.95);
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .fold {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	height: 1rem;
	width: 1rem;
	display: inline-block;
	transition: all 0.5s ease-in-out;
	background: radial-gradient(
		100% 75% at 55%,
		#e045ee 0%,
		rgba(223, 113, 255, 0) 100%
	);
	box-shadow: 0 0 3px black;
	border-bottom-left-radius: 0.5rem;
	border-top-right-radius: var(--round);
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .fold::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 150%;
	height: 150%;
	transform: rotate(45deg) translateX(0%) translateY(-18px);
	background-color: #e8e8e8;
	pointer-events: none;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button:hover .fold {
	margin-top: -1rem;
	margin-right: -1rem;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .points_wrapper {
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .points_wrapper .point {
	bottom: -10px;
	position: absolute;
	animation: floating-points infinite ease-in-out;
	pointer-events: none;
	width: 2px;
	height: 2px;
	background-color: var(--primary-text);
	border-radius: 9999px;
}
@keyframes floating-points {
	0% {
		transform: translateY(0);
	}
	85% {
		opacity: 0;
	}
	100% {
		transform: translateY(-55px);
		opacity: 0;
	}
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(1) {
	left: 10%;
	opacity: 1;
	animation-duration: 2.35s;
	animation-delay: 0.2s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(2) {
	left: 30%;
	opacity: 0.7;
	animation-duration: 2.5s;
	animation-delay: 0.5s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(3) {
	left: 25%;
	opacity: 0.8;
	animation-duration: 2.2s;
	animation-delay: 0.1s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(4) {
	left: 44%;
	opacity: 0.6;
	animation-duration: 2.05s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(5) {
	left: 50%;
	opacity: 1;
	animation-duration: 1.9s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(6) {
	left: 75%;
	opacity: 0.5;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(7) {
	left: 88%;
	opacity: 0.9;
	animation-duration: 2.2s;
	animation-delay: 0.2s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(8) {
	left: 58%;
	opacity: 0.8;
	animation-duration: 2.25s;
	animation-delay: 0.2s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(9) {
	left: 98%;
	opacity: 0.6;
	animation-duration: 2.6s;
	animation-delay: 0.1s;
}
.section-cta-wraper
	.cta-text-btn-wraper
	.cta-btn
	.points_wrapper
	.point:nth-child(10) {
	left: 65%;
	opacity: 1;
	animation-duration: 2.5s;
	animation-delay: 0.2s;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .inner {
	z-index: 2;
	gap: 6px;
	position: relative;
	width: 100%;
	color: var(--primary-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	transition: color 0.2s ease-in-out;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .inner svg.icon {
	width: 18px;
	height: 18px;
	transition: fill 0.1s linear;
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button:focus svg.icon {
	fill: var(--primary-text);
}
.section-cta-wraper .cta-text-btn-wraper .cta-btn .button:hover svg.icon {
	fill: transparent;
	animation: dasharray 1s linear forwards, filled 0.1s linear forwards 0.95s;
}
@keyframes dasharray {
	from {
		stroke-dasharray: 0 0 0 0;
	}
	to {
		stroke-dasharray: 68 68 0 0;
	}
}
@keyframes filled {
	to {
		fill: var(--primary-text);
	}
}
.section-cta-wraper .cta-text-btn-wraper::after {
	content: "";
	position: absolute;
	bottom: -70%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.568627451),
		rgba(0, 0, 0, 0)
	);
	width: 960px;
	height: 142px;
	border-radius: 50%;
	z-index: 0;
	background-color: #9140b3;
}
.section-cta-wraper .cta-text-btn-wraper {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-top: -3.5rem;
}
.section-cta-wraper .cta-text-btn-wraper .cta-text {
	color: #cecfce;
	font-weight: 300;
	line-height: 1.8;
	font-size: 18px;
	font-weight: 500;
}

.sec-join-community {
	padding-top: 5rem;
}
@media screen and (min-width: 1400px) {
	.sec-join-community {
		padding-top: 12rem;
	}
}
.sec-join-community .mt-minus {
	margin-top: -3rem;
}
.sec-join-community .rocket-img img {
	max-width: 130px;
	width: 100%;
	margin-bottom: 1.2rem;
}
.sec-join-community .corn-gradient-box {
	padding: 2.4rem 1.9rem;
	border-radius: 15px;
	background-image: url(/assets/img/grade-card.svg);
	background-position: center;
	background-size: cover;
	color: var(--primary-text);
	display: flex;
	gap: 1rem;
	align-items: center;
	height: 100%;
}
.sec-join-community .corn-gradient-box .icon img {
	max-width: 100px;
}

.faq-section-wraper {
	padding-top: 5rem;
}
.faq-section-wraper .faq-title {
	color: #a37e2d;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.faq-section-wraper .main-faq-sec {
	padding-top: 2rem;
	max-width: 950px;
	margin: 0 auto;
}
.faq-section-wraper .main-faq-sec .accordion-item,
.faq-section-wraper .main-faq-sec .accordion-button.collapsed {
	background: #101411;
}
.faq-section-wraper .main-faq-sec .accordion-button,
.faq-section-wraper .main-faq-sec .accordion-item {
	color: var(--primary-text);
	border-radius: 15px;
}
.faq-section-wraper .main-faq-sec .accordion-button {
	padding: 24px 30px;
	font-size: 18px;
	font-weight: 500;
	position: relative;
	z-index: 2;
}
.faq-section-wraper .main-faq-sec .accordion-button:not(.collapsed) {
	border-radius: 15px 15px 0 0;
	box-shadow: 0 0 0 0 #000;
	background-color: transparent;
}
.faq-section-wraper .main-faq-sec .accordion-item {
	border-color: #370b84 !important;
	border-radius: 15px;
	overflow: hidden;
}
.faq-section-wraper .main-faq-sec .accordion-item + .accordion-item {
	margin-top: 1rem;
	border-top: solid 1px;
}
.faq-section-wraper .main-faq-sec .accordion-item {
	transition: all 0.25s ease-in-out;
}
.faq-section-wraper .main-faq-sec .accordion-item .accordion-button.collapsed {
	position: relative;
	transition: all 0.25s ease-in;
}
.faq-section-wraper
	.main-faq-sec
	.accordion-item
	.accordion-button.collapsed::before {
	content: "";
	position: absolute;
	bottom: -118%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.71),
		rgba(0, 0, 0, 0)
	);
	width: 404px;
	height: 142px;
	border-radius: 50%;
	z-index: 0;
}
.faq-section-wraper .main-faq-sec .accordion-item .accordion-button::after {
	width: 29px;
	height: 29px;
	background-size: cover;
}
.faq-section-wraper
	.main-faq-sec
	.accordion-item
	.accordion-button.collapsed::after {
	content: "";
	background-image: url(/assets/img/accordien-btn.png);
}
.faq-section-wraper
	.main-faq-sec
	.accordion-item
	.accordion-button:not(.collapsed)::after {
	background-image: url(/assets/img/accordien-btn.png) !important;
}
.faq-section-wraper .main-faq-sec .accordion-item:hover {
	transition: all 0.25s ease-in-out;
	border-color: #985dff !important;
}
.faq-section-wraper
	.main-faq-sec
	.accordion-item:hover
	.accordion-button.collapsed::before {
	transition: all 0.25s ease-in;
	background-color: #5d186f;
}

footer {
	padding-top: 6rem;
}
footer .footer-logo img {
	max-width: 240px;
	width: 100%;
}
footer h3 {
	font-weight: 700 !important;
}
footer .address address {
	color: #9ba2ad;
	max-width: 150px;
}
footer .address address a {
	text-decoration: none;
}
footer .list-unstyled li a {
	color: #9ba2ad;
}
footer .list-unstyled li a i {
	color: #fff;
	font-size: 17px;
}

footer {
	position: relative;
}
footer::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	right: 2%;
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.16),
		rgba(0, 0, 0, 0)
	);
	width: 364px;
	height: 348px;
	border-radius: 50%;
	z-index: 0;
	background-color: #985dff;
}
footer::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	left: 2%;
	-webkit-mask-image: radial-gradient(closest-side, #fff, rgba(0, 0, 0, 0));
	mask-image: radial-gradient(
		closest-side,
		rgba(255, 255, 255, 0.16),
		rgba(0, 0, 0, 0)
	);
	width: 364px;
	height: 348px;
	border-radius: 50%;
	z-index: 0;
	background-color: #985dff;
}

.tm-bonus-bx {
	padding-top: 1.2rem;
}
.tm-bonus-bx .title {
	font-weight: 700;
}
.tm-bonus-bx .text {
	font-size: 17px;
}
.tm-bonus-bx ul li {
	padding-left: 7px;
	font-size: 17px;
	font-weight: 500;
	color: #959595;
	display: inline-flex;
	align-items: start;
	gap: 7px;
}
.tm-bonus-bx ul li::before {
	content: "\f178";
	font-family: "FontAwesome";
	color: #7e7614;
}

.dividend-bx {
	margin-top: 1.5rem;
}
.dividend-bx p {
	margin: 0;
	font-size: 17px;
}
.dividend-bx h4 {
	text-align: center;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 10px;
	display: inline-block;
	color: #7c55ef;
}
.dividend-bx .text-sec {
	color: rgba(197, 156, 32, 0.6784313725);
}
.dividend-bx .cmtn {
	display: block;
	font-size: 18px;
}
.dividend-bx .bx {
	background: #101411;
	padding: 27px 15px;
	padding-top: 15px;
	border-radius: 19px;
	height: 100%;
	box-shadow: inset 0 0px 24px rgba(110, 0, 255, 0.16);
}
.dividend-bx .bx .title-hilight {
	background: rgba(111, 133, 255, 0.0784313725);
	padding: 10px 0;
	border-radius: 9px;
	margin-bottom: 4px;
}

.copy-right {
	padding: 1rem 0;
	background-color: #101916;
	border-top: solid 1px #222222;
}
.copy-right .small {
	color: var(--primary-text);
}
.copy-right .small a {
	text-decoration: none;
	color: #fff;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
	background-image: url(/assets/img/menu-btn-toggle.svg);
}

.navbar-toggler .navbar-toggler-icon {
	background-image: url(/assets/img/close.svg);
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

@media screen and (min-width: 1600px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1450px !important;
	}
}
@media screen and (min-width: 1350px) {
	.section-four-wrap .four-box {
		max-width: 1651px !important;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box.item-3 img,
	.section-two-wrap .feature-boxs-wrap .feature-box.item-2 img {
		max-width: inherit;
		min-width: 140px;
	}
	.banner-wrap .left-side h1 {
		font-size: 52px;
	}
	.banner-wrap .left-side h5 {
		font-size: 22px;
		font-weight: 400;
	}
	.banner-wrap .left-side p {
		font-size: 19.5px;
	}
	.banner-wrap .left-side .banner-btn .button {
		padding: 14px 2.9rem;
		font-size: 19px;
	}
	.banner-wrap .banner {
		padding-top: 7rem;
	}
	.banner-wrap .banner::before {
		background-position: 147% 72%;
		background-size: 88% 114%;
	}
	.banner-wrap .right-side img {
		max-width: inherit;
	}
	.banner-wrap header .navbar-nav .nav-link {
		font-size: 18px;
	}
}
@media screen and (max-width: 1400px) {
	.banner-wrap .banner::before {
		background-position: 180%;
		background-size: 88% 100%;
	}
}
@media screen and (max-width: 1200px) {
	.banner-wrap .banner::before {
		background-position: -347%;
		background-size: 104% 100%;
	}
}
@media screen and (min-width: 991px) {
	.banner-wrap header .logo {
		min-width: 275px;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}
@media screen and (max-width: 991px) {
	.bg-candle {
		background-position: bottom;
		opacity: 0.2;
	}
	.sec-join-community .title-container {
		display: flex;
		gap: 2rem;
	}
	.sec-join-community .corn-gradient-box {
		padding: 2rem 1.4rem 22.4px;
	}
	.banner-wrap .banner::before {
		background-position: 51% 95%;
		background-size: 67% 74%;
		background-image: url(/assets/img/mob-coin-bg.png);
		z-index: 0;
	}
	.banner-shapewraper::before {
		background-position: center;
		z-index: 1;
	}
	.navbar-collapse {
		background-color: #000;
		padding: 0.7rem;
		border-radius: 15px;
		margin-top: 15px;
		box-shadow: rgba(12, 62, 161, 0.33) 0px 0px 22px inset;
	}
	.section-two-wrap .feature-boxs-wrap {
		display: flex;
		flex-direction: column;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box.item-3,
	.section-two-wrap .feature-boxs-wrap .feature-box.item-2 {
		flex-direction: column;
		align-items: start;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box img {
		max-width: 137px;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box.item-1 p {
		max-width: inherit;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box {
		padding: 2.2rem;
	}
	.section-three-wrap {
		padding-top: 5rem;
	}
	.title-container h4 {
		margin: 0 auto;
	}
	.section-three-wrap::before {
		bottom: inherit;
		top: 50%;
		opacity: 0.4;
	}
	.section-four-wrap .title-container .right {
		text-align: center;
	}
	.section-cta-wraper .cta-section::after {
		opacity: 0.6;
	}
	.section-cta-wraper .cta-section::before {
		width: 500px;
		height: 500px;
		top: -50%;
		left: -31%;
	}
	.sec-join-community .mt-minus {
		margin-top: 0;
	}
	.banner-wrap header .navbar-nav .nav-link.active::after {
		width: 36px;
		left: 20px;
	}
	.banner-wrap header .nav-item + .nav-item {
		margin-left: 0;
	}
}
@media screen and (max-width: 767px) {
	.banner-wrap .banner::before {
		background-position: 51% 121%;
		background-size: 100% 74%;
	}
	.banner-wrap .right-side img {
		max-width: 354px;
	}
	.banner-wrap .banner {
		padding-bottom: 2rem;
	}
	.banner-wrap header .logo {
		max-width: 156px;
		min-width: inherit;
		-o-object-fit: contain;
		object-fit: contain;
	}
	.section-five-wrap {
		padding-top: 2rem;
	}
	.section-cta-wraper .cta-section {
		padding: 1rem 2rem;
		padding-bottom: 4rem;
	}
	.section-cta-wraper .cta-text-btn-wraper {
		flex-direction: column;
		align-items: start;
	}
	.section-cta-wraper .cta-text-btn-wraper {
		padding: 1.4rem;
	}
}
@media screen and (max-width: 600px) {
	.sec-join-community .rocket-img img {
		max-width: 80px;
		margin: 0;
	}
	.sec-join-community .title-container {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.faq-section-wraper {
		padding-top: 2rem;
	}
	.banner-wrap header.header-sticky {
		padding: 7px 0;
	}
	.banner-wrap header .btn-connect {
		width: 100%;
	}
}
@media screen and (max-width: 576px) {
	.banner-wrap .left-side h1 {
		font-size: 37px;
	}
	.banner-wrap .right-side {
		padding-top: 2rem;
	}
	.banner-wrap header {
		padding-top: 0rem;
	}
	.banner-wrap .left-side h5 {
		font-size: 18px;
	}
	.banner-wrap .left-side p {
		font-size: 17px;
		line-height: 1.6;
	}
	.title-container h4 {
		font-size: 1rem;
	}
	.title-container h2 {
		font-size: 1.8rem;
	}
	.title-container p {
		font-size: 17px;
		line-height: 1.7;
	}
	.section-two-wrap .title-container p {
		margin-bottom: 0rem;
	}
	.banner-wrap .banner::before {
		background-position: 51% 121%;
		background-size: 140% 73%;
	}
	.section-two-wrap .feature-boxs-wrap .feature-box {
		padding: 1.6rem 25.6px;
	}
	.section-four-wrap .explore-box {
		padding: 1.2rem;
	}
	.section-four-wrap .explore-box img {
		max-width: 95px;
	}
	.section-cta-wraper .cta-text-btn-wraper .cta-text {
		line-height: 1.6;
		font-size: 17px;
	}
	.sec-join-community {
		padding-top: 3rem;
	}
	footer::after {
		display: none;
	}
	footer::before {
		left: -48%;
	}
}
@media screen and (max-width: 450px) {
	.banner-wrap .right-side img {
		max-width: 304px;
	}
} /*# sourceMappingURL=style.css.map */
