/*
Theme Name: Givemefeed
Author: Givemefeed
Version: 1.0
*/

:root {
	--color-body: #DDDDDD;
	--color-primary: #F6F6F6;	
}

html, body {
	margin: 0px;
	padding: 0px;
	color: var(--color-body);
	font-family: 'Inter';
	font-size: 20px;
	height: 100%;
	color: var(--color-body);
	background: #000000;
	scroll-behavior: smooth;
}

.common__container {
	width: 95%;
	max-width: 1242px;
	margin: auto;
}
.common__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	height: 44px;
	padding: 0px 22px;
	color: #fff;
	background: #09B81B;
	border-radius: 100px;
	text-decoration: none;
}

.index__hero {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 485px;
	padding: 80px 20px 26px 20px;
	border-radius: 20px;
	background: url(assets/images/index-hero.jpg) center center no-repeat;
	background-size: cover;
	margin: 30px auto 90px auto;
}
.index__hero-nav {
	position: absolute;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 16px;
	left: 0px;
	padding: 0px 20px;
	width: 100%;
}
.index__hero-logo {
	width: 110px;
	height: auto;
}
.index__hero-content {
	max-width: 1072px;
	text-align: center;
}
.index__hero-title {
	display: flex;
	justify-content: center;
	font-family: 'NauryzRedKeds';
	font-size: 72px;
	font-weight: bold;
	margin: 0px 0px 8px 0px;
	color: var(--color-primary);
}
.index__hero-lead {
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 28px;
}
.index__lead {
	max-width: 1150px;
	text-align: center;
	margin-bottom: 64px;
}
.index__lead-title {
	font-size: 40px;
	font-weight: 500;
	line-height: 120%;
	color: var(--color-primary);
	letter-spacing: -2%;
	text-align: center;
	margin: 0px 0px 20px 0px;
}
.index__lead-excerpt {
	font-size: 24px;
	color: #909090;
}
.index__props-items {
	display: flex;
	flex-flow: column;
	max-width: 700px;
	counter-reset: index__props;
	margin: auto;
	gap: 38px;
	margin-bottom: 94px;
}
.index__prop {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	counter-increment: index__props;
	background: #191919;
	border-radius: 20px;
	padding: 26px;
	text-align: center;
	min-height: 306px;
}
.index__prop:before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: counter(index__props);
	width: 48px;
	height: 48px;
	color: #191919;
	background: #fff;
	border-radius: 50%;
	margin-bottom: 30px;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: -1%;
}
.index__prop:after {
	position: absolute;
	content: '';
	top: calc(100% + 7px);
	left: 50%;
	width: 16px;
	height: 25px;
	background: url(assets/images/icon-prop.svg) center center no-repeat;
	background-size: contain;
	transform: translateX(-50%);
}
.index__prop:last-child:after {display: none;}
.index__prop-title {
	font-size: 24px;
	letter-spacing: -1%;
	color: var(--color-primary);
	margin-bottom: 14px;
}
.index__prop-excerpt {line-height: 150%;}

.index__media {
	box-sizing: border-box;
	padding: 80px 70px;
	border-radius: 20px;
	background: #191919;
	text-align: center;
}
.index__media-header {margin-bottom: 40px;}
.index__media-title {
	font-size: 40px;
	font-weight: 500;
	letter-spacing: -2%;
	line-height: 120%;
	color: var(--color-primary);
	margin: 0px;
}
.index__media-image {
	max-width: 1256px;
	margin: 0px auto 0px auto;
}
.index__media-image img {
	max-width: 100%;
	height: auto;
}
.index__media-qr {
	max-width: 214px;
	margin: 40px auto 40px auto;
}
.index__media-qr img {
	width: 100%;
	height: auto;
}

.index__footer {
	margin-top: 48px;
	padding: 30px 0px 68px 0px;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #909090;
	border-top: 1px solid #242428;
}