html,
body {
	font-family: 'DM+Sans', sans-serif;
	padding: 0;
	margin: 0;
	background-color: rgb(240,240,240);
	color: #111;
	scroll-behavior: smooth;
}

nav {
	width: calc(100% - 40px);
	/* height: 48px; */
	background-color: rgb(248,248,248);
	color: #111;
	position: sticky;
	top: 0;
	left: 0;
	padding: 10px 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(150, 150, 150, 0.2);
	z-index: 100;
}

nav .title {
	font-size: 1.4rem;
	display: flex;
	flex-direction: row;
	gap: 8px;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

}

nav .links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

nav a {
	color: #111;
	text-decoration: none;

}

nav a:not(.title) {
	padding: 10px 12px;
	border-radius: 8px;
}
nav a:hover {
	/* background-color: rgba(150, 150, 150, 0.2); */
}

.basicButton {
	text-decoration: none;
	padding: 10px 12px;
	border-radius: 8px;
	border: none;
	background-color: #008cba;
	color: #fff;
	cursor: pointer;
	max-width: fit-content;
}
.basicButton:hover {
	background-color: #007da7;
	color: #fff;
}

nav a.calltoaction {
	margin-left: 12px;
	background-color: #008cba;
	color: #fff;
}
nav a.calltoaction:hover {
	background-color: #007da7;
	color: #fff;
}

.mainContent {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	align-items: center;
	width: 100%;
	/* max-width: 600px; */
	margin: 20px auto;
}

.video_wrapper {
	border-radius: 12px;
	overflow: hidden;
	/* box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px; */
}



.examples {
	max-width: 1080px;
	width: 100%;
	display: flex;
    flex-wrap: wrap;
	flex-direction: row;
    gap: 40px;
	justify-content: center;
	align-items: stretch;
}
.example_col {
	flex: 1 1 400px; 
    max-width: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
    gap: 40px;
}
.col_1 {
	flex: 1.5;
}
.col_2 {
	flex: 2;
}
@media (max-width: 840px) { /* Adjust this breakpoint to the sum of two column minimum widths plus any gaps or padding */
    .example_col {
        flex: 1 1 100%;
		max-width: 480px;
		/* Makes each column take full width of the container on small screens */
    }
	#intro {
		max-width: 480px;

	}
}



article {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 20px 20px 20px;

}

#intro {
	width: 100%;
	display: flex;
	gap: 40px;
}
#h1_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
	
}
h1 {
	font-size: 2.8rem;
	font-weight: 600;
	text-align: center;
	margin: 0;
	max-width: 20ch;
	color: #008cba;
    text-shadow: rgba(230, 249, 255, 0.6) 1px 1px 24px;

}

h2 {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	margin: 0;
	color: #444;

}

#logo {
	height: 32px;
	width: 32px;
	background-color: #fff;
	padding: 4px;
	border-radius: 6px;
	box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 4px 0px;
}

#grant {
	height: 64px;
	width: 64px;
	border-radius: 500px;
}

#contact {
	width: 0px;
	height: 0px;
	background-color: transparent;
	transform: translateY(-80px);
}

.contact_section {
	background-color: rgba(250,250,250, 1);
	width: fit-content;
	border-radius: 12px;
	padding: 20px 40px;
	margin: 80px 0px;
	box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 40px;

	font-size: 1.1rem;
}


.contact_text {
	/* flex: 1; */
	display: flex;
	flex-direction: column;
	gap: 4px;
}
@media (max-width: 800px) {
	.contact_section {
	padding: 20px 20px;
		
	gap: 20px;
}

}

a {
	text-decoration: none;
	color: #008cba;
}

.testimonial {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #333;
	padding: 0px 20px;
	font-size: 1rem;
}

p {
	margin-block-start: 0.8em;
    margin-block-end: 0.8em;
}


@media (max-width: 800px) {
	#intro {
		flex-direction: column;
	}
	#intro > div {
		width: 100%;
		min-width: none;
	}

}
@media (min-width: 801px) {
	#intro {
		flex-direction: row;
		max-width: 1080px;
	}
	#intro > div {
		width: 50%;
	}
}
