<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Column Sizing */
p.half-left {
	width: 48%;
	float: left;
}

p.half-right {
	width: 48%;
	float: right;
}

p.third {
	width: 32.3%;
	display: inline-block;
	vertical-align: top;
}
/* End Column Sizing */

/* Text Highlight V1 */
.text-highlight-1 {
	color: #237DB1; /* $secondary */
	font-weight: 900;
	border-left: solid .7em #237DB1; /* $secondary */
	padding: 0 0 0 3%;
	font-size: 1em;
	margin: 1.75em 0;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.text-highlight-1 a {
	color: #F6883F; /* $tertiary */
}

.text-highlight-1 a:hover {
	color: #FCAF1F; /* $quaternary */
}

.half.right .text-highlight-1 {
	border-left: none;
	border-right: solid .5em #F6883F; /* $tertiary */
	padding: 0 5% 0 0;
}
/* End Text Highlight V1 */

/* Text Highlight V2 */
.text-highlight-2 {
	background-color: #237DB1; /* $secondary */
	text-align: center;
	color: #FFFFFF;
	padding: 2em 2.8em;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 900;
}

.text-highlight-2 a {
	color: #F6883F; /* $tertiary */
}

.text-highlight-2 a:hover {
	color: #FCAF1F; /* $quaternary */
}

@media (max-width:600px) {
	.text-highlight-2:before {
	}
}
/* End Text Highlight V2 */

/* Text Highlight V3 */
.text-highlight-3 {
	text-align: center;
	font-size: 1em;
	padding: 2em 2.8em;
	color: #237DB1; /* $secondary */
	background-color: #F6F6F6;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 1em;
}

.text-highlight-3 a {
	color: #F6883F; /* $tertiary */
	font-weight: 700;
}

.text-highlight-3 a:hover {
	color: #FCAF1F; /* $quaternary */
}
/* End Text Highlight V3 */

/* Call Out V1 */
.call-out-v1 {
	font-family: 'Caveat', cursive;
	font-size: 1.944em;
	font-weight: 700;
	color: #237DB1; /* $secondary */
	line-height: 1.2 !important;
}

.call-out-v1 a {
	color: #F6883F; /* $tertiary */
}

.call-out-v1 a:hover {
	color: #FCAF1F; /* $quaternary */
}
/* End Call Out V1 */

/* Call Out V2 */
.call-out-v2 {
	padding: 1em;
	background-color: #237DB1; /* $secondary */
	color: #FFFFFF;
	font-weight: 600;
	font-size: 1em;
	text-align: center;
	margin: 0;
}

.call-out-v2 a {
	color: #295F7E; /* $primary */
}

.call-out-v2 a:hover {
	color: #FFFFFF;
}

.call-out-v2 em {
	color: #BABABA; /* darken($light,27%) */
	display: block;
	font-weight: 400;
}
/* End Call Out V2 */

/* Bullet List V1 */
.bullet-list-1 h2, .bullet-list-1 h3 {
	font-size: 2em;
}

ul.bullet-list-1 {
	position: relative;
	margin: 1em 0;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

ul.bullet-list-1 li {
	position: relative;
	padding-left: 2.111em;
	margin-bottom: .5em;
	z-index: 1;
	width: 100%;
}

ul.bullet-list-1 li:before {
	position: absolute;
	top: .8em;
	left: 0;
	width: 20px;
	height: 4px;
	background-color: #237DB1; /* $secondary */
	z-index: -1;
	content: '';
}

ul.bullet-list-1 li a {
	font-weight: 400;
}

ul.bullet-list-1.v2 {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

ul.bullet-list-1.v2 li {
	width: 48%;
}

ul.bullet-list-1.v3 li {
	width: 32%;
	padding-left: 1.6em;
	padding-right: .5em;
}
/* End Bullet List V1 */

/* Bullet List V2 */
ul.bullet-list-2 {
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.bullet-list-2 li {
	position: relative;
	padding-left: 2.111em;
	margin-bottom: .5em;
	width: 48%;
}

.bullet-list-2 li:before {
	content: '\e188';
	font-family: 'icomoon-ult';
	position: absolute;
	color: #237DB1; /* $secondary */
	font-size: 1em;
	left: .5em;
	top: .1em;
}

.bullet-list-2 li a {
	color: #F6883F; /* $tertiary */
}

.bullet-list-2 li a:hover {
	color: #FCAF1F; /* $quaternary */
}

.bullet-list-2.v2 li {
	width: 100%;
}

.bullet-list-2.v3 li {
	padding-left: 1.6em;
	padding-right: .5em;
	width: 32%;
}
/* End Bullet List V2 */

/* Bullet List V3 */
ul.bullet-list-3 {
	background-color: #f1f0e9;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding: 0;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

ul.bullet-list-3 li {
	-webkit-flex: 0 1 40%;
	-ms-flex: 0 1 40%;
	flex: 0 1 40%;
	max-width: 40%;
	font-size: 1.25em;
	padding: 1em 0 1em 2.5em;
	position: relative;
	line-height: 1.6em;
}

ul.bullet-list-3 li:before {
	content: '\e7bb';
	font-family: icomoon-ult;
	font-size: 2em;
	position: absolute;
	left: 0;
	color: #F6883F; /* $tertiary */
	top: .5em;
}

ul.bullet-list-3 li:first-child {
	-webkit-flex: 1 1 100%;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
	text-align: center;
	background-color: #295F7E; /* $primary */
	font-size: 1.5625em;
	padding: .5em 2%;
	color: #FFFFFF;
	margin: 0;
	line-height: 1;
}

ul.bullet-list-3 li:first-child:before {
	content: none;
}

ul.bullet-list-3 li:last-child:nth-child(even) {
	-webkit-flex: 0 1 90%;
	-ms-flex: 0 1 90%;
	flex: 0 1 90%;
	max-width: 90%;
}
/* End Bullet List V3 */

/* Bullet List FANCY */
ul.bullet-list-fancy li {
	position: relative;
	margin-bottom: 1.5em;
	list-style: none;
	padding-left: 11%;
}

ul.bullet-list-fancy li:last-child {
	margin-bottom: .5em;
}

ul.bullet-list-fancy li:before {
	content: '';
	background-image: url(/images/landing-images/check-mark.png);
	background-position: center;
	height: 100%;
	width: 8%;
	background-size: contain;
	background-repeat: no-repeat;
	color: #237DB1; /* $secondary */
	position: absolute;
	left: 0;
	top: 0;
	max-width: 3em;
	max-height: 3em;
}

ul.bullet-list-fancy li h5, ul.bullet-list-fancy li p {
	margin: 0;
	font-size: 1em;
}
/* End Bullet List FANCY */

/* Bullet List FANCY V2 */
ul.bullet-list-fancy-2 li {
	position: relative;
	margin-bottom: 1.5em;
	list-style: none;
	padding-left: 3.3em;
}

ul.bullet-list-fancy-2 li:last-child {
	margin-bottom: .5em;
}

ul.bullet-list-fancy-2 li:before {
	content: '';
	background-image: url(/images/landing-images/right-arrow.png);
	background-position: center;
	height: 100%;
	width: 3em;
	background-size: contain;
	background-repeat: no-repeat;
	color: #237DB1; /* $secondary */
	position: absolute;
	left: 0;
	top: .2em;
	max-width: 2em;
	max-height: 2em;
}

ul.bullet-list-fancy-2 li h5, ul.bullet-list-fancy-2 li p {
	margin: 0;
	font-size: 1em;
}
/* End Bullet List FANCY V2 */

/* Responsive */
@media screen and (max-width: 800px) {
	p.half-left {
		width: 100%;
		float: none;
	}

	p.half-right {
		width: 100%;
		float: none;
	}

	p.third {
		width: 100%;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	ul.bullet-list-1.v3 li, .bullet-list-2.v3 li {
		width: 48%;
		padding-left: 2.111em;
		padding-right: 0;
	}
}

@media screen and (max-width: 550px) {
	ul.bullet-list-fancy-2 li {
		padding-left: 2.6em;
	}

	ul.bullet-list-fancy-2 li:before {
		width: 1.5em;
	}
}

@media screen and (max-width: 400px) {
	ul.bullet-list-1.v3 li, .bullet-list-2.v3 li, ul.bullet-list-1.v2 li, .bullet-list-2 li {
		width: 100%;
	}

	.text-highlight-2, .text-highlight-3 {
		padding: 2em 1em;
	}
}
/* End Responsive */
</pre></body></html>