/******************************************************************
Base Stylesheet
******************************************************************/
html {
	scroll-behavior: smooth;
  }

body {
	background-color: #006499;
	font-family: "proxima-nova", sans-serif;
	font-size: 100%;
	line-height: 1.5;
	font-weight: 500;
	color: #2c2c2c;
	transition: background-color .24s ease-in-out;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  a {
	  display: inline-block;
	  color: #006499;
  }

  h1, h2, h3, h4, h5, h6 {
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	color: #2c2c2c;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 20px;
  }
  
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #006499;
	border-bottom: solid 1px transparent;
	transition: color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  h1 a:hover, h1 a:active, h1 a:focus, h1 a:active:hover, h1 a:active:focus, h2 a:hover, h2 a:active, h2 a:focus, h2 a:active:hover, h2 a:active:focus, h3 a:hover, h3 a:active, h3 a:focus, h3 a:active:hover, h3 a:active:focus, h4 a:hover, h4 a:active, h4 a:focus, h4 a:active:hover, h4 a:active:focus, h5 a:hover, h5 a:active, h5 a:focus, h5 a:active:hover, h5 a:active:focus, h6 a:hover, h6 a:active, h6 a:focus, h6 a:active:hover, h6 a:active:focus {
	text-decoration: none;
	color: #004366;
	border-color: #004366;
  }
  
  h1 a.modal-toggle.video, h2 a.modal-toggle.video, h3 a.modal-toggle.video, h4 a.modal-toggle.video, h5 a.modal-toggle.video, h6 a.modal-toggle.video {
	font-weight: 700;
	border: none;
	cursor: pointer;
  }
  
  h1 {
	font-size: 36px;
  }
  
  h2 {
	font-size: 32px;
  }
  
  h2.section-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 5px;
	border-bottom: solid 3px #006499;
  }
  
  h2.section-title a.title-link {
	display: inline-block;
	font-size: 13px;
	padding-bottom: 4px;
	border: none;
  }
  
  h2.section-title a.title-link span {
	margin-left: 5px;
  }
  
  h2.slogan {
	text-transform: uppercase;
  }
  
  h2.slogan span {
	font-weight: 700;
  }
  
  h3 {
	font-size: 28px;
  }
  
  h3.product-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
  }
  
  h3.product-title a {
	border: none;
  }
  
  h3.product-title a:hover, h3.product-title a:active, h3.product-title a:focus, h3.product-title a:active:hover, h3.product-title a:active:focus {
	border: none;
  }
  
  h4 {
	font-size: 24px;
  }
  
  h4 a.modal-toggle.video {
	font-size: 16px;
	line-height: 1.4;
  }
  
  h6 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
  }
  
  .vidwrap {
	position: relative;
	width: 100%;
	height: 0;
	margin-bottom: 20px;
	padding-top: 56.25%;
	overflow: hidden;
  }
  
  .vidwrap iframe, .vidwrap video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  
  .vidwrap.video {
	position: relative;
  }
  
  .vidwrap.video:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	/* The Fallback */
	background: rgba(0, 0, 0, 0.4);
	transition: background-color .24s ease-in-out, opacity .24s ease-in-out;
  }
  
  .vidwrap.video:hover:before, .vidwrap.video:active:before, .vidwrap.video:focus:before, .vidwrap.video:active:hover:before, .vidwrap.video:active:focus:before {
	background: #006499;
	/* The Fallback */
	background: rgba(0, 100, 153, 0.8);
  }
  
  .vidwrap.video:after {
	content: '';
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 30px);
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 60px solid #ffffff;
  }
  
  .vidwrap + h4 {
	line-height: 0.8;
	text-align: center;
	margin-top: -10px;
  }
  
  img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
  }
  
  p, li {
	font-size: 16px;
	line-height: 1.6;
  }
  
  p a, li a {
	color: #006499;
	border-bottom: solid 1px transparent;
	transition: color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  p a:hover, p a:active, p a:focus, p a:active:hover, p a:active:focus, li a:hover, li a:active, li a:focus, li a:active:hover, li a:active:focus {
	color: #004366;
	text-decoration: none;
	border-color: #004366;
  }
  
  p a.text-link, li a.text-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border: none !important;
  }
  
  p a.text-link.icon-right span, li a.text-link.icon-right span {
	margin-left: 5px;
  }
  
  p a.url:before, li a.url:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
	margin-right: 10px;
  }
  
  p a.news-link, li a.news-link {
	font-weight: 700;
	border: none;
  }
  
  p a.news-link:after, li a.news-link:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	content: "\f105";
	margin-left: 10px;
  }
  
  p a span.fas, li a span.fas {
	font-size: 14px;
  }
  
  p a span.fas.right, li a span.fas.right {
	margin-left: 5px;
  }
  
  p a span.fas.left, li a span.fas.left {
	margin-right: 5px;
  }
  
  p {
	margin-bottom: 30px;
  }
  
  p.lead {
	font-size: 18px;
	font-weight: 500;
  }
  
  p.lead.large {
	font-size: 20px;
  }
  
  p.caption {
	font-size: 14px;
	font-style: italic;
	margin-top: -20px;
  }
  
  p#pageDownload a {
	font-weight: 700;
	border: none;
  }
  
  p#pageDownload a:before {
	content: " \f1c1";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	margin-right: 10px;
  }
  
  p#pageDownload:last-of-type {
	margin: 0;
  }
  
  strong, b {
	font-weight: 700;
  }
  
  .btn, input[type="submit"] {
	font-family: "proxima-nova", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 8px 30px;
	border-radius: 30px;
	white-space: normal;
  }
  
  .btn.icon, input[type="submit"].icon {
	padding: 8px 20px;
  }
  
  .btn.icon.icon-right span, input[type="submit"].icon.icon-right span {
	margin-left: 10px;
  }
  
  .btn.icon.icon-left span, input[type="submit"].icon.icon-left span {
	margin-right: 10px;
  }
  
  .btn.bmargin, input[type="submit"].bmargin {
	margin-bottom: 30px;
  }
  
  .btn-default {
	background-color: #dcdcdc;
	color: #909fad !important;
	border: solid 2px #dcdcdc;
	transition: background-color .24s ease-in-out, color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  .btn-default:hover, .btn-default:active, .btn-default:focus, .btn-default:active:hover, .btn-default:active:focus {
	background-color: #c3c3c3;
	color: #2c2c2c !important;
	border-color: #c3c3c3;
  }
  
  .btn-primary, input[type="submit"] {
	background-color: #006499;
	color: #fff !important;
	border-color: transparent;
	transition: background-color .24s ease-in-out, color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:active:hover, .btn-primary:active:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus, input[type="submit"]:active:hover, input[type="submit"]:active:focus {
	color: #fff !important;
	background-color: #004366;
	border-color: transparent;
  }
  
  .btn-primary.gray, input[type="submit"].gray {
	background-color: #eae8e8;
	color: #2c2c2c !important;
	border-color: #dcdcdc !important;
	transition: background-color .24s ease-in-out, color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  .btn-primary.gray:hover, .btn-primary.gray:active, .btn-primary.gray:focus, .btn-primary.gray:active:hover, .btn-primary.gray:active:focus, input[type="submit"].gray:hover, input[type="submit"].gray:active, input[type="submit"].gray:focus, input[type="submit"].gray:active:hover, input[type="submit"].gray:active:focus {
	color: #006499 !important;
	background-color: #dedada;
	border-color: #dcdcdc !important;
  }
  
  .btn-clear {
	background-color: transparent;
	color: #fff;
	border: solid 2px #fff;
	transition: background-color .24s ease-in-out, color .24s ease-in-out, border-color .24s ease-in-out;
  }
  
  .btn-clear:hover, .btn-clear:active, .btn-clear:focus, .btn-clear:active:hover, .btn-clear:active:focus {
	background: #2c2c2c;
	/* The Fallback */
	background: rgba(44, 44, 44, 0.2);
	color: #fff;
  }
  
  .bgcolor-screen {
	background-color: #dcdcdc;
  }
  
  .alignleft {
	text-align: left;
  }
  
  .alignright {
	text-align: right;
  }
  
  .centered {
	text-align: center;
	justify-content: center;
  }
  
  .sfContentBlock {
	width: 100%;
  }
  
  .form-control {
	max-width: 400px;
	border-radius: 0;
  }
  
  label {
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 5px;
  }
  
  .sfError {
	font-size: 14px;
	font-weight: 700;
	color: #c70e23;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list {
	display: none;
	list-style: none;
	position: absolute;
	background-color: #f6f5f5;
	margin: 0;
	padding: 10px 0;
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li {
	display: block;
	margin: 0;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li a, #top-bar ul.secondary-nav li.has-children ul.nav-list li strong {
	display: block;
	font-size: 14px;
	color: #006499;
	font-weight: 700;
	padding: 8px 20px;
	border: none;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li strong {
	font-size: 16px;
	color: #2c2c2c;
	padding-top: 16px;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li a {
	background-color: transparent;
	transition: background-color .24s ease-in-out;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li a:hover, #top-bar ul.secondary-nav li.has-children ul.nav-list li a:active, #top-bar ul.secondary-nav li.has-children ul.nav-list li a:focus {
	background-color: #eae8e8;
  }
  
  #top-bar ul.secondary-nav li.has-children ul.nav-list li a:after {
	display: none;
  }
  
  .sfInlineEditingPageMenu {
	display: none;
  }
  
  .RadGrid_Default {
	border: none !important;
  }
  
  #videoModal .modal-dialog {
	max-width: 960px;
  }
  
  #videoModal .modal-content {
	border-radius: 0;
  }
  
  #videoModal .modal-content .vidwrap {
	margin: 0;
  }
  
  #videoModal .modal-body {
	padding: 0;
  }
  
  #site-wrap {
	position: relative;
	background-color: #fff;
	font-size: 16px;
	margin: 0 auto;
  }

  header {
	  padding: 30px 0px 300px 0px;
	  color: #ffffff;
	  background-color: #005380;
	  background-position: center;
	  background-repeat: repeat-y;
	  background-size: cover;
	  background-image: url(../../images/hex-bg-pattern.png);
  }

  header img#header-logo {
	  width: 250px; 
	  height: auto;
	  margin-bottom: 30px;
  }

  header h1 {
	  color: #ffffff;
	  margin-bottom: 12px;
	  font-size: 45px;
  }

  header h2 {
	  font-weight: 700;
	  text-transform: uppercase;
	  font-size: 20px;
	  margin-bottom: 12px;
	  color: #ffffff;
}

header .btn {
	background-color: #B1CFE6;
	outline-color: #B1CFE6;
	border: none;
	color: #003269;
}

section {
	padding: 60px 0px;
}

.card-header {
	padding: 30px;
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 50px rgba(0, 0, 0, 0.25);
    margin-top: -300px;
    margin-bottom: 60px;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

footer {
	padding: 60px 0px;
	background-color: #006499;
	color: #B1CFE6;
}

footer p {
	color: #B1CFE6;
}

footer .logo img {
	width: 200px;
	opacity: 0.6;
}

footer ul#social-list {
	text-align: right;
	list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

footer ul#social-list li {
	display: inline-block;
    margin: 10px 15px;
}

footer ul#social-list li a {
	display: block;
    width: 24px;
    height: 24px;
    border: none;
    opacity: 0.6;
    transition: opacity .24s ease-in-out;
}

.youtube-embed {
	background-color: #000;
	margin-bottom: 15px;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	cursor: pointer;
  }
  .youtube-embed img {
	width: 100%;
	top: -16.84%;
	left: 0;
	opacity: 0.7;
	cursor: pointer;
	position: absolute;
  }
  .youtube-embed iframe {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
  }
  .youtube-embed .play-button {
	width: 90px;
	height: 60px;
	background-color: #333;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	z-index: 1;
	opacity: 0.8;
	border-radius: 6px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
  }
  .youtube-embed .play-button:before {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
  }
  