@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
	--primary-color: #3498db;
	--secondary-color: #2ecc71;
	--accent-color: #e74c3c;
	--background-color: #f4f4f4;
	--text-color: #333333;
	--muted-text-color: #777777;
	--border-color: #dddddd;
	--black: #000000;
	--white: #ffffff;

	/*Button paddings*/
	--pad-sm: .4rem .8rem;
	--pad-md: .6rem 1rem;
	--pad-lg: .8rem 1.5rem;

	/* Border radius */
	--radius-sm: .4rem;
	--radius-md: .8rem;
	--radius-lg: 1.6rem;

	/* Box shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);

	/* Z-index layers */
	--z-base: 1;
	--z-dropdown: 10;
	--z-modal: 100;
	--z-tooltip: 1000;

	/*Font sizes*/
	--font-tiny: .8rem;
	--font-sm: 1rem;
	--font-normal: 1.1rem;
	--font-md: 1.2rem;
	--font-xl: 4rem;
}
html, body{
	padding: 0;
	margin: 0;
	font-family: 'Figtree', serif;
}
body{
	background: linear-gradient(to bottom, #ffffff, #f8f8f9);
}
h1{
	font-size: 3rem;
	margin: 0;
	line-height: 1;
}
h2{
	font-size: 2.4rem;
}
h3{
	font-size: 1.8rem;
}
p, li{
	font-size: 1.1rem;
	line-height: 1.5;
	margin: 0;
}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 10%;
}
header img{
	width: 200px;
	height: auto;
}
nav {
	display: flex;
	align-items: center;
	gap: 1rem;
}
nav > ul{
	padding: 0;
	margin: 0;
}
nav > ul > li{
	display: inline-block;
	list-style-type: none;
}
nav > ul > li + li{
	margin-left: 1rem;
}
nav > ul > li > a{
	color: #000;
	text-decoration: none;
	font-size: 1.1rem;
}
nav > ul:nth-of-type(2) > li:last-child > a{
	background: var(--black);
	color: var(--white);
	padding: var(--pad-md);
	border-radius: var(--radius-md);
}
nav > ul:nth-of-type(2) > li:first-child > a{
	padding: var(--pad-md);
	border: 2px solid #323232;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
}
nav > ul:nth-of-type(2) > li:first-child > a > img{
	width: 20px;
	height: auto;
	margin-left: .5rem;
}
section{
	padding: 4rem 10%;
	text-align: center;
}
.title_wrap{
	text-align: center;
	max-width: 70%;
	margin: 4rem auto;
}
.title_wrap h1{
	font-size: var(--font-xl);
}
.title_wrap h1 span{
	color: #7CE35D;
}
.title_wrap p{
	max-width: 70%;
	margin: 0 auto;
	margin-top: 2rem;
	font-size: var(--font-md);
}
.cta_btn{
	padding: .6rem 3rem;
	height: 46px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	background: var(--black);
	color: var(--white);
	font-size: 1.1rem;
	cursor: pointer;
}
.cta_btn > span {
	display: block;
	width: 22px;
	height: 22px;
	border: 3px solid rgba(255, 255, 255, .6);
	border-bottom: 3px solid transparent;
	border-radius: 50%;
	animation: spin .8s linear infinite;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	} 100% {
		transform:  rotate(360deg);
	}
}
.spaced_top{
	margin: 0 auto;
	margin-top: 2rem;
}
.spaced_top:hover{
	background: #191919;
}
.top {
	background: linear-gradient(to bottom, #fff, #e4f9de, #f1f1f3);
}
.top > div img{
	width: 30%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.top_2 {
	text-align: center;
}
.top_2 .card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 82%;
	margin: 0 auto;
	margin-top: 1.5rem;
	text-align: left;
	background: #f1f1f3;
	border-radius: var(--radius-lg);
	height: 380px;
	margin-top: 2rem;
}
.top_2 .card:nth-of-type(1){
	margin-top: 4rem;
}
.top_2 .card > div {
	width: 50%;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
	padding: 1rem;
	position: relative;

}
.text > div{
	padding: var(--pad-md);
	background: var(--white);
	border-radius: var(--radius-lg);
	display: inline;
}
.text > div > button{
	display: flex;
	text-align: initial;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 500;
	background: transparent;
	border-radius: var(--radius-lg);
	cursor: pointer;
	padding: .8rem 1.5rem;
	border: none;
	color: #707c8c;
}
.text > div > button > img{
	width: 24px;
	height: auto;
	margin-right: .5rem;
	opacity: .7;
}
.text > div > button.active{
	background: #7CE35D;
	color: var(--white);
}
.top_2 .card > div.text{
	padding: 4rem 3rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.top_2 .card > div > img {
	width: 60%;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}
.grided{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 2rem;
	width: 82%;
	margin: 0 auto;
	margin-top: 4rem;
	height: 700px;
	padding: 2rem;
}
.grided > div{
	background: #f1f1f3;
	border-radius: var(--radius-lg);
	text-align: initial;
	padding: 2rem;
}
.grided h3{
	margin: 0;
	margin-bottom: 1rem;
}
.grided > div:nth-of-type(1){
	grid-column: 1 / 2;
	grid-row: 1 / 4;
}
.grided > div:nth-of-type(2) {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.grided > div:nth-of-type(3) {
	grid-column: 2 / 3;
	grid-row: 2 / 4;
}
.iconics{
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	align-items: center;
}
.iconics > div{
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 50%;
	background: #24292f;
	display: flex;
	justify-content: center;
	align-items: center;
}
.iconics > div:nth-of-type(2) > img{
	width: 60%;
	height: auto;
}
.iconics > div > img{
	width: 100%;
	height: 100%;
}

.scroll-container {
	height: calc(100% - 4rem);
	overflow: hidden;
	position: relative;
}

.scroll-container:before{
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #f1f1f3, transparent, transparent, transparent, transparent, #f1f1f3);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.scroll-content {
	display: flex;
	flex-direction: column;
	animation: scroll-up 60s linear infinite;
}
.item {
	flex: 0 0 auto;
}
.item img {
	width: 100%;
	height: auto;
	display: block;
	margin: 1rem auto;
	border-radius: 1.4rem;
}
@keyframes scroll-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50%);
	}
}
.catchy > div {
	padding: .6rem 1rem;
	background: #fff;
	border-radius: 2rem;
	position: relative;
}
.catchy > div:before {
	content: 'Pay Now';
	padding: .4rem 1.4rem;
	background: #cbe87d;
	border-radius: var(--radius-md);
	position: absolute;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
}
.catchy > div img{
	width: 40px;
	height: auto;
	display: block;
	margin-left: auto;
}
.catchy h3{
	margin-top: 2rem;
	font-weight: 500;
}
.threes{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 0 auto;
	width: 82%;
	margin-top: 4rem;
	text-align: initial;
}
.threes > div{
	padding: 2rem;
	background: #f1f1f3;
	border-radius: var(--radius-lg);
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
.threes h3{
	margin: 0;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}
.threes > div > div > p{
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
}
.threes > div > div.in_message{
	padding: .5rem 1rem;
	box-sizing: border-box;
	background: #dcf7c5;
	border-radius: 1rem 0 1rem 1rem;
	width: 90%;
	margin-left: auto;
	position: relative;
	margin-top: 1rem;
}
.threes > div > div.in_message:before{
	content: '';
	width: 0;
	height: 0;
	display: block;
	border: 5px solid transparent;
	border-top: 5px solid #dcf7c5;
	border-left: 5px solid #dcf7c5;
	position: absolute;
	left: 100%;
	top: 0;
}
.threes > div > div.out_message:before{
	content: '';
	width: 0;
	height: 0;
	display: block;
	border: 5px solid transparent;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	position: absolute;
	right: 100%;
	top: 0;
}
.threes > div > div.out_message{
	padding: .5rem 1rem;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0 1rem 1rem 1rem;
	width: 90%;
	position: relative;
	margin-top: 1rem;
}
.threes > div > div.out_message > span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: .6rem 0;
	border-top: 2px solid #ebebeb;
	color: #25D366;
	font-weight: 500;
	font-size: 1rem;
}
.threes > div > div.out_message > span > img{
	width: 15px;
	height: auto;
	margin-right: .5rem;
}
.threes > div > div.out_message > span:first-of-type{
	margin-top: .5rem;
}
div.graph{
	position: relative;
	overflow: hidden;
}
div.graph > div{
	height: 500px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.inventory_show {
	background: #ffffff;
	padding: var(--pad-md);
	border-radius: var(--radius-lg);
	width: 150%;
	overflow: hidden;
	margin-top: 1rem;
}

/* Header Grid */
.inventory_header {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	padding: 1rem 0;
}

/* Scrollable Content Area */
.inventory_scroll {
	height: 150px;
	overflow: hidden;
	position: relative;
}
.inventory_scroll:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom, #fff, transparent, transparent, transparent);
	z-index: 1;
}
.inventory_rows {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	animation: scroll-up 5s linear infinite;
}

/* Cells */
.inventory_rows > div {
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding: .4rem 0;
}
.inventory_rows img {
	margin-right: 0.5rem;
	width: 30px;
	height: auto;
}
.rewards{
	padding: 1rem;
	background: #ffffff;
	border-radius: var(--radius-md);
	margin-top: 1rem;
}
.rewards h4{
	margin: 0;
	margin-bottom: 1rem;
	font-size: 1rem;
}
.rewards span{
	display: block;
	border-radius: var(--radius-sm);
	border: 1px solid #ebebeb;
	padding: .5rem 1rem;
	margin: 2rem 0;
}
.faq_wrap{
	display: flex;
	width: 82%;
	margin: 0 auto;
	margin-top: 4rem;
	text-align: initial;
	gap: 2rem;

}
.faq_wrap > div:nth-of-type(1){
	width: 25%;
}
.faq_wrap > div:nth-of-type(2){
	width: calc(80% - 2rem);
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1rem 2rem;
	box-sizing: border-box;
}
.faq_wrap > div p{
	margin-bottom: 1rem;
}
.faq_wrap > div h3{
	font-size: 1.1rem;
	position: relative;
	cursor: pointer;
	padding: 1rem 0;
	padding-left: 2rem;
	color: #707c8c;
	margin: 0;
}
.faq_wrap > div h3:not(:first-child) {
	border-top: 2px solid #ebebeb;
}
.faq_wrap > div h3:before{
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	background-image: url(' /img/plus.png');
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	opacity: .5;
	display: flex;
	align-items: center;
	transition: .4s;
}
.faq_wrap > div h3.active:before{
	transform: rotate(45deg);
	transform-origin: center;
	transition: .4s;
}
.faq_wrap > div > div{
	max-height: 0;
	overflow-y: hidden;
	transition: all .4s ease-in;
}
.pricing{
	width: 82%;
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-sizing: border-box;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	text-align: initial;
	margin-top: 2rem;
}
.pricing > div{
	padding: 1rem 0;
	border-top: 2px solid #ebebeb;
	font-size: 1.1rem;
}
.pricing > div:nth-child(-n+5) {
	border-top: none;
}
.pricing > div:nth-of-type(5n - 4){
	font-weight: bold;
}
.onboarding{
	width: 82%;
	box-sizing: border-box;
	margin: 0 auto;
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 3rem 4rem;
	text-align: initial;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.onboarding h2{
	margin: 0;
}
.onboarding ul{
	margin: 2rem 0;
	padding: 0;
	margin-left: 1rem;
}
.onboarding ul li{
	color: #707c8c;
	line-height: 1.4;
	font-size: 1.2rem;
}
.cta_last {
	background: #000;
}
.cta_last h2{
	color: #ffffff;
}
.cta_last h2 span{
	color: rgba(255, 255, 255, 0.5);
}
.cta_last > button{
	border: 1px solid rgb(78, 79, 82);
	padding: .8rem 2rem;
	color: #fff;
	background: rgba(255, 255, 255, .2);
	border-radius: var(--radius-sm);
	font-size: 1.2rem;
	cursor: pointer;
	transition: .4s;
}
.cta_last > button:hover{
	background: rgba(255, 255, 255, .5);
}
footer{
	padding: 0 10%;
	font-size: 1.1rem;
}
footer > div{
	padding: 2rem 0;
	border-top: 2px solid #ebebeb;
	color: #707c8c;
}
footer a + a{
	margin-left: 1rem;
}
footer a{
	text-decoration: none;
	color: #000000;
}
.company {
	text-align: initial;
	width: 60%;
	margin: 0 auto;
}
.company h1{
	margin: 2rem auto;
	text-align: center;
}
.company h2 {
	font-size: 1.4rem;
}
.company h3 {
	font-size: 1.2rem;
}
.company p{
	margin: 1.5rem 0;
}
.login_form{
	flex: 1;
	display: flex;
	align-items: center;
}
.login_wrap{
	text-align: initial;
	background: #ffffff;
	width: 40%;
	padding: 3rem;
	flex-direction: column;
	box-sizing: border-box;
	border-radius: var(--radius-lg);
	border: 1px solid #ebebeb;
	margin: 0 auto;
	display: none;
}
.login_wrap:first-of-type{
	display: flex;
}
.login_wrap h1{
	font-size: 1.6rem;
	margin-bottom: 2rem;
}
.login_wrap input{
	padding: .8rem 1rem;
	border: 1px solid #ebebeb;
	border-radius: var(--radius-md);
	margin-bottom: 1.4rem;
	margin-top: .4rem;
	font-size: 1.1rem;
}
.login_wrap label{
	font-size: 1.1rem;
}
.login_wrap > button{
	margin-bottom: 2rem;
}
.login_wrap > a{
	text-decoration: none;
	color: #000000;
	font-weight: 500;
	font-size: 1.1rem;
	margin: 0 auto;
}
body.login_body{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.alert_div{
	width: calc(100% - 2rem);
	position: fixed;
	top: 1rem;
	right: 1rem;
	text-align: right;
}
.warning_box {
	border: 2px solid hotpink;
	border-radius: 0.6rem;
	padding: 1.6rem 4rem;
	position: fixed;
	top: 2rem;
	right: 2rem;
	min-width: 30%;
	max-width: 40%;
	box-sizing: border-box;
	background: linear-gradient(135deg, #ff80ab, #ffe5f1, #ff80ab);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: #4a004a;
	font-weight: 600;
	font-size: 1.2rem;
	z-index: 1000;
	animation-duration: .8s;
	animation-timing-function: ease-in-out;
	text-align: initial;
	min-width: 34%;
	display: none;
}

.success_box {
	border: 1px solid #4CAF50;
	border-radius: 0.4rem;
	padding: 1.6rem 4rem;
	position: fixed;
	top: 2rem;
	right: 2rem;
	min-width: 30%;
	box-sizing: border-box;
	background: #f9fff9;
	color: #4CAF50;
	font-size: 1rem;
	font-weight: 600;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	animation-duration: .8s;
	animation-timing-function: ease-in-out;
	text-align: initial;
	min-width: 34%;
	display: none;
}

@keyframes slide-left {
	0%{
		right: -100%;
	} 100% {
		right: 0;
	}
}

@keyframes push-right {
	0%{
		right: 0;
	} 100% {
		right: -100%;
	}
}

@media (min-width: 1025px) and (max-width: 1280px){
	section{
		padding: 4rem 2%;
	}
	.top_2 .card, .grided, .threes, .faq_wrap, .pricing, .onboarding{
		width: 96%;
	}
}