
:root {
	--bg-color: rgb(84, 156, 16);
}

.main-c {
	display: flex;
	flex-direction: column;
}

.relative {
	position: relative;
}

.bg-hero {
	--bg-hero-y-offset: 120px;
}
.bg-hero {
	top: -100vh;
	bottom: var(--bg-hero-y-offset);
	transform: skewY(-6deg);
	background-color: var(--bg-color);
	position: absolute;
	left: 0;
	right: 0;
}

.header-c {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;

	padding-top: 4rem;
	padding-bottom: 4rem;
	padding-left: 6rem;
	padding-right: 6rem;

	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.title-text-c {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.title-text {
	font-size: 2.5rem;
	font-weight: 900;
	/* padding-bottom: 10px; */
	color: white;
	text-align: inherit;
}

.title-sub-text {
	font-size: 3.5rem;
	font-weight: bolder;
	padding-top: 5rem;
	color: white;
	line-height: 1;
	text-align: center;
}

.title-sub-sub-text {
	font-size: 1.5rem;
	padding-top: 1rem;
	color: white;
	text-align: center;
	/* background-color: red; */
}

.store-link {
	margin-top: 3rem;
	margin-bottom: 3rem;

	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 26px;
	padding-right: 26px;

	background-color: white;
	border-radius: 36px;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--bg-color);
	text-decoration: none;
	
	display: flex;
	align-items: center;
}

.chevron-right {
	width: 20px;
	height: 20px;
	margin-left: 10px;
}

.store-link-img {
	width: 120px;
	height: 40px;
}

.screenshot-c {
	margin: 2rem;
}

.screenshot {
	--height: 250px;
	--width: 115px;
}

.screenshot {
	height: var(--height);
	width: var(--width);
}

/* why */

.why-c {
	max-width: 1280px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.why-title {
	font-size: 3rem;
	font-weight: bold;
	color: rgba(14,35,59,1.0);
}

.why-sub-title {
	font-size: 1.2rem;
	color: rgba(14,35,59,0.8);
	padding: 1rem;
}

.why-grid-c {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1.5rem;

	margin-top: 2rem;
	margin-bottom: 2rem;
	/* background: red; */
}
.grid-item {
	font-size: 1rem;
	display: flex;
	flex-direction: row;
	/* background:rgb(84, 156, 16);	 */
}

.grid-item-icon {
	flex-shrink: 0;
	align-self: flex-start;
}

.icon {
	width:40px;
	height:40px;
	padding-right: 8px;
}

.grid-item-text-c {
	padding-left: 1rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
}
.grid-item-title {
	color: rgba(14,35,59,1.0);
	font-size: 1.15rem;
	font-weight: bold;
	padding-bottom: 4px;
}
.grid-item-detail {
	color: rgba(14,35,59,0.9);
	padding-bottom: 1rem;
}

/* BIG */
@media (min-width: 1000px) {
	.header-c {
		flex-direction: row;
		padding-top: 4rem;
		padding-bottom: 4rem;
		padding-left: 5rem;
		padding-right: 5rem;

		text-align: left;
		align-items: flex-start;
	}
	.title-sub-text {
		font-size: 3.5rem;
		text-align: left;
		padding-top: 5rem;
	}
	.title-sub-sub-text {
		font-size: 1.5rem;
		text-align: left;
	}
	.bg-hero {
		--bg-hero-y-offset: 128px;
	}
	.screenshot-c {
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.screenshot {
		--height: 600px;
		--width: 285px;
	}
	.store-link {
		align-self: flex-start;
	}
	.chevron-right {
		width: 20px;
		height: 20px;
		margin-left: 10px;
	}
	.why-title {
		font-size: 3rem;
	}
	.why-grid-c {
		grid-template-columns: 1fr 1fr;
	}
}


/* MEDIUM */
@media (min-width: 640px) and (max-width: 1000px) {
	.header-c {
		flex-direction: row;
		padding-top: 4rem;
		padding-bottom: 4rem;
		padding-left: 5rem;
		padding-right: 5rem;

		text-align: left;
		align-items: flex-start;
	}
	.title-sub-text {
		font-size: 2.5rem;
		text-align: left;
		padding-top: 5rem;
	}
	.title-sub-sub-text {
		font-size: 1.2rem;
		text-align: left;
	}
	.bg-hero {
		--bg-hero-y-offset: 128px;
	}
	.screenshot-c {
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.screenshot {
		--height: 600px;
		--width: 285px;
	}
	.store-link {
		align-self: flex-start;
		font-size: 0.8rem;
	}
	.chevron-right {
		width: 12px;
		height: 12px;
		margin-left: 6px;
	}
	.why-title {
		font-size: 3rem;
	}
	.why-grid-c {
		
		grid-template-columns: 1fr;
	}
}

/* SMALL */
@media (max-width: 640px) {
	.header-c {
		flex-direction: column;
		padding-top: 2rem;
		padding-bottom: 1rem;
		padding-left: 2rem;
		padding-right: 2rem;
		
		text-align: center;

		align-items: center;
	}
	.title-text-c {
		align-items: center;
	}
	.title-sub-text {
		font-size: 1.5rem;
		padding-top: 2rem;
	}
	.title-sub-sub-text {
		font-size: 1rem;
	}
	.bg-hero {
		--bg-hero-y-offset: 120px;
	}
	.screenshot-c {
		margin-left: auto;
		margin-right: auto;
	}
	.screenshot {
		--height: 451px;
		--width: 215px;
	}
	.store-link {
		align-self: center;
	}
	.chevron-right {
		width: 20px;
		height: 20px;
		margin-left: 10px;
	}
	.why-title {
		font-size: 2rem;
	}
	.why-grid-c {
		grid-template-columns: 1fr;
	}
}