@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
html {
	font-size: 16px;
}
:root {
	--primary-gray: #F8F8F8;
	--primary-light: #fff;
	--secondary-color: #808084;
	--primary-orange: #D17036;
	--primary-orange-light: #fc9274;
	--link-color: #576674;
	--font-primary: 'Arimo', sans-serif;
	--font-headers: 'Lora', serif;
}
* {
	font-family: 'Arimo', sans-serif;
}
body {
	margin: 0;
	padding: 0;
	background: var(--primary-light);
	display: flex;
	/* Use flex layout to stack header, main, and footer */
	flex-direction: column;
	min-width: 320px;
}
header {
	min-height: 5vh;
	background-color: var(--primary-gray);
	flex: 0 0 auto;
	/* Let header and footer take their defined height */
}
footer{
    background-color: var(--primary-light);
    flex: 0 0 auto;
}
main {
	flex: 1 0 auto;
	/* Let the main section grow to take remaining space */
}
h1, h2 {
	line-height: 140%;
}
p {
	line-height: 161.8%;
	font-size: 1.1875em;
}
a {
	color: var(--link-color);
}
.container {
	display: block;
	align-items: center;
	justify-content: start;
	text-align: left;
	flex: 1;
	/* Allow the container to grow within the main section */
	margin: auto;
	padding: 0 24px;
}
@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}
@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}
@media (min-width: 1280px) {
	.container {
		max-width: 1280px;
	}
}
@media (min-width: 1536px) {
	.container {
		max-width: 1536px;
	}
}
.nav {
	justify-content: space-between;
	align-items: center;
    display: flex;
}
.copy-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%;
	padding: 64px 0px 380px;
	position: relative;
}
@media (min-width: 640px) {
	.copy-container {
		padding: 64px 0px 420px;
	}
}
@media (min-width: 768px) {
	.copy-container {
		padding: 64px 0px 420px;
	}
}
@media (min-width: 1024px) {
	.copy-container {
		padding: 64px 0px 96px;
	}
}
.info-container {
	position: relative;
	background-color: var(--primary-orange);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 84px 0px 96px;
}
.information-cards {
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	flex-direction: column;
}
@media (min-width: 1024px) {
	.information-cards {
		flex-direction: row;
	}
}
.titles {
	display: block;
	width: 100%;
	text-align: left;
}
@media (min-width: 768px) {
	.titles {
		width: 80%;
	}
}
@media (min-width: 1024px) {
	.titles {
		width: 49%;
	}
}
.screen img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 720px;
	max-width: 100%;
}
@media (min-width: 768px) {
	.screen img {
		position: absolute;
	}
}
.logo {
	height: 65px;
}
.title {
	color: var(--primary-orange);
	font-family: var(--font-headers);
	font-size: 2.375rem;
	font-weight: 700;
	text-align: left;
}
.subtitle {
	font-weight: 100;
	text-align: left;
	margin-left: 0;
	width: 83.33%;
	margin-bottom: 2rem;
}
@media (min-width: 1024px) {
	.subtitle {
		width: 60%;
	}
}
@media (min-width: 1280px) {
	.subtitle {
		width: 83.3%;
	}
}
.info-card {
	background: linear-gradient(139deg, #BC6531 0%, #E0783A 100%);
	box-shadow: -20px -20px 60px #F0813E, 20px 20px 60px #B25F2E;
	border-radius: 8px;
	width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
@media (min-width: 1024px) {
	.info-card {
		min-height: 560px;
	}
}
@media (min-width: 1280px) {
	.info-card {
		min-height: 420px;
	}
}
@media (min-width: 1536px) {
	.info-card {
		min-height: 360px;
	}
}
.info-card h2 {
	font-family: var(--font-headers);
	font-weight: 400;
	margin: 2rem;
	color: var(--primary-light);
	font-size: 1.75rem;
}
.info-card p {
	text-align: left;
	font-family: var(--font-primary);
	font-size: 1.1875em;
	font-weight: 400;
	margin: 0 2rem 2rem 2rem;
	color: var(--primary-light);
}
.btn {
	margin-bottom: 1rem;
	display: inline-block;
	border-radius: 0.375rem;
	background-color: var(--primary-orange);
	padding-left: 3rem;
	padding-right: 3rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-size: 1.1875rem;
	color: #ffffff;
	text-decoration: none;
}
.btn-nav {
	display: none;
	border-radius: 0.375rem;
	background-color: var(--primary-orange);
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 1.1875rem;
	color: #ffffff;
	text-decoration: none;
}
@media (min-width: 500px) {
	.btn-nav {
		display: inline-block;
	}
}
.btn-primary {
	background-color: var(--primary-orange);
}
.btn-primary:hover {
	background-color: var(--primary-orange);
}
.contact {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    color: var(--secondary-color);
    border-top: 1px solid var(--secondary-color);
    margin-top: 30px;
}
.footer-text {
    text-align: left;
    
}
.footer-accessibility a{
    text-align: center;
    color:var(--primary-orange);
}

