/*Common style */
.pad-para-title {
	padding: 0px 60px;
}






/*header */

.style-gradient2:after {
	background: -webkit-linear-gradient(left, var(--theme-color) 0%, var(--theme-color3) 100%);
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%)
}

.style-gradient2:hover {
	color: var(--title-color);
	border: 1px solid #8342f6;
}

.style-gradient2:hover i {
	color: var(--title-color)
}

/* Default submenu style */
.sub-menu {
	min-width: 250px;
	padding: 15px 20px;
}

/* Apply multi-column layout if needed */
.sub-menu.multi-column {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	gap: 10px 30px;
}

/* Optional: menu item spacing */
.sub-menu li {
	margin-bottom: 8px;
}

.th-menu-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	width: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
	opacity: 0;
	visibility: hidden
}

.th-menu-wrapper .mobile-logo {
	display: block;
	text-align: start;
	background-color: var(--smoke-color);
	padding: 30px 20px;
}

.th-menu-wrapper .mobile-logo svg {
	max-width: 185px
}

.th-menu-wrapper .th-menu-toggle {
	border: none;
	position: absolute;
	right: 20px;
	top: 26px;
	padding: 0;
	line-height: 1;
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 20px;
	z-index: 1;
	color: var(--white-color);
	background-color: var(--theme-color);
	border-radius: 50%;
}

.th-mobile-menu>ul>li:last-child {
	border-bottom: none
}

.th-menu-wrapper .th-menu-toggle:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

.th-menu-wrapper .th-menu-area {
	width: 100%;
	max-width: 310px;
	background-color: #fff;
	border-right: 3px solid var(--theme-color);
	height: 100%;
	position: relative;
	left: -110%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 1s;
	transition: all ease 1s;
	z-index: 1
}

.th-menu-wrapper.th-body-visible {
	opacity: 1;
	visibility: visible
}

.th-menu-wrapper.th-body-visible .th-menu-area {
	left: 0;
	opacity: 1;
	visibility: visible
}

.th-menu-area {
	max-height: 100vh;
	overflow-y: auto;
	padding-bottom: 50px;
}

.th-menu-wrapper.style2 .mobile-logo {
	background: var(--title-color)
}

.th-menu-wrapper.style2 .th-menu-toggle {
	color: var(--title-color)
}

.th-menu-wrapper.style2 .th-menu-toggle:hover {
	color: var(--white-color);
	background: var(--black-color2)
}

.th-menu-wrapper.style2 .th-mobile-menu ul li.th-active>a {
	color: var(--title-color)
}

.th-mobile-menu {
	overflow-y: scroll;
	max-height: calc(100vh - 200px);
	padding-bottom: 40px;
	margin-top: 25px;
	text-align: left;
}

.th-mobile-menu ul {
	margin: 0;
	padding: 0 0
}

.th-mobile-menu ul li {
	border-bottom: 1px solid var(--th-border-color);
	list-style-type: none
}

.th-mobile-menu ul li li:first-child {
	border-top: 1px solid var(--th-border-color)
}

.th-mobile-menu ul li a {
	display: block;
	position: relative;
	padding: 10px 0;
	font-size: 15px;
	text-transform: capitalize;
	color: var(--title-color);
}

/*header section */

.auto-container {
	/* position: static; */
	max-width: 1320px;
	padding: 0px 15px;
	margin: 0 auto;
}

.sticky-wrapper {
	position: fixed;
	top: 15px;
	width: 100%;
	z-index: 9999;
	/* background-color: #fff; */
	/* box-shadow: ; */
	height: auto;
}

.sticky-wrapper.sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: var(--white-color);
	-webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
	-webkit-animation: stickyAni 0.4s ease-in-out;
	animation: stickyAni 0.4s ease-in-out
}

@-webkit-keyframes stickyAni {
	0% {
		-webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
		transform: translate3d(0, -40px, 0) scaleY(0.8);
		opacity: 0.7
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}

@keyframes stickyAni {
	0% {
		-webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
		transform: translate3d(0, -40px, 0) scaleY(0.8);
		opacity: 0.7
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}

.header-layout2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.header-layout2 .menu-area {
	margin-top: 0;
	position: relative;
	padding: 3px 20px;
	box-shadow: 0 5px 15px rgba(0, 64, 255, 0.08);
	background: #fff;
	border-top-right-radius: 45px;
	border-bottom-left-radius: 45px;
}

.header-layout2 .menu-area .header-bg-shape {
	position: absolute;
	inset: 0;
	/* background: var(--white-color); */
	z-index: -1;
	border-top-right-radius: 45px;
	border-bottom-left-radius: 45px;
}

/* .header-layout2 .sticky-wrapper.sticky .menu-area {
  margin-top: 0;
  padding: 0
} */
.sticky {
	display: none;
}

.header-top {
	position: relative;
	z-index: 2;
	top: 1px;
}

.header-top .inner-container {
	position: relative;
}

.auto-container {
	/* position: static; */
	max-width: 1320px;
	padding: 0px 15px;
	margin: 0 auto;
}

.header-top .left-box {
	position: relative;
}

/* .header-top .info-list_outer::after {
  position: absolute;
  content: '';
  right: -52px;
  bottom: -5px;
  width: 80px;
  height: 46px;
  z-index: -1;
  background: url(../images/shape-2.png);
}

.header-top .info-list_outer::before {
  position: absolute;
  content: '';
  left: -42px;
  bottom: -5px;
  width: 80px;
  height: 34px;
  background: url(../images/shape-1.png);
} */

.header-top .info-list_outer {
	position: relative;
	margin-left: 70px;
	border-radius: 50px;
	border: 4px solid #fff;
}

.header-top_list {
	position: relative;
	padding: 13px 20px;
	border-radius: 50px;
	background-color: rgba(0, 13, 255, 1);
	background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}

.header-top_list li {
	position: relative;
	line-height: 14px;
	font-weight: 500;
	font-size: 15px;
	display: flex;
	gap: 10px;
	margin-right: 20px;
	align-items: center;
	color: #fff;
}

.header-top_list li .icon {
	position: relative;
	left: 0px;
	font-weight: 700;
	line-height: 1em;
	font-family: 'Font Awesome 6 Free';
}

.header-top_list li a {
	position: relative;
	color: #fff;
}

.header-top .right-box {
	position: relative;
}

.header-top_socials::after {
	position: absolute;
	content: '';
	right: -52px;
	bottom: -5px;
	width: 80px;
	height: 46px;
	z-index: -1;
	background: url(../images/shape-2.png);
}

.header-top_socials::before {
	position: absolute;
	content: '';
	left: -43px;
	bottom: -5px;
	width: 80px;
	height: 34px;
	background: url(../images/shape-1.png);
}

.header-top_socials {
	position: relative;
	border-radius: 50px;
	margin-right: 70px;
	border: 4px solid #fff;
	background-color: #fff;
}

.header-top_socials .social-inner {
	position: relative;
	border-radius: 50px;
	border: 2px solid #fff;
	background: linear-gradient(-90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
}

.header-top_socials a {
	position: relative;
	font-size: 14px;
	width: 40px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	color: #fff;
}






/* common css */
.th-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--title-color);
	z-index: -1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-mask-image: url(../images/btn-mask.png);
	mask-image: url(../images/btn-mask.png);
	-webkit-mask-size: 2300%, 100%;
	mask-size: 2300%, 100%;
	-webkit-animation: ani2 0.5s steps(22) forwards;
	animation: ani2 0.5s steps(22) forwards;
}

.color-scheme-wrap .switchIcon {
	display: none;
}

.scroll-top.show {
	display: none;
}

.process-card-wrap::after {
	display: none;
}

.tap-menu li {
	margin: 3px 0px;
}

.tab-content:hover {
	cursor: pointer;
}

/*new banner section */




.banner-bg {
	background: url("../images/banner-bg.webp") no-repeat scroll 0 0;
	padding: 100px 0px 40px 0px;
	overflow: hidden;
}


/* Ensure content is above the overlay */
.banner-bg .container {
	position: relative;
	z-index: 2;
}

.smoke-svg {
	position: absolute;
	top: -50px;
	left: -50px;
	width: 700px;
	height: 700px;
	z-index: 1;
}

@keyframes moveSmoke {
	0% {
		transform: translate(0px, 0px) scale(1);
	}

	100% {
		transform: translate(-30px, -40px) scale(1.2);
	}
}

@keyframes floatSmoke {
	0% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(1deg);
	}

	100% {
		transform: translateY(0) rotate(0deg);
	}
}

.trust-ico {
	background: linear-gradient(90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
	border-radius: 100%;
	width: 178px;
	height: 178px;
	text-align: center;
	margin: 0 auto;
	align-content: center;
	align-items: center;
}

.banner-title small {
	font-size: 18px;
	font-weight: 600;
	color: transparent;
	background: -webkit-linear-gradient(right, var(--theme-color3) 0%, var(--theme-color) 100%);
	background: linear-gradient(-90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
	-webkit-background-clip: text;
	font-size: 18px;
	font-family: var(--title-font);
}

.f-heading__highlight {
	color: #7b3eca !important;
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 4px;
}

.banner-title {
	margin-left: 0;
	margin-bottom: 20px;
	margin-top: 0;
	text-align: center;
}

.banner-base-img {
	text-align: center;
	position: relative;
	margin-top: -130px;
	z-index: -1;
}

.tap-menu li a iconify-icon {
	font-size: 25px;
	color: #7132f5;
	position: relative;
	margin-right: 10px;
}

.tap-menu li a {
	color: #000;
	font-size: 16px;
	font-weight: 700;
}

.tap-menu li a:hover {
	border: none !important;
	border-bottom: none !important;
	color: #fff;
	background: transparent !important;
}

.tap-menu li:hover {
	/* background: var(--theme-color); */
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.tap-menu li h6 {
	font-size: 19px;
	font-weight: 500 !important;
	letter-spacing: 2px;
}

.tap-menu li.active a {
	box-shadow: none !important;
	/* color: #000 !important; */
	cursor: default;
	/* background-color: var(--theme-color); */
	border: none !important;
	border-bottom-color: transparent !important;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.tap-menu li.active a .tap-top {
	background: var(--theme-color);
	color: #fff;
}

.tap-menu li.active a .tap-top iconify-icon {
	color: #fff;
}

.tap-menu li a:hover .tap-top {
	background: var(--theme-color);
}

.tap-menu li a:hover .tap-top iconify-icon {
	color: #fff;
}

.banner-bg::after {
	position: absolute;
	content: "";
	background: url("../images/banner-wave-after.webp") no-repeat;
	background-size: cover;
	height: 423px;
	width: 948px;
	bottom: 12%;
	right: -22%;
}

.banner-bg::before {
	position: absolute;
	content: "";
	background: url("../images/banner-wave-before.webp") no-repeat;
	background-size: cover;
	height: 423px;
	width: 948px;
	bottom: 12%;
	left: -22%;
}

.truested-seller {
	background: var(--theme-color);
	border-radius: 20px;
	text-align: center;
	width: 232px;
	height: 211px;
	padding: 15px 0px;
}

.tap-menu {
	border-radius: 20px;
	padding: 15px 0px;
	background: transparent;
	position: relative;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0px auto 20px auto;
	width: 100%;
	text-align: center;
}

.tap-menu li {
	float: none;
	display: inline-block;
	margin: 5px 5px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background: #f7f6f6;
	width: 15%;
	text-align: center;
	padding: 10px 0px 30px 0px;
}

.tap-top {
	align-items: center;
	display: flex;
	background: #fff;
	padding: 10px 10px;
	--display: flex;
	--flex-direction: row;
	--container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%);
	--container-widget-height: 100%;
	--container-widget-flex-grow: 1;
	--container-widget-align-self: stretch;
	--flex-wrap-mobile: wrap;
	--align-items: center;
	--flex-wrap: nowrap;
	box-shadow: 0px 13px 28px 0px rgba(121, 93, 252, 0.7);
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	width: 160px;
	margin: 0 auto;
	justify-content: start;
}



.why-choose-title h2 {
	font-size: 34px;
	line-height: 50px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.para p {
	margin: 0;
}

.banner-elements ul li {
	position: absolute;
}

.banner-elements ul li:first-child {
	left: 160px;
	top: 110px;
}

.banner-elements ul li:nth-child(2) {
	right: 17%;
	top: 24%;
}

.banner-images.tab-content .tab-pane {
	padding: 0px;
	border: none;
	border-top: 0;
	text-align: center;
	background: transparent;
	margin-top: 23px;
}

.tap-banner-img {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}

.banner-images {
	position: relative;
	top: 15px;
	animation: animate 4s ease-in-out infinite;
	text-align: center;
}

.flip-horizontal {
	transform: scaleX(-1);
}

.tab-banner-animated {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 60px 0;
	position: relative;
}

.left-img,
.right-img {
	width: 130px;
	animation: floatNFT 3s ease-in-out infinite alternate;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.custom-md-fluid {
		max-width: 100% !important;
		width: 90% !important;
	}
}

/* Glowing beam effect in center */
.glow-line {
	width: 52px;
	height: 96px;
	background: linear-gradient(90deg, #af191900, #f88d43, transparent);
	box-shadow: 0px 10px 53px #f88d43, 0px 10px 36px #f88d43;
	border-radius: 5px;
	animation: glowPulse 4s ease-in-out infinite;
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
	bottom: 0px;
	filter: blur(3px);
}

@keyframes floatNFT {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes glowPulse {

	0%,
	100% {
		opacity: 0.3;
		transform: scaleX(0.7);
	}

	50% {
		opacity: 1;
		transform: scaleX(1.4);
	}
}

.tab-pane:not(.active) .tab-banner-animated {
	animation: none !important;
}

.tab-pane:not(.active) img,
.tab-pane:not(.active) .glow-line {
	animation: none !important;
	opacity: 0;
}

.glossy-circle {
	background: #11529f;
	border-radius: 50%;
	display: inline-block;
	padding: 5px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.growth-icon {
	display: inline-block;
	border-radius: 50%;
	width: 94px;
	height: 94px;
	text-align: center;
	padding: 12px 0px;
	/* background: rgb(13,153,245); */
	background: var(--theme-color);
}

.growth-icon iconify-icon {
	color: #fff !important;
	font-size: 65px;
}

.growth-content h3 {
	color: #fff;
	font-weight: 600;
	font-size: 47px;
	margin-bottom: 0px;
}

.growth-content h3 span {
	color: #fff;
	font-size: 26px;
}

.banner-growth {
	display: flex;
}

.banner-growth {
	display: flex;
	background: linear-gradient(135deg, #87eefc, #c8a7fa, #9ef3e2);
	width: 360px;
	height: 155px;
	justify-content: space-around;
	align-items: center;
	position: absolute;
	right: 55px;
	bottom: 19px;
	opacity: 0.9;
	border-radius: 63px;
	padding: 0px 5px;
}

.banner-growth:hover {
	opacity: 1;
}

.banner-growth:hover .growth-icon {
	/* background: rgb(13, 153, 245); */
	background: var(--theme-color);
}

.main-banner-bg {
	background: url("images/main-banner/main-banner-bg.webp") no-repeat scroll 0 0;
	background-size: cover;
}

.main-header.header-sticky .logo-dark1 {
	display: none !important;
}

.growth-content h6 a {
	color: #000;
	font-size: 25px;
	font-family: "Instrument Sans";
	font-weight: 600;
}

.growth-content h6 a:hover {
	/* background: -webkit-linear-gradient(99deg, #9427e3 0%, #be6df9 50%, #b57fdd 100%); */
	/* -webkit-background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
	color: #8f186b;
}

.nav>li>a:focus {
	text-decoration: none;
	background: none;
	outline: none;
}

.growth-content h6 {
	line-height: 28px;
	margin-bottom: 0px;
}

.rich-btn .button {
	margin-top: 0px;
	font-weight: 500;
	font-size: 16px;
	font-family: "Instrument Sans";
}

.more-blog .button {
	background: rgb(97, 97, 218);
	background: -moz-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6161da", endColorstr="#22228f", GradientType=1);
	font-size: 18px;
	font-weight: 500;
	border-radius: 7px;
	padding: 0px 33px;
}

.why-thumb-video {
	width: 85%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

/************************ Section-bannerside **********************************/


.box2 {
	background: #6659c7 !important;
	border-radius: 10px;
}

.margin {
	margin-bottom: 96px;
}

.banner-ico iconify-icon {
	font-size: 41px;
}

.banner-ico {
	margin-bottom: 20px;
	background: #ecedee;
	width: 55px;
	height: 55px;
	border-radius: 50px;
	text-align: center;
	padding: 7px 0px;
}

.banner-side-box {
	background: url("../images/ft_bg1.jpg") no-repeat scroll 0 0;
	background-size: cover;
	width: 306px;
	height: 416px;
	padding: 15px 10px;
	text-align: center;
	position: relative;
}

.box-title {
	font-size: 25px;
}

.banner-side-box:hover .banner-subtitle a {
	text-decoration: underline 2px;
}

.defi-icon {
	position: absolute;
	right: 19px;
	bottom: 13px;
}

.thinking-dots {
	display: flex;
	gap: 8px;
}

.thinking-dots span {
	width: 10px;
	height: 10px;
	background: rgb(118, 84, 240);
	border-radius: 50%;
	animation: jump 1s infinite ease-in-out;
}

.thinking-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.thinking-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes jump {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.waveform {
	display: flex;
	gap: 4px;
	align-items: center;
}

.wave {
	width: 6px;
	height: 20px;
	background: rgb(118, 84, 240);
	animation: waveAnim 1.2s infinite ease-in-out;
}

.wave:nth-child(2) {
	animation-delay: 0.2s;
}

.wave:nth-child(3) {
	animation-delay: 0.4s;
}

.wave:nth-child(4) {
	animation-delay: 0.6s;
}

@keyframes waveAnim {

	0%,
	100% {
		height: 20px;
	}

	50% {
		height: 40px;
	}
}

.circle-pulse {
	width: 55px;
	height: 55px;
	border: 4px solid #6a43f7;
	border-radius: 50%;
	animation: pulseAnim 1.5s infinite;
	box-shadow: 0 0 20px #f9be78;
	position: absolute;
	top: 27px;
}

@keyframes pulseAnim {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.bot-message {
	background: linear-gradient(90deg, var(--theme-color), #000, #de7ee9);
	background-size: 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: shineText 3s infinite linear;
	animation-direction: reverse;
}

@keyframes shineText {
	0% {
		background-position: 200% center;
	}

	100% {
		background-position: -200% center;
	}
}

@keyframes sparkle {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

.ticker {
	overflow: hidden;
	background: #9733f5;
	color: #fff;
	white-space: nowrap;
	padding: 5px 0px;
}

.ticker-inner {
	display: inline-block;
	animation: scrollTicker 10s linear infinite;
}

@keyframes scrollTicker {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

hr {
	color: #d3d0d0;
	height: 1px;
	width: 100%;
	background: #d3d0d0;
}

.trading-bubbles {
	position: absolute;
	width: 100%;
	height: 248px;
	overflow: hidden;
	background: transparent;
	margin: 0 auto;
	right: 0;
	z-index: 1;
	filter: blur(4px);
}

.bubble {
	position: absolute;
	bottom: -40px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	opacity: 0.6;
	animation: floatUp 6s linear infinite;
}

.buy {
	background: #fa7ac9;
	left: 10%;
	animation-delay: 0s;
}

.sell {
	background: #7455fd;
	left: 50%;
	animation-delay: 1.5s;
}

.bubble:nth-child(3) {
	left: 30%;
	animation-delay: 3s;
}

.bubble:nth-child(4) {
	left: 70%;
	animation-delay: 4.5s;
}

@keyframes floatUp {
	0% {
		bottom: -40px;
		transform: scale(0.8);
		opacity: 0.2;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}

	100% {
		bottom: 100%;
		transform: scale(0.9);
		opacity: 0;
	}
}

.matrix-stream {
	display: flex;
	gap: 10px;
	height: 100px;
}

.line {
	width: 4px;
	background: linear-gradient(to bottom, #6c4bfd 0%, transparent 100%);
	animation: stream 1.5s infinite;
}

.line:nth-child(2) {
	animation-delay: 0.3s;
}

.line:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes stream {
	0% {
		height: 10px;
		opacity: 0;
	}

	50% {
		height: 100px;
		opacity: 1;
	}

	100% {
		height: 10px;
		opacity: 0;
	}
}

.coin-flip {
	perspective: 1000px;
	width: 60px;
	height: 60px;
	margin: 0px auto;
	position: relative;
	top: -83px;
}

.coin-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	animation: flipCoin 3s infinite linear;
}

.coin-front,
.coin-back {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 17px;
	color: #fff;
	box-shadow: 0 0 20px #f9be78;
}

.coin-front {
	background: linear-gradient(135deg, #7132f5, #AB33F5);
}

.coin-back {
	background: linear-gradient(135deg, #2609fd, #9f04a4);
	transform: rotateY(180deg);
}

@keyframes flipCoin {
	from {
		transform: rotateY(0deg);
	}

	to {
		transform: rotateY(360deg);
	}
}

/************************ Section-bannerside end **********************************/


.animated-title .underline {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f84ccd, transparent);
	background-size: 200% auto;
	animation: slideLine 4s linear infinite;
}

@keyframes slideLine {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

.animated-title {
	position: relative;
	display: inline-block;
}


/* web3 solutions*/

.promotion-slider-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-bottom: 20px;
}

.promotion-slider {
	display: flex;
	width: max-content;
	animation: scrollSlider 40s linear infinite;
	flex-wrap: nowrap;
}

.promotion-slider li {
	background: #f8f8fa;
	padding: 20px 10px 20px 10px;
	border-radius: 20px;
	margin-right: 40px;
	max-width: 455px;
	flex-shrink: 0;
	box-shadow: #00000014 0 10px 34px;
}

/* Keyframes for infinite scroll */
@keyframes scrollSlider {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.promotion-slider-wrapper-two {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.promotion-slider-two {
	display: flex;
	flex-wrap: nowrap;
	animation: scrollRightToLeft 50s linear infinite;
}

.promotion-slider-two li {
	background: #f8f8fa;
	padding: 20px 10px 20px 10px;
	border-radius: 20px;
	margin-right: 40px;
	/* max-width: 35%; */
	flex-shrink: 0;
	box-shadow: #00000014 0 10px 34px;
}

.promotion-slider li:hover h4 {
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%);
	background-size: auto;
	background-clip: border-box;
	background-size: 200%;
	-webkit-background-clip: text;
	color: transparent;
	animation: shineText 3s infinite linear;
	animation-direction: reverse;
}

.promotion-slider-two li:hover h4 {
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%);
	background-size: auto;
	background-clip: border-box;
	background-size: 200%;
	-webkit-background-clip: text;
	color: transparent;
	animation: shineText 3s infinite linear;
	animation-direction: reverse;
}

/* Right-to-left keyframes */
@keyframes scrollRightToLeft {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

/* Pause on hover */
.promotion-slider-wrapper:hover .promotion-slider,
.promotion-slider-wrapper-two:hover .promotion-slider-two {
	animation-play-state: paused;
}

.ref-content h4 {
	font-size: 21px;
}

.coin-bg-float {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.coin-float {
	position: absolute;
	width: 40px;
	height: 40px;
	opacity: 0.1;
	animation: floatCoins 10s linear infinite;
	filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
	animation-timing-function: ease-in-out;
	transition: transform 0.3s ease;
}

@keyframes floatCoins {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	20% {
		transform: translate(30px, -20px) rotate(45deg);
	}

	40% {
		transform: translate(-25px, 15px) rotate(120deg);
	}

	60% {
		transform: translate(20px, -25px) rotate(200deg);
	}

	80% {
		transform: translate(-15px, 20px) rotate(300deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

@keyframes floatPath1 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(100px, -50px) rotate(90deg);
	}

	50% {
		transform: translate(-60px, 60px) rotate(180deg);
	}

	75% {
		transform: translate(80px, 40px) rotate(270deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

@keyframes floatPath2 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	20% {
		transform: translate(-80px, 100px) rotate(90deg);
	}

	50% {
		transform: translate(70px, -90px) rotate(180deg);
	}

	80% {
		transform: translate(-50px, 40px) rotate(270deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

@keyframes floatPath3 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	30% {
		transform: translate(120px, -80px) rotate(120deg);
	}

	60% {
		transform: translate(-100px, 90px) rotate(250deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

@keyframes floatPath4 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(-90px, 60px) rotate(90deg);
	}

	60% {
		transform: translate(80px, -70px) rotate(200deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

@keyframes floatPath5 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(60px, -100px) rotate(110deg);
	}

	75% {
		transform: translate(-90px, 80px) rotate(270deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

/* Float in full box space with different speeds + random paths */

.float1 {
	animation: floatPath1 16s ease-in-out infinite;
	top: 10%;
	left: 5%;
}

.float2 {
	animation: floatPath2 20s linear infinite;
	top: 30%;
	left: 70%;
}

.float3 {
	animation: floatPath3 18s ease-in-out infinite reverse;
	top: 65%;
	left: 20%;
}

.float4 {
	animation: floatPath4 22s ease-in-out infinite;
	top: 50%;
	left: 85%;
}

.float5 {
	animation: floatPath5 19s linear infinite reverse;
	top: 80%;
	left: 40%;
}

.web {
	position: absolute;
	z-index: 1;
}

.meta-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	height: 40px;
	right: 23px;
}

.meta-dots span {
	width: 12px;
	height: 12px;
	background: radial-gradient(circle, rgb(183, 0, 255), rgb(168, 122, 255));
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(141, 109, 255, 0.7);
	animation: metapulse 1.5s infinite ease-in-out;
}

.meta-dots span:nth-child(2) {
	animation-delay: 0.3s;
}

.meta-dots span:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes metapulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
		box-shadow: 0 0 15px rgba(0, 255, 255, 1);
	}
}

.dot-wave span {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 3px;
	background: #ff5cf4;
	border-radius: 50%;
	animation: wave 1s infinite ease-in-out;
}

.dot-wave span:nth-child(1) {
	animation-delay: 0s;
}

.dot-wave span:nth-child(2) {
	animation-delay: 0.1s;
}

.dot-wave span:nth-child(3) {
	animation-delay: 0.2s;
}

.dot-wave span:nth-child(4) {
	animation-delay: 0.3s;
}

.dot-wave span:nth-child(5) {
	animation-delay: 0.4s;
}

@keyframes wave {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

.zigzag-dots {
	height: 30px;
}

.zigzag-dots span {
	position: absolute;
	width: 8px;
	height: 8px;
	background: #f0f;
	border-radius: 50%;
	animation: zigzag 1.5s infinite ease-in-out;
}

.zigzag-dots span:nth-child(1) {
	left: 0;
	animation-delay: 0s;
}

.zigzag-dots span:nth-child(2) {
	left: 10px;
	animation-delay: 0.1s;
}

.zigzag-dots span:nth-child(3) {
	left: 20px;
	animation-delay: 0.2s;
}

.zigzag-dots span:nth-child(4) {
	left: 30px;
	animation-delay: 0.3s;
}

@keyframes zigzag {

	0%,
	100% {
		top: 0;
	}

	50% {
		top: 20px;
	}
}

.node-pulse {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	top: 16px;
}

.node-pulse span {
	width: 12px;
	height: 12px;
	background: #9e9bff;
	border-radius: 50%;
	animation: pulseNode 1s infinite ease-in-out;
}

.node-pulse span:nth-child(2) {
	animation-delay: 0.2s;
}

.node-pulse span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes pulseNode {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}

	50% {
		transform: scale(1.8);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.4;
	}
}

.zigzag-loader {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 10px;
	top: 5px;
}

.zigzag-loader span {
	width: 8px;
	height: 30px;
	background: #872bff;
	animation: zigzag 0.6s infinite ease-in-out alternate;
}

.zigzag-loader span:nth-child(2) {
	animation-delay: 0.1s;
}

.zigzag-loader span:nth-child(3) {
	animation-delay: 0.2s;
}

@keyframes zigzag {
	0% {
		height: 10px;
	}

	100% {
		height: 30px;
	}
}

/************************ web3 develop end **********************************/


/************************ Awards start **********************************/

.award-icon img {
	width: 100%;
}

.award-slider-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 20px 0;
}

.award-slider {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	animation: scrollLeft 40s linear infinite;
	/* slower = smoother */
}

.award-slider-wrapper:hover .award-slider {
	animation-play-state: paused;
}

.award-slider li {
	background: linear-gradient(145deg, #e2e8f0, #ffffff);
	padding: 10px;
	border-radius: 20px;
	margin-right: 40px;
	max-width: 455px;
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.glassy-glow {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.award-slider-level {
	animation: scrollRight 40s linear infinite;
}

.award-slider-wrapper:hover .award-slider-level {
	animation-play-state: paused;
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

.award-section {
	padding-bottom: 0;
}

/************************ Awards end **********************************/


/************************ why choose **********************************/

.subtitle-2 h2 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2em;
}

.why-choose-img img {
	width: 90%;
	border-radius: 20px;
	margin: 0 auto;
	/* max-height: 285px; */
}

.why-choose-img {
	text-align: center;
	position: relative;
	top: 16px;
}

.why-choose-img video {

	border-radius: 20px;
	width: 90%;
	margin: 0 auto;
}

.tab-aftr {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 18%;
	left: 0;
	margin: 0 auto;
	z-index: -1;
}

.tab-aftr img {
	animation: rotateSmooth 10s linear infinite;
	transform-origin: center center;
	/* display: block; */
	max-width: 100%;
}

@keyframes rotateSmooth {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/************************ why choose end**********************************/


/************************ Portfolio section start **********************************/

.portfolio-box {
	/* background: #dec9ff; */
	background: url("../images/grain-textue.png"), radial-gradient(circle, rgb(113, 136, 255) 0%, rgb(72, 3, 172) 100%);
	background-size: cover;
	padding: 40px 40px 40px 40px;
	border-radius: 20px;
	position: relative;
	box-shadow: 0px 0px 20px 0px rgb(229, 221, 254);
}

.portfolio-box::after {
	position: absolute;
	content: "";
	background: url("../images/grain-texure.png") no-repeat scroll 0 0;
	background-size: cover;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 311px;
	opacity: 0.4;
}

.portfolio-box .sub-head h5 {
	color: #383838;
}

.portfolio-box .sub-head h2 {
	color: #0c0c0c;
	font-size: 38px !important;
	line-height: 48px !important;
	font-weight: 800 !important;
	margin: 20px 0px;
}

.sub-head {
	position: relative;
	z-index: 1;
}

/* .folio-img {
  position: absolute;
} */
.vdo-box {
	padding: 0px 10px;
}

.sub-head p {
	/* color: #fff; */
	line-height: 25px;
	font-size: 15px;
	font-weight: 500;
}

.animated-bg {
	position: absolute;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, #c3b8f9, #c3cfff, #c3b8f9, #d2e1ff);
	background-size: 400% 400%;
	animation: moveBg 10s linear infinite;
	z-index: 0;
	filter: blur(30px);
	opacity: 0.5;
}

@keyframes moveBg {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Glossy Ball Style */
.glossy-ball {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #ffffffaa, #9d4edd);
	box-shadow: 0 0 25px #c77dff99;
	opacity: 0.7;
}

/* Ball 1 Movement */
.ball1 {
	animation: bounceAround1 9s linear infinite alternate;
}

/* Ball 2 Movement */
.ball2 {
	animation: bounceAround2 11s linear infinite alternate;
}

/* Movement Paths */
@keyframes bounceAround1 {
	0% {
		top: 10%;
		left: 10%;
	}

	25% {
		top: 20%;
		left: 80%;
	}

	50% {
		top: 70%;
		left: 60%;
	}

	75% {
		top: 40%;
		left: 20%;
	}

	100% {
		top: 10%;
		left: 10%;
	}
}

@keyframes bounceAround2 {
	0% {
		top: 70%;
		left: 70%;
	}

	25% {
		top: 30%;
		left: 10%;
	}

	50% {
		top: 10%;
		left: 80%;
	}

	75% {
		top: 60%;
		left: 40%;
	}

	100% {
		top: 70%;
		left: 70%;
	}
}

/* Foreground Content */
.content-inside {
	position: relative;
	z-index: 2;
}

.rotating-box {
	position: relative;
	height: 370px;
	border-radius: 20px;
	background: linear-gradient(145deg, #f0f4ff, #d6e4ff);
	/* Light blue-white theme */
	padding: 40px;
	color: #222;
	/* Dark text for contrast */
	overflow: hidden;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	box-shadow:
		inset 0 0 12px #ffffffaa,
		/* Inner light */
		0 8px 24px rgba(0, 0, 0, 0.05),
		/* Soft shadow */
		0 0 60px rgba(162, 193, 255, 0.4);
	/* Outer bluish glow */
	backdrop-filter: blur(12px);
	/* Glossy / Glassy look */
	-webkit-backdrop-filter: blur(12px);
	/* Safari support */
	transition: all 0.4s ease-in-out;
}

.rotating-box:hover {
	box-shadow:
		inset 0 0 14px #ffffffcc, 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 80px rgba(198, 162, 255, 0.6);
}

.content-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
	padding: 20px 45px;
	text-align: start;
}

.content-slide.active {
	opacity: 1;
	z-index: 2;
}

/************************ Portfolio section end **********************************/

.portfolio_circle {
	right: 30px;
	top: 20px;
	max-width: 200px;
	animation: 2s linear infinite wiggle;
	opacity: .4;
	position: absolute;
}

.portfolio_layer {
	position: absolute;
	left: 45%;
	bottom: 120px;
	max-width: 70px;
	animation: 6s ease-in-out infinite float;
}

.bg_head_home {
	background-size: 100% 100%;
	padding: 25px 30px;
}

.portfolio .carousel-indicators {
	bottom: auto;
	left: auto;
	top: 25px;
	flex-wrap: wrap;
	margin-right: auto;
	display: none;
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: 15%;
	margin-bottom: 1rem;
	margin-left: 15%;
	list-style: none;
}

.portfolio .carousel-indicators button {
	background-color: transparent;
	height: auto;
	width: auto;
	opacity: 1;
	text-indent: initial;
	padding: 15px 22px;
	border-radius: 50px;
	border: 0;
	color: #272727;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.banner_title_big {
	color: var(--title-color);
	font-size: 35px;
	font-weight: 800;
	line-height: 45px;
	padding: 0px 80px 0px 0px;
}

.blog_btn_plus:hover,
.portfolio .carousel-indicators button.active,
.portfolio .carousel-indicators button:hover {
	background-color: #e8ccff;
}

.bg_head {
	color: #000000;
	font-size: 30px;
	font-weight: 900;
	background-image: url(../images/head_bg.png);
	background-repeat: no-repeat;
	/* background-size: 30% 100%; */
	padding: 20px 40px;
	margin-bottom: 0;
	max-width: fit-content;
	position: relative;
}

.carousel-item.active {
	opacity: 1;
	z-index: 2;
}

.carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
	border-radius: 16px;
	padding: 20px 0px 0px 0px;
}

.carousel-item {
	display: none;
	width: 100%;
	padding: 0px 30px;
	font-size: 15px;
	font-weight: 500;
	color: #2b2b2b;
	transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
	display: block;
}

/* @keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */


.img-wave-wrapper {
	position: relative;
	margin: auto;
}

.main-img {
	position: relative;
	z-index: 2;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ping-indicator {
	width: 350px;
	height: 350px;
	background: #db76ff;
	border-radius: 50%;
	position: absolute;
	top: 12%;
	bottom: 0;
	left: 0;
}

.ping-indicator::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #8c3af7;
	border-radius: 50%;
	animation: ping 1.7s ease-out infinite;
	opacity: 0.6;
}

@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(3);
		opacity: 0;
	}
}

/************************ smart section **********************************/
.smart {
	padding-top: 0;
}

.title-border {
	position: relative;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--title-color);
	top: -13px;
}

.smart-bfr {
	position: absolute;
	right: 0;
	top: -12px;
	background: var(--theme-color);
	border-radius: 40px;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	text-align: center;
	align-content: center;
	padding: 7px;
}

.smart-bfr iconify-icon {
	font-size: 25px;
	color: #fff;
	transition: transform 0.9s;
	transform-style: preserve-3d;
}

.smart-details {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 40px 20px 0px 20px;
}

.title-border::after {
	content: '';
	position: absolute;
	background-color: var(--title-color);
	height: 4px;
	width: 100%;
	bottom: -8px;
	left: 0;
	border-radius: 20px;
}

.smart-contact-p {
	padding: 20px 0px 0px 0px;
}

.smart-content {
	text-align: center;
}

.smart-content h3 {
	font-size: 50px;
	text-align: center;
	margin-bottom: 0px;
}

.smart-contact-img {
	text-align: center;
}

.smart-contact-p p {
	text-align: center;
}

.smart-box:hover .smart-bfr iconify-icon {
	transform: rotateY(360deg);
}

.smart-ico iconify-icon {
	font-size: 36px;
	position: relative;
	top: 8px;
	margin-right: 12px;
}

.smart-split {
	display: flex;
	align-items: center;
	align-content: center;
}

.smart-list li p {
	margin: 10px auto;
	text-align: start;
	font-size: 15px;
}

.smart-box {
	letter-spacing: 0px;
	opacity: 1;
	/* background-color: #fffaf7; */
	border-radius: 8px;
	box-shadow: #00000014 0 10px 34px;
	padding: 24px 0px 13px 30px;
	position: relative;
	width: 100%;
	margin: 0px 20px;
}

/************************ bot section **********************************/

.kirhyip-power-ai {
	position: relative;
	padding-top: 0;
}

.center-content::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 560px;
	width: 65%;
	background: #f5e0ff;
	background-position: center center;
	background-repeat: no-repeat;
	filter: blur(35px);
	z-index: -1;
	margin: 0 auto;
	opacity: 0.5;
	right: 0;
	border-radius: 500px;
}

.kirhyip-power-ai .center-content h2 {
	font-size: 65px;
	font-weight: 700;
	line-height: 77px;
}

.kirhyip-power-ai .left-image,
.kirhyip-power-ai .right-image {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	margin-top: 0;
}

.right-image {
	margin-top: 80px !important;
}

.kirhyip-power-ai .right-image {
	align-items: end;
}

.kirhyip-power-ai .img-box {
	background-color: var(--white);
	box-shadow: 0px 0px 20px 0px rgb(229, 221, 254);
	border-radius: 10px;
	/* margin-bottom: 0px; */
	padding: 12px;
	text-align: center;
	width: 100%;
}

.kirhyip-power-ai .img-box img {
	border-radius: 5px;
}

.social-icon:hover span {
	text-decoration: underline 2px;
}

.kirhyip-power-ai .left-image .img-box.first {
	margin-left: 31px;
}

.kirhyip-power-ai .left-image .img-box:last-child {
	margin-left: 0;
}

.kirhyip-power-ai .right-image .img-box.first {
	margin-left: -30px;
}

.kirhyip-power-ai .right-image .img-box:last-child {
	margin-right: 0;
}

.kirhyip-power-ai .img-box .image-title {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	letter-spacing: -0.3px;
	color: #000;
	margin: 17px 0 6px 0;
}

.kirhyip-power-ai .center-content {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.kirhyip-power-ai .center-content p {
	padding: 0px 35px;
}

.kirhyip-power-ai .ai-logo {
	margin-bottom: 40px;
}

.kirhyip-power-ai .sub-title {
	font-size: 13px;
	line-height: 30px;
	margin-bottom: 0;
	background-image: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF00 100%);
	border-radius: 34px;
}

.kirhyip-power-ai .sub-title i {
	font-size: 18px;
	vertical-align: middle;
}

.kirhyip-power-ai .center-content h2 {
	font-size: 33px;
	line-height: 40px;
	margin: 20px 0 15px 0;
	font-weight: 800 !important;
}

.kirhyip-power-ai .center-content .description {
	font-size: 19px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: -0.4px;
	color: var(--dark-gray);
	margin-bottom: 30px;
	width: 78%;
}

.kirhyip-power-ai .center-content .btn>span {
	padding: 10px 25px 11px 30px;
}

.kirhyip-power-ai .center-content .btn svg {
	height: 24px;
	width: 24px;
	top: 0;
	margin-left: 3px;
}

.social-icon img {
	transition: transform 0.9s;
	transform-style: preserve-3d;
}

.social-icon:hover img {
	transform: rotateY(360deg);
}

/************************ bot section end **********************************/





/************************ Crypto exchange Start **********************************/
.social-icon iconify-icon {
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.social-icon:hover iconify-icon {
	transform: rotateY(180deg);
}

.service-inner {
	text-align: left;
	background-color: #F7F7FF;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
	padding: 20px 15px 20px 15px;
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
}

.service-caro {
	margin-top: 30px;
}

.post-excerpt {
	text-align: justify;
	font-family: var(--body-font);
	margin: 0 0 10px 0;
	color: #404142;
	line-height: 1.75;
}

.service-inner .post-thumb img {
	transition: all 0.5s ease;
	opacity: 0;
	border-radius: 10px;
}

.service-icon-img-wrap {
	background: linear-gradient(-90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
}

.service-icon-img-wrap {
	z-index: 1;
	position: relative;
	display: inline-block;
}

.post-title-head {
	transform: scale(1);
	padding: 0px 0px 46px 0px;
	margin-bottom: 120px;
	font-size: 22px;
}

.post-title {
	text-transform: none;
}

.service-inner:hover .service-title h4 a {
	color: var(--theme-color);
}

.service-inner .post-thumb {
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	width: 70%;
	right: -150px;
	transition: all 0.3s;
}

.service-inner:hover .post-thumb img {
	opacity: 1;
	transition: all 0.7s ease;
	border-radius: 10px 0 0 10px;
}

.service-inner:hover .service-icon-img-wrap {
	opacity: 0;
	display: none;
	transition: all 0.3s ease;
}

/************************ Crypto exchange End **********************************/

.service-style-default .service-inner .post-thumb {
	border-radius: var(--cus-border-radius-0)
}

.service-style-default .service-inner,
.service-style-default .service-inner:hover {
	border: 1px solid #eaeaea5e;
	margin-bottom: 0;
	border-radius: 10px
}

.service-style-default .service-inner .serivce-title .post-title-head,
.service-style-default .service-inner .post-excerpt {
	border-bottom: 0 solid var(--cus-border-color)
}

.owl-dots button.owl-dot {
	width: 20px;
	height: 4px;
	margin: 0 6px;
	box-shadow: none;
}

.owl-dot:active {
	background: #000;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	border-radius: 2px
}

.service-style-default.service-normal-model .service-inner {
	margin-bottom: 25px;
	border-radius: 10px
}

.service-style-default .service-inner {
	overflow: hidden;
	position: relative
}

.service-style-default .service-inner:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	z-index: 0;
	background: #f5f7f6;
	transition: all 0.4s ease-in-out
}

.cus-service-default-wrap .service-style-default .service-inner:before {
	content: none
}

.cus-service-default-wrap .service-style-default .post-thumb {
	border-radius: 12px;
	position: absolute;
	left: -70px;
	right: 70px;
	top: 0;
	transform: scale(.5);
	transition: all .3s
}

.service-style-default .service-inner * {
	z-index: 2;
	position: relative
}

.service-style-default .service-inner:hover .post-more:before {
	opacity: 1;
	z-index: 1;
	visibility: visible;
	background-color: var(--cus-transpar-color)
}

.service-style-default .service-inner:hover .service-icon-img-wrap {
	animation: gelatine 0.5s infinite
}

.gelatine {
	animation: gelatine 0.5s infinite
}

@keyframes gelatine {

	from,
	to {
		transform: scale(1, 1)
	}

	25% {
		transform: scale(.9, 1.1)
	}

	50% {
		transform: scale(1.1, .9)
	}

	75% {
		transform: scale(.95, 1.05)
	}
}

.owl-nav {
	position: absolute;
	bottom: -59px;
	left: 329px;
	right: 230px
}

.cus-service-default-wrap .service-style-default .service-inner {
	overflow: unset;
	margin: 25px
}

.cus-service-default-wrap .service-style-default .service-inner:hover .post-thumb a.post-image-link img.img-fluid.squared {
	width: calc(100% - 110px);
	transition: all 0.3s ease-in-out 0.1s;
	transform: translateZ(10px)
}

.cus-service-default-wrap .service-style-default .service-inner .post-thumb a.post-image-link img.img-fluid.squared {
	margin-left: -73px
}

.service-style-default .service-inner .post-more:before {
	content: "";
	top: -247px;
	opacity: 0;
	position: absolute;
	left: 219px;
	z-index: -1;
	width: 110px;
	height: 110px;
	visibility: hidden;
	border-radius: 100%;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 15px dashed #93bd3391;
	background-color: var(--cus-transpar-color);
	animation-name: rotateme;
	animation-duration: 30s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: rotateme;
	-webkit-animation-duration: 30s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: rotateme;
	-moz-animation-duration: 30s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: rotateme;
	-ms-animation-duration: 30s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: rotateme;
	-o-animation-duration: 30s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear
}

.cus-service-default-wrap .service-style-default .service-inner .service-icon-img-wrap {
	position: absolute;
	right: 0
}

.service-wrapper .service-inner .service-icon-img-wrap {
	position: relative
}

.service-inner .service-icon-img-wrap:before {
	content: "";
	border-radius: 50%;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 5px
}

.service-inner .post-thumb {
	border-radius: var(--cus-border-radius-0)
}

.service-inner .service-title:before,
.service-title:before,
.service-title:after {
	content: unset
}

.service-inner .post-thumb .post-image-link:before {
	content: unset
}

.service-inner .post-thumb img {
	border-radius: 15px
}

.service-inner .post-overlay-items .bottom-meta {
	position: absolute;
	bottom: 7px
}

.service-inner .post-thumb .post-image-link,
.service-inner .bottom-meta .post-more a.read-more {
	position: relative;
	z-index: 0
}

.service-inner:hover .service-title:before {
	right: 0;
	transform: translate(95%, 50%);
	transition: all 1s ease
}

.service-inner .post-details-outer {
	transform: translateY(0%);
	border-radius: 10px
}

.service-inner {
	border-radius: 15px;
	overflow: hidden
}

.service-inner .post-details-outer {
	transform: translateY(100%);
	opacity: 0;
	margin-right: 30px;
	transition: all 0.5s ease
}

.service-inner:hover .post-details-outer {
	transform: translateY(0%);
	opacity: 1;
	transition: all 0.5s ease
}

.service-style-classic-pro .post-details-outer {
	opacity: 1;
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 3;
	margin-right: 29px;
	-webkit-transition: all .35s ease 0s;
	-khtml-transition: all .35s ease 0s;
	-moz-transition: all .35s ease 0s;
	-ms-transition: all .35s ease 0s;
	-o-transition: all .35s ease 0s;
	transition: all .35s ease 0s;
	margin: 0;
	padding: 20px 30px 20px 27px
}

.service-inner:hover .post-thumb a:after {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transition-duration: 0.9s;
	-moz-transition-duration: 0.9s;
	-webkit-transition-duration: 0.9s;
	-khtml-transition-duration: 0.9s;
	-o-transition-duration: 0.9s;
	opacity: .7;
	-khtml-opacity: 0;
	-moz-opacity: 0;
	height: 100%;
	width: 100%
}

.service-inner .post-thumb a:after {
	background: var(--cus-drk-bg-color);
	bottom: 0;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	position: absolute;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	opacity: 1;
	-khtml-opacity: 1;
	-moz-opacity: 1;
	width: 0;
	height: 0
}

.service-inner {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.service-inner .post-thumb {
	position: relative
}

.service-inner:hover .post-thumb .post-image-link:before,
.service-inner:hover .post-thumb:before {
	transform: scale(0);
	opacity: 0;
	transition: all 0.3s ease
}

.service-inner .post-thumb.post-overlay-active {
	position: relative;
	overflow: hidden
}

.service-inner .post-thumb img {
	border-radius: 10px
}

.service-inner:hover .post-thumb img {
	border-radius: 10px 0 0 10px
}

.service-inner .post-thumb.post-overlay-active:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0
}

.service-style-modern.service-normal-model .service-inner .service-icon-img-wrap .service-icon-img {
	max-width: 60px;
	border: none
}

.service-inner .service-icon-img-wrap {
	border-radius: 50%;
	padding: 10px
}

.service-inner:hover {
	transform: none
}

.service-inner::before {
	content: "";
	width: 67%;
	position: absolute;
	height: 1px;
	background-color: #50676726;
	top: 40%;
	transform: translateY(-50%);
	left: 0;
}

.service-icon-img-wrap iconify-icon {
	font-size: 70px;
	color: #fff;
}

.service-inner .service-icon-img-wrap {
	position: absolute;
	right: 30px;
	top: 42%;
	transform: translateY(-50px);
	opacity: 1;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	text-align: center;
	align-content: center;
	padding: 10px 15px;
}

.service-inner:hover .service-icon-img-wrap {
	opacity: 0;
	display: none;
	transition: all 0.3s ease
}

.service-inner:hover .post-thumb img {
	opacity: 1;
	transition: all 0.7s ease
}

.service-inner .post-thumb img {
	transition: all 0.5s ease;
	opacity: 0;
	border-radius: 10px
}

.service-inner .post-thumb {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 53%;
	right: -150px;
	transition: all 0.3s;
}

.service-inner:hover .post-thumb {
	right: 0;
	transition: all 0.3s
}

.service-inner::after {
	content: "";
	width: 0%;
	position: absolute;
	height: 1px;
	background-color: #506767;
	top: 40%;
	transform: translateY(-50%);
	left: 0;
	transition: all 0.7s ease-in;
}

.service-caro .owl-dots {
	text-align: center;
	margin: 29px 0px 0px 0px;
	display: none;
}

.glossy-effect {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: 12px;
	/* Adjust as needed */
}

.glossy-effect img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

.glossy-effect::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -75%;
	width: 150%;
	height: 300%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 100%);
	transform: rotate(25deg);
	animation: shineMove 3.5s ease-in-out infinite;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.4;
}

@keyframes shineMove {
	from {
		top: -100%;
		left: -75%;
	}

	to {
		top: 100%;
		left: 100%;
	}
}

/************************ benifit section start **********************************/

.benifit-box {
	background: #E275C2;
	background: url("../images/why-bg2.gif"), linear-gradient(140deg, rgb(226, 117, 194) 0%, rgb(172, 158, 255) 50%, rgb(50, 76, 140) 100%) no-repeat scroll 0 0;
	background-size: contain;
	padding: 50px 0px;
	border-radius: 20px;
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	/* text-align: center; */
	z-index: 1;
}

/* .bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 1;
	border-radius: 24px;
	background: no-repeat scroll 0 0;
} */



.sub-head h5 {
	color: #fff;
}

.sub-head h2 {
	color: #fff;
}

.sub-head {
	position: relative;
	z-index: 1;
}

.sub-head h5 {
	font-weight: 400;
}

.beni-img {
	position: relative;
}

/************************ benifit section end **********************************/


/************************ blog section start **********************************/

.blog-box {
	width: 100%;
	background: #fffbf6;
	padding: 15px 20px 3px 20px;
	border-radius: 20px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
	margin: 20px auto;
	overflow: hidden;
	transition: all 300ms ease;
}

.blog-caro .owl-dots {
	text-align: center;
}

.blog-content {
	margin: 15px 0px;
}

.blog-content {
	margin: 15px 0px;
}

.blog-content h5 {
	font-size: 18px;
	text-align: center;
	padding: 14px 0px;
}

.blog-box:hover .blog-content a {
	text-decoration: underline 2px;
}

.blog-img {
	height: auto;
	border-radius: 20px;
}

.blog-date h6 {
	font-size: 14px;
}

.blog-img {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	/* optional smooth edges */

}

.blog-img img {
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
	position: relative;
	border-radius: 12px;
}

.blog-img::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	animation: curveShine 3s linear infinite;
	pointer-events: none;
	z-index: 2;
}

@keyframes curveShine {
	0% {
		transform: translate(-100%, -100%);
	}

	100% {
		transform: translate(100%, 100%);
	}
}

.add-more-list li {
	display: inline-block;
	align-items: center;
	padding: 6px 20px;
	background: #ffe1f9;
	border-radius: 46px;
}

.add-more-list li h6 {
	font-size: 13px;
	font-weight: 600 !important;
	letter-spacing: 1px;
	margin: 0;
}

.add-more-list li:hover {
	background: #e4defe;
}

.blog-img img {
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-left-radius: 10px;
	width: 100%;
	height: 250px;
	object-fit: fill;
}


.glossy-img {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.glossy-img::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 0.6) 50%,
			rgba(255, 255, 255, 0) 70%);
	transform: rotate(25deg);
	animation: glossySweep 3s infinite;
	pointer-events: none;
}

@keyframes glossySweep {
	0% {
		transform: translateX(-100%) rotate(25deg);
	}

	100% {
		transform: translateX(100%) rotate(25deg);
	}
}


/************************ blog section end **********************************/


.node-container {
	position: absolute;
	width: 40px;
	height: 40px;
	transform-style: preserve-3d;
	animation: flip 3s infinite ease-in-out;
}

.flip-text {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 16px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #e6d6ff, #b37eff, #7132f5);
	box-shadow: 0 0 12px #8e5eff99;
	backface-visibility: hidden;
}

@keyframes flip {
	0% {
		transform: rotateY(0deg);
	}

	50% {
		transform: rotateY(180deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}

svg {
	position: relative;
	z-index: 0;
}

.absolute-nodes {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
}

/************************ Excecution process start **********************************/

.content-box h3 {
	font-size: 25px;
	color: #4d2ea7;
	margin-bottom: 12px;
}

.content-split {
	border-bottom: 1px dashed blue;
	margin: 0px 0px 20px 0px;
}

.content-box p {
	font-size: 16px;
	color: #5b4d7f;
	line-height: 1.6;
}

.execute-section {
	display: flex;
	padding: 60px 20px 20px 20px;
	gap: 20px;
}

.wheel-container {
	position: sticky;
	top: 100px;
	width: 100%;
	height: 500px;
	border-radius: 50%;
	width: 100%;
}

.wheel-path {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.center-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 50%;
	width: 300px;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	font-size: 20px;
	font-weight: bold;
	z-index: 2;
	line-height: 29px;
	text-align: center;
}

.center-icon img {
	margin-bottom: 0px;
}

.content-box.active h3 {
	background: linear-gradient(90deg, #6e00ff, #de7ee9, #6e00ff);
	background-size: auto;
	background-clip: border-box;
	background-size: auto;
	background-clip: border-box;
	/* background-size: 200%; */
	-webkit-background-clip: text;
	color: transparent;
	animation: shineText 3s infinite linear;
}

.content-wrapper {
	flex-grow: 1;
}

.content-box {
	background: linear-gradient(145deg, #ffffff, #f4f1ff);
	border-radius: 24px;
	padding: 24px;
	color: #3c296b;
	box-shadow: 0 8px 20px rgba(113, 50, 245, 0.1), 0 0 0 1px rgba(113, 50, 245, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
	margin: 30px 30px;
	position: relative;
	z-index: 5;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.content-box.active {
	box-shadow: 0 0 20px rgba(240, 216, 255, 0.5), 0 0 15px rgba(141, 86, 255, 0.6);
	transform: scale(1.02);
}

.content-split span {
	font-size: 68px;
	font-weight: 800;
	opacity: 0.5;
	position: absolute;
	right: 16px;
	top: -7px;
}

.content-box.active span {
	opacity: 1;
}

.wheel-step {
	position: absolute;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle at 30% 30%, #e6d6ff, #b37eff, #7132f5);
	color: white;
	font-weight: bold;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* font-weight: bold; */
	z-index: 3;
	font-size: 20px;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: transform 0.4s ease, filter 0.3s ease;
	/* clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%); */
	filter: drop-shadow(0 0 6px #8e5effaa);
}

.wheel-step.active {
	animation: flipZoom 0.8s ease-in-out;
	filter:
		drop-shadow(0 0 0px #c58affcc) drop-shadow(0 0 0px #ffffffaa);
	/* simulate inset glow */
	transform: scale(1.08);
	background: var(--theme-color);
	color: #fff;
}

/* Flip + Zoom Keyframes */
@keyframes flipZoom {
	0% {
		transform: rotateY(0deg) scale(1);
	}

	50% {
		transform: rotateY(180deg) scale(1.3);
	}

	100% {
		transform: rotateY(360deg) scale(1);
	}
}

.wheel-container svg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.orbiter {
	position: absolute;
	top: 45%;
	left: 47%;
	transform-origin: center center;
	animation: rotateCircle 13s linear infinite;
	z-index: 1;
}

.orbiter iconify-icon {
	transform: translate(-50%, -180px);
	font-size: 44px;
	color: #fff;
}

@keyframes rotateCircle {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.floating-icon {
	position: absolute;
	width: 30px;
	height: 30px;
	animation: float 6s infinite linear;
	z-index: 2;
}

@keyframes float {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(20px, -30px) rotate(90deg);
	}

	50% {
		transform: translate(-20px, -10px) rotate(180deg);
	}

	75% {
		transform: translate(10px, 20px) rotate(270deg);
	}

	100% {
		transform: translate(0, 0) rotate(360deg);
	}
}

.animated-box {
	position: relative;
	padding: 0px 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 transparent;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.ref-icon img {
	animation: pulse 2s infinite;
	filter: drop-shadow(0 0 8px rgba(153, 75, 255, 0.3));
	transition: transform 0.3s ease;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		filter: drop-shadow(0 0 8px rgba(234, 73, 255, 0.3));
	}

	50% {
		transform: scale(1.08);
		filter: drop-shadow(0 0 16px rgba(147, 101, 255, 0.6));
	}

	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 8px rgba(116, 58, 252, 0.3));
	}
}

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.squre-frame {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 2px solid;
	border-image: linear-gradient(to right, #6119ff, #f68af9) 1;
	border-radius: 5px;
	animation: rotate 5s linear infinite;
	z-index: 1;
	left: 16px;
	top: 18px;
}

.squre-frame:nth-child(1) {
	animation-delay: 0s;
}

.squre-frame:nth-child(2) {
	animation-delay: 0.4s;
}

.squre-frame:nth-child(3) {
	animation-delay: 0.8s;
}

.squre-frame:nth-child(4) {
	animation-delay: 1.2s;
}

.squre-frame:nth-child(5) {
	animation-delay: 1.6s;
}

.squre-frame:nth-child(6) {
	animation-delay: 2s;
}

.squre-frame:nth-child(7) {
	animation-delay: 2.4s;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	100% {
		transform: rotate(360deg);
		opacity: 1;
	}
}

.orbit-bubble {
	position: absolute;
	width: 60px;
	height: 60px;
	z-index: 1;
}

.ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 65px;
	height: 65px;
	border: 2px solid #7f3df5;
	border-radius: 50%;
	animation: orbitPulse 2s infinite;
	opacity: 0.7;
}

.ring2 {
	animation-delay: 0.4s;
}

.ring3 {
	animation-delay: 0.8s;
}

@keyframes orbitPulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.5;
	}
}

.glass-bubble {
	position: absolute;
	width: 60px;
	height: 60px;
	backdrop-filter: blur(8px);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: floatGlass 6s ease-in-out infinite;
}

@keyframes floatGlass {
	0% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-20px) scale(1.1);
	}

	100% {
		transform: translateY(0) scale(1);
	}
}

.star-dot {
	position: absolute;
	width: 60px;
	height: 60px;
	background: #a176ff;
	border-radius: 50%;
	box-shadow: 0 0 15px #fff;
	animation: blinkStar 1.5s infinite ease-in-out;
	z-index: 1;
}

@keyframes blinkStar {

	0%,
	100% {
		opacity: 0.3;
		transform: scale(0.9);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.neon-orbit {
	position: absolute;
	width: 87px;
	height: 87px;
	border: 1px dashed #b884f6;
	border-radius: 50%;
	animation: spinOrbit 8s linear infinite;
	z-index: 1;
	top: 4px;
}

.planet {
	position: absolute;
	top: 0;
	left: 50%;
	width: 15px;
	height: 15px;
	background: #bb41ff;
	border-radius: 50%;
	transform: translateX(-50%);
}

@keyframes spinOrbit {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/************************ Excecution Process End **********************************/


/************************ award section start **********************************/

.blockchain-w {
	width: 20% !important;
	box-shadow: inset 0 0 30px #cecfff !important;
}
.tab-blurb.language-w {
	width: 20% !important;
	box-shadow: inset 0 0 30px #c3a2ff !important;
}

.kir-tab-section {
	position: relative;
}

.tab-blurbs {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	justify-content: center;
	border: 1px solid #fafafa;
	cursor: pointer;
	transition: 300ms all;
}

.tab-blurb {
	text-align: center;
	padding: 10px 0px;
	border-radius: 5px;
	background: #ffffff !important;
	box-shadow: 0 0 15px rgba(50, 50, 50, 0.15);
	width: 25%;
	-webkit-box-shadow: inset 0 0 30px #00f;
	-moz-box-shadow: inset 0 0 30px #00f;
	box-shadow: inset 0 0 30px #fbceff;
}

.b-title,
.b-subtext {
	color: #000000;
}

.b-subtext {
	font-size: 16px;
	font-weight: 300;
}

.b-title {
	font-size: 21px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3em;
	min-height: 2.6em;
}

.kir-tab-btn {
	background: transparent;
	border: 2px solid #7737f5;
	color: #000;
	padding: 10px 20px;
	margin: 0 10px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.kir-tab-btn.kir-active,
.kir-tab-btn:hover {
	background: #7737f5;
	color: #fff;
	box-shadow: 0 0 10px #7737f5;
}

.kir-tab-content {
	display: none;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	color: #ccc;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.kir-tab-content.kir-active {
	display: block;
}

.crypto-icon {
	transition: all 0.3s ease-in-out;
}

.tab-blurb:hover .crypto-icon {
	color: #9b47ff;
	text-shadow: 0 0 12px rgba(155, 71, 255, 0.7);
	transform: scale(1.1);
}

@keyframes shineText {
	0% {
		background-position: 0%;
	}

	100% {
		background-position: 200%;
	}
}

.tab-blurb:hover .b-image {
	color: #9b47ff;
	text-shadow: 0 0 12px rgba(155, 71, 255, 0.7);
	transform: scale(1.1);
}

.tab-blurb:hover .crypto-shine {
	background: linear-gradient(90deg, #6e00ff, #de7ee9, #6e00ff);
	background-size: 200%;
	-webkit-background-clip: text;
	color: transparent;
	animation: shineText 3s infinite linear;
}

/************************ award section end **********************************/



/************************ footer section start **********************************/

.footer-section {
	background: #f7f7f7;
	padding: 10px 0px;
}

.menu1 h4 {
	margin-bottom: 12px;
}

.foot-menus ul li {
	padding: 4px 0px;
}

.footer-top {
	display: flex;
	align-content: center;
	align-items: center;
	margin: 0px 17px;
}

.foot-menus {
	margin: 27px 0px;
}

.foot-menus {
	margin: 27px 20px;
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	align-content: center;
}

.foot-menus ul h4 {
	font-size: 16px;
}

.footer-social li {
	display: inline-block;
	padding: 4px 4px;
	background: #7132f5;
	padding: 5px 8px;
	text-align: center;
	border-radius: 10px;
	margin: 0px 2px;
}

.scan-img img {
	width: 60%;
}

.footer-social li iconify-icon {
	color: #fff;
	font-size: 20px;
	text-align: center;
	position: relative;
	top: 3px;
}

.footer-scan h4 {
	font-size: 18px;
}

.footer-scan {
	background: rgba(255, 255, 255, 0.4);
	padding: 10px 10px;
	border-radius: 20px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.company-ex {
	margin-left: 30px;
}

.rat-image li img {
	width: 70%;
}

.footer-content {
	margin: 20px 0px;
	border-bottom: 1px solid #707070;
	border-top: 1px solid #707070;
	padding: 20px 0px;
}

.certify-marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
	background: transparent;
	padding: 20px 0px;
	/* border-top: 1px solid #7737f5; */
	/* border-bottom: 1px solid #de7ee9; */
}

.certify-track {
	display: flex;
	width: max-content;
	animation: scrollCerts 40s linear infinite;
	list-style: none;
	gap: 40px;
	padding: 0;
	margin: 0;
}

.certify-track li {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.certify-track img {
	width: 100px;
	height: 70px;
	object-fit: contain;
	filter: drop-shadow(0 0 6px #7737f5aa);
	transition: transform 0.3s ease, filter 0.3s ease;
	border-radius: 6px;
}

.certify-track img:hover {
	transform: scale(1.15);
	filter: drop-shadow(0 0 10px #de7ee9) brightness(1.2);
}

.rat-image li {
	display: inline-block;
	text-align: center;
	margin: 0 auto;
	padding: 0px 28px;
}

@keyframes scrollCerts {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-50%);
	}
}

.menu1 li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: padding-left 0.3s ease;
}

.menu1 li a .arrow-icon {
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translate(-100%, -50%);
	opacity: 0;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 800;
}

.menu1 li a .link-text {
	display: inline-block;
	transition: transform 0.3s ease;
}

/* On hover: show arrow and move text */
.menu1 li:hover .arrow-icon {
	opacity: 1;
	transform: translate(0, -50%);
}

.menu1 li:hover .link-text {
	transform: translateX(12px);
}

/* .footer-social iconify-icon {

  color: #fff;
  background: #7737f5;

  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(119, 55, 245, 0.4);
} */

/* Hover Animation Effect */
/* .footer-social iconify-icon:hover {
  transform: scale(1.3) rotate(10deg);
  background: linear-gradient(145deg, #7737f5, #de7ee9);
  box-shadow: 0 0 20px #de7ee9aa, 0 0 30px #7737f5aa;
  color: #fff;
} */


.social-icon iconify-icon {
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.social-icon:hover iconify-icon {
	transform: rotateY(360deg);
}

/************************ footer section end **********************************/









/************************ animation **********************************/

.neon-draw path {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: drawLine 4s ease-in-out forwards, glowStroke 1.5s ease-in-out infinite;
}

@keyframes drawLine {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes glowStroke {

	0%,
	100% {
		stroke: #00f2ff;
		filter: drop-shadow(0 0 2px #00f2ff);
	}

	50% {
		stroke: #00f2ff;
		filter: drop-shadow(0 0 8px #00f2ff);
	}
}

.img-box {
	width: 300px;
	margin: 25px auto;
	text-align: center;
	background: #0f0c29;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 0 3px rgba(119, 55, 245, 0.3);
	color: #fff;
}

.vector-animate-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
	z-index: 1;
}

.vector-animate-img {
	width: 100%;
	height: auto;
	display: block;
	animation: pulseGlow 4s ease-in-out infinite;
}


/* Keyframe: Pulse + Glow */
@keyframes pulseGlow {
	0% {
		filter: drop-shadow(0 0 0px #676ef9);
	}

	50% {
		filter: drop-shadow(0 0 12px #676ef9) brightness(1.2);
	}

	100% {
		filter: drop-shadow(0 0 0px #676ef9);
	}
}

.shine-img-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: fit-content;
}

.shine-img {
	display: block;
	width: 100%;
	height: auto;
}

.shine-img-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.0) 100%);
	transform: skewX(-20deg);
	animation: shineSweep 2.5s ease-in-out infinite;
}

@keyframes shineSweep {
	0% {
		left: -75%;
	}

	100% {
		left: 125%;
	}
}

.shine-img-wrapper:hover::before {
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.metamask-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: 20px;
}

.metamask-wrapper::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shineMM 3s linear infinite;
}

@keyframes shineMM {
	0% {
		transform: translate(-100%, -100%);
	}

	100% {
		transform: translate(100%, 100%);
	}
}

@keyframes floatPulse {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}

	100% {
		transform: translateY(0);
	}
}

.metamask-float {
	animation: floatPulse 4s ease-in-out infinite;
	border-radius: 20px;
}

.masked {
	mask-image: linear-gradient(#000, #000);
	mask-size: 0% 70%;
	mask-position: 0 45%, 25% 25%, 50% 50%, 75% 0, 100% 50%;
	mask-repeat: no-repeat;
	animation: mask 2s linear infinite;
}

@keyframes mask {
	0% {
		mask-size: 0% 70%;
	}

	20% {
		mask-size: 20% 100%;
	}

	30% {
		mask-size: 30% 100%;
	}

	40% {
		mask-size: 40% 100%;
	}

	60% {
		mask-size: 60% 100%;
	}

	80% {
		mask-size: 80% 100%;
	}

	100% {
		mask-size: 100% 100%;
	}
}

.spinner {
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 1.2s;
	-webkit-animation-name: rotate;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-transition-property: -moz-transform;
	-moz-animation-name: rotate;
	-moz-animation-duration: 1.2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	transition-property: transform;
	animation-name: rotate;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(360deg);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes play {
	from {
		background-position: 0px;
	}

	to {
		background-position: -1024px;
	}
}

@keyframes marquee {
	0% {
		background-position: 0;
	}

	100% {
		background-position: -1190px;
	}
}

.typewriter h1 {
	color: #fff;
	/* overflow: inherit; */
	white-space: break-spaces;
	margin: 0 auto;
	letter-spacing: 0px;
	animation: typing 3.5s, blink-caret .5s step-end alternate;
}

/* The typing effect */
@keyframes typing {
	from {
		width: 0
	}

	to {
		width: 100%
	}
}

@keyframes blink-caret {

	from,
	to {
		border-color: transparent
	}
}

@keyframes animate {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-30px);
	}

	100% {
		transform: translateY(0);
	}
}



/* side icons */


.two-icons {
	bottom: 5px;
	left: 5px;
}

.main-navigation,
.two-icons {
	position: fixed;
	z-index: 9999;
}

.box-bg button:focus:not(:focus-visible),
.quantity input,
a,
a:focus,
a:hover,
button {
	outline: 0;
}

.skype-button,
.telegram-button,
.whatsapp-button {
	display: flex;
	justify-content: center;
	align-content: center;
	z-index: 8;
	transition: 0.3s;
	margin: 0;
	padding: 2px;
	border: 0;
	outline: 0;
	cursor: pointer;
	border-radius: 50%;
	background-color: transparent;
}

.backToTop {
	right: 30px;
	width: 38px;
	height: 38px;
	line-height: 37px;
	border: 0;
	transition: 0.5s;
}

.backToTop,
.compare {
	bottom: 30px;
	background: rgba(0, 10, 30, 0.7);
	z-index: 9000;
	font-size: 18px;
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	color: #fff;
	display: block;
	opacity: 0;
	cursor: pointer;
	position: fixed;
}


.th-submenu {
	display: none;
	transition: all 0.3s ease;
	padding-left: 15px;
}

.menu-item-has-children.open>a .fa {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.th-mean-expand {
	margin-left: 8px;
	display: inline-block;
}

a .th-mean-expand:not(:has(i.fa-angle-down)) {
	display: none !important;
}