@charset "utf-8";
/* -----------------------------------
Site:       jeffheiser.com
CSS author: Jeff Heiser
Updated:	5/2019
----------------------------------- */
:root {
	--brown: #331a00;
	--cyan: #00ffff;
	--darkgreen: #006400;
	--gold: #c89e47;
	--indigo: #002868;
	--lightblue: #add8e6;
	--maroon: #800000;
	--pink: #ffc0cb;
	--purple: #800080;
	--red: #ee0000;
	--silver: #c0c0c0;
	--teal: #008080;
	--yellow: #ffff11;
}
@media all and (min-width: 768px) {
	@font-face {
		font-family: 'Looney Tunes';
		src: url('../fonts/looney_tunes.woff2') format('woff2'),
			 url('../fonts/looney_tunes.woff') format('woff');
		font-weight: normal;
		font-style: normal;
		font-display: swap;
	}
}
*, *::before, *::after { scrollbar-gutter: stable; }
.sr-only { /* better solution */
    height: auto; 
    margin: 0; 
}
.sr-only-focusable:active, .sr-only-focusable:focus {
	position: absolute;
	display: block;
	left: 15px;
	top: 2px;
	right: auto;
	background-color: #f1f1f1;
	color: #002868;
	clip-path: none;
	text-decoration: none;
	line-height: normal;
	padding: 13px 23px 12px;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
	z-index: 9999;
}
html { height: 100%; scroll-behavior: smooth; }
/***** A 1 1 Y  R E S E T *****/
*:focus:not(:focus-visible), *::before:focus:not(:focus-visible), *::after:focus:not(:focus-visible) {
	outline: none;
}
body.using-tab a:focus, body.using-tab .btn:focus, body.using-tab button:focus { 
	color: currentColor;
	outline: none; 
	text-decoration: none; 
	box-shadow: 0 0 0 .1rem #fff, 0 0 0 .3rem #ff0dbf; 
}
/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
@media(prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}
}
/***** B O D Y *****/
body {
	display: flex;          
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	background: #e8eaf6; 
	color: #212121;
	overflow-x: hidden;
	padding-top: 3.125rem;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
}

/***** H E A D I N G S  /  P *****/ 
h2, h3, h4, .h1, .h2, .h3, .h4 {
	font-family: "DejaVu Serif", Georgia, "serif";
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
	font-weight: 900;
	color: #002868;
	letter-spacing: .05em;
}
h1, .h1 {
	font: 1.75rem 'Looney Tunes', "DejaVu Serif", Georgia, "serif"; 
	color: #000;
	text-align: center;
	letter-spacing: .1em;
}
h1 + p { 
	font-family: "DejaVu Serif", Georgia, "serif";
	font-size: 1rem; 
	font-variant: small-caps; 
	color: #000;
}
h2, .h2 { font-size: 1.5rem; }
h3, .h3 { font-size: 1.125rem; }
h4, .h4 {
	color: #bf0a30;
	font-size: 1rem;
}
@media only screen and (min-width: 768px) {
	h2, h3 { 
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	h1, .h1 { font-size: 2.5rem; }
	h2, .h2 { font-size: 1.75rem; }
	h3, .h3 { font-size: 1.25rem; }
	h4, .h4 { font-size: 1.0625rem; }
}
@media only screen and (min-width: 992px) {
	h1, .h1 { font-size: 3rem; }
	h1 + p { font-size: 1.25rem; }
	h2, .h2 { font-size: 1.875rem; }
	h3, .h3 { font-size: 1.5rem; }
	h4, .h4 { font-size: 1.125rem; }
}

/***** L I N K S *****/ 
a {
	font-family: "DejaVu Serif", Georgia, "serif";
	color: #002868;
	text-decoration: none;
	transition: all .3s ease-in-out;
	-webkit-touch-callout: none;
	-ms-user-select: none; /* IE 10 version for Windows Phone 8 */
}
.textLink, p a, li a {
	padding: .1em .2em;
	border-radius: .2em;
}
a:hover { color: #fff; }
a.h4:hover {
	color: #bf0a30;
	text-decoration: none;
}
main a:not(.btn), .btnBox li a {
	background: linear-gradient(to bottom, rgba(0, 40, 104, 0) 0%, rgba(0, 40, 104, 0) 50%, rgba(0, 40, 104, 1) 50%, rgba(0, 40, 104, 1) 100%);
	background-repeat: no-repeat;
	background-size: 100% 200%;
}
footer a, main a.plain-link, main a.h4 { background: none; }
.plain-link { color: currentColor; }
.plain-link:hover, .plain-link:focus {
	color: currentColor;
	text-decoration: none;
}
main a:not(.btn):hover, .btnBox li a:hover { background-position: 0 100%; }
p a, li a { font-weight: bold; }
.imgLink:hover {
	background: none!important;
	text-decoration: none;
	opacity: 0.75;
}
img { font-size: 1.1rem; font-style: italic; } /* Style Alt Text */

/***** H E A D E R *****/
header { 
	position: relative;
	flex-shrink: 0;
}
.jeffBox {
	position: relative;
	display: flex;
	width: 100px;
	height: 100px;
	background: #fff url(../images/jeff_avatar.png) no-repeat center;
	background-size: 90px 90px;
	border: 1px solid #c8d0e7;
	border-radius: 50%;
    box-shadow: inset 0.2rem 0.2rem 0.5rem #c8d0e7, inset -0.2rem -0.2rem 0.5rem #fff;
	transition: .3s linear;
}
.jeffBox:hover { box-shadow: 0.3rem 0.3rem 0.6rem #c8d0e7, -0.2rem -0.2rem 0.5rem #fff; }
.jeffBox a { width: 100%; }
.jeffBox img {
	position: absolute;
	top: .3125rem;
	left: .3125rem;
	display: block;
	opacity: 0;
	border-radius: 50%;
	transition: opacity .3s linear;
	z-index: 10;
}
.jeffBox img:hover { opacity: 1; }

/***** L A Y O U T *****/
main {
	min-height: 400px;
	flex: 1 0 auto;
	padding-bottom: 1rem;
}
body > footer {
	position: sticky;
	top: 100vh;
	flex-shrink: 0;
	background-color: #002868;
	color: #fff;
	padding-top: .625rem;
}
footer p { 
	font-size: .875rem; 
	text-align: center;
}

/***** M O B I L E  N A V I G A T I O N *****/
.navbar-header {
	width: 100vw;
	display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
	margin: 0;
	padding: 0;
	/*box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.02), 0 2px 10px 0 rgba(0, 0, 0, 0.1);*/
}
.navbar-header a {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-around;
	text-decoration: none;
	margin-top: -.2rem;
	z-index: 5;
}
.navbar-header a:hover { background: rgba(255, 255, 255, 0.2); }
.navbar-header a:hover i::before {
	color: #e5e5e5;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
}
.navbar-more {
	width: 3.5rem;
	height: 3.5rem;
	flex: 0 0 3.5rem;
	max-width: 3.5rem;
	background-color: #fff!important;
	margin-top: -.5rem;
	border: 2px solid #002868!important;
	border-radius: 50%;
}
.navbar-more i, .navbar-more:hover i::before  { color: #002868!important; margin-top: .625rem; }
a[aria-expanded="false"] .navbar-more .icon_canvas i::before { content: "\f0c9"; }
a[aria-expanded="true"] .navbar-more .icon_canvas i::before { content: "\f00d"; }
.navbar-brand { margin: 0; padding: 0; }
.navbar-brand img {
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16), 0 2px 2px 0 rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

/***** N A V I G A T I O N *****/
.fa-facebook-official::before, .fa-linkedin-square::before { color: currentColor; }
.navbar {
    width: 100%;
    height: 3.125rem;
	display: flex;
	background-color: #002868;
	margin: 0;
	padding: 0;
	border: 0;
	transition: transform 0.5s ease;  
	transform: translateY(0); 
}
.navbar-nav { 
	flex-direction: row;
	justify-content: center;
	width: 100%; 
}
.nav-item { 
	flex: 0 0 10%;
	max-width: 10%;
}
.nav-link {
	display: flex; 
	flex-direction: column;            
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	text-decoration: none;
	padding-top: .1rem;
	padding-bottom: .1rem;
	border-radius: 0;
}
.nav-link.active, .nav-link:hover, .nav-link:focus { background-color: rgba(255,255,255,0.2); }
.nav-link:hover i::before, .nav-link:focus i::before { 
	color: #ddd; 
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
}
.nav-link:hover .fa-facebook-official::before { color: #3b5998!important;}
.nav-link:hover .fa-linkedin-square::before { color: #3399cc!important; }
#home a.home, #resume a.resume, #faq a.faq, #portfolio a.portfolio, #testimonials a.testimonials,
#about a.about, #contact a.contact, #choosejeff a.choosejeff, #seo a.seo, #website a.website {
	background-color: rgba(255,255,255,0.2);
	border: 0;
	pointer-events: none;
	cursor: default;
}
.navbar-form {
	width: 22rem;
	max-width: 100%;
	margin: .5rem auto 0;
}
.navbar-form .btn { border-radius: 0 .25rem .25rem 0; }
.icon_canvas {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	text-align: center;
}
.icon_canvas i {
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
	font-size: 1.75rem;
	color: #fff;
}
.iconText {
	line-height: 1.125rem;
	font-size: .6875rem;
	font-weight: normal;
	color: #fff;
	white-space: nowrap;
}
@media only screen and (max-width: 767.98px) {
	body {  padding-top: 0; }
	footer { height: 7.0625rem; }
	.fixed-top { top: auto; bottom: 0; }
	.navbar-collapse, .navbar-collapse.show {
		position: absolute;
		bottom: 3.125rem;
		left: 50%;
		width: 100%;
		max-width: 28.125rem;
		background: url(../images/bkgd_gray_texture.jpg) repeat-y #eee5d3;
		margin: 0;
		padding: 1rem;
		border: .25rem solid #002868;
		border-bottom: none;
		border-radius: .375rem .375rem 0 0;
		transform: translateX(-50%);
	}
	.navbar-nav { 
		flex-wrap: wrap;
		margin: 0 auto; 
	}
	.icon_canvas i { font-size: 2.25rem; }
	.nav-item { 
		flex: 0 0 25%;
		max-width: 25%;
		margin: 0 auto 1rem;
	}
	.searchBox { 
		flex: 0 0 73%;
		max-width: 73%;
		margin: .25rem;
	}
    #searchButton { width: 54px; }
	.nav-link, .navbar-nav i::before, .navbar-nav .iconText, .nav-link:hover i::before, .nav-link:focus i::before{ 
		color: #002868; 
	}
	.navbar-nav .navbar-form i::before { color: #fff; }
	.nav-link:hover .iconText, .nav-link:focus .iconText { text-decoration: underline; }
	#home a.home, #resume a.resume, #faq a.faq, #portfolio a.portfolio, #testimonials a.testimonials,
	#about a.about, #contact a.contact, #choosejeff a.choosejeff, #seo a.seo, #website a.website {
		background-color: rgba(0,0,0,0.2);
		border: 0;
		pointer-events: none;
		cursor: default;
	}
}
@media only screen and (max-width: 400px) {
	.nav-item { 
		flex: 0 0 33%;
		max-width: 33%;
	}
	.searchBox { 
		flex: 0 0 96%;
		max-width: 96%;
	}
}
@media only screen and (min-width: 768px) { .navbar-hide { transform: translateY(-110%); } }
@media only screen and (min-width: 992px) { .iconText { font-size: .8125rem; } }

/***** P A G E  H E A D E R *****/
.page-header {
	position: relative;
	text-align: center;
	margin: 2rem auto;
}
.page-header-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 400px;
	max-width: 400px;
}
.page-header-right {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 calc(100% - 400px);
	width: calc(100% - 400px);
	max-width: 100%;
}
.page-header h2 {
	position: relative;
	display: inline-block;
}
.page-header h2::after {
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: -.8rem;
	height: .2rem;
	width: 80%;
	content: "";
	display: inline-block;
	background-image: -webkit-linear-gradient(left, rgba(26,35,126,0), rgba(26,35,126,1), rgba(26,35,126,0)); 
	background-image: -moz-linear-gradient(left, rgba(26,35,126,0), rgba(26,35,126,1), rgba(26,35,126,0)); 
	background-image: -ms-linear-gradient(left, rgba(26,35,126,0), rgba(26,35,126,1), rgba(26,35,126,0)); 
	background-image: -o-linear-gradient(left, rgba(26,35,126,0), rgba(26,35,126,1), rgba(26,35,126,0)); 
}
.jumbotron {
	padding: 1rem;
	margin-bottom: 2rem;
	background-color: #e0f2f1;
	background-image: url("../images/large-leather.png");
	border-radius: 0;
	/*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);*/
	box-shadow: 8px 8px 16px 0 rgba(0,0,0,.25), inset -8px -8px 16px 0 rgba(0,0,0,.25), inset 8px 8px 16px 0 hsla(0,0%,100%,.2);
}
.jumbotron p { font-size: 1rem; font-weight: 400; }
@media (min-width: 576px) { 
	.jumbotron { 
		padding: 1.25rem; 
		border: 1px solid #009688;
		border-bottom: 0;
		border-right: 0;
		/*border-radius: .375rem;*/
		border-radius: 1.5rem;
	} 
}
@media only screen and (min-width: 768px) { 
	.jumbotron { padding-top: 2rem; } 
	.page-header { margin-top: 0; }
}
@media only screen and (min-width: 992px) { 
	main .col-md-4 { width: 300px; }
	main .col-md-8 { width: calc(100% - 300px); }
	.page-header h2::after { display: none; }
	.page-header-right { margin-bottom: .5rem; }
} 
@media only screen and (min-width: 1200px) { 
	.page-header h2::after { display: inline-block; }
	.page-header-right { margin-bottom: 1.5rem; }
} 

/***** I C O N  G R O W *****/
.grow, .back {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	padding-left: 2.2em;
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: auto;
	transition-duration: 0.3s;
}
.grow::before, .back::before {
	content: "\f015";
	position: absolute;
	left: 1em;
	font-family: "Font Awesome 6 Pro";
	text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(0,0,0,0.7);
	padding: 0 1px;
	transform: translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
	transition-timing-function: ease-out;
}
.grow:hover::before, .grow:focus::before, .grow:active::before {
	text-shadow: none;
	transform: scale(1.3) translateZ(0);
}
.back::before { content: "\f137"; }	
.back:hover::before, .back:focus::before, .back:active::before {
	text-shadow: none;
	transform: scale(1.3) translate(-4px, 1px);
}
.page-header h2.grow { padding-left: 2.6em; }
.btn.grow::before, li.grow::before { left: .7em; margin-top: .3em; }
.cover.grow::before { font: var(--fa-font-regular); content: "\f65c"; }
.download.grow::before { font: var(--fa-font-regular); content: "\f019"; }
.print.grow::before { font: var(--fa-font-regular); content: "\f02f"; }
.search.grow::before { font: var(--fa-font-regular); content: "\f002"; }
.thumbsup.grow::before { font: var(--fa-font-regular); content: "\f164"; }
.mobile.grow::before { 
	left: .7em; 
	content: "\f10b"; 
	font-size: 1.3333333em; 
	line-height: 1em; 
}
.checkmark.grow::before { 
	left: .2em; 
	content: "\f046"; 
	font-size: 1.25em; 
	color: #006400; 
	line-height: .75em;
	vertical-align: -.075em;
	text-shadow: none; 
}

/***** M O D A L S *****/
.modal.fade .modal-dialog {
    opacity: 0;
	transform: scale(0.7);
}
.modal.show .modal-dialog {
    opacity: 1;
	transform: scale(1);
}
.modal-header { 
	background-color: #c9ecf8; 
	border-bottom: 1px solid #c0c0c0;
}
.modal-title { 
	font-size: 1.5rem; 
	color: #006; 
	margin-right: 4.5rem; 
}
.modal-body { 
	background: url(../images/bkgd_gray_texture.jpg) repeat-y #eee5d3;
	border-radius: 0 0 .3rem .3em; 
}
.close {
	position: absolute;
	top: .5rem;
	right: 1rem;
	float: none;
	font-size: 3rem;
	color: #002868;
}
.close:hover, .close:focus { color: #002868; }

@media only screen and (min-width: 768px) { .modal-dialog { max-width: 700px; } }
@media only screen and (min-width: 992px) { .modal-dialog { max-width: 900px; } }

/***** T O O L T I P S  /  P O P O V E R S *****/
.tooltip-inner {
	max-width: 20rem;
	background-color: #fff;
	color: #002868;
	font-weight: 700;
	border: 1px solid #002868;
	box-shadow: .1rem .1rem .15rem rgba(0,0,0,0.5);
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { border-top-color: #002868; }
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { border-bottom-color: #002868; }
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { border-left-color: #002868; }
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { border-right-color: #002868; }
.bs-tooltip-left.show { left: -20px!important; }
.popover { 
	width: 216px; 
	background-color: #fff;
	border-color: #002868;
}
.popover-body { color: #002868; }
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
	border-bottom-color: #002868;
}

/***** G O T O P *****/
.gotop, .gotop:focus {
	display: none;
	position: fixed;
	bottom: 2.5rem;
	right: .5rem;
	width: 3rem;
	height: auto;
	color: #002868;
	background-color: rgba(0, 0, 0, 0);
	font-size: 2.5rem;
	opacity: 1;
	padding: 0;
	border: 0;
	-webkit-appearance: none; /* Safari */
	z-index: 50;
}
.gotop:hover { opacity: 0.8; }
@media only screen and (max-width: 991px) { .gotop { display: none!important; } }

/***** O R D E R E D  L I S T *****/
.list-block > li { display: block; } /* Use with .grow in lists. */
ol.eleven-reasons { padding-left: 1em; }
.fa-li.fa-thumbs-up::before { font: var(--fa-font-regular); color: #002868; } 
.fa-file-pdf::before { font: var(--fa-font-regular); color: orangered; }

/***** R E A S O N S *****/
#reasons .card {
	background-color: rgba(0,0,0,0);
	margin: 1rem -1rem; 
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: background-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}
#reasons .card-open {
	background-color: rgba(255,255,255,0.5);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0,0,0,0.25);
}
#reasons .card-header { position: relative; padding: .75rem 1.25rem .75rem 3.75rem; }
#reasons a.card-header, #reasons a.card-header:hover, #reasons a.card-header:focus {
	background: none;
    background-color: rgba(0,0,0,0.05);
    border-bottom: none;
}
#reasons a.card-header:focus { text-decoration: underline; }
#reasons .card-open a.card-header, #reasons .card-open a.card-header:hover, #reasons .card-open a.card-header:focus {
	background-color: rgba(255,255,255,0.5);
}
#reasons .card-title { 
	display: block;
	text-indent: -1.875rem;
	margin-bottom: 0;
    padding-right: 1.875rem;
	cursor: pointer;
}
#reasons .card-title::after {
    position: absolute;
    content: "\f078";
    right: 1rem;
    top: 50%;
	font: var(--fa-font-solid);
	font-family: "Font Awesome 6 Pro"; 
 	font-size: 150%;
	transform-origin: 50% 50%;
    transform: translateY(-50%) rotateX(0deg);
	transition: transform .3s ease-in-out;
}
#reasons .card-open .card-title::after { transform-origin: 50% 50%; transform: translateY(-50%) rotateX(180deg); }
#reasons .card-title span {
	display: inline-block;
	width: 1.875rem;
	height: 1.875rem;
	color: #002868;
	text-align: center;
	margin-left: -.875rem;
	margin-right: .625rem;
	padding-left: 1.875rem;
	line-height: 1.5625rem;
	border: 2px solid #002868;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #ccc;
}
#reasons h4:hover, #reasons h4:focus, #reasons .h4:hover, #reasons .h4:focus {
	color: #bf0a30;
	text-decoration: none;
}
#reasons .card-body { padding-top: 0; }
#reasons .card-header.collapsed .card-body { padding: 0; }
#reasons .collapsing { transition: height 0.35s ease; }

/***** O R D E R E D  L I S T *****/
.ol-one::before, .ol-two::before, .ol-three::before, .ol-four::before, .ol-five::before, .ol-six::before, .ol-seven::before, .ol-eight::before, .ol-nine::before, .ol-ten::before, .ol-eleven::before {
	content: "1";
	background: #002868;
	color: #fff;
	font-family: Arial, sans-serif!important;
	font-size: 90%;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 50%;
}
.ol-two::before { content: "2"; }
.ol-three::before { content: "3"; }
.ol-four::before { content: "4"; }
.ol-five::before { content: "5"; }
.ol-six::before { content: "6"; }
.ol-seven::before { content: "7"; }
.ol-eight::before { content: "8"; }
.ol-nine::before { content: "9"; }
.ol-ten::before { content: "10"; padding: 3px; }
.ol-eleven::before { content: "11"; padding: 3px; }
.list-block > li { display: block; } /* Use with .grow in lists. */
/* Makes better left alignment */
.fa-ul li { margin-left: -.5em; margin-bottom: .375rem; }

/***** S I D E  N A V I G A T I O N *****/
.side-nav {
	position: fixed;
	right: -20px;
	top: 200px;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: all 0.35s ease-in-out;
	z-index: 50;
}
.side-nav a {
	width: 65px;
	height: 48px;
	float: left;
	background: currentColor;
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 48px;
	padding-right: 20px;
	transition: all 0.35s ease-in-out;
	box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.side-nav a:hover, .side-nav a:focus { transform: translateX(-20px); }
.side-nav i { 
	font-family: "Font Awesome 6 Pro"; 
	color: #fff; 
}
.side-nav .fa-facebook:before, .nav-icon .fa-facebook:before { font-family: FontAwesome; content: "\f09a"; }
.side-nav .fa-linkedin:before, .nav-icon .fa-linkedin:before { font-family: FontAwesome; content: "\f0e1"; }
.side-nav .facebook, .side-nav .facebook:hover, .side-nav .facebook:focus { background: #3b5998;}
.side-nav .linkedin, .side-nav .linkedin:hover, .side-nav .linkedin:focus { background: #0e76a8; }
.side-nav .directions, .side-nav .directions:hover, .side-nav .directions:focus { background: var(--darkgreen); }
.side-nav .search, .side-nav .search:hover, .side-nav .search:focus { background: var(--purple); }
.side-nav .share, .side-nav .share:hover, .side-nav .share:focus { background: var(--red); }

/***** B U T T O N S *****/
.btn {
	position: relative;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
.btn::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10, 10);
	opacity: 0;
	transition: transform .5s, opacity 1s;
}
.btn:active::after {
	transform: scale(0, 0);
	opacity: .3;
	transition: 0s;
}
.btn-accessibility { 
	width: 10.625rem;
	height: 2.75rem;
	font-size: 1.25rem;
	color: #002868;
	line-height: 1.25rem;
	text-shadow: none;
	white-space: nowrap;
	border: .125rem solid #002868;
	border-radius: .25rem;
	z-index: 10;
}
.btn-accessibility:hover, .btn-accessibility:focus, .btn-accessibility:active { 
	background-color: #fff;
	color: #002868;
	border-color: #002868;
}
.btn-accessibility.grow::before { content: "\f193  \f29d  \f2a2  \f2a8  \f29a"; }
@media only screen and (min-width: 992px) { 
	.btn-accessibility { 
		width: 12rem;
		height: 3.25rem;
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
}
.btn-danger {
	display: block;
	width: 100%;
	max-width: 30rem;
	font-size: 1rem;
	line-height: 1.333333;
	margin: 1.25rem auto;
	padding: .6em 1.2em;
	border-radius: .3em;
	outline: none;
	-webkit-transform: translateZ(0);
	animation: alertPulse 3s ease-out infinite;
}
.btn-danger:hover, .btn-danger:focus { animation-play-state: paused; -webkit-animation-play-state: paused; }
.btn-outline-white, .btn-outline-white:hover, .btn-outline-white:focus {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn-outline-white:hover, .btn-outline-white:focus { background-color: rgba(255,255,255,0.2); }
.btn-outline-white .fa-file-pdf::before { color: #fff!important; } 
.btn-outline-dark:hover, .btn-outline-dark:focus {
  color: #343a40;
  background-color: #ddd;
  border-color: #343a40;
}
.btn-xs { 
	font-size: 0.875rem;
	line-height: 1.5;
	padding: 0.25rem 0.5rem;
	border-radius: 0.2rem;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16), 0 2px 8px 0 rgba(0,0,0,0.12);
}
.btn-xs:hover, .btn-xs:focus { 
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.18), 0 3px 11px 0 rgba(0,0,0,0.15); 
	transform: scale(1.05);
}
.btn-xs.back { padding-left: 2.5em; }

/***** M I S C E L L A N E O U S *****/
@keyframes alertPulse {
    0% { background-color: #830000; opacity: 1; }
    50% { background-color: #e60000; opacity: 0.75; }
    100% { background-color: #830000; opacity: 1; }
}
.bolder {
	font: bold 125%/normal Verdana, Geneva, sans-serif;
	color: #8d721e;
	text-shadow: -1px 0 1px #c6bb9f, 
    	0 1px 1px #c6bb9f, 
	    5px 5px 10px rgba(0, 0, 0, 0.4),
	    -5px -5px 10px rgba(0, 0, 0, 0.4);
	vertical-align: baseline;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #585858;
    margin-right: .1em;
}
.clay {
	background: rgba(0,0,0,.005);
	border-radius: 1.5rem;
	box-shadow: 8px 8px 16px 0 rgba(0,0,0,.25), inset -8px -8px 16px 0 rgba(0,0,0,.25), inset 8px 8px 16px 0 hsla(0,0%,100%,.2);
}
.d-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dropcap {
	font-family: Georgia, serif;
	font-size: 5rem;
	color: #002868;
	float: left;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 -1px 0 rgba(0, 0, 0, 0.7);
	margin-right: 0.1em;
}
.dropcap::before, .dropcap::after {
	content: "";
	display: block;
}
.dropcap::before { margin-bottom: -0.05em; }
.dropcap::after { margin-top: -0.05em; }
.fa-ul li { margin-bottom: .375rem; }
hr {
	width: 96%;
	border: 0; 
	height: 1px; 
	background-image: -webkit-linear-gradient(left, rgba(0,40,104,0), rgba(0,40,104,1), rgba(0,40,104,0)); 
	background-image: -moz-linear-gradient(left, rgba(0,40,104,0), rgba(0,40,104,1), rgba(0,40,104,0)); 
	background-image: -ms-linear-gradient(left, rgba(0,40,104,0), rgba(0,40,104,1), rgba(0,40,104,0)); 
	background-image: -o-linear-gradient(left, rgba(0,40,104,0), rgba(0,40,104,1), rgba(0,40,104,0)); 
	margin-left: 2%;
	margin-right: 2%;
}
.jscroll {
	position: -webkit-sticky;
	position: sticky;
	top: 15px;
}
.shadow2 {
    border: 0;
	border-top: 1px solid #eee;
	border-radius: 6px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3), 0 2px 20px rgba(0, 0, 0, 0.094) inset, 0 -1px 7px rgba(0, 0, 0, 0.1);
}
.sidebar .card { border-radius: 1.5rem; }
.sidebar .card-header, .sidebar .card-footer { background-color: #002868; text-align: center; border-radius: 1.5rem 1.5rem 0 0; }
.sidebar .card-footer { border-radius: 0 0 1.5rem 1.5rem; }
.sidebar .card-header h4 { color: #fff; margin-bottom: 0; font-size: 1.25rem; }
.spacer {
    clear: both;
    margin: 1.5rem auto;
}
.spacer::before, .spacer::after {
	display: table;
	content: " ";
}
.spacer::after { clear: both; }
.twoColumn {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0; 
	-moz-column-gap: 0; 
	column-gap: 0;	
	-webkit-column-rule: none; 
	-moz-column-rule: none; 
	column-rule: none; 
}
@media only screen and (min-width: 480px) {
	.btn-danger { font-size: 1.25rem; }
}
@media only screen and (min-width: 768px) { 
	.twoColumn {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 3rem; 
		-moz-column-gap: 3rem; 
		column-gap: 3rem;	
	}
	.jumbotron p:first-of-type { font-size: 1.125rem; }
	.btn.grow { padding-right: 0; }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.sidebar {
		flex: 0 0 360px;
		max-width: 360px;
	}
	.main-content {
		flex: 0 0 auto;
		max-width: calc(100% - 360px);
	}
	.twoColumn {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 0; 
		-moz-column-gap: 0; 
		column-gap: 0;	
		-webkit-column-rule: none; 
		-moz-column-rule: none; 
		column-rule: none; 
	}
	.jumbotron p:first-of-type { font-size: 1rem; }
}
@media only screen and (min-width: 1200px) { 
	.twoColumn {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 3rem; 
		-moz-column-gap: 3rem; 
		column-gap: 3rem;	
	}
	.jumbotron p:first-of-type { font-size: 1.125rem; }
}
@media only screen and (min-width: 1500px) { 
	.container { max-width: 1440px; }
	.sidebar {
		flex: 0 0 620px;
		max-width: 620px;
	}
	.main-content {
		flex: 0 0 auto;
		max-width: calc(100% - 620px);
	}
	.sidebar h4 { font-size: 1.25rem; }
}
