:root {
	--clr-primary: #2660a4;
	--clr-secondary: #f19953;
	--clr-accent: #4c2b36;
	--clr-light: #edf7f6;
	--clr-dark: #141115;
	--wght-bold: 700;
	--wght-semibold: 600;
	--wght-light: 400;
	font-size: 20px;
	--sat: env(safe-area-inset-top);
	--sar: env(safe-area-inset-right);
	--sab: env(safe-area-inset-bottom);
	--sal: env(safe-area-inset-left);
}

* {
	box-sizing: border-box;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

h1 {
	font-weight: var(--wght-bold);
	font-size: 2.4rem;
}

h2 {
	font-weight: var(--wght-semibold);
	font-size: 1.8rem;
}

p {
	font-weight: var(--wght-light);
}

body {
	background-color: var(--clr-primary);
	font-family: "Jost";
	overflow-x: hidden;
}

img {
	width: 100%;
}

section {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}

a:link {
	text-decoration: inherit;
	color: inherit;
	cursor: pointer;
}

a:visited {
	text-decoration: inherit;
	color: inherit;
	cursor: pointer;
}

a:hover {
	cursor: pointer !important;
}

b {
	font-weight: var(--wght-bold);
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: rgb(107, 107, 107);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: rgb(189, 189, 189);
	border-radius: 10px;
}

.bg-primary {
	background-color: var(--clr-primary);
}

.bg-secondary {
	background-color: var(--clr-secondary);
}

.bg-accent {
	background-color: var(--clr-accent);
}

.bg-light {
	background-color: var(--clr-light);
}

.bg-dark {
	background-color: var(--clr-dark);
}

.content {
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.limit-content-width {
	padding: 0 150px;
}

.max-width {
	max-width: 1200px;
}

.hi-rise-emblem {
	max-width: 550px;
}

.button {
	background-color: var(--clr-secondary);
	border-radius: 15px;
	padding: 15px 25px;
	border: 1px solid var(--clr-accent);
	font-size: 1.2rem;
	color: var(--clr-accent);
}

.header-container {
	background-color: var(--clr-secondary);
	min-height: 80px;
	color: var(--clr-accent);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.header-container > h1 {
	font-size: 2rem !important;
	font-weight: var(--wght-light);
}

.nav-container > a {
	margin-right: 50px;
}

.header-bar {
	position: fixed;
	border-bottom: 2px solid var(--clr-accent);
	z-index: 100;
}

.intro-text {
	color: var(--clr-light);
}

.intro > .left {
	width: 60%;
}

.intro > .right {
	width: 40%;
}

.intro {
	justify-content: flex-start;
}

#investors {
	color: var(--clr-accent);
	padding-top: 150px;
	padding-bottom: 150px;
	min-height: calc(100vh - 82px);
}

.investors {
	text-align: center;
	margin-bottom: 50px;
}

.investor-desc,
.developers-desc {
	row-gap: 20px;
}

.investor-desc .left,
.investor-desc .right,
.developers-desc .left,
.developers-desc .right {
	padding: 0 15px;
}

.content-header {
	margin-bottom: 100px;
}

.investor-images .left,
.investor-images .right {
	width: 30%;
	overflow: hidden;
}

.investor-images .left > img,
.investor-images .right > img {
	position: relative;
	top: 8px;
}

.investor-images {
	width: 100%;
	justify-content: space-around;
	align-items: flex-end;
	position: absolute;
	bottom: 0;
	margin: 0 auto;
}

.info-anim {
	opacity: 0;
	position: absolute;
	overflow-y: hidden;
	top: 25%;
}

.info-anim > .left,
.info-anim > .right {
	margin-bottom: 50px;
	padding: 0 20px;
}

.fade-in {
	top: 6%;
	z-index: 5;
}

.info-anim {
	top: 15%;
}

#developers {
	color: var(--clr-light);
	padding-top: 150px;
	min-height: calc(100vh - 82px);
	padding-bottom: 150px;
}

#developers .left,
#developers .right {
	height: 350px;
	max-width: 600px;
}

#developers h2 {
	font-size: 1.5rem;
}

.developers {
	text-align: center;
	display: unset !important;
	position: relative;
}

.desc-container {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(min-content, max-content);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	text-align: center;
	height: 100%;
}

.desc-header {
	grid-area: 1 / 1 / 3 / 2;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.desc {
	grid-area: 3 / 1 / 6 / 2;
	padding: 0 50px;
}
.desc-img {
	grid-area: 6 / 1 / 8 / 2;
	z-index: 5;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.desc-border {
	grid-area: 2 / 1 / 6 / 2;
	border: 2px solid var(--clr-light);
	border-radius: 0 0 10px 10px;
}
#developers p {
	margin: 20px 0;
	font-size: 0.9rem;
}
.desc-header h2 {
	border: 1px solid var(--clr-light);
	border-radius: 10px;
	padding: 5px 15px;
	background-color: var(--clr-dark);
	z-index: 5;
	font-size: 24px;
}

#developers img {
	width: 80%;
}

#commission .desc-border {
	grid-area: 2 / 1 / 8 / 2;
}

#commission img {
	height: 100%;
	width: unset;
	margin-bottom: 25px;
}

#improved-communications,
#accreditation-verification {
	min-height: 400px !important;
	max-width: 600px !important;
}

#developers .info-anim {
	padding-top: 50px;
}

#subscribe .content {
	width: 100%;
	border-radius: 10px;
	background-color: white;
	padding: 0;
	color: var(--clr-dark);
	height: 440px;
	justify-content: center;
	box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.first {
	width: 65%;
	padding: 35px 50px;
}

.second {
	width: 35%;
	display: flex;
	align-items: center;
}

.subtitle {
	font-size: 1.4rem;
}

.email-container {
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.email-container .first {
	padding: 0 15px 0 0;
	position: relative;
}

.input-container input {
	width: 100% !important;
	border: none !important;
	background-color: white !important;
	font-size: 1rem !important;
	color: var(--clr-dark) !important;
}

.input-container {
	padding: 15px 15px 10px;
	border: 2px solid var(--clr-accent);
	border-radius: 0px 0px 10px 10px;
	height: 100%;
}

.mc_embed_signup_scroll > p {
	margin-bottom: 25px;
}

.mc-field-group > .mce_inline_error {
	display: none !important;
}

#mce-responses {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	grid-template-columns: 3fr !important;
	margin-bottom: 10px !important;
}

#mce-responses > .response {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.email-header-input {
	position: absolute;
	top: -14px;
	left: 10px;
	background-color: white;
	padding: 0 10px;
}

.subscribe-button {
	padding: 15px !important;
	color: var(--clr-accent) !important;
	width: 50% !important;
	height: 90% !important;
	border: 1px solid var(--clr-accent) !important;
	background-color: var(--clr-secondary) !important;
	border-radius: 10px !important;
	font-size: 1.2rem !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	margin: 0 !important;
}

.contact-info {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
}

.contact-info .row {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70%;
	font-style: italic;
}

.row .first {
	width: 30%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.row .first svg {
	margin-right: 20px;
}

.row .second {
	width: 70%;
}

.content > .second {
	flex-flow: column;
	background-color: var(--clr-secondary);
	border-radius: 0px 10px 10px 0px;
	border-left: 1px solid var(--clr-accent);
	height: 100%;
	padding: 20px 0 30px;
	color: var(--clr-accent);
}

.contact-header {
	text-align: center;
	width: 60%;
}

.contact-header img {
	min-width: 200px;
	max-width: 250px;
}

.directory {
	display: none;
	height: 100vh;
	position: fixed;
	width: 100%;
	z-index: 150;
	top: 0;
	left: 0;
	transition: 1.5s;
	backdrop-filter: blur(4px);
}

.directory-container {
	background-color: var(--clr-secondary);
	position: relative;
	width: 100%;
	text-align: center;
	margin-top: 30px;
	display: flex;
	flex-flow: column;
	align-items: center;
	row-gap: 1em;
	color: var(--clr-accent);
	border-bottom: 3px solid var(--clr-light);
	border-radius: 0px 0px 15px 15px;
	justify-content: flex-start;
	padding-bottom: 50px;
	transform: translateY(-30px);
}

.directory-container a {
	margin: 10px 0;
	font-size: 1.5rem;
}

.directory-container hr {
	width: 50%;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--clr-accent);
	padding: 0;
}

.directory-container .ham-button {
	height: 80px;
}

#subscribe {
	padding-top: 100px !important;
	padding-bottom: 50px;
}

.contact-info-title {
	text-align: center;
	font-style: normal;
}

#mc-embedded-subscribe:hover {
	cursor: pointer;
}

#intro {
	padding-bottom: 100px !important;
	padding-top: 83px;
}

img.header-logo {
	height: 36px;
}

.scroll-imply-container {
	position: absolute;
	bottom: 0;
	padding-bottom: 15px;
	text-align: center;
	color: var(--clr-dark);
}

.scroll-imply-container .arrow {
	border: solid var(--clr-secondary);
	border-width: 0 5px 5px 0;
	display: inline-block;
	padding: 9px;
}

.scroll-imply-container .down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

#developers-arrow .arrow {
	border-color: var(--clr-dark);
}

#subscribe-arrow {
	color: var(--clr-light);
}

#subscribe-arrow p {
	margin: unset;
}

#subscribe-arrow .arrow {
	border-color: var(--clr-light);
}
