<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
	resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}




/* ==========================================================================
   Author's custom styles
   ========================================================================== */


*, ::after, ::before {
	box-sizing: border-box;
}

body {
	font-family: "Circular", "Arial", "Hiragino Kaku Gothic Pro", "Meiryo UI", "Meiryo", sans-serif;
	/* Fix thick webkit fonts */
	-webkit-font-smoothing: antialiased;
	padding-top: 0px;
}

@font-face {
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 300;
	src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v141/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDDxHOej.woff2) format('woff2');
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	/* display: inline-block; */
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.font-small {
	font-size: 12px;
}

a {
	color: #0068ad;
	font-weight: 700;
}

a {
	text-decoration: none;
}

	a:hover {
		color: #0068ad;
	}

img {
	display: block;
	max-width: 100%;
}

.img--center {
	margin: auto;
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.container {
	width: 100%;
	max-width: 1280px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.margin-bottom--8 {
	margin-bottom: 0.5rem;
}

.margin-bottom--16 {
	margin-bottom: 1rem;
}

.margin-bottom--32 {
	margin-bottom: 2rem;
}

.margin-bottom--50 {
	margin-bottom: 3.125rem;
}

.padding-32 {
	padding: 2rem;
}

.padding-50 {
	padding: 1.125rem;
}

@media only screen and (min-width: 35em) {
	.padding-50 {
		padding: 3.125rem;
	}
}

.content--light {
	color: #fff;
}
	.content--light ul li:before {
		border-left-color: #fff;
	}

	.content--light h1 {
		font-size: 50px;
		font-weight: 600;
		border-bottom: none;
		padding-bottom: 0px;
	}

@media (max-width: 768px) {
	.content--light h1 {
		font-size: 42px;
	}
}

.content--light h2 {
	font-size: 24px;
	font-weight: 400;
}

.section--dark-gray {
	background-color: #2E2F3A;
	color: #fff;
}

.section--gray {
	background-color: #e5e7e5;
	color: #63676D;
	padding: 2rem;
}

.section--background-image {
	background-color: #2E2F3A;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.button {
	background-color: #0068ad;
	color: #fff;
	border-radius: 4px;
	padding: 10px 20px;
	display: inline-block;
	text-decoration: none;
	line-height: 1.5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 14px;
	background-image: none;
	border: 1px solid transparent;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
}

	.button:hover {
		background-color: #013d5e;
		color: #fff;
		text-decoration: none;
	}

	.button + .button {
		margin-left: 2rem;
	}

.display-table {
	display: table;
}

.display-inline-block {
	display: inline-block;
}

.header__column-1 {
	display: block;
	vertical-align: middle;
	width: 100%;
	padding-right: 1rem;
	margin-bottom: 2rem;
}

.header__column-2 {
	display: block;
	vertical-align: middle;
	margin-bottom: 2.75rem;
}

@media only screen and (min-width: 35em) {
	.header__column-1 {
		width: 66.66%;
	}

	.header__column-2 {
		width: 34%;
	}

	.header__column-1, .header__column-2 {
		display: table-cell;
		margin-bottom: 0;
	}
}

.w-100 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-2dot4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 750px) {
	.col-2dot4 {
		-ms-flex: 0 0 40%;
		flex: 0 0 40%;
		max-width: 40%;
	}
}

@media (max-width: 550px) {
	.col-2dot4 {
		-ms-flex: 0 0 60%;
		flex: 0 0 60%;
		max-width: 60%;
	}
}

.vertical-align-middle {
	vertical-align: middle;
	margin: auto;
}

.logo {
	max-width: 270px;
	width: 100%;
}

.image-card-table {
	display: block;
	margin-top: 50px;
	width: 100%;
}

@media only screen and (min-width: 35em) {
	.image-card-table {
		display: table;
	}
}

.image-card-table p {
	font-size: 20px;
}

.image-card-table__image {
	display: block;
	vertical-align: middle;
	width: 100%;
	margin-bottom: 2rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

	.image-card-table__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.image-card-table__content {
	display: block;
	vertical-align: middle;
	margin-bottom: 2.75rem;
	padding: 2rem;
}

.default {
	background-color: #e5e7e5;
}

.black {
	background-color: #2a2c32;
}

.blue {
	background-color: #0068ad;
}

.lightgray2 {
	background-color: #d0d3d4;
}

.lightgray3 {
	background-color: #f1f3f4;
}

.medgray {
	background-color: #a7a8aa;
}

.greenwhite,
.greenblack {
	background-color: #84bd00;
}

.yellow {
	background-color: #f1ba2b;
}

.black,
.blue,
.medgray,
.greenwhite {
	color: #ffffff;
}

	.black ul li:before,
	.blue ul li:before,
	.medgray ul li:before,
	.greenwhite ul li:before {
		border-left-color: #ffffff;
	}

.section--gray h2 {
	font-size: 24px;
}

.brag-section h3 {
	color: #84bd00;
	font-weight: 700;
	font-size: 20px;
	margin: 0px;
}

.brag-section p {
	font-size: 16px;
	line-height: 1.25;
}

@media only screen and (min-width: 35em) {
	.image-card-table__image {
		width: 33%;
		max-width: 370px;
		-webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
	}

	.image-card-table__image, .image-card-table__content {
		display: table-cell;
		margin-bottom: 0;
	}
}

.overlay-image {
	height: 0;
	text-align: right;
	overflow: visible;
}

.overlay-image__image {
	display: inline-block;
	margin-right: 10%;
	transform: translateY(-71%);
}

@media only screen and (min-width: 35em) {
	.overlay-image__image {
		display: inline-block;
		margin-right: 10%;
		transform: translateY(-50%);
	}
}

.grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.grid-5 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-center {
	justify-items: center;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
	display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap; /* 1 */
}

	/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

	.visuallyhidden.focusable:active,
	.visuallyhidden.focusable:focus {
		clip: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		position: static;
		width: auto;
		white-space: inherit;
	}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
	visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
	content: " "; /* 1 */
	display: table; /* 2 */
}

.clearfix:after {
	clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
	/* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
	/* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important; /* Black prints faster */
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

		a[href]:after {
			content: " (" attr(href) ")";
		}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	pre {
		white-space: pre-wrap !important;
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	/*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}
</pre></body></html>