/* =====================
	 Hero Red Section
===================== */
.hero-red {
	padding: 96px 0;
	width: 100%;
	height: 50vh; /* header + footer */
	display: flex;
    align-items: center;      /* vertical centering */
	justify-content: center;  /* horizontal centering */
	padding: 0;               /* remove fake spacing */
}

.hero-content {
    width: 80%;
	max-width: 80vw;
	display: flex;
	justify-content: center;
}

.hero-content p {
	font-size: 23px;
	line-height: 1.6;
    margin: 0;
	text-align: center;
}

@media (max-width: 480px) {	
	.hero-content {
		width: 90vw;
	}
	
	.hero-content p {
		font-size: 16px;
	}
}

/* =====================
	 Who We Are
===================== */
.who-we-are {
	background: transparent;
	padding-top: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 80%;
	margin: 0 auto;
	height: auto;
}

.who-we-are h2 {
	font-family: 'Rubik', sans-serif;
	font-size: 48px;
	margin-bottom: 38px;
}

.who-we-are p {
	font-size: 19px;
	line-height: 1.6;
	margin-bottom: 29px;
}
