@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
	--white: 255, 255, 255;
	--black: 0, 0, 0;
	--light: 250, 250, 255;
	--dark: 0, 0, 0;
	--body-bg: 247, 244, 255;
	--bg-primary: 137, 84, 221;
	--bg-secondary: 233, 231, 255;
	--text-primary: 24, 13, 41;
	--gt-primary: #661aff, #9e4be7;
	--gt-text-primary: #661aff, #9e4be7;
	--gt-secondary: #f093fb, #f5576c;
	--gt-orange: #EC39EC, #EFA618;
	--gt-success: #17A007, #75EF8D;
	--gt-warning: #FF5D47, #EFBB40;
	--gt-danger: #b91c1c, #f87171;
	--gt-maroon: #F85175, #DA168C;
	--bg-orange: 237, 125, 103;
	--text-success: 53, 180, 43;
	--text-warning: 220, 156, 44;
	--text-danger: 204, 54, 55;

	--gr-orange: #EC39EC, #EFA618;
	--gr-orange-start: 236, 57, 236;
	--gr-orange-end: 239, 166, 24;
	--gr-green: #16D878, #21B5BC;
	--gr-green-start: 22, 216, 120;
	--gr-green-end: 33, 181, 188;
	--gr-maroon: #F85175, #DA168C;
	--gr-maroon-start: 248, 81, 117;
	--gr-maroon-end: 218, 22, 140;
	--gr-yellow: #F09D32, #B38C09;
	--gr-yellow-start: 240, 157, 50;
	--gr-yellow-end: 179, 140, 9;

}

[data-theme="dark"] {
	--light: 23, 21, 56;
	--dark: 255, 255, 255;
	--body-bg: 13, 13, 43;
	--bg-primary: 146, 98, 221;
	--bg-secondary: 29, 25, 67;
	--text-primary: 247, 244, 255;
	--gt-primary: #7733ff, #aa62ea;
	--gt-text-primary: #8B51FF, #aa62ea;
	--text-danger: 247, 65, 67;
}

/*-----------------------------------
  BASE TYPOGRAPHY
-----------------------------------*/

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	overflow: hidden auto;
	text-transform: capitalize;
	background-color: rgba(var(--body-bg), 1);
	color: rgba(var(--text-primary), 1);
	font: 400 1.6rem 'Poppins', sans-serif;
}

img {
	width: 100%;
}

h2 {
	margin-bottom: 0;
}

a {
	color: rgb(var(--text-primary));
	text-decoration: none !important;
}

a:hover {
	color: rgb(var(--text-primary));
}

p {
	margin-bottom: 0;
}

ul {
	padding-left: 0;
	list-style-type: none;
}

.text-primary {
	color: rgb(var(--text-primary)) !important;
}

/*-----------------------------------
  HEADER SECTION
-----------------------------------*/

#header {
	top: 0;
	z-index: 1024;
	position: sticky;
	transition: all 0.3s ease;
}

#header.shadow {
	background-color: #f0edf8;
}

[data-theme="dark"] #header.shadow {
	background-color: #221D4D;
}

.nav-bar {
	display: flex;
	min-height: 80px;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	text-align: center;
	align-items: center;
	margin-left: 3px;
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: 0.3px;
}

.logo img {
	width: 26px;
	height: 26px;
	margin-right: 8px;
}

.nav-links {
	gap: 2rem;
	display: flex;
	font-weight: 400;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 4px;
	width: 0;
	background: linear-gradient(90deg, var(--gt-secondary));
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(245, 87, 108, 0.4);
	clip-path: polygon(0% 30%, 10% 0%, 90% 0%, 100% 30%,
			100% 70%, 90% 100%, 10% 100%, 0% 70%);
	transition: width 0.4s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
	width: 100%;
}


.nav-links a {
	font-size: 1.8rem;
	position: relative;
}

.nav-links a::before {
	left: 0;
	bottom: -6px;
	content: '';
	width: 100%;
	height: 1px;
	transform: scale(0);
	position: absolute;
	transition: all 0.4s ease;
	background-color: var(--text-primary);
}

.nav-links a:hover::before {
	transform: scale(1);
	transform-origin: center;
}

.btn-one {
	color: #fff;
	font-weight: 600;
	font-size: 1.6rem;
	border-radius: 6px;
	padding: 1rem 3.4rem 1rem;
	transition: all 500ms ease;
	text-transform: capitalize;
	box-shadow: 3px 3px 1.4rem rgba(var(--bg-primary), 0.3);
	background: linear-gradient(to right, var(--gt-primary));
	background-size: 100%;
	border: none;
}

[data-theme="dark"] .btn-one {
	box-shadow: 3px 3px 1.4rem rgba(var(--bg-primary), 0.23);

}

.btn-one.orange {
	background: linear-gradient(to right, var(--gt-orange));
	background-size: 100%;
}

.btn-one:hover {
	color: #fff;
	background-size: 150%;
}

.nav-toggler {
	width: 4rem;
	height: 4rem;
	display: none;
	cursor: pointer;
	margin-left: 2rem;
	font-size: 2.6rem;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
}

@media screen and (max-width: 991.9px) {
	.nav-toggler {
		display: flex;
	}

	.btn-one.sm {
		display: none;
	}
}

@media screen and (max-width: 991.9px) {
	.nav-links {
		top: 0;
		left: 0;
		width: 100%;
		max-width: 280px;
		height: 100vh;
		padding: 4rem;
		position: fixed;
		margin-left: -100%;
		flex-direction: column;
		transition: margin-left 0.4s ease;
		backdrop-filter: blur(8px);
		background: #efebf9;
		z-index: 1000;
		overflow-y: auto;
	}

	[data-theme="dark"] .nav-links {
		background: #201b50;
	}

	.nav-links.show {
		margin-left: 0 !important;
	}
}

@media screen and (max-width: 991.9px) {
	.nav-links {
		top: 0;
		left: 0;
		width: 280px;
		max-width: 100%;
		padding: 4rem;
		height: 100%;
		position: fixed;
		margin-left: -280px;
		flex-direction: column;
		transition: all 0.4s ease;
		backdrop-filter: blur(8px);
		background: #efebf9;
	}

	[data-theme="dark"] .nav-links {
		background: #201b50;
	}

	.nav-links a {
		width: max-content;
		color: var(--text-primary);
	}

	.nav-links.show {
		margin-left: 0 !important;
	}

	.backdrop-filter {
		top: 0;
		left: 0;
		z-index: 4;
		opacity: 0;
		width: 100%;
		height: 100%;
		display: none;
		position: fixed;
		background: rgba(41, 28, 74, 0.3);
	}

	.backdrop-filter.show {
		opacity: 1;
		display: block;
	}
}


@media screen and (max-width: 375.9px) {
	.nav-links {
		max-width: 240px;
	}
}

.mt1 {
	margin-top: 2px !important;
}

.mt2 {
	margin-top: 4px !important;
}

.mt3 {
	margin-top: 6px !important;
}

.mt4 {
	margin-top: 8px !important;
}

.mt5 {
	margin-top: 10px !important;
}

.mt6 {
	margin-top: 12px !important;
}

.mt7 {
	margin-top: 14px !important;
}

.mt8 {
	margin-top: 16px !important;
}

.mt9 {
	margin-top: 18px !important;
}

.mt10 {
	margin-top: 20px !important;
}

.mb1 {
	margin-bottom: 2px !important;
}

.mb2 {
	margin-bottom: 4px !important;
}

.mb3 {
	margin-bottom: 6px !important;
}

.mb4 {
	margin-bottom: 8px !important;
}

.mb5 {
	margin-bottom: 10px !important;
}

.mb6 {
	margin-bottom: 12px !important;
}

.mb7 {
	margin-bottom: 14px !important;
}

.mb8 {
	margin-bottom: 16px !important;
}

.mb9 {
	margin-bottom: 18px !important;
}

.mb10 {
	margin-bottom: 20px !important;
}

/*-----------------------------------
  HERO SECTION
-----------------------------------*/

.minimal-hero {
	align-items: center;
	padding: 120px 5px;
	position: relative;
	min-height: 90vh;
	display: flex;
	margin-top: -1rem;
	margin-bottom: -3rem;
	overflow: hidden;
}

.gradient-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.3;
}

.circle-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgb(var(--bg-primary), 0.4) 0%, transparent 70%);
	top: -100px;
	left: -100px;
	animation: float 15s infinite alternate;
}

.gradient-triangle {
	position: absolute;
	width: 0;
	height: 0;
	filter: blur(20px);
	opacity: 0.3;
}

.triangle-1 {
	border-left: 200px solid transparent;
	border-right: 200px solid transparent;
	border-bottom: 400px solid rgb(var(--bg-orange), 0.2);
	top: 20%;
	right: 10%;
	transform: rotate(45deg);
	animation: rotate 20s infinite linear;
}

@keyframes float {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(50px, 50px);
	}

	100% {
		transform: translate(0, 0);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


.hero-img img {
	position: relative;
	width: 500px;
	margin-top: -8rem;
}


.hero-title {
	font-weight: 800;
	font-size: 5rem;
	margin-top: -4rem;
	opacity: 0.9;
	margin-bottom: 3rem;
	line-height: 1.2;
	position: relative;
	z-index: 2;
	color: rgb(var(--text-primary));
}

.hero-title span {
	background: linear-gradient(45deg, var(--gt-text-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.8rem;
	margin-bottom: 3.4rem;
	opacity: 0.9;
	position: relative;
	z-index: 2;
	color: rgb(var(--text-primary));
}

.hero-highlight {
	position: relative;
	display: inline-block;
	color: rgb(var(--white));
	padding: 5px 2rem;
	border-radius: 50px;
	font-size: 1.5rem;
	font-weight: 500;
	background: linear-gradient(45deg, var(--gt-orange));
	transition: background 0.3s linear;
}

.btn-cta {
	display: flex-wrap;
	justify-content: center;
	margin-top: 4.8rem;
}

.btn-cta .btn-one {
	position: relative;
	padding: 1rem 2rem 1rem;
	margin: 5px;
}


/* Medium devices */
@media (max-width: 991.98px) {


	.hero-img img {
		width: 600px;
		margin-top: -8rem;
	}

	.hero-title {
		font-size: 4rem;
		margin-top: 1rem;
		margin-bottom: 1.4rem;
	}

	.hero-subtitle {
		font-size: 2rem;
		margin-bottom: 3rem;
	}

	.circle-1 {
		filter: blur(40px);
	}

	.triangle-1 {
		filter: blur(30px);
	}


	.hero-highlight {
		padding: 5px 3rem 5px 3rem;
		font-size: 2rem;
		margin-bottom: 7rem;
	}

	.btn-cta {
		margin-top: 0rem;
	}

}


/* Small devices */
@media (max-width: 575.98px) {


	.hero-img img {
		width: 300px;
	}

	.hero-title {
		font-size: 2.5rem;
		margin-top: -1rem;
		margin-bottom: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}

	.circle-1 {
		filter: blur(40px);
	}

	.triangle-1 {
		filter: blur(30px);
	}


	.hero-highlight {
		padding: 5px 3rem 5px 3rem;
		font-size: 1rem;
		margin-bottom: 4rem;
	}

	.btn-cta {
		margin-top: 0rem;
	}

}

/*-----------------------------------
  HOW TO EARN SECTION
-----------------------------------*/


.how-to-earn {
	width: 100%;
	background-color: rgba(var(--bg-secondary), 1);
	color: rgb(var(--text-primary));
	padding: 10px 50px;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.earn-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 6rem;
}

.earn-title h2 {
	font-size: 5rem;
	font-weight: 700;
	margin-top: 2rem;
	background: linear-gradient(to right, var(--gt-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.earn-title p {
	font-size: 2.3rem;
	font-weight: 500;
	margin-top: 1rem;
	color: rgb(var(--text-primary));
}


.earn-img img {
	width: 500px;
	position: relative;
	z-index: 1;

}


.earn-cube {
	display: flex;
	align-items: center;
	gap: 3.6rem;
	margin-bottom: 6.5rem;
}

.earn-cube .cube {
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, var(--gt-primary));
	transform: rotate(45deg);
	box-shadow: 0 8px 20px rgba(102, 26, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	transition: transform 0.4s ease;
	position: relative;
	flex-shrink: 0;
	z-index: 1;
}

.earn-cube .cube i {
	transform: rotate(-45deg);
	color: rgba(var(--white), 0.9);
	font-size: 42px;
	transition: transform 0.4s ease;
}


.earn-cube:hover .cube,
.earn-cube .cube:hover {
	transform: rotate(0deg) scale(1.025);
	box-shadow: 0 10px 30px rgba(var(--bg-primary), 0.7);
}

.earn-cube:hover .cube i,
.earn-cube .cube:hover i {
	transform: rotate(0deg);
}

.earn-cube .content h2 {
	font-size: 2.9rem;
	margin: 0 0 0.4rem;
	color: rgb(var(--text-primary));
}

.earn-cube .content p {
	margin: 0;
	color: rgba(var(--text-primary), 0.7);
	font-size: 1.8rem;
	max-width: 100%;
}

.overlay-cloud {
	position: absolute;
	width: 600px;
	height: 400px;
	bottom: -60px;
	left: -80px;
	background: radial-gradient(circle at 30% 30%, var(--gt-primary));
	border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
	box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
	transform: rotate(12deg);
	animation: floatUpDown 5s ease-in-out infinite;
	filter: blur(5px);
	z-index: 0;
	opacity: 0.1;
}

@keyframes floatUpDown {

	0%,
	100% {
		transform: translateY(0) rotate(12deg);
	}

	50% {
		transform: translateY(-20px) rotate(12deg);
	}
}

/* Medium devices */
@media (max-width: 991.98px) {


	.how-to-earn {
		padding: 10px 10px;
	}

	.earn-title h2 {
		font-size: 4.5rem;
	}

	.earn-title p {
		font-size: 2.3rem;
	}


	.earn-img img {
		width: 500px;
		margin-left: 9rem;
		margin-top: -1rem;
		margin-bottom: 7rem;
	}


	.earn-cube {
		margin-bottom: 6rem;
		gap: 3.6rem;
	}


	.earn-cube .cube {
		width: 75px;
		height: 75px;
	}

	.earn-cube .cube i {
		font-size: 40px;
	}

	.earn-cube .content h2 {
		font-size: 3rem;
		margin: 0 0 0.5rem;
	}


	.earn-cube .content p {
		margin: 0;
		font-size: 1.8rem;
		max-width: 100%;
	}


	.overlay-cloud {
		position: absolute;
		width: 350px;
		height: 350px;
		top: 500px;
		left: 200px;
		background: radial-gradient(circle at 30% 30%, var(--gt-primary));
		border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
		box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
		transform: rotate(12deg);
		animation: floatUpDown 5s ease-in-out infinite;
		filter: blur(5px);
		z-index: 0;
		opacity: 0.1;
	}

}

/* Small devices */
@media (max-width: 575.98px) {


	.how-to-earn {
		padding: 10px 23px;
	}

	.earn-title h2 {
		font-size: 2.7rem;
	}

	.earn-title p {
		font-size: 1.3rem;
	}


	.earn-img img {
		width: 280px;
		margin-left: 2rem;
		margin-top: -1rem;
		margin-bottom: 7rem;
	}

	.earn-cube {

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin-bottom: 6rem;
		gap: 3.6rem;
	}


	.earn-cube .cube {
		width: 60px;
		height: 60px;
	}

	.earn-cube .cube i {
		font-size: 30px;
	}

	.earn-cube .content h2 {
		font-size: 2.1rem;
		margin: 0 0 0.3rem;
	}


	.earn-cube .content p {
		margin: 0;
		font-size: 1.1rem;
		max-width: 100%;
	}


	.overlay-cloud {
		position: absolute;
		width: 200px;
		height: 200px;
		top: 320px;
		left: 20px;
		background: radial-gradient(circle at 30% 30%, var(--gt-primary));
		border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
		box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
		transform: rotate(12deg);
		animation: floatUpDown 5s ease-in-out infinite;
		filter: blur(5px);
		z-index: 0;
		opacity: 0.1;
	}


}


/*-----------------------------------
  FEATURES SECTION
-----------------------------------*/

.features {
	width: 100%;
	color: rgb(var(--text-primary));
	padding: 10px 50px;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.feature-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 6rem;
}

.feature-title h2 {
	font-size: 5rem;
	font-weight: 700;
	margin-top: 2rem;
	background: linear-gradient(to right, var(--gt-text-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-title p {
	font-size: 2.3rem;
	font-weight: 500;
	margin-top: 1rem;
	color: rgba(var(--text-primary), 0.9);
}


.feature-img img {
	width: 430px;
	position: relative;
	z-index: 2;
	margin-top: 5rem;
	margin-left: 5rem;
}


.feature-card {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	background: rgba(var(--bg-secondary), 0.7);
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	gap: 1.5rem;
	max-width: 500px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 3rem;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 3px 14px rgba(var(--bg-orange), 0.3);
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--gt-orange));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
	opacity: 0.2;
}


.feature-icon .rotated-cube {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--gt-orange));
	transform: rotate(45deg);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 14px rgba(102, 26, 255, 0.3);
	margin: 0.7rem;
	margin-right: 1.1rem;
	transition: transform 0.4s ease;
	flex-shrink: 0;
}

.feature-icon .rotated-cube i {
	transform: rotate(-45deg);
	font-size: 34px;
	transition: transform 0.4s ease;
	color: rgba(var(--white), 0.9);
}


.feature-card:hover .feature-icon .rotated-cube,
.feature-card:hover .feature-icon .rotated-cube i {
	transform: rotate(0deg) scale(1.1);
}

.feature-content h3 {
	margin: 0;
	font-size: 2.2rem;
	color: rgba(var(--text-primary), 1);
}

.feature-content p {
	margin: 0.9rem 0 0;
	font-size: 1.5rem;
	color: rgba(var(--text-primary), 0.7);
}


.overlay-cloud-2 {
	position: absolute;
	width: 630px;
	height: 430px;
	bottom: 0px;
	right: -80px;
	background: radial-gradient(circle at 40% 60%, var(--gt-secondary), transparent 80%);
	border-radius: 55% 35% 45% 65% / 60% 40% 50% 50%;
	box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
	transform: rotate(18deg) scale(1.05);
	animation: floatUpDown 5s ease-in-out infinite;
	filter: blur(5px);
	z-index: 0;
	opacity: 0.15;
}

[data-theme="dark"] .overlay-cloud-2 {
	filter: blur(8px);
	opacity: 0.07;
}

@keyframes floatUpDown {

	0%,
	100% {
		transform: translateY(0) rotate(18deg) scale(1.05);
	}

	50% {
		transform: translateY(-20px) rotate(18deg) scale(1.05);
	}
}


/* Medium devices */
@media (max-width: 991.98px) {

	.features {
		padding: 10px 10px;
	}

	.feature-title h2 {
		font-size: 4.5rem;
	}

	.feature-title p {
		font-size: 2.3rem;
	}


	.feature-img img {
		width: 460px;
		margin-left: 9rem;
		margin-top: -2rem;
		margin-bottom: 4rem;
	}

	.feature-card {
		padding: 1rem;
		border-radius: 16px;
		gap: 1.5rem;
		max-width: 100%;
		margin-bottom: 3rem;
	}

	.feature-icon .rotated-cube {
		width: 75px;
		height: 75px;
	}

	.feature-icon .rotated-cube i {
		font-size: 35px;
	}

	.feature-content h3 {
		margin: 0;
		font-size: 2.8rem;
	}

	.feature-content p {
		margin: 0.3rem 0 0;
		font-size: 1.6rem;
	}


	.overlay-cloud-2 {
		position: absolute;
		width: 350px;
		height: 350px;
		top: 700px;
		right: 200px;
		background: radial-gradient(circle at 40% 60%, var(--gt-secondary), transparent 80%);
		border-radius: 55% 35% 45% 65% / 60% 40% 50% 50%;
		box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
		transform: rotate(18deg) scale(1.05);
		animation: floatUpDown 5s ease-in-out infinite;
		filter: blur(5px);
		z-index: 0;
		opacity: 0.15;
	}

	[data-theme="dark"] .overlay-cloud-2 {
		filter: blur(8px);
		opacity: 0.07;
	}
}

/* Small devices */
@media (max-width: 575.98px) {

	.features {
		padding: 10px 10px;
	}

	.feature-title h2 {
		font-size: 2.7rem;
	}

	.feature-title p {
		font-size: 1.3rem;
	}


	.feature-img img {
		width: 220px;
		margin-left: 5rem;
		margin-top: -2rem;
		margin-bottom: 4rem;
	}

	.feature-card {

		padding: 1rem;
		border-radius: 16px;
		gap: 1.5rem;
		max-width: 100%;
		margin-bottom: 3rem;
	}

	.feature-icon .rotated-cube {
		width: 55px;
		height: 55px;
	}

	.feature-icon .rotated-cube i {
		font-size: 24px;
	}

	.feature-content h3 {
		margin: 0;
		font-size: 1.8rem;
	}

	.feature-content p {
		margin: 0.2rem 0 0;
		font-size: 1rem;
	}


	.overlay-cloud-2 {
		position: absolute;
		width: 200px;
		height: 200px;
		top: 360px;
		right: 20px;
		background: radial-gradient(circle at 40% 60%, var(--gt-secondary), transparent 80%);
		border-radius: 55% 35% 45% 65% / 60% 40% 50% 50%;
		box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
		transform: rotate(18deg) scale(1.05);
		animation: floatUpDown 5s ease-in-out infinite;
		filter: blur(5px);
		z-index: 0;
		opacity: 0.15;
	}

	[data-theme="dark"] .overlay-cloud-2 {
		filter: blur(8px);
		opacity: 0.07;
	}
}


/*-----------------------------------
  STATS SECTION
-----------------------------------*/

.stats {
	width: 100%;
	background-color: rgba(var(--bg-secondary), 1);
	color: rgb(var(--text-primary));
	padding: 10px 0px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin-top: 2.5rem;
}

.stats .row {
	margin: 14rem 0rem 14rem;
}

.stats-cube {
	display: flex;
	align-items: center;
	gap: 3.6rem;
}

.stats-cube .cube {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--gt-primary));
	transform: rotate(45deg);
	box-shadow: 0 8px 20px rgba(102, 26, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	transition: transform 0.4s ease;
	position: relative;
	flex-shrink: 0;
	z-index: 1;
}

.stats-cube .cube i {
	transform: rotate(-45deg);
	color: rgba(var(--white), 0.9);
	font-size: 38px;
	transition: transform 0.4s ease;
}

.stats-cube:hover .cube,
.stats-cube .cube:hover {
	transform: rotate(0deg) scale(1.025);
	box-shadow: 0 10px 30px rgba(var(--bg-primary), 0.7);
}

.stats-cube:hover .cube i,
.stats-cube .cube:hover i {
	transform: rotate(0deg);
}

.stats-cube .content h2 {
	font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.1px;
	margin: 0 0 0.4rem;
	color: rgb(var(--text-primary));
	white-space: nowrap;
}

.stats-cube .content p {
	margin: 0;
	color: rgba(var(--text-primary), 1);
	font-size: 2rem;
	max-width: 100%;
}


.overlay-cloud-3 {
	position: absolute;
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 50%;
	background: radial-gradient(circle at 30% 30%, var(--gt-primary));
	border-radius: 40% 66% 55% 55% / 55% 85% 60% 40%;
	box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
	transform: rotate(12deg);
	animation: floatUpDown 5s ease-in-out infinite;
	filter: blur(20px);
	z-index: 0;
	opacity: 0.1;
}

.overlay-cloud-4 {
	position: absolute;
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 150px;
	background: radial-gradient(circle at 30% 30%, var(--gt-primary));
	border-radius: 48% 36% 85% 65% / 85% 35% 50% 50%;
	box-shadow: 0 0 30px rgba(102, 26, 255, 0.3);
	transform: rotate(12deg);
	animation: floatUpDown 5s ease-in-out infinite;
	filter: blur(20px);
	z-index: 0;
	opacity: 0.1;
}

/* Floating animation */
@keyframes floatUpDown {

	0%,
	100% {
		transform: translateY(0) rotate(12deg);
	}

	50% {
		transform: translateY(-20px) rotate(12deg);
	}
}

/* Medium devices */
@media (max-width: 991.98px) {

	.stats .row {
		margin: 6rem 0rem 0rem;
	}

	.stats-cube {

		text-align: center;
		margin: 0 0 8rem 4rem;
		gap: 3rem;
	}


	.stats-cube .cube {
		width: 75px;
		height: 75px;
	}

	.stats-cube .cube i {
		font-size: 34px;
	}

	.stats-cube .content h2 {
		font-size: 3.3rem;
		margin: 0 0 0.3rem;
	}


	.stats-cube .content p {
		margin: 0;
		font-size: 2rem;
		max-width: 100%;
	}


	.overlay-cloud-3 {
		position: absolute;
		width: 150px;
		height: 150px;
		top: 100px;
		left: 200px;
		filter: blur(6px);
	}

	.overlay-cloud-4 {
		position: absolute;
		width: 150px;
		height: 150px;
		top: 200px;
		left: 600px;
		filter: blur(6px);
	}
}

/* Small devices */
@media (max-width: 575.98px) {

	.stats .row {
		margin: 4rem 0rem 4rem;
	}

	.stats-cube {

		text-align: center;
		margin: 0 0 6rem 8rem;
		gap: 3.6rem;
	}


	.stats-cube .cube {
		width: 55px;
		height: 55px;
	}

	.stats-cube .cube i {
		font-size: 27px;
	}

	.stats-cube .content h2 {
		font-size: 2.3rem;
		margin: 0 0 0.3rem;
	}


	.stats-cube .content p {
		margin: 0;
		font-size: 1.3rem;
		max-width: 100%;
	}


	.overlay-cloud-3 {
		position: absolute;
		width: 100px;
		height: 100px;
		top: 100px;
		left: 100px;
		filter: blur(6px);
	}

	.overlay-cloud-4 {
		position: absolute;
		width: 100px;
		height: 100px;
		bottom: 100px;
		right: 100px;
		filter: blur(6px);
	}

}


/*-----------------------------------
  PRIVACY-POLICY & TERMS SECTION
-----------------------------------*/

.privacy-policy,
.terms {
	width: 100%;
	color: rgb(var(--text-primary));
	padding: 10px 50px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: 4.5rem 0 4.5rem;
}


.privacy-policy h2,
.terms h2 {
	font-size: 2.7rem;
	font-weight: 600;
	letter-spacing: 0.1px;
	margin: 0 0 0.7rem;
	color: rgb(var(--text-primary));
	white-space: nowrap;
}


.privacy-policy h3,
.terms h3 {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.1px;
	margin: 2.5rem 0 0.5rem;
	color: rgb(var(--text-primary));
	white-space: nowrap;
}

.privacy-policy p,
.terms p {
	margin: 0;
	color: rgba(var(--text-primary), 1);
	font-size: 1.4rem;
	max-width: 100%;
}

/* Medium devices */
@media (max-width: 991.98px) {

	.privacy-policy,
	.terms {
		padding: 10px 50px;
		margin: 4.5rem 0 4.5rem;
	}


	.privacy-policy h2,
	.terms h2 {
		font-size: 2.2rem;
		font-weight: 600;
		margin: 0 0 0.7rem;
	}


	.privacy-policy h3,
	.terms h3 {
		font-size: 1.7rem;
		font-weight: 600;
		margin: 2.5rem 0 0.5rem;
	}

	.privacy-policy p,
	.terms p {
		font-size: 1.3rem;

	}
}

/* Small devices */
@media (max-width: 575.98px) {

	.privacy-policy,
	.terms {
		padding: 10px 10px;
		margin: 4.5rem 0 4.5rem;
	}


	.privacy-policy h2,
	.terms h2 {
		font-size: 2.1rem;
		font-weight: 600;
		margin: 0 0 0.7rem;
	}


	.privacy-policy h3,
	.terms h3 {
		font-size: 1.6rem;
		font-weight: 600;
		margin: 2.5rem 0 0.5rem;
	}

	.privacy-policy p,
	.terms p {
		font-size: 1.17rem;

	}
}


/*-----------------------------------
  AUTHOR SECTION
-----------------------------------*/
.auth-form {
	display: flex;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.content-wrap {
	margin: 5rem 0;
	max-width: 45rem;
	min-height: 35rem;
	padding: 4rem 2rem;
	border-radius: 1rem;
	background-color: rgba(var(--light), 1);
	color: rgb(var(--text-primary));
	box-shadow: 3px 8px 12px rgba(var(--black), 0.1);
}


.page-name h2 {
	font-weight: 600;
	font-size: 2.4rem;
	margin-top: -1rem;
	color: rgb(var(--text-primary));
}

.input-group-text {
	background: linear-gradient(45deg, var(--gt-primary));
	color: rgba(var(--white), 1);
	border: none;
	padding: 0.90rem 1.5rem;
	font-size: 1.45rem;
	border-radius: 7px;
}

.toggle-eye {
	position: absolute;
	top: 50%;
	right: 1rem;
	color: rgba(var(--text-primary), 1);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 10;
	pointer-events: auto;
}

.toggle-eye i {
	padding: 6px;
}

.form-control {
	padding: 0.90rem 1rem;
	font-size: 1.5rem;
	background-color: rgba(var(--body-bg), 0.4);
	border: 2px solid rgba(var(--bg-primary), 0.6);
	color: rgba(var(--text-primary), 1);
	box-shadow: none !important;
	border-radius: 7px;
}

.form-control::placeholder {
	color: rgba(var(--text-primary), 0.7);
}

.form-control:focus,
.form-control:hover {
	border-color: rgba(var(--bg-primary), 1) !important;
	box-shadow: none !important;
	background-color: rgba(var(--body-bg), 0.5);
	color: rgba(var(--text-primary), 1);
}

input:-webkit-autofill {
	font-size: 1.3rem;
	-webkit-box-shadow: 0 0 0 1000px rgba(var(--body-bg), 0.4) inset !important;
	-webkit-text-fill-color: rgba(var(--text-primary), 1) !important;
	border: 2px solid rgba(var(--bg-primary), 0.6);
	transition: background-color 5000s ease-in-out 0s;
}


.input-error {
	margin: 0 4rem 1.3rem;
	margin-top: -1.5rem;
	font-size: 1.4rem;
	letter-spacing: 0.3px;
	font-weight: 500;
	color: rgba(var(--text-danger), 1);
	opacity: 1;
	max-height: 100px;
	transition: opacity 0.3s ease, margin-top 0.3s ease, max-height 0.3s ease;
}

.input-error.hidden {
	opacity: 0;
	margin-top: -1.3rem;
	max-height: 0;
}

.error .input-group-text {
	background: linear-gradient(45deg, var(--gt-danger));
	transition: background 0.3s ease;
}


.error .form-control {
	background-color: rgba(var(--text-danger), 0.03);
	border: 2px solid rgba(var(--text-danger), 0.8);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.error .form-control:focus,
.error .form-control:hover {
	background-color: rgba(var(--body-bg), 0.5);
	border-color: rgba(var(--bg-primary), 0.6);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.error:has(.form-control:focus) .input-group-text,
.error:has(.form-control:hover) .input-group-text {
	background: linear-gradient(45deg, var(--gt-primary));
	transition: background 0.3s ease;
}

.error:focus-within+.input-error,
.error:hover+.input-error {
	opacity: 0;
	margin-top: -1.3rem;
	max-height: 0;
}

.action-meta {
	text-align: center;
	font-size: 1.6rem;
	margin: 1.7rem 0 -1rem;
}

.action-meta a {
	font-weight: 600;
	color: rgb(var(--bg-primary));
}

.action-meta a:hover {
	display: inline-block;
	border-bottom: 1.6px solid rgb(var(--bg-primary));
	padding-bottom: 1px;
	transition: border-bottom 0.1s ease;
}

.action-forgot {
	display: flex;
	justify-content: flex-end;
}

.action-forgot a {
	font-size: 1.3rem;
	margin: -1rem 0 0;
	font-weight: 600;
	color: rgb(var(--text-primary));
}

.action-forgot a:hover {
	display: inline-block;
	color: rgb(var(--bg-primary));
	border-bottom: 1.4px solid rgb(var(--bg-primary));
	padding-bottom: 1px;
	transition: border-bottom 0.1s ease;
}

.custom-alert {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.3rem 1.25rem;
	border-radius: 12px;
	color: #fff;
	font-size: 1.2rem;
	background: linear-gradient(45deg, var(--gt-orange));
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.custom-alert .alert-icon {
	font-size: 2rem;
	flex-shrink: 0;
	margin-top: 2px;
	color: rgb(var(--white));
}

.custom-alert .alert-content p {
	margin: 0;
	line-height: 1.6;
}

/* Extra Top Margins */
.mt-6 {
	margin-top: 4.5rem !important;
}

.mt-7 {
	margin-top: 6rem !important;
}

.mt-8 {
	margin-top: 7.5rem !important;
}

.mt-9 {
	margin-top: 9rem !important;
}

.mt-10 {
	margin-top: 10.5rem !important;
}

/* Extra Bottom Margins */
.mb-6 {
	margin-bottom: 4.5rem !important;
}

.mb-7 {
	margin-bottom: 6rem !important;
}

.mb-8 {
	margin-bottom: 7.5rem !important;
}

.mb-9 {
	margin-bottom: 9rem !important;
}

.mb-10 {
	margin-bottom: 10.5rem !important;
}


/* Small devices */
@media (max-width: 575.98px) {

	.page-name h2 {
		font-size: 2.0rem;
	}

	.custom-alert {
		font-size: 1.1rem
	}


	.action-meta {
		font-size: 1.3rem;
		margin: 1.3rem 0 0;
	}

	.action-forgot a {
		font-size: 1.2rem;
	}

}

.text-muted {
	color: rgba(var(--text-primary), 0.7) !important;
	text-transform: lowercase;
}

.google-auth {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 10px;
	width: 100%;
	padding: 10px 16px;
	border: 1.4px solid rgba(var(--text-primary), 0.15);
	border-radius: 8px;
	background-color: rgb(var(--white));
	font-size: 1.55rem;
	font-weight: 600;
	color: rgba(var(--black), 0.65);
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.google-auth img {
	width: 23px;
	height: 23px;
}

.google-auth:hover {
	background-color: rgba(var(--black), 0.01);
}

[data-theme="dark"] .google-auth:hover {
	background-color: rgba(var(--white), 0.9);
}


.google-loader {
	display: none;
	align-items: center;
	justify-content: center;
	margin: 0.6rem 0;
}

.google-loader span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 3px;
	animation: google-loader-bounce 1.4s infinite ease-in-out both;
}

.google-loader span:nth-child(1) {
	animation-delay: -0.32s;
	background: #4285F4;
	/* Blue */
}

.google-loader span:nth-child(2) {
	animation-delay: -0.16s;
	background: #EA4335;
	/* Red */
}

.google-loader span:nth-child(3) {
	background: #FBBC05;
	/* Yellow */
}

.google-loader span:nth-child(4) {
	background: #34A853;
	/* Green */
	animation-delay: 0.16s;
}

@keyframes google-loader-bounce {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1.0);
	}
}

.google-auth.loading span,
.google-auth.loading img {
	display: none;
}

.google-auth.loading .google-loader span {
	display: inline-block;
}

.google-auth.loading .google-loader {
	display: flex;
}


.btn-one {
	position: relative;
	transition: all 0.3s ease;
}

.btn-one::after {
	content: "";
	position: absolute;
	top: calc(50% - 12px);
	left: calc(50% - 10px);
	width: 25px;
	height: 25px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-top-color: white;
	border-radius: 50%;
	opacity: 0;
	animation: spin 1s linear infinite;
	box-sizing: border-box;
}

.btn-one.loading {
	color: transparent;
	pointer-events: none;
}

.btn-one.loading::after {
	opacity: 1;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*-----------------------------------
  NOTFY SECTION
-----------------------------------*/
.notyf__toast.my-success {
	background: linear-gradient(-135deg, var(--gr-green));
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.notyf__toast.my-danger {
	background: linear-gradient(-135deg, var(--gr-maroon));
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.notyf__toast.my-warning {
	background: linear-gradient(-135deg, var(--gr-yellow));
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.notyf__toast.my-primary {
	background: linear-gradient(-135deg, var(--gt-primary));
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.notyf__icon i {
	font-size: 22px;
	color: white;
	margin-top: -2px;
}


/*-----------------------------------
  ERROR SECTION
-----------------------------------*/

.error-404 {
	align-items: center;
	padding: 120px 5px;
	position: relative;
	min-height: 100vh;
	display: flex;
	margin-top: -1rem;
	margin-bottom: -3rem;
	overflow: hidden;
}


.error-img img {
	position: relative;
	width: 520px;
	margin-top: -10rem;
}


.error-title {
	font-weight: 800;
	font-size: 5rem;
	margin-top: -4rem;
	opacity: 0.9;
	margin-bottom: 3rem;
	line-height: 1.2;
	position: relative;
	z-index: 2;
	color: rgb(var(--text-primary));
}

.error-title span {
	background: linear-gradient(45deg, var(--gt-text-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.error-subtitle {
	font-size: 1.8rem;
	margin-bottom: 3.4rem;
	opacity: 0.9;
	position: relative;
	z-index: 2;
	color: rgb(var(--text-primary));
}

/* Medium devices */
@media (max-width: 991.98px) {
	.error-404 {
		min-height: 60vh;
	}

	.error-img img {
		width: 500px;
		margin-top: -8rem;
	}

	.error-title {
		font-size: 4rem;
		margin-top: 1rem;
		margin-bottom: 1.4rem;
	}

	.error-subtitle {
		font-size: 2rem;
		margin-bottom: 9rem;
	}

}


/* Small devices */
@media (max-width: 575.98px) {

	.error-404 {
		min-height: 70vh;
	}

	.error-img img {
		width: 300px;

		margin-bottom: 2rem;
	}

	.error-title {
		font-size: 2.5rem;
		margin-top: -1rem;
		margin-bottom: 1.5rem;
	}

	.error-subtitle {
		font-size: 1.2rem;
		margin-bottom: 8rem;
	}

}

/*-----------------------------------
  FOOTER SECTION
-----------------------------------*/

.footer {

	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	color: rgb(var(--body-bg));
	background: #0C1540;
	padding: 8rem 50px 10px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin-top: -2rem;
}

.footer .logo {
	display: flex;
	text-align: center;
	align-items: center;
	margin-left: 3px;
	font-weight: 600;
	font-size: 2.4rem;
	letter-spacing: 0.3px;
	color: rgb(var(--white), 0.93);
}

.footer .logo span {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 600;
	background: linear-gradient(to right, var(--gt-primary));
	border-radius: 8px;
	color: rgb(var(--white), 0.93);
	margin-right: 10px;
}

.footer p {
	font-size: 1.5rem;
	margin: 1rem 0 3rem;
	color: rgb(var(--white), 0.93);
}


.footer-cube {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-cube .cube {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, var(--gt-primary));
	transform: rotate(45deg);
	box-shadow: 0 8px 20px rgba(102, 26, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	transition: transform 0.4s ease;
	position: relative;
	flex-shrink: 0;
	z-index: 1;
}

.footer-cube .cube i {
	transform: rotate(-45deg);
	color: rgba(var(--white), 0.9);
	font-size: 17px;
}

.footer-cube .cube:hover {
	transform: rotate(45deg) scale(1.02);
	box-shadow: 0 10px 30px rgba(var(--bg-primary), 0.5);
}


.switch,
.switch__input {
	display: block;
	-webkit-tap-highlight-color: transparent;
}

.switch {
	margin: auto;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.switch__icon {
	color: rgb(var(--white));
	pointer-events: none;
	position: absolute;
	top: 0.375em;
	left: 0.375em;
	width: 0.75em;
	height: 0.75em;
	transition:
		color 0.6s,
		transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.switch__icon:nth-of-type(2) {
	right: 0.375em;
	left: 2.65rem;
}

.switch__inner,
.switch__inner-icons {
	border-radius: 0.5em;
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0.25em;
	left: 0.25em;
	width: 2.25em;
	height: 1em;
}

.switch__inner:before,
.switch__inner-icons {
	transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
	transform: translateX(-1.25em);
}

.switch__inner:before {
	background: linear-gradient(135deg, var(--gt-orange));
	border-radius: inherit;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
}

.switch__inner-icons {
	pointer-events: none;
}

.switch__inner-icons .switch__icon {
	color: rgb(var(--white));
	top: 0.125em;
	left: 0.125em;
	transform: translateX(1.25em);
}

.switch__inner-icons .switch__icon:nth-child(2) {
	right: 0.125em;
	left: auto;
}

.switch__input {
	background: linear-gradient(135deg, var(--gt-primary));
	border-radius: 0.75em;
	box-shadow:
		0 0 0 0.0625em hsla(223, 90%, 50%, 0),
		0 0.125em 0.5em hsla(223, 10%, 10%, 0.1);
	outline: transparent;
	width: 2.75em;
	height: 1.5em;
	-webkit-appearance: none;
	appearance: none;
	transition:
		background-color 0.6s,
		box-shadow 0.6s;

}

.switch__input:checked {
	background: linear-gradient(135deg, var(--gt-primary));
}

.switch__input:checked~.switch__icon {
	color: rgb(var(--white));
}

.switch__input:checked~.switch__inner:before {}

.switch__input:checked~.switch__inner:before,
.switch__input:checked~.switch__inner-icons {
	transform: translateX(1.25em);
}

.switch__input:not(:checked)~.switch__icon:first-of-type,
.switch__input:checked~.switch__icon:nth-of-type(2) {
	transform: rotate(360deg);
}

.switch__input:checked~.switch__inner-icons .switch__icon:first-of-type {
	transform: translateX(-1.25em) rotate(-360deg);
}

.switch__input:checked~.switch__inner-icons .switch__icon:nth-of-type(2) {
	transform: translateX(-1.25em) rotate(360deg);
}

.switch__input:focus-visible {
	box-shadow:
		0 0 0 0.0625em hsla(223, 90%, 50%, 1),
		0 0.125em 0.5em hsla(223, 10%, 10%, 0.1);
}

.switch {
	transform: scale(1.30);
	transform-origin: top left;

}

.footer .pages {
	color: rgba(var(--white), 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.6rem;
}

.footer .pages h2 {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 1.8rem;
}

.footer .pages a {
	color: rgba(var(--white), 0.9);
	font-size: 1.7rem;
	text-decoration: none;
	transition: text-decoration-color 0.4s ease;
}

.footer .pages a:hover {
	text-decoration: underline !important;
	text-decoration-color: rgba(var(--white), 0.94);
	text-underline-offset: 5px;
}


.footer .copyright {
	padding: 3rem;
	margin: 7rem 0 -3rem;
	border-top: 1px solid rgba(var(--white), 0.5);
}

.footer .copyright p {
	text-align: center;
	font-size: 1.5rem;
	color: rgba(var(--white), 0.8);
}


/* Medium devices */
@media (max-width: 991.98px) {
	.footer {
		padding: 4rem 20px 10px;
		margin-top: -2rem;
	}


	.footer .logo {
		margin-left: 3px;
		font-weight: 600;
		font-size: 2.0rem;
	}

	.footer .logo span {
		width: 29px;
		height: 29px;
		font-size: 26px;
		font-weight: 600;
		margin-right: 8px;
	}

	.footer p {
		font-size: 1.1rem;
		margin: 1rem 0 3rem;
	}


	.footer-cube .cube {
		width: 27px;
		height: 27px;
	}

	.footer-cube .cube i {
		font-size: 18px;
	}

	.footer .pages {
		margin-top: 4rem;
	}

	.footer .pages h2 {
		font-size: 2.2rem;
		font-weight: 600;
		margin-bottom: 1.2rem;
	}

	.footer .pages a {
		font-size: 1.4rem;
	}


	.footer .copyright {
		padding: 3rem;
		margin: 4rem 0 -3rem;
		border-top: 1px solid rgba(var(--white), 0.3);
	}

	.footer .copyright p {
		text-align: center;
		font-size: 1.15rem;
		margin: -0.5rem 0 1rem;
	}
}


/* Small devices */
@media (max-width: 575.98px) {
	.footer {
		padding: 4rem 20px 10px;
		margin-top: -2rem;
	}


	.footer .logo {
		margin-left: 3px;
		font-weight: 600;
		font-size: 2.0rem;
	}

	.footer .logo span {
		width: 29px;
		height: 29px;
		font-size: 26px;
		font-weight: 600;
		margin-right: 8px;
	}

	.footer p {
		font-size: 1.1rem;
		margin: 1rem 0 3rem;
	}


	.footer-cube .cube {
		width: 27px;
		height: 27px;
	}

	.footer-cube .cube i {
		font-size: 18px;
	}

	.footer .pages {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		text-align: left;
		gap: 0.6rem;
		margin-top: 4rem;
	}

	.footer .pages h2 {
		font-size: 2.2rem;
		font-weight: 600;
		margin-bottom: 1.2rem;
	}

	.footer .pages a {
		font-size: 1.4rem;
	}


	.footer .copyright {
		padding: 3rem;
		margin: 4rem 0 -3rem;
		border-top: 1px solid rgba(var(--white), 0.3);
	}

	.footer .copyright p {
		text-align: center;
		font-size: 1.15rem;
		margin: -0.5rem 0 1rem;
	}
}