:root {
	--main-blue: #4678D1;
	--main-purple: #4183F7;
	--color-secondary: #64607D;
	--main-orange: #FF6146;
	--box-shadow-rgb: rgba(2, 36, 98, 0.3);
	--body-bg: #ffffff;
	--max-width: 1440px;
	--max-container: calc(var(--max-width) - 6rem);
	--font-secondary: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.g-container, container {
	width: calc(100% - clamp(1rem,8vw,8rem));
	max-width: var(--max-container);
	margin: 0 auto;
}

container {
	display: block;
}

html, body {
	scroll-behavior: smooth;
	font-size: clamp(14px, 10vw - 100px, 16px);
}

body {
	/* background: url('/img/hero-bg.svg') no-repeat;
	background-size: 80%;
    background-position: 0rem -4rem; */
	/* background: var(--body-bg) 0 0 / 88rem auto no-repeat url('/img/hero-bg.svg'); */
	font-family: 'Inter', sans-serif;
	margin: 0;
}

a {
	text-decoration: none;
}

header {
	position: sticky;
	top: 0;
	z-index: 2;
	background-color: white;
	padding: 1.5rem 0 1.5rem 0;
	box-shadow: 0 4px 25px var(--box-shadow-rgb);
}

.header-container {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-basis: clamp(10rem, (50rem - 100vw)*9999, 100%);
}

.header-logo img {
	width: 10rem;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-basis: clamp(10rem, (50rem - 100vw)*9999, 100%);
	gap: 2rem;
}

.header-right-download {
	background-color: var(--main-orange);
	border-radius: 6rem;
	padding: 0.875rem 3rem 0.875rem 3rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.header-right #lang {
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 1.25rem;
	display: inline-flex;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	padding-right: .675rem;
	background: url("data:image/svg+xml,%3Csvg width='7' height='5' viewBox='0 0 7 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5L0.468911 0.5L6.53109 0.5L3.5 5Z' fill='%2313234C'/%3E%3C/svg%3E") no-repeat center right;

}

.header-right #lang:focus {
	outline: 1px dashed gray;
}

.header-right #lang option {
	font-size: calc(1em - 1px);
}

.hero {
	margin-bottom: -30rem;
	margin-bottom: clamp(-48rem, (50rem - 100vw)*-9999,-28rem);
	margin-bottom: clamp(-22rem, (10vw - 100px)*10,-18rem);
	position: relative;
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
}

.hero::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: var(--body-bg) 0 -6rem / 88rem auto no-repeat url('/img/hero-bg.svg');
	background: var(--body-bg) -4rem -6rem / 80rem auto no-repeat url('/img/hero-bg.svg');
	background: var(--body-bg) 0rem -6rem / 74rem auto no-repeat url('/img/hero-bg.svg');
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: -1;
}

.hero-container {
	display: flex;
	justify-content: space-between;
	overflow-x: hidden;
	max-width: var(--max-width);
	margin: 0 auto;
}

.hero-left {
	margin: clamp(2rem, 8vw, 6rem) 0 0 clamp(2rem, 10vw - 4rem , 6rem);
	color: #fff;
	/* min-width: 34vw; */
	flex: 1 0 clamp(2rem, (50rem - 100vw)*9999, 66%);
}

.hero-left-title {
	font-size: clamp(0.75rem, 4vw, 1.5rem);
	font-weight: 500;
}

.hero-left-headline {
	font-weight: 800;
	min-height: 0vw;
	font-size: clamp(3rem, 12vw, 4rem);
	margin: 1rem 0 1rem 0;
	max-width: calc(100vw - 2rem);
	letter-spacing: -0.03em;
}

.hero-left-abbr {
	margin: 1.5rem 0 1.5rem 0;
	max-width: calc(100vw - 2rem);
	font-size: 1.5rem;
	font-size: clamp(0.75rem, 4vw, 1.5rem);
	font-weight: 300;
	letter-spacing: -0.03em;
	line-height: 138%;
}

.hero-left-list {
	font-size: 1.5rem;
	font-size: clamp(0.75rem, 4vw, 1.5rem);
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 4rem;
	padding: 0;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.icon {
	width: 1rem;
	height: 1rem;
}

.hero-left-list .icon {
	color: var(--main-blue);
	margin-right: .75rem;
	width: 1.25rem;
	height: 1.25rem;
}

.hero-left-list li{
	display: flex;
	align-items: center;
}

.hero-right {
	/* margin-left: -20rem; */
	flex: 1 0 clamp(10rem, (50rem - 100vw)*9999, 100% - 26rem);
	overflow-x: hidden;
}

.hero-right img {
	/* transform: translate(12rem, -8rem);
	transform: translate(16rem, -10rem); */
	width: 54rem;
    position: relative;
    z-index: -1;
	-webkit-user-select: none;
	user-select: none;
	margin-top: -6rem;
    /* margin-left: -6rem; */
}

.partner-stores {
	background-color: rgba(242, 244, 250, 0.9);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	border: 1px solid #D7E5FF;
	border-radius: 1rem;
	padding: clamp(2rem, 4vw, 4rem)
}

.partner-stores-headline {
	font-size: 2.75rem;
	font-size: clamp(2.125rem, -2rem + 5vw, 2.75rem);
	font-weight: 500;
	width: clamp(60%, 72vw, 100%);
	font-family: var(--font-secondary);
}

.partner-stores-seperator {
	background-color: #B5B5B5;
	width: 100%;
	height: 2px;
	margin: 4rem 0;
	position: relative;
	display: flex;
	align-items: center;
}

.partner-stores-seperator:before {
	position: absolute;
	content: '';
	background-color: var(--main-orange);
	width: 4rem;
	height: 7px;
	border-radius: 1rem;
	left: .25rem;
}

.partner-stores-slider {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 3rem;
}

.partner-stores-slider img {
	max-width: 10rem;
	height: 4rem;
	filter: grayscale(1);
	opacity: .6;
	cursor: pointer;
	transition: all 250ms ease
}

.partner-stores-slider img:hover {
	filter: none;
	opacity: 1;
}

.gettap-customers {
	/* height: 104vh; */
	background: url('/img/customers-bg.svg') no-repeat 0rem / cover;
	background-size: cover;
	/* background-size: contain; */
	/* background-size: 100%  100%; */
	/* background-position: 0 -10rem; */
	/* padding-top: 1rem; */
	margin: 4rem auto;
	padding: 6rem 0;
	max-width: var(--max-width);
}

.gettap-customers-head {
	text-align: center;
}

.gettap-customers-head > h2 {
	margin: 1rem 0;
	font-size: 3.5rem;
	font-size: clamp(2.25rem, (3rem - 4vw)*-10, 3rem);
	font-weight: 800;
}

.gettap-customers-head > p {
	font-size: 1.5rem;
	color: var(--color-secondary)
}

.gettap-customers-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* align-items: center; */
	/* gap: 2rem; */
	width: 80%;
	margin: 0 auto;
}

.gettap-customers-content ul {
	flex: 1 1 44%;
    margin-top: 4rem;
}

.gettap-customers-content ul li{
    /* list-style-image: url(/img/star.svg); */
	list-style: none;
    color: #64607D;
    font-weight: 500;
    font-size: 1.75rem;
	font-size: clamp(1.125rem, 4vw, 1.25rem);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    white-space: pre-line;
    padding-left: 1rem;
	position: relative;
}

.gettap-customers-content ul li:before {
	content: '';
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    background: url(/img/star.svg) no-repeat;
    position: absolute;
    left: -2.25rem;
	opacity: 0.5;
	transition: opacity 250ms;
}

.gettap-customers-content ul li:hover::before {
	opacity: 1;
}

.gettap-customers-content > img {
	flex: 1 0 56%;
	width: clamp(24rem, 56%, 100vw);
	max-width: 100vw;
	margin-bottom: -12rem;
	object-fit: contain;
	max-height: 100vh;
    /* transform: translateY(8rem) scale(1.125); */
}

.gettap-customer-features {
	margin: 10rem 0;
}

.gettap-customer-features container{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid var(--main-purple);
	border-radius: 1.5rem;
	padding: 1.5rem clamp(2rem, 4vw, 3rem);
	/* width: calc(100% - clamp(1rem,16vw,18rem)); */
}

.gettap-customer-features container > * {
	flex: calc(100% / 4 - 2rem);
}

.gettap-customer-features h2 {
	flex: calc(100% / 4 + 1rem);
	font-size: 2.125rem;
	font-weight: 800;
	margin-right: 4rem;
}

.gettap-customer-features > container > item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0;
}

.gettap-customer-features > container > item > svg {
	background: #E9ECF2;
	padding: 1rem;
	width: 4.5rem;
	height: 4.5em;
	border-radius: .5rem;
}

.gettap-customer-features > container > item > span {
	font-size: 1.5rem;
	font-weight: 600;
	color: #64607D;
	flex-basis: 68%;
}

.partner-features {
	background: url('/img/partner-features-bg.svg');
	background-size: cover;
	margin: 4rem auto;
	padding: clamp(4rem, 20vw - 10rem, 12rem) 0;
	max-width: var(--max-width);
}

.partner-features-head {
	text-align: center;
}

.partner-features-head > h2 {
	margin: 1rem 0;
	font-size: 3.25rem;
	font-size: clamp(2.25rem, 3rem - 4vw, 3rem);
	font-weight: 800;
}

.partner-features-head > span {
	font-size: 1.5rem;
	color: var(--color-secondary)
}

.partner-features-grid {
	width: calc(100% - clamp(4rem,10vw,8rem));
	margin: 4rem auto 2rem auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(clamp(33% - 4.5rem, 20rem, 100%), 1fr));
	gap: 4.5rem;
}

.partner-features-grid-item {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	background-color: #fff;
	border-radius: 1.25rem;
	padding: 1.75rem;
}

.partner-features-grid-item > svg {
	width: 3.25rem;
	height: 3.25rem;
	color: var(--main-orange)
}

.partner-features-grid-item > span {
	font-size: 1.5rem;
	font-weight: 600;
	width: clamp(18rem, 90%, 100%);
}


.mall-features {
	margin: 6rem auto;
	max-width: var(--max-width);
}

.mall-features-head {
	text-align: center;
}

.mall-features-head > h2 {
	margin: 0;
	font-size: 3.25rem;
	font-size: clamp(2.25rem, (3rem - 4vw)*-10, 2.5rem);
	font-weight: 800;
}

.mall-features-head > h4 {
	color: var(--main-orange);
	font-weight: 800;
	margin: .5rem;
	font-family: var(--font-secondary);
}

.mall-features-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 80%;
	margin: 1.5rem auto;
	gap: 1rem;
}

.mall-features-content ul {
	flex: 1 1 44%;
	flex: 1;
	/* margin-top: ; */
}

.mall-features-content ul li{
    list-style-image: url(/img/star-2.svg);
	list-style: none;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 1.5rem;
	font-size: clamp(1.125rem, 4vw, 1.25rem);
    margin-top: 1.5rem;
    line-height: 1.4;
    white-space: pre-line;
    padding-left: 1rem;
	position: relative;
}

.mall-features-content ul li:before {
	content: '';
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    background: url(/img/star-2.svg) no-repeat;
    position: absolute;
    left: -2.25rem;
	opacity: 0.5;
	transition: opacity 250ms;
}

.mall-features-content ul li:hover::before {
	opacity: 1;
}

.mall-features-content > img {
	flex: 1 0 56%;
	flex: 1;
	width: 50%;
	max-width: 100vw;
	/* padding: 2rem; */
    /* transform: translateY(8rem) scale(1.125); */
}

.app-hero {
	background: url('/img/app-hero-bg.svg'), linear-gradient(0, transparent, var(--body-bg));
	background-size: cover;
	padding: 4rem 0;
	margin: 10rem auto;
	scroll-margin: 12rem;
	max-width: var(--max-width);
}

.app-hero-content {
	width: calc(100% - clamp(1rem,14vw,20rem));
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	row-gap: 2rem;
}

.app-hero-content-left {
	flex: 1 1 30%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.app-hero-content-left > h2 {
	font-size: 2.75rem;
	color: #fff;
	width: clamp(10rem, 84%, 100%);
}

.app-hero-content > img {
	object-fit: contain;
	flex: 1 1 26%;
	min-width: 20rem;
    max-width: 100vw;
    width: 50%;
	margin: clamp(-8rem, (50rem - 100vw)*9999, 0rem) clamp(-9rem, -6vw, 0rem) clamp(-8rem, -8vw, 0rem) clamp(-6rem, -2vw, 0rem);
	max-height: 100vh;
}

.app-hero-stores {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.app-hero-stores > a {
	display: inline-flex;
}

.app-hero-stores > a > svg {
	width: 20rem;
	width: clamp(11rem,20vw,20rem);
	/* aspect-ratio: 289 / 83; */
	height: calc(clamp(11rem,20vw,20rem) * 0.28719);
	fill: gray;
	color: var(--main-purple)
}

.app-hero-stores > a > svg::before {
	float: left;
	padding-top: 348.19%;
	content: "";
}

.app-hero-stores > a > svg::after {
	display: block;
	content: "";
	clear: both;
}

.footer {
	background-color: #F5F8FF;
	margin: 0 auto;
	max-width: var(--max-width);
}

.footer-content, .footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* width: 88%; */
	margin: 0 auto;
	padding: 0 1rem;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-bottom {
	gap: 1rem;
	text-align: center;
	margin-top: 3rem;
	padding: 1.5rem 1rem;
	font-weight: 500;
	border-top: 1px solid #C9D9FF;
	font-size: calc(1rem - 2px);
}

.footer-bottom a {
	color: inherit
}

.footer-bottom > div {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-basis: clamp(10rem, (50rem - 100vw)*9999, 100%);
    white-space: nowrap;
}

.footer-bottom > span {
	flex-basis: clamp(10rem, (50rem - 100vw)*9999, 100%);
    white-space: nowrap;
}

.footer-content > * {
	flex-basis: clamp(10rem, (50rem - 100vw)*9999, 100%);
	display: flex;
	flex-wrap: wrap;
}

.footer-content-logo {
	flex-basis: clamp(6rem, (50rem - 100vw)*9999, 100%);
	justify-content: center;
}

.footer-content-logo > img {
	width: 8rem;
	height: 8rem;
}

.footer-social-title {
	flex-basis: clamp(7rem, (50rem - 100vw)*9999, 100%);
	font-size: 1.375rem;
	font-weight: 500;
	text-align: center;
}

.footer-social ul {
	display: flex;
	flex: 1;
	justify-content: center;
	gap: 1.25rem;
	list-style: none;
	padding: 0;
}

.footer-social ul img {
	width: 2.125rem;
	height: 2.125rem;
}

.app-features {
	margin: 10rem auto;
	width: calc(100% - clamp(1rem,10vw,12rem));
}

.app-features-head {
	width: clamp(60%, 118rem - 100vw, 90%);
}

.app-features-head > h2 {
	margin: 0;
	min-height: 0vw;
	font-size: clamp(1.75rem, -2rem + 5vw, 3.5rem);
	font-weight: 800;
}

.app-features-head > h4 {
	color: var(--main-orange);
	font-weight: 800;
	margin: .5rem 0;
	font-family: var(--font-secondary);
}

.app-features-head > p {
	color: var(--color-secondary);
	width: clamp(60%, 100rem - 100vw, 80%);
    line-height: 1.6;
    font-size: 1.125rem;
	font-size: clamp(0.75rem, (3rem - 4vw)*-10, 1.125rem);
	letter-spacing: -0.02em;
}

.app-features > svg {
	margin-top: clamp(-16rem, (50rem - 100vw)*9999, -2rem)
}

.app-features-img-text {
	min-height: 0vw;
    font-size: clamp(2rem, 4rem - 4vw, 2.25rem);
	font-size: clamp(1.25rem, (50rem - 100vw)*9999, 2.75rem);
    font-weight: bold;
	height: 6ch;
    /* width: clamp(23%, 16vw, 25%); */
	width: 20%;
	/* --width: 200; */
}

.app-features-img-mobile {
	display: none;
}

.app-features-img-mobile .app-features-img-text {
	min-height: 0vw;
    font-size: clamp(2rem, 4rem - 4vw, 2.25rem);
	font-size: clamp(1.25rem, (50rem - 100vw)*9999, 2.75rem);
	font-size: 0.75rem;
    font-weight: bold;
	height: 6ch;
    /* width: clamp(23%, 16vw, 25%); */
	width: 24%;
	/* --width: 200; */
}

@supports (not((gap: 1rem) with (display: flex)) ) {
	.header-right-download, .hero-left-list li:not(:last-child) {
	  margin-right: 2rem;
	}

	.partner-stores-slider > a:not(:last-child) {
		margin-right: 3rem;
	}

	.gettap-customer-features > container > item > svg, .footer-bottom > div > *:not(:last-child)  {
		margin-right: 1rem;
	}

	.app-hero-stores > a:not(:last-child) {
		margin-right: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.footer-social ul > li:not(:last-child) {
		margin-right: 1.25rem;
	}

	.header-container, .footer-bottom {
		margin-bottom: -1rem;
	}

	.header-container > *, .footer-bottom > * {
		margin-bottom: 1rem;
	}

	.footer-content, .hero-left-list{
		margin-bottom: -2rem;
	}

	.footer-content > *, .hero-left-list > * {
		margin-bottom: 2rem;
	}

	.partner-stores-slider {
		margin-bottom: -3rem;
	}

	.partner-stores-slider > * {
		margin-bottom: 3rem;
	}
}


@media screen and (max-width: 768px) {

	@media screen and (min-width: 426px) {
		.hero-right img {
			margin-left: 6rem;
		}
	}


	.gettap-customer-features > container > item {
		flex: 1 0 100%
	}

	.partner-features-grid-item {
		flex-direction: row;
		padding: 3rem 2rem;
	}

	.partner-features-grid-item > svg {
		flex-shrink: 0;
		width: 2.675rem;
		height: 2.675rem;
		margin-right: 1rem;
	}

	.partner-features-head, .gettap-customers-head {
		width: 68%;
		margin: 0 auto;
	}

	.gettap-customers-content ul li::marker {
		font-size: 10px;
	}

	.partner-stores {
		display: flex;
		flex-direction: column;
	}

	.partner-stores-seperator, .app-features-img {
		display: none;
	}

	.partner-stores-slider {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 2rem;
		padding-left: 3rem;
		position: relative;
	}

	.partner-stores-slider:before {
		content: '';
		position: absolute;
		top: 0;
		background-color: #B5B5B5;
		height: 100%;
		width: 2px;
		display: flex;
		align-items: center;
		left: 0;
	}

	.partner-stores-slider:after {
		position: absolute;
		content: '';
		background-color: var(--main-orange);
		height: 4rem;
		width: 7px;
		border-radius: 1rem;
		left: -2.875px;
		top: .5rem;
	}

	.gettap-customers-content, .mall-features-content{
		width: 90%;
	}

	.gettap-customers-content ul li:before, .mall-features-content ul li:before{
		width: 1.5rem;
		height: 1.5rem;
		background-size: 1.5rem;
	}

	.app-hero-content {
		/* flex-direction: column; */
	}

	.app-features-img-mobile {
		display: initial;
	}

	.app-features-head > h2 {
		letter-spacing: -0.03em;
		line-height: 129%;
	}

	.app-features-head > p {
		letter-spacing: -0.02em;
	}

	.hero-right {
		margin-left: -8rem;
	}

	.hero-right img {
		margin-top: -2rem;
		width: 50rem;
	}

	/* .app-hero-content > img {
		flex: 100%;
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	} */

	@supports (not((gap: 1rem) with (display: flex)) ) {

	}
}