/****
* Google Font Package
**   font-family: 'Poppins', sans-serif; - Primary 
*   font-family: "Hepta Slab", serif; -- Headers
*	
*****/

:root {
	--title_font: "Hepta Slab", serif;
	--copy_font: 'Poppins', sans-serif;
	--text_color: #282a2b;
	--body_bg_color: #fbf9fa;
	--color-gray-50: #fbf9fa;
	--color-gray-500: #6a7282;
	--color-gray-600: #4a5565;
	--color-gray-700: #364153;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-white-alt: #fbf9fa;
	--color-orange: #ce7046;
	--color-dk-blue:   #1e49a1;
	--color-dark: #010000;
	--color-oo-ltBlue: #49d1f5;
}

/* ===================================================================
 * BASE & RESET STYLES
 * =================================================================== */

/*html, body, .pageWrapper { height: 100%; }*/

/*body {
	font-family: var(--copy_font);
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	color: #313638;
	margin: 0;
	position: relative;
	background-color: var(--color-white)fff;
}*/
body {
  display: flex; /* Establish flex context */
  flex-direction: column; /* Stack children vertically (header, main, footer) */
  min-height: 100vh; /* Ensure body takes at least the full viewport height */
  /* Add other existing body styles like font-family, color, etc. */
  font-family: var(--copy_font);
  font-size: 1rem;
  font-weight: var(--base-font-weight);
  line-height: var(--base-line-height);
  color: var(--text_color);
  margin: 0;
  position: relative; /* Keep if needed for other positioning */
  background-color: var(--color-white-alt);
}

input, button, select, textarea { font-family: var(--copy_font); }

.clearfix,
.clear-form {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

hr {
	clear: both;
}

hr.light {
	border-top: 1px solid #DDD;
	border-bottom: none;
}

ul.nobullets,
ul.nobullets li {
	list-style: none;
}

.nobullets {list-style: none;}

span.meta-nav, span.screen-reader-text {display: none;}

/* ===================================================================
 * LAYOUT & STRUCTURE
 * =================================================================== */

/*#page {  height: 100%; position: relative; }*/
#main { 
	flex-grow: 1; /* Make this element expand */
	width: 100%;
}
#SiteFooter {
	clear: both; /* Can often be removed with flex layout */
	width: 100%;
	color: var(--color-white-alt);
	background-color: var(--color-dk-blue);
	padding: 3rem 0 1rem; /* Example padding - adjust as needed */
}

.landing-page #main {padding-top: 0;}
.home #content { padding-bottom: 0; }
body.home #main{padding-top: 0;}

.page-heading {
	padding: 20px 0 45px 0;
	clear: both;
	background: #f4f5f7;
}

.inner-content {
	clear: both;
	width: 100%;
	margin: 10px auto;
}

.inner-page-content .inner {
	margin: 10px auto;
}

.content-wrapper .inner-page-content img {width: initial; max-width: 100%;}
.content-wrapper .inner-page-content .featured-img img {width: 100%; max-width: 100%;}

.rm-table { display: table; width: 100%;}
.rm-table .rm-table-row { display: table-row; }
.rm-table .rm-table-row [class*="col-md-"] { float: none; display: table-cell; vertical-align: middle; }
.footer-wrap .rm-table .rm-table-row [class*="col-md-"] { vertical-align: top; }

.inner-page-content section, .inner-page-content .main-content, .inner-page-content .lower-content, .sidebar-main .block {padding: 25px 0; position: relative;}

/* ===================================================================
 * HEADER & NAVIGATION
 * =================================================================== */

header.primary-header .standard .navbar {
	background: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
body.home header.primary-header .standard .navbar .nav > li > a {color: var(--color-white); }
body.home header.primary-header .standard .navbar .nav > li > a:hover {border-color: var(--color-white); }
body.home header.primary-header .standard .navbar .nav > li.menu_donate-btn > a {background-color: var(--color-white) !important; color: #c2744f !important;}
body.home header.primary-header .standard .navbar .nav > li.menu_donate-btn > a:hover {background-color: #c2744f !important; color: var(--color-white) !important;}

body.home header.primary-header .standard .navbar .navbar-brand img.home-standard {display: none;}
body.home header.primary-header .standard .navbar .navbar-brand img.home-alt {display: flex;}
body.home header.primary-header .shrink .navbar .navbar-brand img.home-standard {display: flex;}
body.home header.primary-header .shrink .navbar .navbar-brand img.home-alt {display: none;}

.sticky-header.shrink {
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
}

.sticky-header {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	top: 0;
	z-index: 1030;
	height: auto;
/*	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;*/
}

.home-page .sticky-header.shrink {
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
}
	
.top-menu { clear: both; padding: 10px; height: 170px !important; background-color: var(--color-white);}
.inner-page .sticky-header, .home-page .sticky-header.shrink {background-color: var(--color-white)fff;}
header .navbar .navbar-brand img {max-width: 200px; width: 200px;}
header .navbar {
	background-color: var(--color-white);
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
}

.nav-menu { clear: both;}

.nav-menu .navbar-collapse {
	padding: 0;
    width: 100%;
}

.site-name h1 {
	color: var(--color-dk-blue);
	margin: 0;
	padding: 0;
	font-size: 2.5em;
	line-height: initial;
}

/*.shrink .sitelogo {
	width: 15%;
	margin: 0 42.5%;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}*/

.sitelogo .home-shrink, .shrink .sitelogo .home {display: none;}
.top-menu .sitelogo img {
	background-color: var(--color-white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.shrink .sitelogo .home-shrink { 
    max-width: 60%; 
	display: block;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.top-menu {
	height: initial;
	-webkit-transition: all ease-in-out;
	-moz-transition: all ease-in-out;
	-o-transition: all ease-in-out;
	-ms-transition: all ease-in-out;
	transition: all ease-in-out;
}

.shrink .top-menu {
	background-color: var(--color-white);
	-webkit-transition: all .85s ease-in-out;
	-moz-transition: all .85s ease-in-out;
	-o-transition: all .85s ease-in-out;
	-ms-transition: all .85s ease-in-out;
	transition: all .85s ease-in-out;
}

hgroup.standard .navbar-brand img {
	-webkit-transition: all .85s ease-in-out;
	-moz-transition: all .85s ease-in-out;
	-o-transition: all .85s ease-in-out;
	-ms-transition: all .85s ease-in-out;
	transition: all .85s ease-in-out;
}
hgroup .navbar-brand img {
	-webkit-transition: all .85s ease-in-out;
	-moz-transition: all .85s ease-in-out;
	-o-transition: all .85s ease-in-out;
	-ms-transition: all .85s ease-in-out;
	transition: all .85s ease-in-out;
}
.navbar-brand img:hover {
	filter: grayscale(1) brightness(1);
	-webkit-transition: all .85s ease-in-out;
	-moz-transition: all .85s ease-in-out;
	-o-transition: all .85s ease-in-out;
	-ms-transition: all .85s ease-in-out;
	transition: all .85s ease-in-out;
}
/*
.shrink .top-menu .rm-table { opacity: 0; }
*/
.top-menu a.sitelogo:hover img { 
	background-color: rgba(255,255,255,.65);
	-webkit-transition: all .85s ease-in-out;
	-moz-transition: all .85s ease-in-out;
	-o-transition: all .85s ease-in-out;
	-ms-transition: all .85s ease-in-out;
	transition: all .85s ease-in-out;
}

.site-logo h1 {
	font-size: 14px;
	color: var(--color-white);
	text-align: center;
	text-transform: uppercase;
	padding: 0;
	margin: 0 auto;
	letter-spacing: 1px;
}

.navbar {
	background: none;
	border: none;
	min-height: initial;
	margin-bottom: 0;
	padding: 0;
}

.navbar .nav {
	text-transform: capitalize;
	letter-spacing: 1px;
	z-index: 99;
	margin: 0;
}

.in .navbar .nav > li > a {
	border: none;
}

.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus,
.navbar .nav > .current-category-ancestor > a,
.navbar .nav > .current-post-parent > a {
/*	color: var(--color-dk-blue);
	background-color: #f4f5f7;*/
	text-decoration: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	filter: alpha(opacity=100);
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.navbar .nav > li {vertical-align: middle;}
.navbar .nav > li > a {
	font-family: var(--copy_font);
    display: flex;
    align-items: center;
    justify-content: center;
	color: #2a2e30;
	text-shadow: none;
	font-size: 14px;
	margin: 5px 15px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2em;
	border-bottom: 3px solid transparent;
}
.navbar .nav > li:first-child > a {margin-left: 0;}
.navbar .nav > li:last-child > a {margin-right: 0;}

.navbar .nav > li.home-logo > a {
	border: none;
}

.navbar .nav > li:first-child > a {
	margin-left: 0;
}

.navbar .nav > li:last-child > a {
	margin-right: 0;
}
.shrink .navbar .nav > li > a {color: #555;}
.inner-page .sticky-header .navbar .nav > li.boxed > a, .shrink .navbar .nav > li.boxed > a {border: 1px solid #888;}

.navbar .nav li.lead-gen a {
	padding: 10px;
	margin-top: -6px;
	background: var(--color-white);
	color: var(--color-dk-blue);
}
.navbar .nav li.lead-gen a:hover { text-decoration: none; color: var(--color-white); background: var(--color-dk-blue);}
.shrink .navbar .nav li.lead-gen a {background: var(--color-dk-blue); color: var(--color-white);}
.shrink .navbar .nav li.lead-gen a:hover {background: var(--color-white); color: var(--color-dk-blue);}

.navbar .nav > li > a:hover,
.navbar .nav > li.active > a:hover,
.blog-nav .nav li a:hover {
	border-bottom: 3px solid var(--color-dk-blue);
	background: none;
}
.nav > li.boxed > a {border: 1px solid #eee;}

.navbar .dropdown-menu {background-color: var(--color-white); width: 170%; padding: 10px;}
.navbar .dropdown-menu > li {margin: 10px auto; font-size: .9em; line-height: 1.1em; text-align: left;}
.navbar .dropdown-menu > li > a {color: #555;}
.navbar .dropdown-menu > .active > a, .navbar .dropdown-menu > .active > a:hover, .navbar .dropdown-menu > .active > a:focus { background-color: transparent;}
.navbar .dropdown-menu > li > a:hover { color: var(--color-dk-blue);}
.nav .open > a {background-color: transparent;}

.menu-item .sub-menu {
	display: none;
}

.menu-item.open .sub-menu {
	display: block;
}

.navigation.pagination .nav-links .page-numbers {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: #328cc1;
    color: var(--color-white);
    text-align: center;
    border-radius: 50%;
    padding-top: 3px;
    margin-right: 5px;
}
.navigation.pagination .nav-links .page-numbers a {color: var(--color-white);}
.navigation.pagination .nav-links .page-numbers.next, .navigation.pagination .nav-links .page-numbers.prev {display: none;}

.navigation.pagination {justify-content: center;}

.sticky-header .nav-menu .mobile {display: none;}
.sticky-header.shrink .nav-menu .mobile {display: table-cell;}

.bizplan-nav { padding: 0px 10px; border: 1px solid rgb(51, 130, 221); }
.bizplan-nav.stuck {
	position: fixed;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.bizplan-nav li {position: relative; padding: 5px; margin: 0 auto !important; clear: both; width: 100%;}
.bizplan-nav li.active {background-color: #f6f8f9;}
.bizplan-nav ul {list-style: none; padding: 0; width: 100%;}
.bizplan-nav .navbar .nav .more-indicator {
	font-size: 1em;
	text-align: left;
	position: relative;
	text-shadow: none;
	bottom: initial;
	color: var(--color-dk-blue);
	text-transform: capitalize;
	padding: 0;
	letter-spacing: 0px;
	margin: 0 auto;
}
.bizplan-nav .navbar .nav .more-indicator:hover, .bizplan-nav .navbar .nav .more-indicator:focus {border: none; background: none;}

.inner-pg-nav {background: var(--color-white); padding: 10px !important;}
.inner-pg-nav .nav {margin-top: 20px;}
.inner-pg-nav .nav li {margin: 0 5px;}
.inner-pg-nav .nav li a {background-color: var(--color-dk-blue); color: var(--color-white); }
.inner-pg-nav .nav li a:hover {background-color: #f4f4f4; color: var(--color-dk-blue); }
.inner-pg-nav .nav li.active a {background: #dce5eb; color: var(--color-dk-blue); }

.inner-pg-nav .nav .nav-item a {padding: 5px 0; margin: 0 auto; font-size: .9em; font-weight: 400;}

.bizplan-nav {display: none !important;}

/* ===================================================================
 * FOOTER
 * =================================================================== */

.footer ul,
.footer li {
	list-style: none;
	margin-left: 0;
}

.footer a { color: #f1f1f1; }
.footer li.title { 	font-weight: 700; }
.footer .sub-menu { margin-top: 10px; }
.footer .sub-menu a {
	font-size: .9em;
	font-weight: 300;
	color: #f1f1f1;
	text-transform: none;
	padding: 2.5px 0px;
}
.footer li a {
	color: var(--color-white);
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 0px;
}

.copyright {
	padding-top: 7.5px;
	text-align: left;
	font-size: .9em;
	font-weight: 200;
	line-height: 1.1em;
}
.copyright p {line-height: 1.2em; font-size: 1em;}

.footer-wrap .footer-menus, .footer-wrap .footer-connect {text-align: left;}
.footer-wrap .footer-connect {padding: 10px 0;}
.footer-wrap .footer-connect .rm-table {border-top: 1px solid #aaa; border-bottom: 1px solid #aaa; padding: 10px 0;}
.footer-wrap .footer-connect .social-assets {text-align: right; margin: 6px auto -6px auto;}

.footer-menu .menu-item .sub-menu {
	display: block;
}

.footer-wrap .border-left {border-left: 1px solid #eeeeee;}
.footer-wrap { padding: 75px 0 20px 0 !important; font-size: .9em; text-align: center;}
.footer-wrap .left { text-align: left; }
.footer-wrap .right { text-align: right; }
.footer-wrap p {margin-bottom: 0;}
.footer-wrap a { color: var(--color-white-alt); text-decoration: none;}
.footer-wrap a:hover { text-decoration: underline; color: var(--color-dark); }
.footer-wrap h3 {font-weight: 200; color: var(--color-white-alt);}
.page-bottom h3, .page-bottom h1.widget-title {
	font-size: 24px;
	text-align: center;
	color: #191919;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.footer-wrap .footer-logo img {max-width: 200px;}

.page-bottom .col-md-4:first-child,
.page-bottom .col-md-4:first-child h3 {
	text-align: left;
}

.page-bottom .col-md-4:last-child,
.page-bottom .col-md-4:last-child h3,
.page-bottom .col-md-4:last-child h1 {
	text-align: right;
}

.footer-menu {
	list-style: none;
	padding: 0;
}

.footer-menu .sub-menu {
	list-style: none;
	padding-left: 10px;
	text-transform: lowercase;
}

.footer-wrap .gform_wrapper .gform_body input {width: 100% !important;}
.footer-wrap .social {float: none; display: inline-block;}

.footer-menus h3 {
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-white);
}
.footer-menus #menu-footer-nav {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	font-size: .9em;
}
.footer-menus #menu-footer-nav li, .inner-page .footer-menus ul li {margin-bottom: 0;}

.footer .menu-item .sub-menu {
	display: block;
}

.footer-wrap .circle {
	font-size: 15px;
	line-height: 33px;
	width: 30px;
	height: 30px;
	background: #ed2836;
	margin-right: 5px;
	margin-top: 5px;
	float: left;
	left: 0;
}

.footer-wrap h4 {
	padding-top: 10px;
	text-align: center;
}

.footer-wrap .footer-endorsements img {width: 60px; max-width: 60px;}
.footer-wrap .footer-endorsements {margin-bottom: 10px;}

/* ===================================================================
 * TYPOGRAPHY
 * =================================================================== */

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
}

.sub-content h1 {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #757575;
	text-align: center;
}

.entry-content h1 {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #757575;
	text-align: left;
	color: var(--color-dk-blue);
	line-height: 100%;
	font-weight: 200;
	font-size: 1.75em;
}

.entry-content {
	position: relative;
	padding-bottom: 20px;
	color: #333;
}
.page-template section .entry-content {padding: 20px; background: #f1f1f1;}

h1 {
	font-family: var(--title_font);
	line-height: 1.2em;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: none;
  }
  h2 {
	font-family: var(--copy_font);
	line-height: 1.2em;
	font-weight: 700;
	letter-spacing: 0px;
	text-transform: none;
  }
  h3 {
	font-family: var(--title_font);
	font-size: 1.275em;
	line-height: 1.2em;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: none;
  }
  h4 {
	font-family: var(--copy_font);
	font-size: 16px;
	font-weight: 500;
}
  h5 {
	font-family: var(--copy_font);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0px;
  }
  h6 {
	font-family: var(--copy_font);
	font-size: 14px;
	font-weight: 300;
  }


.singular .page-header .entry-title, .page-header .entry-title, .inner-page .page-header-image .entry-title { padding: 0; margin: 20px auto; }
h1 { 
	font-size: calc(228.5%);
	text-transform: capitalize;
}

a {
	color: var(--color-dk-blue);
	text-decoration: none;
	outline: none !important;
}

a:hover,
a:focus,
a:active {
	color: var(--color-dk-blue);
	text-decoration: none;
	outline: none !important;
}

article .entry-title,
article .entry-title a,
.entry-title,
.entry-title a {
	color: var(--color-dk-blue);
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active {
	text-decoration: none;
	color: var(--color-dk-blue);
}

.fineprint {
	font-size: 11px;
	color: #999;
	text-transform: lowercase;
}

p.focus {
	font-size: 28px;
	letter-spacing: 2px;
	word-spacing: 2px;
	line-height: 1.2em;
}

.copy h3 i {
	font-size: 0.5em;
	font-variant: super;
	margin: 0px 5px;
	color: rgb(221, 221, 221);
}

h1 span.border {
	position: relative;
	bottom: 0px;
	width: 20%;
	height: 3px;
	margin: 20px auto 10px;
	background: #757575 none repeat scroll 0% 0%;
	display: block;
}

.jumbotron { background: var(--color-white); font-size: 1.75em; line-height: 1.1em;}

h1.tagline {
	width: 60%;
	margin: 0px auto;
	text-transform: uppercase;
	color: rgb(62, 61, 64);
	letter-spacing: 1px;
	line-height: 1.2em;
	font-weight: 300;
}

.smallcaps {font-size: 14px; line-height: 1em; text-transform: full-width; }

h1.inpage.strong{ letter-spacing: 5px; position: relative; padding: 0; margin: 0;}
h1.inpage.strong::before {
    display: block;
    position: absolute;
    content: '';
    width: 20%;
    top: 1.1em;
    left: 40%;
    right: 40%;
    color: var(--color-dk-blue);
    border: 2px solid;
}
h1.inpage.strong .smallcaps {
    display: flex;
    margin-top: .75em;
    justify-content: center;
}

blockquote {
    position: relative;
    margin-bottom: 2em;
	padding: 20px;
	background-color: var(--color-white);
	border: none;
	border-radius: 3px;
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.02),0px 2px 4px rgba(0,0,0,0.08);
	border-color: #e3e6e8;
}
blockquote p {font-style: italic;}
blockquote:after {
	margin-left: 1.5em;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 32px 32px 0 0;
	border-color: var(--color-white)fff transparent transparent;
	-webkit-transform:rotate(360deg);
	transform:rotate(360deg);
}
blockquote .quote-section { 
	color: var(--color-dk-blue); 
	font-size: 1.5em; 
	font-weight: 100;
	line-height: 1.1em;
	letter-spacing: 2px;
	padding: 20px 40px;
}
blockquote .quote-section:first-letter { font-size: 3em; font-weight: 400; float: left;}
blockquote .quote-section:first-line {line-height: 100%;}

ol.fancy { list-style: none; white-space: nowrap; counter-reset: li; padding: 0;}
.fancy li {line-height: 1.25em; margin-bottom: 10px;}
ol.fancy li:before {
	counter-increment: li;
  	content: counter(li);
	color: var(--color-white);
	background-color: var(--color-dk-blue);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	line-height: 1.1em;
	margin-right: 5px;
	padding: 5px 10px;
}

.tagline {
    margin: 30px 0 60px;
    font-weight: 500;
    font-size: 65px;
    font-weight: 700;
    line-height: 77px;
    max-width: 710px;
    color: var(--color-dk-blue);
}
.tagline.mt-hero {margin-top: -275px;}

ul.focused {padding: 10px 0px; list-style: none;}
ul.focused li:nth-child(odd) {background: var(--color-white); padding: 10px; color: var(--color-dk-blue);}
ul.focused li:nth-child(even){background: #666; padding: 10px; color: var(--color-white);}

h3.section-title {font-size: 20px; text-transform: uppercase; color: #333; font-weight: 700;}

ul.fancy {
    text-align: left;
    list-style: none;      /*removes the default bullet*/
    margin-left: 3%;       /*gives the bullet a small left margin*/
    padding-left: 1.2em;   /*sets the list text to the right*/
    text-indent: -1.2em;   /*indents the list text*/
}
ul.fancy li:before {                /*puts the Unicode before the text*/
    content: "\2714";      /*designate the Unicode character's number*/ 
    margin-right: .5em;     /*give a small margin to the Unicode*/
}
ul.fancy li { padding: .2em; }

ul.fancy-list {
	text-align: left;
	list-style: none;
	padding: 0;
	font-size: .9em;
	line-height: 1.2em;
}
ul.fancy-list li {padding-left: 20px;}
ul.fancy-list li i {margin-left: -20px; margin-right: 7.5px;}

/* ===================================================================
 * LINKS & BUTTONS
 * =================================================================== */

a.get-more {
	clear: both;
	display: inline-block;
	margin: 10px auto;
	text-align: left;
	color: var(--color-dk-blue);
	font-weight: 600;
}

.inner-page .inner-page-content .btn-custom {color: var(--color-white);}

.btn-oo {background-color: #c2744f; color: var(--color-white); }
.btn-oo:hover { background-color: var(--color-dk-blue); color: var(--color-white);}
.btn-oo-alt {background-color: var(--color-dk-blue); color: var(--color-white) !important;}
.btn-oo-alt:hover { background-color: #c2744f; color: var(--color-white) !important;}

.btn-custom {
	background-color: var(--color-dk-blue);
	background-image: none;
	filter: none;
	border-color: var(--color-dk-blue) !important;
	filter: none;
	color: var(--color-white);
	text-shadow: none;
	text-transform: uppercase;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom.active,
.btn-custom.disabled,
.btn-custom[disabled] {
	background-image: none;
	color: var(--color-dk-blue) !important;
	background-color: #f1f1f1;
	filter: alpha(opacity=70);
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
	-webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	
}
.btn-custom.alt {
	background-color: #ce7046;
	border-color: #c2744f !important;
}
.btn-custom.alt:hover {
	color: #ce7046 !important;
	background-color: #f1f1f1 !important;
}

.clear-btn, .btn-clear {
	color: #2a2e30;
	border: 1px solid #373737;
	text-transform: uppercase;
}
.clear-btn:hover, .btn-clear:hover {
	background-color: var(--color-dk-blue);
	color: var(--color-white);
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.btn-white {
	background-color: var(--color-white) !important;
	border: 1px solid var(--color-white) !important;
	color: var(--color-dk-blue) !important;
}
.btn-white:hover {
	background-color: var(--color-dk-blue) !important;
	color: var(--color-white) !important;
}

.btn-cta {
	padding: 15px 45px !important;
	color: var(--color-white);
	margin: 10px auto;
	font-size: 22px !important;
	margin-top: 25px;
    background-color: var(--color-dk-blue);
}

.btn-cta:hover {
	background-color: #f4f5f7;
	color: var(--color-dk-blue);
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.btn-cta.light {background-color: #f4f5f7; color: var(--color-dk-blue);}
.btn-cta.light:hover {
	background-color: var(--color-dk-blue);
	color: #f4f5f7;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
	border: 1px solid #f4f5f7;
}

.site-scroll-top { 
	background-color: var(--color-orange);
	color: var(--color-white-alt);
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
	z-index: 999;
    position: fixed;
    display: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    height: 45px;
    line-height: 45px;
    width: 45px;
    text-align: center;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
}
.site-scroll-top:hover { 
	background-color: var(--color-dk-blue);
	color: var(--color-white); 
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}

.read-more-btn {
	clear: both;
	float: left;
	font-size: 2em;
	margin: 20px auto;
}

.odd .read-more-btn { color: #a0371f; }

.even .read-more-btn {
	float: right;
	color: #f4f5f7;
}

.menu_donate-btn a {
	background-color: #c2744f;
	color: var(--color-white) !important;
	display: inline-block !important;
	padding: 10px 20px !important;
	margin: 0px !important;
}
.menu_donate-btn a:hover {
	text-decoration: none !important;
	border-color: transparent !important;
	background-color: #49d1f5 !important;
}

/* ===================================================================
 * FORMS
 * =================================================================== */

.bigdesc .frm_description {
	font-size: 1em;
	margin-top: 5px;
}

.action-caption .gform_footer {
	width: 190px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: var(--color-dk-blue);
	font-family: var(--copy_font);
	font-size: .9em;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--color-dk-blue);
	font-family: var(--copy_font);
	font-size: .9em;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--color-dk-blue);
	font-family: var(--copy_font);
	font-size: .9em;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
	width: 100%;
	padding: 4px;
	font-family: var(--copy_font);
}

.gform_legacy_markup .gfield {display: inline-block; margin: 5px 0;}

.form-footer {
	clear: both;
	margin-top: 25px;
	float: left;
	text-align: center;
	width: 100%;
}

#frm_field_143_container .frm_primary_label {display: none !important;}
.frm_repeat_buttons {clear: both; width: 100%; margin: 15px;}
.frm_repeat_buttons a {margin-right: 10px;}
.form-field.sub-section h3 {
	text-align: center;
	clear: both;
	display: inline-block;
	width: 100%;
	color: #191919;
	font-size: 20px;
}

.planner h3 {
	text-transform: uppercase;
	font-weight: 200;
	font-size: 1.25em;
	letter-spacing: 5px;
	text-align: center;
}

.planner .gform_body > ul {
	text-align: center;
}

.planner .gform_body > ul > li.gfield {
	float: none;
	display: inline-block;
}

.planner .gform_body {
	text-align: center;
}

form.planner {
	width: inital;
	margin: 10px auto;
}

.planner .gfield_label {
	display: none;
}

#gform_wrapper_3 {
	position: relative;
	left: 0;
	display: block;
	float: left;
}

article #gform_wrapper_3 {
	left: 50%;
}

.planner .gform_body li.gfield,
.planner .gform_body .nav-center ul.nav-center-right li {
	float: left;
}

.planner .gform_footer {
	text-align: center;
}

.planner .gform_footer input[type="submit"] {
	padding: 10px 20px;
	margin: 20px auto;
}

.planner .gfield_radio li {
	display: inline-block;
}

.planner textarea,
.planner input[type="text"],
.planner input[type="email"],
.planner input[type="tel"],
.planner select {
	padding: 7.5px;
	margin: 0 5px;
}

.planner textarea {
	width: 400px;
	margin: 0 auto;
}

.planner select {
	height: 40px;
	margin-top: 5px;
}

.planner .gfield_radio label {
	float: none;
	background-color: #d1d1d1;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	display: block;
	text-transform: uppercase;
	z-index: 1;
	padding: 5px;
	width: 160px;
	font-weight: 100;
}

.planner .squeeze .gfield_radio label {
	width: 120px;
	font-size: 0.9em;
	padding: 5px;
	margin: 0;
	display: inline-block;
}

.planner .gfield_radio input {
	display: none;
}

.planner .gfield_radio li:nth-child(4n) {
	clear: both;
}

.planner .squeeze .gfield_radio li:nth-child(4n) {
	clear: none;
}

.planner .gfield_radio input[type="radio"]:checked+label {
	background-color: var(--color-dk-blue);
	color: var(--color-white);
}

.custom-radio .info.active,
.custom-checkbox .info.active,
.custom-select .info.active {
	pointer-events: auto;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=90);
	opacity: 0.9;
}

.custom-radio .check,
.custom-checkbox .check,
.custom-select .check {
	position: absolute;
	font-size: 13px;
	bottom: 3px;
	right: 10px;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}

.custom-radio.active .check,
.custom-checkbox.active .check,
.custom-select.active .check {
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.custom-radio:hover,
.custom-radio:focus,
.custom-radio:active,
.custom-radio.active,
.custom-radio .info {
	background: #ee6557;
}

.planner .gfield_radio label:hover {
	cursor: pointer;
}

.frm_submit {
	clear: both;
	display: inline-block;
	margin: 10px auto;
	width: 100%;
}

.frm_dropzone { padding: 10px; background-color: #ededed; text-align: center;}
.frm_dropzone span {clear: both; width: 100%; display: inline-block; }
.frm_dropzone .frm_compact_text {display: none;}
.frm_dropzone .frm_small_text {font-size: .8em;}
.frm_dropzone:hover {cursor: pointer;}
#bizplan-docs .bizplan-well div {margin: 10px auto;}
.biz-plan-submit th {font-weight: 300; text-align: center;}
.financial-data td input {text-align: right; padding: 5px; width: 95%;}
.fin-table h4 {margin-bottom: 0; padding-bottom: 0;}
.biz-plan-submit table h3 {width: 100%;}
.form-field h3 {clear: both; width: 100%; display: inline-block; }

.biz-plan-submit .frm_submit {
	width: 100%;
	padding-top: 50px;
	text-align: center;
}
.frm_error {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}
.pwdetails, .pwdetails p {font-size: .9em;}
.pwdetails ul {list-style: none; padding: 0px;}
.pwdetails li {padding-left: 20px;}
.pwdetails .invalid i { display: none; }
.pwdetails .valid i { display: inline-block; }
.pwdetails i {
	margin: 0 5.6px 0 -20px;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}

.ui-datepicker .ui-datepicker-title select { color: var(--color-dk-blue); }
.ui-datepicker .ui-widget-header {background: #757575; border: 1px solid #eee;}
.dz-success-mark, .dz-error-mark, .dz-error-message {display: none;}
.dz-success .dz-success-mark, .dz-error .dz-error-message, .dz-error .dz-error-mark {display: block;}
.dz-success .dz-success-mark #Oval-2 {fill: #2C942C; }
.dz-error-mark #Oval-2 {fill: #FC2C2C; }

/* ===================================================================
 * IMAGES & MEDIA
 * =================================================================== */

img {max-width: 100%;}
img.noresize, form img { width: auto !important; }
img.noresize { margin: 0 5px; }

img.round, .team-headshot img {
	-moz-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.sub-content img {
	-moz-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
}

img.size-full, img.size-large {
	max-width: 100%;
	height: inital;
}

.featured-img img {width: 100% !important;}

.comment-meta img {width: auto !important;}

.video-wrapper, .media-content {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.video-wrapper iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

img.client-logo {width: 200px !important;}

.content-wrapper .inner-page-content .product-screenshot img {width: 100%;}

img.full-width {width: 100% !important;}

.feedflare img { width: auto; max-width: initial;}

/* ===================================================================
 * COMPONENTS
 * =================================================================== */

/* --- Modals --- */
.modal-header h3 {
	font-weight: 300;
	font-size: 1.5em;
	color: var(--color-dk-blue);
	text-transform: capitalize;
	width: 100%;
	margin-left: 30px;
}
.modal-dialog button.close {background: none; border: none; padding :0;}
.modal-header .modal-close {float:right;}
.modal-footer { text-align: center;}
#QuoteModal .modal-footer span {
	color: #003f29;
	font-weight: 600;
	font-size: 30px;
}
#ProjectModal .modal-content {
	text-align: center;
}

/* --- Cards --- */
.card.media-card {padding: 0 !important; overflow: hidden;}
.card.sponsorship {padding: 0;}
.card.sponsorship .sponsorship-details {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
	background: rgba(194,116,79,.75);
	width: 100%;
}
.card.sponsorship p, .card.sponsorship a.sponsorship-link {font-weight: 600; margin-bottom: 5px; color: var(--color-white);}
.sponsorship-items .row {margin: 10px auto;}

.card {
    background-color: var(--color-white-alt);
    border: 1px solid #eee;
    padding: 15px;
}
.card.dark {background-color: var(--color-dk-blue); color: var(--color-white);}
.card.dark h1, .card.dark h3 {color: var(--color-white); margin-bottom: 10px;}
.card.dark a {color: var(--color-white-alt);}
.card.dark a:hover {color: #49d1f5;}
.card h1, .card h3 {line-height: 1.3em;}
.card h3 {font-weight: 700;}
.card.dark .btn-cta {background-color: var(--color-white); color: var(--color-dk-blue);}
.card.dark .btn-cta:hover {background-color: var(--color-dk-blue); color: var(--color-white);}
.card.hero {
    padding: 30px 60px;
    font-size: 2em;
    line-height: 1.1em;
}
.card.dark label, .card.dark .frm_primary_label {color: var(--color-white) !important;}
.card.hero p { line-height: 1.5em; font-size: 1.2rem;}
.card.hero ul li {font-size: 1.2rem; line-height: 1.2em;}
.card.collapse .close-icon {position: absolute; top: 30px; right: 30px;}
.card.border {
    -moz-box-shadow: 3px 3px 9px 0px var(--color-dk-blue);
    -webkit-box-shadow: 3px 3px 9px 0px var(--color-dk-blue);
    box-shadow: 3px 3px 9px 0px var(--color-dk-blue);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.card.page-submenu {padding: 10px;}
.card.page-submenu h3 {font-size: 1.25em; margin: 0 auto; color: var(--color-dk-blue);}
.card.page-submenu ul li {margin: 0 auto;}
.page-submenu ul {padding: 0; list-style: none;}
.page-submenu ul li {padding: 5px 0;}
.page-submenu ul li:hover {background: var(--color-dk-blue);}
.page-submenu ul li a:hover {color: var(--color-white);}
.card .fa-stack {margin: 0 auto;}

.card.focus {
	background-color: #24282a;
	color: var(--color-white);
}
.card.focus h4 {
	color: var(--color-white);
	font-size: 1.25em;
	text-transform: capitalize;
	line-height: 1.2em;
	font-weight: 200;
	letter-spacing: 2px;
	height: 2.5em;
	margin-top: 10px;
}
.card.bg-img {
	background: url(../../assets/images/oo-card_bg.png) no-repeat;
	background-size: cover;
}
.trip-listing .card .card-header {background: none; min-height: 4em; border: none;}
.trip-listing .card .card-header h2 {font-size: 1.75rem; color: var(--color-dk-blue);}
.trip-listing .card .card-footer {background: none; border: none;}

.get-involved .card-header, .get-involved .card-footer {background: none; border: none;}
.get-involved .card .card-body {padding: 15px;}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-dark);
}
.feature-list-icon {
	width: 50px;
	height: 50px;
	background-color: var(--color-dk-blue);
	color: var(--color-white);
}
.feature-list-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}

 /* Style for the country link "pills" */
.country-link {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	background-color: var(--color-white)fff;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem; /* Bootstrap's .rounded-3 */
	text-decoration: none;
	color: #212529; /* Bootstrap's .text-dark */
	transition: all 0.2s ease-in-out;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Bootstrap's .shadow-sm */
}

.country-link:hover,
.country-link:focus {
	transform: translateY(-3px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	color: #0d6efd; /* Bootstrap's .text-primary */
	border-color: #0d6efd;
}

.country-flag {
	width: 40px;
	height: 40px;
	border-radius: 50%; /* Make the flag image round */
	object-fit: cover;
	margin-right: 0.75rem;
	/* Using 1x1 aspect ratio SVG flags from cdn.jsdelivr.net/gh/lipis/flag-icons */
}

.country-name {
	font-weight: 600; /* Bootstrap's .fw-semibold */
	font-size: .85rem;
}

/* --- Icons / Circles --- */
i.circle {
	position: relative;
	display: block;
	float: left;
}

.circle {
	font-size: 50px;
	word-spacing: 1px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 105px;
	width: 100px;
	height: 100px;
	max-width: 100%;
	text-align: center;
	color: white;
	background-color: var(--color-dk-blue);
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: middle;
	zoom: 1;
	position: relative;
}

.circle .circ {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: none;
	border: 1px solid var(--color-dk-blue);
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 275ms;
	-moz-transition-duration: 275ms;
	-o-transition-duration: 275ms;
	transition-duration: 275ms;
	-webkit-transition-timing-function: cubic-bezier(0.53, -0.67, 0.73, 0.74);
	-moz-transition-timing-function: cubic-bezier(0.53, -0.67, 0.73, 0.74);
	-o-transition-timing-function: cubic-bezier(0.53, -0.67, 0.73, 0.74);
	transition-timing-function: cubic-bezier(0.53, -0.67, 0.73, 0.74);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.action a:hover .circ,
.action a:focus .circ,
.actions a:active .circ {
	opacity: 1;
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
	-webkit-transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
	-moz-transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
	-o-transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
	transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.action a:hover h3,
.action a:hover img {
	background-image: none;
	filter: alpha(opacity=60);
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=60);
	-moz-opacity: 0.60;
	opacity: 0.6;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	-ms-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
	
}

.action .row-fluid .span4 {
	padding-top: 20px;
	border-top: 1px solid #CCC;
}

.call-out .circle {
	color: #003f29;
	border: 6px solid;
	background: none;
	padding: 0 5px;
	left: initial;
	margin-right: 10px;
	font-size: initial;
}

.call-out .circle img {
	margin-top: -20px;
}

.services .call-out .circle { background: var(--color-white); }
.services .call-out .circle img {
	width: 75%;
	height: 75%;
}

.circle.white {
	background-color: #f4f5f7;
	color: #003f29;
}

.key-points .circle .glyphicon {
	top: 0;
}

.key-points .circle {
	left: 0;
	float: none;
	display: inline-block;
	border: 6px solid #003f29;
	margin-top: -65px;
	-moz-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
}

.content-icon {font-size: 4em; color: var(--color-dk-blue);}

/* --- Social Icons --- */
.social {
	float: right;
	margin: 0;
}
.social-item {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 1.4em;
	margin-right: 5px;
/*	background: var(--color-white)fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding: 6px 5px 5px 5px;
*/
}
.social-item a { color: var(--color-white); }
.social-item .proj-plan span {
	background-color: #d5d5d5;
	color: #191919;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
}
.social-item .proj-plan span:before {
	font-size: 70%;
	padding: 5px;
}
.social-item a:hover {
	filter: alpha(opacity=100);
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	text-decoration: none;
}
.social-item a.proj-plan:hover span { background-color: var(--color-dk-blue); }
.social-item a.facebook:hover { color: #3b5998; }
.social-item a.twitter:hover { color: #00acee; }
.social-item a.instagram:hover { color: #517fa4; }
.social-item a.pinterest:hover { color: #ca1f27; }
.social-item a.myspace:hover { color: #030303; }
.social-item a.youtube:hover, .social-item a.google:hover { color: #dd4b39; }
.social-item a.tumblr:hover { color: #2c4762; }
.social-item a.linkedin:hover { color: #0e76a8; }
.client-snapshot .social-links .social-item { font-size: 1.25em; }
.client-snapshot .social-links .social {float: left;}

/* --- FAQ / Accordion --- */
.faq-items a i {
	color: rgb(51, 130, 221);
	border: 1px solid rgb(51, 130, 221);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	padding: 10px 12.5px;
	margin: 0 10px 0 -48px;
	font-size: 1em;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.faq-items a i.opened {
	background: var(--color-dk-blue); 
	color: var(--color-white);
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.faq-items .faq-item {padding: 10px 0 10px 48px;}
.faq-items .faq-item .faq-heading {font-weight: 400; font-size: 18px;}
.faq-items .faq-item .faq-answer {padding-top: 10px;}
.faq-items .faq-item .faq-answer-wrap {
	border-left: 1px solid rgb(187, 187, 187);
	margin-left: -29px;
	padding: 0 0 10px 29px;
	background-color: #d7d7d7;
}

/* --- Wells / Collapse --- */
.bizplan-well {
	padding: 20px;
	background-color: #f6f8f9;
	float: left;
	width: 100%;
	border-radius: 3px;
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.02),0px 2px 4px rgba(0,0,0,0.08);
	border-color: #e3e6e8;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.collapse, .collpase.in {
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
h3 .well-toggle i {margin-right: 10px;}
h3 .well-toggle {color: var(--color-dk-blue); font-weight: 300;}

/* --- Boxes --- */
.box {
	background-color: rgba(0, 63, 41, 0.05);
	-moz-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: var(--color-dk-blue);
	position: relative;
	padding: 20px;
}
.box h3 {
	text-align: center;
	color: #003f29;
	padding-top: 10px;
}
.box.next {
	background-color: rgba(122, 183, 109, .5);
}
.box.support {
	background-color: rgba(6, 154, 190, .5);
}
.box.recap {
	background-color: rgba(187, 207, 94, .5);
}
.featured-boxes .row.bumpup {
	margin-top: -140px;
}
.box .copy {
	clear: both;
	width: 100%;
	margin: 10px auto;
}
.box img.box-image, .box .box-image img {
	-moz-box-shadow: 3px 3px 12px 0px #ddd;
	-webkit-box-shadow: 3px 3px 12px 0px #ddd;
	box-shadow: 3px 3px 12px 0px #ddd;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.key-points .box {
	background: var(--color-white)fff;
	min-height: 525px;
	padding-bottom: 60px;
}

.highlight-boxes h3 {
	color: var(--color-dk-blue);
	text-transform: uppercase;
	font-weight: 300;
}

.featured-box {
    position: relative;
    border: 2px solid #0c2340;
    padding: 1rem 2.5rem;
	text-align: center;
}
.featured-box .featured-title {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    font-size: 1.5rem;
    text-transform: initial;
    color: #0c2340;
    background-color: var(--color-white)fff;
    width: 66%;
    margin: 0 auto;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0;
}
.featured-box p {font-size: 1.3em; line-height: 1.2em;}	
.featured-box h3 {font-size: 1.2em;}

.feature-boxes .focus-box {padding: 20px; background-color: #f6f9fc; min-height: 420px;}
.feature-boxes .focus-box .fb-image {
    width: 100%;
    overflow: hidden;
    padding-bottom: 56%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.feature-boxes .focus-box h2 {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: var(--copy_font);
    color: var(--color-dk-blue);
}
.feature-boxes .focus-box .fb-summary {color: var(--color-dk-blue); margin-top: 10px;}

.feature-boxes .focus-box {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	background: #000;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.1);
	
}

.feature-boxes .focus-box h3{
	font-family: var(--copy_font);
	font-style: normal;
	color: var(--color-white);
	font-size: 1.2em;
	letter-spacing: 2px;
	bottom: 85px;
	left: 25px;
	position: absolute;
	font-weight: 700;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	transition-delay: 0.05s;
	transition-duration: 0.35s;
	-webkit-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-moz-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-ms-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-o-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
}
.feature-boxes .focus-box:hover h3{
	transform: translate3d(0px, -40px, 0px);
	transition-delay: 0.05s;
	transition-duration: 0.35s;
	-webkit-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-moz-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-ms-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-o-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
}
.feature-boxes .focus-box a.btn {position: absolute; bottom: 25px; left: 25px; }

.image-boxes .image-box {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	background: #000;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.1);
	
}

.image-box h3{
	color: var(--color-white);
	bottom: 25px;
	left: 25px;
	position: absolute;
	font-weight: 900;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	transition-delay: 0.05s;
	transition-duration: 0.35s;
	-webkit-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-moz-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-ms-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-o-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
}
.image-boxes .image-box:hover h3{
	transform: translate3d(0px, -40px, 0px);
	transition-delay: 0.05s;
	transition-duration: 0.35s;
	-webkit-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-moz-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-ms-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	-o-transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
	transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
}

.proof-boxes {margin: 25px auto;}

/* --- Slider / Carousel --- */
.home-page section.home-page-slider {padding-top: 0;}
.carousel-inner {padding: 0;}
.slide.item .mask {background-color: transparent;}
.item .slide-caption {
	opacity: 0;
    position: absolute;
	margin: 0 auto;
    -webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	background: RGBA(255,255,255,0.8);
	padding: 10px 15px;
	width: 30%;
	border: 0px solid RGBA(0,0,0,1);
	border-radius: 0px;
}
.slide-caption h1 {font-size: 20px; color: #333; line-height: 1.2em;}
.item.active .slide-caption { opacity: 1 }
.slide-caption.wrap-local-0 { left: 0; right: 0; top: 45%; text-align: center;}
.slide-caption.wrap-local-1 { left: 5%; top: 15%; text-align: left;}
.slide-caption.wrap-local-2 { right: 15%; top: 15%; text-align: right;}
.slide-caption.wrap-local-3 { left: 5%; bottom: 15%; text-align: left;}
.slide-caption.wrap-local-4 { right: 15%; bottom: 15%; text-align: right;}
.slide-caption.wrap-local-5 { left: 0; right: 0; top: 45%; text-align: center;}
.slide-caption.wrap-local-0 h1 { text-align: center;}
.slide-caption.wrap-local-1 h1 { text-align: left;}
.slide-caption.wrap-local-2 h1 { text-align: right;}
.slide-caption.wrap-local-3 h1 { text-align: left;}
.slide-caption.wrap-local-4 h1 { text-align: right;}
.slide-caption.wrap-local-5 h1 { text-align: center;}
.carousel-indicators {bottom: 40px;}

/* --- Maps --- */
.map-wrapper{
	background-color:var(--color-white);
	font-family:sans-serif;
	padding: 1rem
}
#map-container{
	position:relative;
	width:100%;
	max-width:1100px;
	height:70vh;
	margin:auto;
}
.datamaps-subunit{cursor:pointer}
.datamaps-bubble{
	cursor:pointer;
	stroke-width:2px!important;
	stroke:var(--color-white);
	stroke-opacity:.8;
	transition:all .2s ease-in-out
}
.datamaps-bubble:hover{
	stroke-width:4px!important;
	stroke-opacity:1;
	fill-opacity:1!important
}
.datamaps-hoverover{
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
	max-width:280px;
	padding:0!important;
	background-color:transparent!important;
	border:none!important;
	font-size:1rem!important;
	color:inherit!important
}
.custom-popup-card .card-header{font-size:1.1rem; font-weight:700}
.custom-popup-card .list-group-item{padding:.5rem 1rem}
/* Custom Bootstrap Popover Styling for Dark Theme */
.popover {
	--bs-popover-bg: #212529;
	--bs-popover-header-bg: #343a40;
	--bs-popover-header-color: var(--color-white);
	--bs-popover-body-color: var(--color-white);
	--bs-popover-border-color: #495057;
	--bs-popover-arrow-border: #495057;
}
.popover-header {
	font-size: 1.1rem;
	font-weight: bold;
}
.popover-body {
	padding: 0; /* Remove padding to let list-group be flush */
}
.popover-body ul li {margin-bottom: 0; padding-left: 5px;}
.popover-body ul {padding: 5px 0 5px 25px;}
.popover-body ul li i {margin-left: -25px;}
.popover-body ul li a {color: var(--color-white-alt); }
.popover-body ul li a:hover {color: var(--color-dark);}
.datamaps-hoverover{padding: 5px 10px !important; font-size: 14px !important; background: #212529 !important; color: var(--color-white) !important; border: 1px solid #495057 !important; box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; }

.zoom-controls { position: absolute; top: 15px; left: 15px; z-index: 10; }
.zoom-controls button { font-size: 1.2rem; line-height: 1; width: 38px; height: 38px; }
.map-tooltip {
	position: absolute;
	z-index: 1010;
	padding: 5px 10px;
	font-size: 14px;
	background: #212529;
	color: var(--color-white);
	border: 1px solid #495057;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
	border-radius: .25rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

/* --- Misc Components --- */
.contact {
	width: 100%;
	height: 100%;
	float: left;
	overflow-wrap: break-word;
	white-space: nowrap;
	overflow: hidden;
}

.action-caption {
	float: left;
	clear: both;
	width: 100%;
	text-align: center;
}

.action-caption h3 {
	font-weight: 200;
	text-transform: uppercase;
	font-size: 20px;
	word-spacing: 1px;
	line-height: 22px;
}

.action-caption p {
	font-weight: 200;
	font-size: .9em;
	line-height: 100%;
}

.caption-wrapper {
	position: absolute;
	left: 10%;
	bottom: 10%;
	background-color: rgba(244, 245, 247, 0.75);
	padding: 20px;
	width: 40%;
	-moz-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	box-shadow: 6px 6px 25px 0px var(--color-dk-blue);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.hero .caption-wrapper {
	top: 2.5%;
	bottom: initial;
	right: 10%;
	left: initial;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 300px;
	height: 300px;
	padding: 35px;
}

.hero .caption-wrapper h1 {
	margin: 5px auto;
	padding: 10px;
	text-align: center;
	color: #003f29;
	font-weight: 400;
	font-size: 1.75em;
	text-shadow: 2px 3px 3px rgba(128, 128, 128, .5);
}

.hero .caption-wrapper h1:first-child {
	margin-top: 35px;
}

.hero .caption-wrapper h1:first-child:before {
	font-size: 75px;
	color: #757575;
	content: '\201C';
	font-family: serif;
	font-weight: bolder;
	position: absolute;
	padding: 15px 10px 10px 0;
	margin-left: -40px;
	top: 48px;
}

.hero .cta {
	width: 100%;
	text-align: center;
}

.hero .cta .btn {
	text-transform: capitalize;
}

.story-recap ul {
	list-style: none;
}

.key-points .header {
	text-align: center;
	width: 100%;
	float: left;
}

.contact a {
	float: left;
	color: var(--color-white);
	font-size: 16px;
}

.contact a span {
	margin-right: 5px;
}

.geolocal .textwidget {
	padding-left: 75px;
}

.geolocal .textwidget:before {
	font-family: 'ElegantIcons';
	content: attr(data-icon);
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-style: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e081";
	float: left;
	font-size: 75px;
	margin-left: -75px;
	color: #003e29;
}

.more-indicator {
	position: absolute;
	bottom: 10px;
	left: 0;
	right:0;
	text-align: center;
	font-size: 2em;
	color: var(--color-white);
	cursor: pointer;
	text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.more-indicator.dark, .landing-page .block2 .more-indicator, .inner-page-content .more-indicator { color: #0b4d61; }
.inner-page-content .featured-img .more-indicator {color: var(--color-white);}

.more-indicator:hover {
	cursor: pointer;
}

.overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}

.overlay.grey { background: rgba(0, 0, 0, 0.6); }
.overlay.blue { background: rgba(31, 72, 160, 0.75); }

.rule {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: transparent;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(227, 230, 232);
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0px;
}

.feature-highlights {padding: 0;}
.product-screenshot {position: relative;}
.product-screenshot .feature-highlights li {
	width: 50px;
	background-color: rgb(77, 41, 145);
	color: rgb(255, 255, 255);
	text-align: center;
	padding: 12.5px 0px;
	border-radius: 50%;
	font-weight: 500;
	cursor: pointer;
}

.callout-pulse {
	display: block;
	background: rgb(77, 41, 145);
	border-radius: 100px;
	height: 200%;
	width: 200%;
	position: absolute;
	-webkit-animation: av_pulsate 2s ease-out;
	animation: av_pulsate 2s linear infinite;
	opacity: 0;
	top: -25px;
	left: -25px;
	z-index: 1;
}

.glossary-nav, .news-nav {
	width: 100%;
	clear: both;
	margin: 20px auto;
}
.glossary-nav .prior, .news-nav .prior {float: left;}
.glossary-nav .next, .news-nav .next {float: right;}

.section-waved {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-waved svg {
    position: relative;
    display: block;
    width: calc(125% + 1.3px);
    height: 126px;
    transform: rotateY(180deg);
}
.section-waved .shape-fill { fill: var(--color-white); }

.rm-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The gradient: from var(--color-dk-blue) at 90% opacity on the left to fully transparent on the right. */
    background: linear-gradient(to right, rgba(40, 42, 43, 0.7), transparent);  
}

/* ===================================================================
 * PAGE-SPECIFIC STYLES
 * =================================================================== */


/* --- Home Page --- */
.home-page section {
	padding: 50px 0;
	position: relative;
}
.home-page .inner-pg-hero .ip-copy {border-color: var(--color-white);}

section.hero-image {max-height: 65vh;}

/* --- Landing Page --- */
.landing-page .hero-block {
	background-attachment: fixed !important;
	background-size: cover !important;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0 0 50% 0;
	margin-top: 0px; 
}
.landing-page .hero-block .hero-bg {
	position: relative;
	margin-top: -200px;
	width: 100%;
	height: 0;
	padding-bottom: 40%;
	overflow: hidden;
}
.mask{
	background-color: rgba(33, 33, 33, 0.35);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.mask.blue {background-color: rgba(1, 0, 102, 0.5);}
.landing-page .hero-block .mask.blue {display: none;}
/*.hero-block .mask.blue {background-color: rgba(204, 204, 204, 0.5);}*/
.hero-copy {
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.hero-copy .hero-cta h3 {
	color:var(--color-white);
	font-weight: 600;
	font-size: 2em;
	text-transform:capitalize;
	font-family: var(--copy_font);
}
/*
.hero-copy h1 {
	color: #2a2e30;
	font-size: 2.5em;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 200;
	text-shadow: 2px 3px 3px rgba(128, 128, 128, .5);
	line-height: 1.2em;
}
.hero-copy h1 span {font-weight: 200; letter-spacing: 10px;}
*/
.hero-inner .hero-cta, .hero-inner .opening {display: none;}
.hero-inner .hero-cta {  padding: 10px;}
.hero-cta p {
    font-size: 1.25em;
    color: var(--color-white-alt);
    line-height: 1.1em;
}
.hero-inner {padding: 2rem;  font-size: 1.25em; width: 60%; margin: 10px auto;}
.hero-inner p {color: var(--color-white);}

/*.landing-page .hero-block {
	background: url('../../assets/images/landing-hero-back.jpg') no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	padding-bottom: 250px;
}
.hero-bubble {
	position: relative;
	float: right;
	width: 40%;
	margin-right: 25px;
	padding: 2em 4em;
	background-color: rgba(244, 245, 247, 0.7);
}
.hero-bubble h1 {
	font-size: 2.5em;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 20px;
	font-weight: bold;
	color: var(--color-dk-blue);
}
.hero-bubble p {
	text-align: center;
	font-weight: 100;
	font-size: 1.375em;
	line-height: 1.1em;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-dk-blue);
}
.hero-bubble::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -4em;
	left: 3em;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0px 4em 4em 0px;
	border-color: transparent rgba(244, 245, 247, 0.7) transparent transparent;
}
*/
.landing-page section.odd { background-color: #f4f5f7; }
.landing-page .block .container {position: relative;}
.landing-page .block h1 {
	font-family: var(--copy_font);
	text-transform: capitalize;
	color: var(--color-dk-blue);
	letter-spacing: 1.2px;
	line-height: 1.3em;
	font-weight: 700;
	font-size: 25px;
}
.landing-page .block h1.heading-alt, h1.heading-alt {
	color: rgb(54, 54, 54);
	text-transform: capitalize;
	text-shadow: 2px 3px 3px rgba(128, 128, 128, .5);
	font-size: 3em;
	letter-spacing: 5px;
	font-family: var(--copy_font);
}
.landing-page .block5 .mask { background-color: rgba(241, 241, 241, 0.75); }
.landing-page .block7 .mask { background-color: rgba(241, 241, 241, 0.75); }
.landing-page .proof-points i {font-size: 4em;color: rgb(222, 142, 51);}
.landing-page .proof-points.rm-table .rm-table-row [class*="col-md-"] {vertical-align: top; }
.landing-page .more-indicator {display: none;}

.landing-page section .section-waved {display: none;}
.landing-page section:first-child .section-waved {display: block;}
.landing-page section:nth-last-child(1) .section-waved {display: block;}
.landing-page section:nth-last-child(1) {padding-top: 150px;}
.landing-page section:nth-last-child(1) .section-waved { top: 0; bottom: initial; }
.landing-page section:nth-last-child(1) .section-waved .shape-fill { fill: var(--color-white); }
.landing-page section:nth-last-child(1) .section-waved svg {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";

	-moz-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
	filter: FlipV;
	-ms-filter: "FlipV";
}
/*************
.landing-page section:first-child {
	--mask:
    	radial-gradient(22.36vw at 50% calc(100% - 30vw),#000 99%,#0000 101%) calc(50% - 20vw) 0/40vw 100%,
    	radial-gradient(22.36vw at 50% calc(100% + 20vw),#0000 99%,#000 101%) 50% calc(100% - 10vw)/40vw 100% repeat-x;
	-webkit-mask: var(--mask);
		mask: var(--mask);
	padding-bottom: 65%;
}
.landing-page section:last-child {
	--mask:
    	radial-gradient(22.36vw at 50% calc(100% - 30vw),#000 99%,#0000 101%) calc(50% - 20vw) 0/40vw 100%,
    	radial-gradient(22.36vw at 50% calc(100% + 20vw),#0000 99%,#000 101%) 50% calc(100% - 10vw)/40vw 100% repeat-x;
	-webkit-mask: var(--mask);
		mask: var(--mask);
	padding-bottom: 200px !important;
	background-color: var(--color-dk-blue);
}
************/


/* --- Inner Pages --- */
.inner-page-content .box { 	min-height: 375px; }
.inner-page-content.videos .box { min-height: 100%; }
.inner-page-content .box.upgrade { min-height: initial; }
.inner-page-content .box.upgrade .btn { padding: 4px 10px 4px; }
h1.inpage {
    text-align: center;
    text-transform: uppercase;
    font-size: 3em;
}
.page .inner-page-content .entry-meta {
	display: none;
}
.inner-page-content .featured-img, .featured-img {
	position: relative;
	width: 100%;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 35%;
}
.trip-flyer-page .featured-img {padding-bottom: 25%;}
.featured-img .page-header-image {
	background: none;
	top: initial;
	bottom: 20px !important;

}
.featured-img .article-source {text-align: center; color: rgb(238, 238, 238); font-weight: 200; }
.featured-img .page-header-image h1 { font-size: 2.5em; color: var(--color-white); text-align: left; margin: 0 auto; padding: 0;}
.featured-img .page-header-image h4 { text-transform: uppercase; color: #f4f5f7;}
.featured-img .image-heading {
	position: absolute;
	bottom: 20%;
	left: 5%;
	width: 90%;
	padding: 5%;
}
.trip-flyer-page .hero-image .image-heading {top: 0; bottom: 0; padding: 2.5% 5%;}
.featured-img .image-heading h1, .hero-image h1, .hero-image h2, .featured-img .image-heading h2 {
	color: var(--color-white);
	font-weight: 400;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 2.5px;
}
.trip-flyer-page .trip-tagline {
	color: var(--color-white-alt);
	text-align: center;
	margin-top: 4em;
	font-size: 1.5em;
	font-weight: 200;
}
.trip-flyer-page .hero-image .image-heading h1, .trip-flyer-page .hero-image .image-heading h2 {text-align: center;}
.hero-image .hero-img {object-fit: cover;}
.trip-flyer-page .hero-image .image-heading .header-trip-code {
	color: var(--color-white-alt);
	background-color: rgba(21, 21, 21, 0.85);
	padding: 5px 10px;
	width: fit-content;
	text-align: center;
	margin: 10px auto;
}
.featured-img .image-heading p, .hero-image .image-heading p {color: var(--color-white);}
.inside-page-header .hero-image {max-height: 500px; overflow: hidden;}
.inner-page .featured-img .hero-content {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 90px;
}
.inner-page .featured-img .hero-content .jumbotron {background-color: rgba(129, 126, 127, 0.3); color: var(--color-white); line-height: 1.25em;}
.inner-page .entry-content h1 {color: var(--color-dk-blue); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; padding-bottom: 10px; border: none;}
.inner-page .main-copy .hentry { margin: 0 auto; padding: 0; }
.inner-page ul li {margin-bottom: 10px;}
.inner-page .navbar ul li {margin-bottom: 0;}
.inner-page .page-header { 
	background-color: var(--color-orange);
	color: var(--color-white);
	margin: 0 auto; 
	padding: 20px 0;
}
.inner-page .page-header h1.entry-title {margin: 0 auto; padding: 0; text-align: left;}
.inner-page .inner-page-content article {margin-bottom: 0; padding-bottom: 0;}
.inner-page .innerpage-heading {
	text-align: center;
	background: var(--color-white);
	color: #222;
	padding: 5px;
	margin: -1.85em auto 0 auto;
	width: 40%;
	z-index: 99999;
	position: absolute;
	left: 0;
	right: 0;
}
.inner-page .innerpage-heading h1 {margin: 0; padding: 0; color: var(--color-dk-blue);}
.inner-page-content .more-indicator {display: none;}
.inner-page-content section.inner-pg-hero { padding: 0; }
.inner-pg-hero .container-fluid {padding :0;}
.inner-pg-hero .ip-copy {
	border-bottom: 25px solid #dce5eb;
	padding: 50px; 
	background: var(--color-dk-blue); 
	color: var(--color-white);
}
.inner-pg-hero .ip-copy .hero-content { padding: 60px 30px;}
.inner-pg-hero .ip-bgimg { 
	background-size: cover; 
	background-position: left top;
	background-repeat: no-repeat;
}
.inner-page-content.hero-image .featured-img h1, .inner-page-content.hero-image .featured-img h3, .inner-page-content.hero-image .featured-img p {color: var(--color-white);}
.inner-page-content.hero-image .featured-img p, .inner-page .featured-img .image-heading p {font-size: 1.2em; font-weight: 500; width: 60%;}
.inner-page header.primary-header .navbar {background-color: var(--color-white);}

.entry-header .standard-header {
	padding: 1.5rem 0;
	background-color: var(--color-orange);
	color: var(--color-white);
}
.entry-header .standard-header .entry-title {color: var(--color-white);}

/* --- Form Page --- */
.form-page .inner-page-content { padding-top: 0; }
.form-page .entry-content h3 {
	text-align: center;
	font-size: 16px;
}

/* --- Blog / Archive / Single --- */
.articles-wrap article .entry-footer {
	padding: 0;
	color: #e5e5e5;
	background: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;

}
.articles-wrap .hentry {border-bottom: 1px solid #4e4c54;}
.articles-wrap .hentry:last-child {border: none; }
.articles-wrap article .entry-footer .entry-meta #author-link {display: none;}
.articles-wrap article .entry-title {border: none; margin: 0 auto; padding: 0 0 20px 0; line-height: 1.1em}
.articles-wrap article .entry-title a {padding: 0;}
.articles-wrap article .entry-content {padding: 0;}
.sidebar-wrapper .entry-title {padding: 0 0 5px 0;}
.single-story {padding: 25px 0;}
.social-share div.sharedaddy h3.sd-title {float: left; border: medium none; margin: 10px 20px 0 0;}
.social-share div.sharedaddy h3.sd-title::before, .social-share div.sharedaddy::before, .social-share div.sharedaddy::after {border: none; content: none;}
.social-share {border-top: 1px solid rgb(238, 238, 238); border-bottom: 1px solid rgb(238, 238, 238); }
.more-stories {clear: both; padding: 20px 0;}
.more-stories .more-heading {
	padding-bottom: 20px;
	display: flex;
	align-items: center;
}
.more-stories .single-recent-story .story-featured-image, .blog-content article .post-image {
	width: 100%;
	height: 0px;
	overflow: hidden;
	padding-bottom: 56%;
    background-position: center;
    background-size: cover;
}
.more-stories .single-recent-story h1 {
	font-size: 1.0em;
	margin-top: 20px;
	font-weight: 400;
    letter-spacing: .5px;
}
.more-stories .single-recent-story .entry-content {padding: 10px 0;}
.more-heading .text {
	padding-top: 0px;
	padding-right: 0.25em;
	padding-bottom: 0px;
	padding-left: 0.25em;
	color: var(--color-dk-blue);
}
.single .navigation a span {font-size: 1em;}
.single .navigation .nav-links span.navicon {margin-top: 0;}
.nav-justified.icons {text-align: center; margin-top: 20px;}
.newsitem article h1.entry-title {
    border: none;
    padding: 0;
    font-size: 1.2em;
    margin-top: 0;
}
.newsitem article .entry-content {display: none;}
.newsitem article .news-footer .cat-links {float: right;}
.newsitem article {margin: 0 auto; padding: 0;}
.news-content .row {margin: 10px auto;}
.blog-content {padding: 50px 0 50px;}
.blog header.page-header-image h1.entry-title { text-align: center; }
.blog-articles .card {margin: 20px auto;}
.blog-articles .card:first-of-type {margin-top: 0;}
.landing-page .blog-articles .card { border: none; }
.blog-articles article .rm-table-row > div:first-child { background-color: var(--color-dk-blue); }
.blog-articles article .article-icon {text-align: center;}
.article-icon i { font-size: 3em; color: var(--color-white);}
.blog .entry-title, .blog .entry-title a { color: var(--color-dk-blue); }
.landing-page .blog-articles article h1 {margin-bottom: 0; color: var(--color-dk-blue);}
.landing-page .blog-articles article a {color: var(--color-dk-blue);}
.landing-page .blog-articles article a:hover {text-decoration: none; color: var(--color-dk-blue);}
.landing-page .blog-articles article .entry-content {background: none; padding-left: 0;}
.blog-content article h1.entry-title {
    margin: 0 auto 20px;
    padding: 0;
    font-size: 1.5em; 
    line-height: 1.2em;
    letter-spacing: 1px;
    border: none;
}
.blog-content article {text-align: center; color: var(--color-dk-blue); margin: 0 auto; padding: 0;}
.blog-content article .post-image {margin-bottom: 20px;}
.blog-content article .entry-content {margin: 0 auto; padding: 0;}
.blog-content article .entry-content h3 {
    color: var(--color-dk-blue);
    font-size: .8em;
    line-height: 1.2em;
    margin: 0 auto 10px;
}
.blog-content article .article-footer {margin-bottom: 20px;}
.blog-content .primary-sidebar .widget ul {padding-left: 15px;}
.blog-content .primary-sidebar .widget ul li {line-height: 1em; margin-bottom: 5px;}
.blog-content .primary-sidebar .widget ul li a {font-size: 12px !important; color: var(--color-dk-blue);}
.blog-content .primary-sidebar .widget .widget-title {text-align: left;}
.archive.inner-page .page-header,
.blog.inner-page .page-header {background-color: var(--color-white); padding: 0; width: 100%; margin-top: 25px;}
.archive.inner-page .page-header h1.entry-title,
.blog.inner-page .page-header h1.entry-title {background: var(--color-dk-blue); width: 40%; padding: 10px 0; text-transform: uppercase; text-align: center;}
.archive.inner-page .inner-pg-nav .nav,
.blog.inner-page .inner-pg-nav .nav {margin-top: 0;}
.page-header h1.entry-title .smallcaps {letter-spacing: 1px; text-transform: initial; }
.single-post .featured-img, .single-press .featured-img {
    overflow: hidden; 
    max-height: 540px;
    max-height: 540px;
    width: 100%;
    padding-bottom: 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.single-recent-story a button {
    position: absolute;
    top: 35%;
    left: 30px;
    right: 30px;
    margin: 0 auto;
    opacity: 0;
}
.single-recent-story .story-featured-image .mask {opacity: 0; background-color: rgba(8, 60, 93, 0.8);}
.single-recent-story .story-featured-image {position: relative;}
.single-recent-story a:hover button,
.single-recent-story a:hover .mask {
    opacity: 1;
    -webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
}
.blog-articles article .article-image {overflow: hidden;}
.blog-articles article .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	aspect-ratio: 1/1;
	transition: all .5s ease-in;
	display: flex;
}
.blog-articles article:hover .article-image img {
	transform: scale(1.2);
	transition: all .5s;
}
.blog-articles article .story-box {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.blog-articles article .story-box .article-content {
	padding: 20px;
	background-color: #282a2b;
	color: var(--color-white);
}
.blog-articles article .story-box .article-content h3 {
	color: var(--color-white);
	font-size: 1em;
	text-transform: uppercase;
	line-height: 1.2em;
	height: 2.5em;
}
.single-story .card, .more-stories .card {background-color: #d5d5d5;}
.single-story article h3 {font-size: 1.2em; line-height: 1.2em; font-weight: 600;}
.single-story .social-share {display: none;}

/* --- Team Page --- */
.team-bio {font-size: .8em; line-height: 1.5em; background: none; border: none;}
.team-bio ul {padding-left: 0;}
.individual-team.card {background: var(--color-white-alt); padding: 0px; overflow: hidden;}
.team-members .individual-team h3 {color: var(--color-dk-blue); font-size: 1.25em; margin: 0 auto; padding: 10px 0; line-height: 1em;}
.individual-team .team-title h4 {padding: 0 0 10px 0; margin: 0px auto; color: rgb(51, 51, 51); text-transform: capitalize; font-size: 16px; line-height: 1.2em;}
.individual-team .connect-meta a {margin: 0 2.5px;}
.individual-team .connect-meta a:first-child {margin-left: 0;}
.individual-team .connect-meta a:last-child {margin-right: 0;}
.individual-team .team-pic img {width: 100%;}
.team-members .team-pic {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}
.team-page .inner-page-content section {padding: 25px 0; }
.team-members h1.heading-alt {border-bottom: 1px solid rgb(187, 187, 187); padding-bottom: 10px; margin-bottom: 20px; }
.team-members .row {margin: 10px auto;}
.bio-links .btn-custom { text-transform: none; min-width: 175px;}
.bio-links .btn-custom p { clear: both; width: 100%; margin: 10px auto;}
.bio-links i {margin-right: 10px;}
.staff-page .featured-img {text-align: center;}
body.single-team {background-color: var(--color-white-alt) !important;}

/* --- Glossary Page --- */
.glossary-item { padding: 10px 0; border-bottom: 1px solid #bbb; }
.glossary-section.active {
	display: block;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}
.glossary-section.inactive {
	display: none;
	-webkit-transition: all 275ms;
	-moz-transition: all 275ms;
	-o-transition: all 275ms;
	transition: all 275ms;
}

/* --- Story Page --- */
.our-story .featured-image {margin-top: -200px;}

/* --- Access Page --- */
.access .more-indicator {display: none;}
.access .inner-page-content section {padding: 10px 0;}

/* --- Page Data (Generic) --- */
.page-data article { padding: 0;}
.page-data article .page-summary {text-align: left; padding: 2.5em; min-height: 250px;}
.page-data article .text {background: #f6f9fc; color: var(--color-dk-blue);}
.page-data article .image {background-size: cover !important; background-position: center !important; }
.page-data article .page-image { margin: 0 -15px;  }
.page-data article .page-summary h2 {color: var(--color-dk-blue);}
.page-data article .page-summary a.btn-clear {
	background: 0 0;
    color: var(--color-dk-blue);
    border-color: var(--color-dk-blue);
	font-size: .85em;
}
.page-data article .page-summary a.btn-clear:hover { background-color: var(--color-dk-blue); color: var(--color-white); }

/* --- Country Page --- */
.country-page .country-single-article {margin-bottom: 0; padding-bottom: 0;}
.country-impact-content h2 {margin-top: 10px;}
.country-page h1 {font-size: 2.5rem;}
.country-page .country-stats-bar h2 {
	font-size: 2.5em;
	color: var(--color-dark);
}
.country-page .country-stats-bar h4 {font-size: 18px;}
.country-page .card, .card.img-card, .country-programs-widget .card.program-card {padding: 0; overflow: hidden; border: none;}
.country-page .card .card-body, .card.img-card .card-body, .country-programs-widget .card.program-card .card-body {padding: 36px;}
.country-programs .card .card-hero {
	position: relative;
	height: 0;
	overflow: hidden;
	width: 100%;
	padding-bottom: 60%;
}
.country-programs .card .card-hero .fa-stack {
	position: absolute;
	top: 10px;
	right: 10px;
}
.country-programs .card .service-footer {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
	color: var(--color-orange);
}
.country-programs .card .card-footer {
	border: none;
	background: initial;
	padding: 0 35px;
	color: var(--color-orange);
}
.country-programs .card .card-title {font-size: 22px; text-align: center;}

/* --- Contact Page --- */
.contact-icon {float: left; width: 20%;}
.contact-details {float: left; width: 80%;}
.contact-item {margin-bottom: 10px; display: inline-block; width: 100%; color: var(--color-dk-blue);}
a.contact-link:hover .contact-item {color: #373737;}

/* --- Sidebar --- */
.primary-sidebar .widget-title {
    text-align: left;
    font-size: 1.25em;
    text-transform: uppercase;
}
.primary-sidebar .widget ul {padding-left: 15px;}
.primary-sidebar .widget ul li {margin-bottom: 2.5px;}
.primary-sidebar .widget ul li a {text-transform: capitalize;}
.primary-sidebar .widget ul.rm_widget {list-style: none !important;}

/* --- Misc Page Elements --- */
#error.item {
	color: var(--color-white);
	background: #f89406;
}
.error {
	width: 95%;
	background-color: #B81900;
	border: 2px solid #BE2E17;
	color: white;
	font-size: 14px;
	margin: 0;
	margin-bottom: 20px;
	padding: 5px 2.5%;
}
.showtip {
	position: absolute;
	top: 0;
	right: 0;
}
.newline { 	clear: both;  }
.hero {
	position: relative;
	padding: 20px;
	text-align: center;
	width: 60%;
	margin: 0 auto;
}
.hero h3 {font-weight: 900;}
.hero p {font-size: 2em; line-height: 1.3em;}
.key-points {
	background-color: rgba(0, 63, 41, 0.05);
	color: var(--color-dk-blue);
	padding-top: 80px;
}
.source-name {margin-top: 10px; font-weight: 600;}
ul.white {color: var(--color-white)fff;}
.cta-bg-block {background-size: cover !important;}
.cta-block > div, .cta-block .bg-fixed {background-attachment: initial !important; background-size: cover !important; background-repeat: no-repeat;} 
.cta-block .rm-table-row .col-md-3 {padding:0; }
.cta-block .bg-image {padding-bottom: 40%; position: relative;}
.cta-block .bg-image h1 {color: var(--color-white); position: absolute; top: 40%; left: 25px;}
.page-header h4 {color: var(--color-dk-blue);}
.page-title {color: var(--color-white);}

/* ===================================================================
 * UTILITY CLASSES
 * =================================================================== */

.center { text-align: center; }
.left { float: left; }
.right { float: right; }
.bottom-border {border-bottom: 2px solid; padding-bottom: 10px; margin-bottom: 10px; }
.padtop20 {padding-top: 20px;}
.padtop50 {padding-top: 50px;}
.text.left {text-align: left !important;}
.text.right {text-align: right !important;}
.text.center {text-align: center !important;}
.text.white { color: var(--color-white)fff !important;}
.text.dark {color: #333333 !important;}
.pcolor {color: #1f48a0 !important;}
.btn-clear.white {color: var(--color-white); border-color: var(--color-white);}
.mt-5 {margin-top: 5px !important;}
.mt-10 {margin-top: 10px !important;}
.mt-25 {margin-top: 25px !important;}
.mt-50 {margin-top: 50px !important;}
.mb-5 {margin-bottom: 5px !important;}
.mb-10 {margin-bottom: 10px !important;}
.mb-25 {margin-bottom: 25px !important;}
.mb-50 {margin-bottom: 50px !important;}
.pt-5 {padding-top: 5px !important;}
.pt-10 {padding-top: 10px !important;}
.pt-25 {padding-top: 25px !important;}
.pt-50 {padding-top: 50px !important;}
.pad-100 {padding: 100px 0;}
.mr-5 {margin-right: 5px;}
.mr-10 {margin-right: 10px;}
.mr-20 {margin-right: 20px;}
.ml-5 {margin-left: 5px;}
.ml-10 {margin-left: 10px;}
.ml-20 {margin-left: 20px;}
.block-cta, .rm-block-has-bg-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 10% 0 !important;
}
.individual-team .connect-item.contact {display: none;}
h1.color-white, h3.color-white, p.color-white, .color-white { color: var(--color-white) !important; }
h1.color-blue, h3.color-blue, p.color-blue, .color-blue { color: var(--color-dk-blue) !important; }
h1.color-orange, h3.color-orange, p.color-orange, .color-orange { color: var(--color-orange) !important; }
h1.color-ltblue, h3.color-ltblue, p.color-ltblue, .color-ltblue { color: var(--color-oo-ltBlue) !important; }
h1.color-ltorange, h3.color-ltorange, p.color-ltorange, .color-ltorange { color: var(--color-dark) !important; }
.color-white-75 { color: rgba(255, 255, 255, .75) !important; }
.text-left {text-align: left !important;}
.text-right {text-align: right !important;}
.text-center {text-align: center !important;}
.text-p2, .text-p2 p, .text-p2 h2, .text-p2 h3 {font-size: 1.3em; line-height: 1.2em;}
.bg-orange {background-color: #ce7046; color: var(--color-white); }
.bg-skyblue {background-color: #e2f2fa; color: #333; }
.bg-believerblue {background-color: #abc2ca; color: var(--color-white); }
.bg-ooblue {background-color: var(--color-dk-blue); color: var(--color-white); }
.bg-white-alt {background-color: var(--color-white-alt);}
.font-stnd {font-style: normal !important;}
span.focus { font-weight: 600; border-bottom: 2px solid; }
.color-white-10 { color: RGBA(255, 255, 255, .1); }
.color-orange-10 { color: RGBA(194, 116, 79, .1); }
ul.hlist {margin-bottom: 25px;}
.hlist li:first-child a {margin-left: 0;}
.hlist li:last-child a {margin-right: 0;}
.hlist li a {margin: 0 5px; border: 1px solid;}
.hlist li a:hover {background-color: var(--color-dk-blue); color: var(--color-white); border-color: #ddd;}
.input-progress {
	clear: both;
	width: 70%;
	margin: 10px 15%;
}
.input-progress .bar,
.input-progress .progress {
	text-transform: uppercase;
	height: auto;
}
.text-2xl {font-size: 2em; line-height: 1.3em; }
.text-4xl {font-size: 3em; line-height: 1.3em; }  
.text-sm {font-size: .875em; line-height: 1.3em; }
.text-xs {font-size: .75em; line-height: 1.2em;}
.text-xl {font-size: 1.5em; line-height: 1.3em; }
.text-lg {font-size: 1.25em; line-height: 1.3em;}
.max-w-3xl {max-width: 60%; margin: 10px auto;}
.max-w-4xl { max-width: 80%; margin: 10px auto; }
.max-w-7xl { max-width: 90%; margin: 10px auto; }
.pad-lg {padding: 40px;}
.rounded-2xl {border-radius: 1rem; overflow: hidden;}
.rounded-xl {border-radius: .75rem; overflow: hidden;}
.rounded {overflow: hidden;}
.shadow-xl {
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px;
}
.shadow {
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px;
}
.oo-bullets {
	font-size: 1.5em;
	line-height: 1.3em;
}
.oo-bullets li::marker {color: var(--color-orange); }

.cover-image img {
	object-fit: cover;
	width: 100%;
	height: 90%;
	margin-top: 5%;
}


/* ===================================================================
 * HTML5 VIDEO BACKGROUND
 * =================================================================== */

.video-hero {
	position: relative;
	overflow: hidden;
}
.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    	background-size: cover;
}
.video-bg video {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    	transform: translate(-50%,-50%);
}
	/**
	 * For full-screen video backgrounds, add the
	 * .video-bg--fullscreen class to .video-bg div
	 */
	.video-bg--fullscreen {
		position: fixed;
	}
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	pointer-events: none; /* Allows right click menu on the video */
	background: rgba(0,0,0,0.5); /* You can play with the opacity */
}
/**
 * This part should be set separately for each video
 * if there are multiple videos in your site.
 * I.e. '.demo-video' is the name of the video
 */
.video-bg.demo-video {
	background-image: url(files/busy-new-york-intersection.jpg);
}
/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */
.js .video-bg video {
	opacity: 0;
	-webkit-transition: opacity .8s linear;
	   -moz-transition: opacity .8s linear;
	    	transition: opacity .8s linear;
}
.js .video-bg video.is-playing {
	opacity: 1;
}

/* ===================================================================
 * ANIMATIONS
 * =================================================================== */

.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
} 

@-webkit-keyframes bounce {
  0%, 20%, 40%, 60%, 80%, 100% {-webkit-transform: translateY(0);}
  50% {-webkit-transform: translateY(-5px);}
} 

@keyframes bounce { 
  0%, 20%, 40%, 60%, 80%, 100% {transform: translateY(0);}
  50% {transform: translateY(-5px);}
} 

.bounce { 
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

/* ===================================================================
 * RESPONSIVE STYLES
 * =================================================================== */

.sitelogo img.home-mobile {
	display: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

.mobile-cta {
    display: none;
    background: var(--color-dk-blue);
    color: var(--color-white);
}
.mobile-cta p {color: var(--color-white); font-size: .9em;}
.mobile-cta h1.opening {display: none;}

button.navbar-toggler {background-color: var(--color-white);}
.top-menu .navbar-header {display: flex; margin-left: auto; justify-content: space-between;}
body.mobile .top-menu .nav {display: inline-block;}
.navbar-toggler > i {
    -webkit-transition: all ease-in-out;
	-moz-transition: all ease-in-out;
	-o-transition: all ease-in-out;
	-ms-transition: all ease-in-out;
	transition: all ease-in-out;
}
.navbar-toggler.collapsed i.menu-close {display: none;}
.navbar-toggler.collapsed i.menu-open {display: block;}
.navbar-toggler i.menu-open {display: none;}
.navbar-toggler i.menu-close {display: block;}
.top-menu .navbar-header {margin-top: -55px;}

.mobile, .tablet, .for-mobile-use {display: none !important;}

@media (max-width:481px) {
	.for-mobile-use {display: flex !important;}
	.for-mobile-hide {display: none;}
	.list-group-item.justify-content-between span:last-of-type {text-align: right;}
	div[class^="col-md"] {margin: 10px auto;}
	.max-w-3xl, .max-w-4xl {width: 100%; max-width: 100%;}
	.section-waved svg {height: 40px;}
	.text-lg {font-size: 1.3em;}
	.hero {width: 100%; padding: 10px;}
	.mobile {display: block !important;}
	.blog-content {margin-top: 25px;}
	.blog-articles .row > div {margin: 10px auto;}
	.blog .featured-img img {margin-top: 0 !important;}
	.contact-items {margin-top: 20px;}
	.home .landing-page .hero-block { background-position-y: 0px !important; padding-bottom: 55vh !important;}
	.hero-inner {padding: 10px !important; margin: 0 auto;}
	header .navbar .navbar-brand img {max-width: 150px; width: 150px;}
	.home .featured-img, .inner-page .featured-img {padding-bottom: 60% !important;}
	.featured-img .image-heading {padding: 0; left: 0; width: 100%; bottom: 0;}
	.featured-img .image-heading p {width: 100% !important;}
	.inner-page .navbar .nav > li > a {color: var(--color-dk-blue);}
	#topMenu {background-color: #e4e5e7 !important;}
	header.primary-header .navbar .nav {background-color: var(--color-white-alt);}
	body.home header.primary-header .standard .navbar .nav > li > a, body.home header.primary-header .shrink .navbar .nav > li > a {color: var(--color-dk-blue);}
	.hero-inner {width: 100%; padding: 0;}
	.hero-inner p {font-size: 16px; line-height: 1.2em; text-align: center;}
	.sitelogo img.home-mobile {display: table-cell;}
	.sitelogo img.home, .site-logo img.home-shrink {display: none;}
	.mt_m-25 {margin-top: 25px;}
	.item .slide-caption {width: 75%;}
	.item .slide-caption h1 {font-size: 1em !important;}
	.carousel-indicators { bottom: -15px; }
	.inner-page-content .featured-img {padding-bottom: 30%;}
	.inner-page-content.hero-image .featured-img h1 {font-size: 25px;}
	.inner-page-content.hero-image .featured-img p {font-size: 1em; line-height: 1.1em;}
	.block.block-cta {background-attachment: initial;}
	.home-page #s-3 {background-attachment: initial;}
    .blog-content {padding-top: 0;}
    .featured-box .featured-title { top: -43px;}
    .inner-pg-hero .ip-copy {padding: 20px;}
    .blog-articles article .rm-table-row > div:first-child {padding: 20px 0; margin: 10px auto;}
    .landing-page .block3 h1 {margin-top: 0 !important;}
    .landing-page .hero-block {margin-top: 0;  background-size: contain !important;}
	.landing-page .hero-block h1 {letter-spacing: 1px;}
    .landing-page .hero-block .video-bg {display: none;}
	.page-data article .image {
		background-size: cover !important;
		background-position: center top !important;
	  }
    .mobile-cta {display: block;}
    .landing-page .hero-block .hero-copy {margin: 150px 0 0px; padding: 10px 10px 105px 10px; background-color: #ce7046; position: relative; text-align: center;}
    .landing-page .hero-block .hero-copy, .featured-img .page-header-image {top: 10%;}
    .landing-page .block2 .feature-boxes {margin-top: 0 !important;}
    .featured-img .page-header-image h1, h1 {font-size: 1.5em;}
    .hero-inner h1 {font-size: 2em !important;}
    .footer-wrap .border-left {border: none;}
    .card {margin: 10px auto;}
	#SiteFooter { overflow: auto; height: auto;  margin-top: 0px; }
	footer { margin-top: 0; }
	header { padding: 0; }
	#page { height: auto; }
	.copyright { padding: 5px; }
	#nav { bottom: initial; top: 20px; }
	.navbar .nav > li {margin: 10px auto;}
	.navbar .nav > li > a { margin: 5px auto; }
	.inner-page .innerpage-heading, .archive.inner-page .page-header h1.entry-title, .blog.inner-page .page-header h1.entry-title, .inner-page .page-header {width: 90%;}
/*	.sitelogo { float: left; width: 150px; margin-right: 10px; } */
	.site-name h1 { display: none; }
	.footer-wrap .right, .footer-wrap .left { 	text-align: center;  float: none; }
	.social {  float: none;  display: inline-block; }
	.footer-wrap .social { margin: 10px auto; }
	#gform_wrapper_3 {  float: none; }
	.sticky-header .social-assets {display: none; }
	.rm-table, .rm-table .rm-table-row {display: block;}
   /* .rm-table .rm-table-row [class^="col-"] {display: table-cell;}*/
    .rm-table .rm-table-row [class*="col-md-"] {display: block ;}
    .footer-menus .row [class*="col-md-"] { margin: 5px auto; }
	.sticky-header {background-color: var(--color-white)fff; position: relative;}
/*	.sticky-header .nav-menu {display: inline-block; width: 100%; margin-top: -75px;} */
	.navbar-default .navbar-collapse {border: none;}
	.landing-page .hero-block .hero-bg {margin-top: 0;}
	.hero-copy {font-size: .5em;}
	#hero-sub-nav .btn-cta { padding: 5px 10px; font-size: 10px; }
	#hero-sub-nav h2 {font-size: 12px; letter-spacing: 0px;}
	.home-page section {padding: 25px 0; }
	.landing-page h1.tagline {width: 100%; font-size: 1.25em;}
	.page-bottom .col-md-4:last-child,.page-bottom .col-md-4:last-child h3, .page-bottom .col-md-4:last-child h1 {text-align: center;}
	.nobullets {padding: 0;}
    #secondary {padding-top: 25px;}
	.inner-page .entry-content {padding-top: 0;}
	.inner-page .entry-content h1 {font-weight: 400; font-size: 1.25em;}
	section article.hentry {padding-bottom: 0; margin-bottom: 0;}
	section .entry-content {padding-bottom: 0;}
	.product-screenshot .feature-highlights li {width: 25px; padding: 0; font-size: .7em;}
	.product-screenshot.service .feature-highlights .fh-two { bottom: 38%; left: 10%; }
	.inner-page .featured-img .hero-content {position: initial;}
	.inner-page .featured-img .hero-content .jumbotron {font-size: 1em; position: relative;}
	.sticky-header .nav-menu .mobile {display: table-cell;}
	.single-opportunity .deal-logo {float: right; width: 150px; height: 150px; padding: 0; margin-top: -300px;}
    .page-data article .image {
        width: 100%;
        height: 0;
        overflow: hidden;
        padding-bottom: 50%;
    }
    .page-data article .page-summary {padding: 10px;}
    .page-data article {margin: 10px auto;}
    .footer-wrap [class*="col-md-"] {text-align: center;}
    .footer-logo img {max-width: 75px;}
}

@media (min-width:482px) and (max-width:768px) {
	.tablet {display: block !important;}
	#SiteFooter { overflow: auto; height: auto;  margin-top: 0px; }
	footer { margin-top: 0; }
	header { padding: 0; }
	#main { padding-bottom: 0; 	padding-top: 0px; }
	#page { height: auto; }
	.copyright { padding: 5px; }
	#nav { bottom: initial; top: 20px; }
	.navbar .nav > li > a { margin: 5px auto; }
	.sitelogo { float: left; width: 150px; margin-right: 10px; }
	.site-name h1 { display: none; }
	.footer-wrap .right, .footer-wrap .left { 	text-align: center;  float: none; }
	.social {  float: none;  display: inline-block; }
	.footer-wrap .social { margin: 10px auto; }
	#gform_wrapper_3 {  float: none; }
	.sticky-header .social-assets {display: none; }
	.rm-table, .rm-table .rm-table-row {display: block;}
	.rm-table .rm-table-row [class*="col-md-"] {display: block;}
	.sticky-header {background-color: var(--color-dk-blue); position: relative;}
	.sticky-header .nav-menu {display: inline-block; width: 100%; margin-top: -75px;}
	.navbar-default .navbar-collapse {border: none;}
	.landing-page .hero-block .hero-bg {margin-top: 0;}
	.hero-copy {font-size: .5em;}
	#hero-sub-nav .btn-cta { padding: 5px 10px; font-size: 10px; }
	#hero-sub-nav h2 {font-size: 12px; letter-spacing: 0px;}
	.home-page section {padding: 25px 0; }
	.landing-page h1.tagline {width: 100%; font-size: 1.25em;}
	.page-bottom .col-md-4:last-child,.page-bottom .col-md-4:last-child h3, .page-bottom .col-md-4:last-child h1 {text-align: center;}
	.nobullets {padding: 0;}
	.inner-page .page-header {padding-bottom: 0;}
	.inner-page .entry-content {padding-top: 0;}
	.inner-page .entry-content h1 {font-weight: 400; font-size: 1.25em;}
	section article.hentry {padding-bottom: 0; margin-bottom: 0;}
	section .entry-content {padding-bottom: 0;}
	.product-screenshot .feature-highlights li {width: 25px; padding: 0; font-size: .7em;}
	.product-screenshot.service .feature-highlights .fh-two { bottom: 38%; left: 10%; }
	.landing-page .hero-block .hero-bg {padding-bottom: 28%;}
	.hero-copy {bottom: 20%;}
	.hero-block .hero-bg img {margin-top: -130px;}
	.inner-page .featured-img .hero-content .jumbotron {font-size: 1em;}
	.sticky-header .nav-menu .mobile {display: table-cell;}
	.single-opportunity .deal-logo {float: right; width: 150px; height: 150px; padding: 0; margin-top: -275px;}
}

@media (min-width:769px) and (max-width:980px) {
	.navbar .nav > li > a { margin: 2.5px; padding: 0px; font-size: 10px; }
	.landing-page .hero-block .hero-bg {padding-bottom: 75%; }
	.sitelogo img {width: 45%;}
	.top-menu .rm-table .rm-table-row .col-md-2 {width: 40%;}
	.hero-copy {font-size: .9em;}
	h1.tagline {width: 100%;}
	#main {padding-top: 128px;}
	.jumbotron {padding: 20px; font-size: 1.25em;}
	/* .post-date {position: initial;} */ /* This was commented out, I kept it commented */
	#SiteFooter { overflow: auto; height: auto;  margin-top: 0px; }
	footer { margin-top: 0; }
	.footer-wrap .right, .footer-wrap .left { 	text-align: center;  float: none; }
	.social {  float: none;  display: inline-block; }
	.footer-wrap .social { margin: 10px auto; }
	#main {padding-bottom: 0;}
	.page-bottom .col-md-4:last-child,.page-bottom .col-md-4:last-child h3, .page-bottom .col-md-4:last-child h1 {text-align: center;}
	.nobullets {padding: 0;}
}

@media (min-width:482px) and (max-width:767px) {}

@media (min-width:482px) and (max-width:979px) {}

@media (min-width:768px) and (max-width:979px) {}

@media (min-width:1200px) {
	.hero-bubble h1 { font-size: 3em; }
	.country-name {font-size: 1.1rem;}
}

@media (min-width:1500px) {

}