@charset "utf-8";
/* -----------------------------------
Site:       jeffheiser.com
CSS author: Jeff Heiser
Updated:	12/2019
----------------------------------- */
@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;
}
.sr-only { /* better solution */
    height: auto; 
    margin: 0; 
}
.sr-only-focusable:active, .sr-only-focusable:focus { color: #002868; padding-left: 1rem; }
html { height: 100%; }
/***** 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;
}
/* 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;
	}
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .col-xxl-6 { padding-left: 5px; padding-right: 5px; }
}
@media only screen and (min-width: 1540px) {
	.container { max-width: 1480px; }
    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}
.graph {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: 400px;
}
@media only screen and (max-width: 767.98px) {
    .graph { max-height: 280px; }
    .graph svg { 
        transform: scale(.67); 
        transform-origin: top left;
    }
}

/***** 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, a:focus { color: #fff; }
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, main a:not(.btn):focus, .btnBox li a:hover { background-position: 0 100%; }
p a, li a { font-weight: bold; }
a:focus { outline: thin dotted #bf0a30; }
.imgLink:hover, .imgLink:focus {
	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) center no-repeat;
	background-size: contain;
	border: .3125rem solid #002868;
	border-radius: 1rem;
	box-shadow: .125rem .125rem .1875rem rgba(0, 0, 0, 0.3);
}
.jeffBox a { width: 100%; }
.jeffBox img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	border-radius: 1rem;
	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;
}
footer {
	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;
	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;
	z-index: 5;
}
.navbar-header a:last-child { margin-top: .2em; }
.navbar-header a:hover, .navbar-header a:focus { background: rgba(255,255,255,0.2); }
.navbar-header a:hover i::before, .navbar-header a:focus 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-brand { margin: 0; }
.navbar-brand img {
	width: 42px;
	height: 42px;
	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-form .btn { border-radius: 0 .25rem .25rem 0; }
.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-hide { transform: translateY(-110%); }
.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);
}
#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: 16rem;
	max-width: 100%;
	margin: .5rem auto 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;
	color: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.navbar-collapse { 
		position: fixed;
		top: 3.125rem;
		left: 50%;
		width: 95%;
		max-width: 28.125rem;
		background: url(../images/bkgd_gray_texture.jpg) repeat-y #eee5d3;
		margin: 0;
		padding: 1rem 1.875rem;
		border: .25rem solid #adadad;
		border-top: none;
		border-radius: 0 0 .375rem .375rem;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
		transform: translateX(-50%);
		z-index: 50;
	}
	.navbar-nav { 
		flex-wrap: wrap;
		margin: 0 auto; 
	}
	.nav-item { 
		flex: 0 0 25%;
		max-width: 25%;
		margin: 0 auto 1rem;
	}
	.searchBox { 
		flex: 0 0 73%;
		max-width: 73%;
		margin: .25rem;
	}
	.nav-link, .navbar-nav i::before, .navbar-nav .iconText, .nav-link:hover i::before, .nav-link:focus i::before{ 
		color: #002868; 
	}
	.navbar-nav button i.fa-search::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-form { 
		display: none;
		position: absolute;
		top: 60px;
		right: 0;
		width: 200px;
		margin: 0; 
	}
}
@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: 1.5rem auto 2rem;
}
.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)); 
}

/***** C A R D *****/
main .card {
    max-width: 750px;
    margin: 0 auto 2rem;
}
main .card-header {
    padding: .75rem;
    background-color: rgba(0,0,0,0);
    border-bottom: none;
}
main .card-body { padding: 0; }

/***** I C O N  G R O W *****/
.grow {
	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 {
	content: "\f015";
	position: absolute;
	left: 1em;
	font-family: FontAwesome;
	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);
}
.btn.grow::before, li.grow::before { left: .7em; }
.page-header h2.grow { padding-left: 2.6em; }

/***** T O O L T I P S  /  P O P O V E R S *****/
.tooltip-inner {
	max-width: 20rem;
	background-color: #006;
	background-image: -webkit-linear-gradient(top, #add8e6 0%, #000066 100%);
	background-image:      -o-linear-gradient(top, #add8e6 0%, #000066 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#add8e6), to(#000066));
	background-image:         linear-gradient(to bottom, #add8e6 0%, #000066 100%);
	background-repeat: repeat-x;
	font-weight: 700;
	border: 1px solid #fff;
	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: #fff; }
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { border-bottom-color: #fff; }
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { border-left-color: #fff; }
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { border-right-color: #fff; }
.bs-tooltip-left.show { left: -20px!important; }
.popover { 
	width: 216px; 
	background-color: #006;
	background-image: -webkit-linear-gradient(top, #add8e6 0%, #000066 100%);
	background-image:      -o-linear-gradient(top, #add8e6 0%, #000066 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#add8e6), to(#000066));
	background-image:         linear-gradient(to bottom, #add8e6 0%, #000066 100%);
	background-repeat: repeat-x;
	border-color: #fff;
}
.popover-body { color: #fff; }
.popover.bottom > .arrow::after { border-bottom-color: #fff; }

/***** G O T O P *****/
.gotop, .gotop:focus {
	display: none;
	position: fixed;
	bottom: 2.5rem;
	right: .5rem;
	background-color: rgba(0,0,0,0);
	font-size: 3rem;
	color: #002868;
	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; } }

/***** 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: FontAwesome; 
	color: #fff; 
}
.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: #3399cc; }
.side-nav .directions, .side-nav .directions:hover, .side-nav .directions:focus { background: #006400; }
.side-nav .search, .side-nav .search:hover, .side-nav .search:focus { background: #800080; }
.side-nav .share, .side-nav .share:hover, .side-nav .share:focus { background: #ff0000; }

/***** 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.5rem;
	height: 2.75rem;
	font-size: 1.25rem;
	color: #002868;
	line-height: 1.25rem;
	text-shadow: none;
	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 { 
	top: .5em;	
	left: 1.1em!important; 
	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-outline-dark:hover, .btn-outline-dark:focus {
  color: #343a40;
  background-color: #ddd;
  border-color: #343a40;
}

/***** M I S C E L L A N E O U S *****/
.d-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
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%;
}
