<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =================================================================== 
 *
 *  Dazzle v1.0 Main Stylesheet
 *  04-27-2017
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography &amp; general theme styles
 *  04. preloader
 *  05. forms
 *  06. buttons
 *  07. other components
 *  08. common and reusable theme styles
 *  09. header styles
 *  10. home
 *  11. about
 *  12. metrics 
 *  13. testimonials
 *  14. download
 *  15. footer styles
 *
 * =================================================================== */
/* ===================================================================
 *  01. webfonts and iconfonts - (_document-setup)
 *
 * ------------------------------------------------------------------- */
@import url("font-awesome/css/font-awesome.min.css");
@import url("micons/micons.css");
@import url("fonts.css");
/* ===================================================================
 *  02. base style overrides - (_document-setup)
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 9.375px;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (max-width: 400px) {
  html {
    font-size: 9.375px;
  }
}
html, body {
  height: 100%;
}
body {
  background: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 1.65;
  color: #555555;
  margin: 0;
  padding: 0;
}
/* ------------------------------------------------------------------- 
 * links - (_document-setup) 
 * ------------------------------------------------------------------- */
a, a:visited {
  color: #0087cc;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  color: #0087cc;
}
/* ===================================================================
 *  03. typography &amp; general theme styles - (_document-setup.scss) 
 *
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h01, .h02, .h03, .h04, .h05, .h06 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #151515;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-bottom: 3.5rem;
}
#start-grow h2, #marketing h2 {
  margin-bottom: 2rem;
  color: #00274c;
	margin-top: 35px;
	font-weight: 400;
  font-size: 2.4rem;
}
#start-grow h4.white, #marketing h4.white, #start-grow ul li.white, #marketing ul li.white {
  color:#ffffff;
}
h5, .h05, h6, .h06 {
  margin-bottom: 1.2rem;
}
h1, .h01 {
  font-size: 3.1rem;
  line-height: 1.35;
  letter-spacing: -.1rem;
}
@media only screen and (max-width: 600px) {
  h1, .h01 {
    font-size: 2.6rem;
    letter-spacing: -.07rem;
  }
}
h2, .h02 {
  font-size: 2.4rem;
  line-height: 1.25;
}
h3, .h03 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
}
h4, .h04 {
  font-size: 1.7rem;
  line-height: 1.76;
}
h5, .h05 {
  font-size: 1.4rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: .2rem;
}
h6, .h06 {
  font-size: 1.3rem;
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: .2rem;
}
p img {
  margin: 0;
}
p.lead, ul.lead {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 2rem;
}
#about p.lead, #about ul.lead {
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  p.lead {
    font-size: 2rem;
  }
}
small {
  font-size: 1.1rem;
  line-height: inherit;
}
blockquote {
  margin: 3rem 0;
  padding-left: 5rem;
  position: relative;
}
blockquote:before {
  content: "\201C";
  font-size: 10rem;
  line-height: 0px;
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  font-family: arial, sans-serif;
  position: absolute;
  top: 3.6rem;
  left: 0;
}
blockquote p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  padding: 0;
  font-size: 1.9rem;
  line-height: 1.895;
}
blockquote cite {
  display: block;
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.615;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a, blockquote cite a:visited {
  color: #838383;
  border: none;
}
abbr {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .05rem;
  color: #838383;
}
var, kbd, samp, code, pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}
pre {
  padding: 2.4rem 3rem 3rem;
  background: #F1F1F1;
}
code {
  font-size: 1.4rem;
  margin: 0 .2rem;
  padding: .3rem .6rem;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 3px;
}
pre &gt; code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}
pre.prettyprint &gt; code {
  border: none;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}
mark {
  background: #FFF49B;
  color: #000;
}
hr {
  border: solid rgba(0, 0, 0, 0.1);
  border-width: 1px 0 0;
  clear: both;
  margin: 2.4rem 0 1.5rem;
  height: 0;
}
/* ------------------------------------------------------------------- 
 * Lists - (_document-setup.scss)  
 * ------------------------------------------------------------------- */
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}
li {
  display: list-item;
}
ol, ul {
  margin-left: 1.7rem;
}
ul li {
  padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
  margin: .6rem 0 .6rem 1.7rem;
}
ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
}
ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0087cc;
  position: absolute;
  left: -17px;
  top: 11px;
  vertical-align: middle;
}
dt {
  margin: 0;
  color: #0087cc;
}
dd {
  margin: 0 0 0 2rem;
}
/* ------------------------------------------------------------------- 
 * Spacing - (_document-setup)  
 * ------------------------------------------------------------------- */
button, .button {
  margin-bottom: 1.2rem;
}
fieldset {
  margin-bottom: 1.5rem;
}
input, textarea, select, pre, blockquote, figure, table, p, ul, ol, dl, form, .fluid-video-wrapper, .ss-custom-select {
  margin-bottom: 3rem;
}
/* ------------------------------------------------------------------- 
 * floated image - (_document-setup)  
 * ------------------------------------------------------------------- */
img.pull-right {
  margin: 1.5rem 0 0 3rem;
}
img.pull-left {
  margin: 1.5rem 3rem 0 0;
}
/* ------------------------------------------------------------------- 
 * block grids paddings
 * ------------------------------------------------------------------- */
.bgrid {
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .bgrid {
    padding: 0 18px;
  }
}
@media only screen and (max-width: 768px) {
  .bgrid {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
  .bgrid {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 400px) {
  .bgrid {
    padding: 0;
  }
}
/* ------------------------------------------------------------------- 
 * tables - (_document-setup.scss)  
 * ------------------------------------------------------------------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Roboto Condensed", sans-serif;
}
th, td {
  padding: 1.5rem 3rem;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
}
th {
  color: #151515;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
td {
  line-height: 1.5;
}
th:first-child, td:first-child {
  padding-left: 0;
}
th:last-child, td:last-child {
  padding-right: 0;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* ------------------------------------------------------------------- 
 * pace.js styles - center simple  - (_document-setup.scss)
 * ------------------------------------------------------------------- */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 150px;
  background: #dedede;
  overflow: hidden;
}
.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 150px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #0087cc;
}
.pace.pace-inactive {
  display: none;
}
.oldie .pace {
  display: none;
}
/* ===================================================================
 *  04. preloader - (_preloader-blank.scss)
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 800;
  height: 100%;
  width: 100%;
}
.no-js #preloader, .oldie #preloader {
  display: none;
}
/* ===================================================================
 *  05. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- */
fieldset {
  border: none;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
  display: block;
  height: 6rem;
  padding: 1.5rem 2rem;
  border: 0;
  outline: none;
  color: #333333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 3rem;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.ss-custom-select {
  position: relative;
  padding: 0;
}
.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}
.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}
.ss-custom-select select::-ms-expand {
  display: none;
}
.ss-custom-select::after {
  content: '\f0d7';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -10px;
  bottom: auto;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  text-align: center;
  pointer-events: none;
  color: #252525;
}
/* IE9 and below */
.oldie .ss-custom-select::after {
  display: none;
}
textarea {
  min-height: 25rem;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  color: #000000;
}
label, legend {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: .6rem;
  color: #151515;
  display: block;
}
input[type="checkbox"], input[type="radio"] {
  display: inline;
}
label &gt; .label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: inherit;
}
label &gt; input[type="checkbox"], label &gt; input[type="radio"] {
  margin: 0;
  position: relative;
  top: .15rem;
}
/* ------------------------------------------------------------------- 
 * Style Placeholder Text - (_forms.scss)
 * ------------------------------------------------------------------- */ ::-webkit-input-placeholder {
  color: #838383;
}
:-moz-placeholder {
  color: #838383;
  /* Firefox 18- */
}
::-moz-placeholder {
  color: #838383;
  /* Firefox 19+ */
}
:-ms-input-placeholder {
  color: #838383;
}
.placeholder {
  color: #838383 !important;
}
/* ------------------------------------------------------------------- 
 * Change Autocomplete styles in Chrome - (_forms.scss)
 * ------------------------------------------------------------------- */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus input:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #57ca67;
  transition: background-color 5000s ease-in-out 0s;
}
/* ===================================================================
 *  06. buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  height: 5.4rem;
  line-height: calc(5.4rem - .6rem);
  padding: 0 3rem;
  margin: 0 .3rem 1.2rem 0;
  color: #222222;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #c5c5c5;
  border: .3rem solid #c5c5c5;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  background-color: #b8b8b8;
  border-color: #b8b8b8;
  color: #000000;
  outline: 0;
}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  background-color: #0087cc;
  border-color: #0087cc;
  color: #FFFFFF;
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  background: #00274C;
  border-color: #00274C;
}
button.full-width, .button.full-width {
  width: 100%;
  margin-right: 0;
}
button.medium, .button.medium {
  height: 5.7rem !important;
  line-height: calc(5.7rem - .6rem) !important;
}
button.large, .button.large {
  height: 6rem !important;
  line-height: calc(6rem - .6rem) !important;
}
button.stroke, .button.stroke {
  background: transparent !important;
  color: #a5a5a5 !important;
}
button.stroke:hover, .button.stroke:hover {
  border: 0.3rem solid #0087cc;
  color: #0087cc;
}
button.pill, .button.pill {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
  border-radius: 1000px;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* ===================================================================
 *  07. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- 
 * alert box - (_alert-box.scss)
 * ------------------------------------------------------------------- */
.alert-box {
  padding: 2.1rem 4rem 2.1rem 3rem;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
}
.alert-box .close {
  position: absolute;
  right: 1.8rem;
  top: 1.8rem;
  cursor: pointer;
}
.ss-error {
  background-color: #ffd1d2;
  color: #e65153;
}
.ss-success {
  background-color: #c8e675;
  color: #758c36;
}
.ss-info {
  background-color: #d7ecfb;
  color: #4a95cc;
}
.ss-notice {
  background-color: #fff099;
  color: #bba31b;
}
/* ------------------------------------------------------------------- 
 * additional typo styles - (_additional-typo.scss)
 * ------------------------------------------------------------------- */
/* drop cap 
 * ----------------------------------------------- */
.drop-cap:first-letter {
  float: left;
  margin: 0;
  padding: 1.5rem .6rem 0 0;
  font-size: 8.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 6rem;
  text-indent: 0;
  background: transparent;
  color: #151515;
}
/* line definition style 
 * ----------------------------------------------- */
.lining dt, .lining dd {
  display: inline;
  margin: 0;
}
.lining dt + dt:before, .lining dd + dt:before {
  content: "\A";
  white-space: pre;
}
.lining dd + dd:before {
  content: ", ";
}
.lining dd + dd:before {
  content: ", ";
}
.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}
/* dictionary definition style 
 * ----------------------------------------------- */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}
.dictionary-style dt + dt:before {
  content: ", ";
  margin-left: -0.2em;
}
.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}
.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}
/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * &lt;aside class="pull-quote"&gt;
 *		&lt;blockquote&gt;
 *			&lt;p&gt;&lt;/p&gt;
 *		&lt;/blockquote&gt;
 *	&lt;/aside&gt;
 *
 * --------------------------------------------------------------------- */
.pull-quote {
  position: relative;
  padding: 2.1rem 3rem 2.1rem 0px;
}
.pull-quote:before, .pull-quote:after {
  height: 1em;
  position: absolute;
  font-size: 10rem;
  font-family: Arial, Sans-Serif;
  color: rgba(0, 0, 0, 0.3);
}
.pull-quote:before {
  content: "\201C";
  top: -3.6rem;
  left: 0;
}
.pull-quote:after {
  content: '\201D';
  bottom: 3.6rem;
  right: 0;
}
.pull-quote blockquote {
  margin: 0;
}
.pull-quote blockquote:before {
  content: none;
}
/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * &lt;ul class="stats-tabs"&gt;
 *		&lt;li&gt;&lt;a href="#"&gt;[value]&lt;em&gt;[name]&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
 *	&lt;/ul&gt;
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.stats-tabs {
  padding: 0;
  margin: 3rem 0;
}
.stats-tabs li {
  display: inline-block;
  margin: 0 1.5rem 3rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #ccc;
}
.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  border: none;
  color: #151515;
}
.stats-tabs li a:hover {
  color: #88c873;
}
.stats-tabs li a em {
  display: block;
  margin: .6rem 0 0 0;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #909090;
}
/* ===================================================================
 *  08. common and reusable theme styles 
 *
 * ------------------------------------------------------------------- */
h1.intro-header {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 1.324;
  color: #00274C;
  position: relative;
  padding-bottom: 2.5rem;
  letter-spacing: .1rem;
  text-align: center;
  text-transform: uppercase;
}
#financial h1.intro-header {
  color: #ffffff;
}
h1.intro-header::before {
  display: block;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #0087cc;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.wide {
  max-width: 1300px;
}
.narrow {
  max-width: 800px;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * common styles
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  h1.intro-header {
    font-size: 3.1rem;
  }
}
@media only screen and (max-width: 600px) {
  h1.intro-header {
    font-size: 2.6rem;
  }
}
/* ===================================================================
 *  09. header styles - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */
#header {
  width: 100%;
  height: 72px;
  background-color: rgba(0, 75, 128,.9);
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 501;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
/* ------------------------------------------------------------------- 
 * header logo - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.header-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 501;
}
.header-logo a {
  display: block;
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 150px;
  height: 45px;
  background: url("../images/Logo.png") no-repeat center;
  background-size: 150px 45px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* ------------------------------------------------------------------- 
 * menu trigger - (_site-layout.css) 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  display: none;
  position: fixed;
  right: 32px;
  top: 15px;
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-menu-toggle:hover, .header-menu-toggle:focus {
  color: #FFFFFF;
}
.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 9px;
  top: 50%;
  right: auto;
  bottom: auto;
  background-color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}
.header-menu-toggle span::before, .header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header-menu-toggle span::before {
  top: -9px;
}
.header-menu-toggle span::after {
  bottom: -9px;
}
.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.header-menu-toggle.is-clicked span::before, .header-menu-toggle.is-clicked span::after {
  background-color: white;
}
.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
/* ------------------------------------------------------------------- 
 * navigation - (_layout.scss) 
 * ------------------------------------------------------------------- */
#header-nav-wrap {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 40px;
}
#header-nav-wrap .header-main-nav {
  display: inline-block;
  list-style: none;
  height: 72px;
  margin: 0 1rem 0 0;
}
#header-nav-wrap .header-main-nav li {
  display: inline-block;
  padding-left: 0;
  margin-right: 1.5rem;
}
#header-nav-wrap .header-main-nav li a {
  display: block;
  line-height: 72px;
}
#header-nav-wrap .header-main-nav li a, #header-nav-wrap .header-main-nav li a:visited {
  color: rgba(255, 255, 255, 0.6);
}
#header-nav-wrap .header-main-nav li a:hover, #header-nav-wrap .header-main-nav li a:focus {
  color: #ffffff;
}
#header-nav-wrap .header-main-nav li.current a {
  color: #ffffff;
}
#header-nav-wrap .cta {
  height: 3.6rem;
  line-height: calc(3.6rem - .6rem);
  padding: 0 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1230px) {
  #header {
    max-width: none;
  }
}
@media only screen and (max-width: 768px) {
  .header-logo a {
    width: 88px;
    height: 20px;
    background-size: 88px 20px;
  }
  #header-nav-wrap {
    display: none;
    height: auto;
    width: 100%;
    right: auto;
    left: 0;
    background-color: rgba(0, 42, 83, .9);
    padding: 120px 40px 54px;
  }
  #header-nav-wrap .header-main-nav {
    display: block;
    height: auto;
    margin: 0 0 4.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  #header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  #header-nav-wrap .header-main-nav li a {
    padding: 18px 0;
    line-height: 18px;
  }
  #header-nav-wrap .cta {
    height: 42px;
    line-height: calc(42px - .6rem);
    padding: 0 30px;
  }
  .header-menu-toggle {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  #header-nav-wrap .cta {
    display: block;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 400px) {
  .header-menu-toggle {
    right: 24px;
  }
}
/* -------------------------------------------------------------------
 * make sure the menu is visible on larger screens
 * ------------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  #header-nav-wrap {
    display: block !important;
  }
}
/* ===================================================================
 *  10. home - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */
#home {
  width: 100%;
  height: 786px;
  min-height: 786px;
  background-color: transparent;
  position: relative;
  display: table;
}
#home .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .2;
  background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, black 0%, black 20%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);
  /* IE6-9 */
}
#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
}
.no-js #home {
  background: #151515;
}
.home-content {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  background-image: url("../images/Stripe2024.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.home-content .contents {
  position: relative;
}
.ar-title {
  /*
  position: absolute;
  margin-top: -24rem; 	*/
  text-align: center;
	padding-bottom: 12rem;
}
.ar-title img {
  max-width: 80%;
}
.ar-title h3 {
  font-size: 1.05em;
  color: rgba(136, 200, 115, .6);
  text-transform: uppercase;
  margin-top: 3em;
  letter-spacing: .23em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .ar-title {
    position: absolute;
    margin-top: 10rem;
    text-align: center;
  }
  .ar-title h3 {
    font-size: .8em;
    margin-top: 1em;
    letter-spacing: .1em
  }
  .ar-title img {
    max-width: 70%;
  }
}
.home-content-left {
  padding: 15rem 0 8rem 40px;
  position: relative;
  width: 50%;
}
.home-content-left h3 {
  color: rgba(255, 255, 255, .9);
  font-size: 2.6rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin-bottom: 2.4rem;
}
.home-content-left h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 7rem;
  letter-spacing: -.05rem;
  line-height: 1.269;
  color: rgba(152, 193, 228, .85);
  margin-bottom: 2rem;
}
.home-content-left .button.stroke {
  color: #ffffff !important;
  border-color: #ffffff;
  margin: 0 .6rem 1.2rem;
  padding: 0 2.2rem;
  min-width: 188px;
}
.home-content-left .button.stroke span[class*="icon"] {
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.home-content-left .button.stroke:hover, .home-content-left .button.stroke:focus {
  background-color: white !important;
  color: #000000 !important;
}
.home-image-right {
  display: block;
  position: absolute;
  right: 0;
  top: 75%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 21rem;
  z-index: 500;
  width: 50%;
  text-align: right;
}
.home-image-right img {
  vertical-align: bottom;
  width: 75%;
}
/*
.home-stripe {
  margin: 21rem auto 1em;
} */
/* home social-list */
.home-social-list {
  position: absolute;
  right: 42px;
  top: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.2rem;
  line-height: 1.75;
  text-align: center;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
}
.home-social-list::before {
  display: block;
  content: "";
  width: 2px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
.home-social-list li {
  padding-left: 0;
}
.home-social-list li a, .home-social-list li a:visited {
  color: #FFFFFF;
}
.home-social-list li a:hover, .home-social-list li a:focus, .home-social-list li a:active {
  color: #88c873;
}
/* scroll down */
.home-scrolldown {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  float: right;
}
.home-scrolldown i {
  padding-left: 9px;
}
.home-scrolldown a:hover, .home-scrolldown a:focus {
  color: #88c873 !important;
}
html[data-useragent*='MSIE 10.0'] .home-scrolldown, .oldie .home-scrolldown {
  display: none;
}
.scroll-icon {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .3rem;
  color: #FFFFFF !important;
  background: transparent;
  position: relative;
  top: 36px;
  right: 42px;
  -webkit-animation: animate-it 3s ease infinite;
  animation: animate-it 3s ease infinite;
}
.scroll-icon i {
  font-size: 2.4rem;
  position: relative;
  bottom: -6px;
}
/* vertical animation */
@-webkit-keyframes animate-it {
  0%, 60%, 80%, 100% {
    -webkit-transform: translateX(0);
  }
  0%, 60%, 80%, 100% {
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
  40% {
    transform: translateX(20px);
  }
}
@keyframes animate-it {
  0%, 60%, 80%, 100% {
    -webkit-transform: translateX(0);
  }
  0%, 60%, 80%, 100% {
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-5px);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    -webkit-transform: translateX(20px);
  }
  40% {
    transform: translateX(20px);
  }
}
/* ------------------------------------------------------------------- 
 * responsive:
 * home section 
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1300px) {
  .home-image-right {
    right: 5rem;
  }
}
@media only screen and (max-width: 1200px) {
  #home {
    overflow: hidden;
  }
  .home-content {
    vertical-align: middle;
  }
  .home-content-left {
    padding: 18rem 0 12rem 40px;
  }
  .home-content-left h3 {
    font-size: 1.5rem;
  }
  .home-content-left h1 {
    font-size: 4.8rem;
  }
  .home-image-right {
    padding-top: 18rem;
  }
  .home-image-right img {
    vertical-align: top;
    width: 70%;
  }
}
@media only screen and (max-width: 1100px) {
  .home-content-left h1 {
    font-size: 4.6rem;
  }
  .home-content-left h1 br {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .home-content-left {
    width: 60%;
    padding: 18rem 6rem 12rem 4rem;
  }
  .home-content-left h3 {
    font-size: 1.5rem;
  }
  .home-content-left h1 {
    font-size: 4.2rem;
  }
  .home-image-right {
    width: 40%;
    padding-top: 120px;
  }
  .home-image-right img {
    vertical-align: top;
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  #home {
    height: auto;
    min-height: 840px;
  }
  #home, .home-content {
    display: block;
    text-align: center;
  }
  .home-content-left {
    width: 94%;
    position: static;
    padding: 15rem 6rem 366px;
    margin: 0 auto;
  }
  .home-content-left h1 {
    margin-bottom: 3.6rem;
  }
  .home-image-right {
    width: 400px;
    right: auto;
    top: 50%;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
    margin-bottom: -378px;
  }
}
@media only screen and (max-width: 768px) {
  #home {
    min-height: auto;
  }
  .home-content-left h3 {
    font-size: 1.4rem;
  }
  .home-content-left h1 {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .home-content-left {
    padding: 12rem 6rem 366px;
  }
  .home-content-left h1 {
    font-size: 3.3rem;
  }
  .home-content-left .button.stroke {
    width: 100%;
    min-width: 0;
    max-width: 280px;
  }
  .home-social-list {
    font-size: 2rem;
    right: 30px;
  }
  .scroll-icon {
    top: 21px;
  }
}
@media only screen and (max-width: 500px) {
  .home-social-list, .home-scrolldown {
    display: none;
  }
  .home-content-left {
    padding: 12rem 2.5rem 366px;
    width: 100%;
  }
  .home-content-left h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 400px) {
  .home-content-left {
    padding: 12rem 0 300px;
  }
  .home-content-left .button.stroke {
    margin: 0 0 1.2rem 0;
  }
  .home-image-right {
    width: 320px;
    margin-bottom: -298px;
  }
}
/* ===================================================================
 *  11. about - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#about {
  min-height: 786px;
	/*
  background: #ffffff;
	*/
  padding-top: 12rem;
  overflow: hidden;
}
.about-intro {
  padding-bottom: 0rem;
  border-bottom: 0px solid rgba(0, 0, 0, 0.07);
}
.about-features .features-list {
  padding-top: 5.4rem;
}
.about-features .feature {
  margin-bottom: 1.8rem;
}
.about-features .feature .icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.about-features .feature .icon i {
  color: #88c873;
  font-size: 4.8rem;
}
.about-features .feature h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.9rem;
  color: #151515;
  margin-bottom: 3rem;
}
.about-how {
  padding-top: 7.2rem;
  padding-bottom: 6rem;
}
.about-how h1.intro-header {
  text-align: center;
}
#about .about-how h1.intro-header::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-how-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  min-height: 300px;
  margin-top: 7.2rem;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.about-how-content::before, .about-how-content::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
}
.about-how-content::before {
  left: 0;
}
.about-how-content::after {
  left: 50%;
}
.about-how-content .about-how-steps {
  width: 100%;
}
.about-how-content .step {
  padding: 0 40px 1.5rem 60px;
  position: relative;
  min-height: 240px;
}
.about-how-content .step h3 {
  margin-bottom: 2.4rem;
}
.about-how-content .step::before {
  display: block;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 2rem;
  content: attr(data-item);
  color: #ffffff;
  height: 54px;
  width: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  background-color: #88c873;
  box-shadow: 0 0 0 15px #ffffff;
  z-index: 500;
  position: absolute;
  top: -12px;
  left: -27px;
}
.about-bottom-image img {
  vertical-align: bottom;
}
#partners {
  padding: 0;
  margin: 0;
  line-height: 0;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * about 
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
  .about-how-content {
    max-width: 800px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-intro {
    max-width: 800px;
    text-align: left;
  }
  .about-intro h1::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .about-intro [class*="col-"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
  .about-how-content {
    max-width: 700px;
  }
  .quote-block {
    padding: 3% !important;
  }
}
@media only screen and (max-width: 850px) {
  .about-how-content {
    max-width: 550px;
  }
  .about-how-content::after {
    display: none;
  }
  .about-how-content .step {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    padding-right: 18px;
    min-height: auto;
    padding: 0 40px .9rem 60px;
  }
}
@media only screen and (max-width: 768px) {
  .about-features .feature .icon i {
    font-size: 4.4rem;
  }
  .about-features .feature h3 {
    font-size: 1.8rem;
  }
  .about-how h3 {
    font-size: 1.9rem;
  }
  .about-how-content::before {
    left: 30px;
  }
  .about-how-content .step {
    padding: 0 10px 0 80px;
  }
  .about-how-content .step::before {
    font-size: 1.6rem;
    height: 45px;
    width: 45px;
    line-height: 45px;
    top: -9px;
    left: 7.5px;
  }
}
@media only screen and (max-width: 650px) {
  .about-features {
    max-width: 600px;
    text-align: center;
  }
  .about-features .feature {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4.5rem;
  }
  .about-features .feature h3 {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 400px) {
  .about-how-content {
    text-align: center;
  }
  .about-how-content::before {
    display: none;
  }
  .about-how-content .step {
    padding: 60px 0 0 0;
  }
  .about-how-content .step::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* ===================================================================
 *  12. metrics - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#livingston {
  padding-top: 12rem;
  padding-bottom: 10rem;
  text-align: center;
  background: rgba(0, 42, 84, 0);
}
#livingston h1 {
  margin-bottom: 0rem;
  martin-top: 1.5rem;
}
#livingston h2 {
	margin-bottom: 2rem;
    color: #00274c;
    margin-top: 35px;
    font-weight: 400;
    font-size: 2.4rem;
}
.metrics-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.metrics-table {
  text-align: left;
}
.metrics-table .plan-block {
  /*
  background: #ffffff;
  border-radius: 0px;
  padding: 3rem;
	*/
  margin-bottom: 2rem;
}
.metrics-table .plan-block:after {
  content: "";
  display: table;
  clear: both;
}
.metrics-table .plan-block .plan-block-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 2.65rem;
  margin: 2rem auto 0;
  line-height: 1.7;
  color: rgba(136, 200, 115, .75);
  letter-spacing: -1px;
  text-transform: uppercase;
}
.metrics-table .plan-block p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  margin-bottom: 4rem;
}
#successes .metrics-table .plan-block p, #overall-successes .metrics-table .plan-block p {
  font-size: 1.65rem;
  line-height: 2rem;
  color: #002a53;
  margin-bottom: 2rem;
}
#successes p.history, #overall-successes p.history {
	text-align: left;
	color:white;
	font-size: 1.1em;
	line-height: 1.4em;
}
.metrics-table .plan-block .plan-block-price {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 10rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -.03em;
}
.metrics-table .plan-block .plan-block-price sup {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  top: -3.6rem;
  margin-right: 3px;
}
.metrics-table .plan-block .plan-block-per {
  margin-top: -.6rem;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 2.6rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1em;
}
.metrics-table .plan-block .plan-block-features {
  list-style: none;
  margin: 0;
  border-top: 0px solid rgba(0, 0, 0, 0.1);
  font-size: 1.7rem;
  line-height: 1.7rem;
}
.metrics-table .plan-block .plan-block-features li {
  padding: 0 0 4px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  display: block;
}
.metrics-table .plan-block .plan-block-features li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.metrics-table .plan-block .plan-block-features li span.left {
  color: rgba(136, 200, 115, .75);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  width: 28%;
  text-align: right;
  display: inline-block;
  padding-right: 1rem;
  line-height: 1;
  letter-spacing: -1px;
  vertical-align: baseline;
}
.metrics-table .plan-block .plan-block-features li span.right {
  display: inline-block;
  text-align: left;
  width: 72%;
  text-transform: uppercase;
  vertical-align: baseline;
}
#successes .metrics-table .plan-block .plan-block-features li {
  margin-bottom: 15px;
}
#successes .metrics-table .plan-block .plan-block-features li span.left {
  color: rgba(0, 74, 128, 1);
  font-size: 3.5rem;
}
#successes .metrics-table .plan-block .plan-block-features li span.right {
  text-transform: none;
}
#successes .metrics-table .plan-block .plan-block-features {
  font-size: 1.9rem;
  line-height: 1.5rem;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
#successes .metrics-table .plan-block.company-list-teal {
  background: rgba(255, 255, 255, 0);
  color: #002a5b;
  padding: 4rem 2rem 0;
}
#successes .metrics-table .plan-block.company-list-teal ul li.intro {
  color: #004a80;
  font-size: 3rem;
  padding: 3px;
  text-align: left;
	line-height: 1.1em;
}
/* special price tables */
/* total awards */
.metrics-table .plan-block.total-awards {
  background: rgba(0, 135, 204, 0);
  color: #00274C;
  padding: 0;
}
.metrics-table .plan-block.total-awards.money {
  background: rgba(0, 135, 204, 0);
}
.metrics-table .plan-block.total-awards.arrow {
  background: rgba(0, 135, 204, 0);
  padding: 0px;
}
.metrics-table .plan-block.total-awards.blockm {
  background: rgba(0, 135, 204, 0);
}
.metrics-table .plan-block.total-awards .plan-block-title {
  color: #00274C;
}
.metrics-table .plan-block.total-awards .plan-block-price {
  color: rgba(0, 135, 204, 1);
}
.metrics-table .plan-block.total-awards .plan-block-features {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.total-awards .plan-block-features li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.total-awards .plan-block-features li span {
  color: #88c873;
}
.metrics-table .plan-block.total-awards .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}
.metrics-table .plan-block.total-awards .button.button-primary:hover, .metrics-table .plan-block.total-awards .button.button-primary:focus {
  color: #88c873;
}
/* industry awards */
.metrics-table .plan-block.industry-awards {
  background: rgba(0, 135, 204, 0.2);
  color: #00274c;
  line-height: 1.5em;
}
.metrics-table .plan-block.industry-awards.launch {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.industry-awards.industry {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.industry-awards.agreements {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.industry-awards.invention {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.industry-awards .plan-block-title {
  color: #00274C;
}
.metrics-table .plan-block.industry-awards .plan-block-price {
  color: rgba(0, 146, 141, 1);
}
.metrics-table .plan-block.industry-awards .plan-block-features {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.industry-awards .plan-block-features li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.industry-awards .plan-block-features li span {
  color: rgba(0, 146, 141, 1);
}
.metrics-table .plan-block.industry-awards .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}
.metrics-table .plan-block.industry-awards .button.button-primary:hover, .metrics-table .plan-block.industry-awards .button.button-primary:focus {
  color: #88c873;
}
/* NIH awards */
.metrics-table .plan-block.nih-awards {
  background: rgba(245, 194, 7, 0.15);
  color: #00274C;
}
.metrics-table .plan-block.nih-awards.millions {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.nih-awards.national {
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.nih-awards .plan-block-price {
  color: rgba(0, 135, 204, 1);
}
.metrics-table .plan-block.nih-awards .plan-block-title {
  color: #00274C;
}
.metrics-table .plan-block.nih-awards .plan-block-features {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.nih-awards .plan-block-features li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.nih-awards .plan-block-features li span {
  color: rgba(245, 194, 7, 1);
}
.metrics-table .plan-block.nih-awards .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}
.metrics-table .plan-block.nih-awards .button.button-primary:hover, .metrics-table .plan-block.nih-awards .button.button-primary:focus {
  color: #0087cc;
}
/* clinical trials */
.metrics-table .plan-block.clinical-trials {
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 4rem;
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.clinical-trials .plan-block-title, .metrics-table .plan-block.clinical-trials .plan-block-price {
  color: #ffffff;
}
.metrics-table .plan-block.clinical-trials .plan-block-features {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.clinical-trials .plan-block-features li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.clinical-trials .plan-block-features li span {
  color: #ffffff;
}
.metrics-table .plan-block.clinical-trials .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}
.metrics-table .plan-block.clinical-trials .button.button-primary:hover, .metrics-table .plan-block.clinical-trials .button.button-primary:focus {
  color: #0087cc;
}
/* publications */
.metrics-table .plan-block.publications {
  color: #00274c;
  /*  background-color: rgba(0, 135, 204, 0.2);
  padding: 3rem;
	background: url("../images/icon-publications.png") right bottom no-repeat rgba(185, 87, 26, 0.2);
	*/
}
.metrics-table .plan-block.clinical-trials .plan-block-title, .metrics-table .plan-block.clinical-trials .plan-block-price, .metrics-table .plan-block.publications .plan-block-title, .metrics-table .plan-block.publications .plan-block-price {
  color: #00274C;
}
.metrics-table .plan-block.clinical-trials .plan-block-price, .metrics-table .plan-block.publications .plan-block-price {
  font-size: 6rem;
}
.metrics-table .plan-block.clinical-trials .plan-block-title, .metrics-table .plan-block.publications .plan-block-title {
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
}
.metrics-table .plan-block.publications .plan-block-features {
  border-top: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.publications .plan-block-features li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.metrics-table .plan-block.publications .plan-block-features li span {
  color: #ffffff;
}
.metrics-table .plan-block.publications .button.button-primary {
  background: #ffffff;
  color: #151515;
  border-color: #ffffff;
}
.metrics-table .plan-block.publications .button.button-primary:hover, .metrics-table .plan-block.publications .button.button-primary:focus {
  color: #0087cc;
}
/* company lists */
.metrics-table .plan-block.company-list {
  color: #00274C;
  padding: 3rem;
  background: rgba(0, 135, 204, 0.2);
}
.metrics-table .plan-block.company-list ul li.intro {
  font-size: 1.7rem;
  line-height: 2.1rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
}
/* company lists */
.metrics-table .plan-block.company-list-teal {
  color: #ffffff;
  /*
  padding: 3rem 1rem;
  background: rgba(0, 135, 204, 0.7);
	*/
}
.metrics-table .plan-block.company-list-teal ul li.intro {
  font-size: 2.2rem;
  line-height: 2.4rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
  text-align: center;
}
.metrics-table .plan-bottom-part {
  margin-top: 0;
}
img.forty {width: 40%;}
/* ------------------------------------------------------------------- 
 * responsive:
 * metrics 
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  #livingston .metrics-content &gt; [class*="col"], #successes .metrics-content &gt; [class*="col"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
	img.forty {width: 100% !important;}

  #livingston [class*="col"].metrics-intro, #successes [class*="col"].metrics-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
  }
  #livingston [class*="col"].metrics-intro h1::before, #successes [class*="col"].metrics-intro h1::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #livingston [class*="col"].metrics-table, #successes [class*="col"].metrics-table {
    margin-top: 5.4rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-stripe {
    visibility: hidden !important;
  }
  .about-intro {
    padding-bottom: 0 !important;
  }
	.blue-grad {
		padding: 5% !important;}

}
@media only screen and (max-width: 768px) {
  .metrics-table .plan-wrap, #successes .metrics-table .plan-wrap, #livingston .metrics-table .plan-wrap, .metrics-table .plan-top-part, #livingston .metrics-table .plan-bottom-part {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
  .metrics-table .plan-top-part, .metrics-table .plan-bottom-part, #successes .metrics-table .plan-top-part, #successes .metrics-table .plan-bottom-part, #livingston .metrics-table .plan-top-part, #livingston .metrics-table .plan-bottom-part {
    float: left;
  }
  .metrics-table .plan-top-part {
    width: 41.66667%;
    margin-top: 1.2rem;
  }
  .metrics-table .plan-bottom-part, #successes .metrics-table .plan-bottom-part {
    width: 58.33333%;
  }
  .home-stripe {
    visibility: hidden !important;
  }
}
@media only screen and (max-width: 600px) {
  #livingston [class*="col"].metrics-table, #successes [class*="col"].metrics-table {
    max-width: 360px;
  }
  #livingston, #about, #a2Tech360, #team, #start-grow, #marketing, #financial {
    padding-top: 6rem !important;
  }
  #livingston .plan-top-part, #livingston .plan-bottom-part, #successes .plan-bottom-part, #successes .metrics-table .plan-top-part, #a2tech .metrics-table .plan-top-part, #successes .MAF-title-block, #successes .MAF-blurb {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0;
    margin-right: 0;
  }
	#successes .metrics-table .plan-block .plan-block-features li span.left {font-size:3.5rem;}
  #about .col-six {
    padding-bottom: 30px;
  }
  #successes .MAF-title-block {
    text-align: left !important;
  }
  .hide-me, img.quote-image.right.hide-me {
    display: none !important;
  }
  img.img-responsive.mobile {
    display: none !important;
  }
  .margin-top-lg {
    margin-top: .5em !important;
  }
  .margin-bottom-lg {
    margin-bottom: .5em !important;
  }
  #team, #marketing {
    padding-bottom: 5rem !important;
  }
  }
  #start-grow {
    padding-bottom: 5rem !important;
  }
  #financial h4 {
    margin-top: 1.2em !important;
    margin-bottom: 0 !important;
  }
  #financial p img {
    margin: 0 !important;
  }
  .faded {
    padding: 3.5%;
  }
  .faded .col-four {
    margin-bottom: 0;
  }
  #financial h4.white {
    margin-top: 1.2em !important;
  }
  #about p.lead {
    text-align: left;
  }
  .impact-desktop {
    display: none !important
  }
  .impact-mobile {
    display: block !important;
  }
  #successes {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .home-stripe {
    visibility: hidden !important;
  }
  .fa-ul &gt; li {
    text-align: left !important;
  }
  .quote-block {
    padding: 6% !important;
  }
  .metrics-table .plan-block .plan-block-features li span.left {
    width: 35%;
  }
  .metrics-table .plan-block .plan-block-features li span.right {
    width: 65%;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #about p.lead, .about-intro {
    text-align: left;
  }
  .ar-title {
    margin-top: 0;
  }
  #financial {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
  .md-1-2 {
    width: 25%;
  }
  .footer-subscribe {
    clear: none !important;
  }
  .row {
    max-width: 1170px !important;
  }
}
/* ===================================================================
 *  13. testimonials - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#a2Tech360, #services-2, #team, #start-grow, #marketing {
  /*  background: #FFFFFF; */
  padding: 10rem 0 5rem;
  text-align: left;
  min-height: 600px;
}
#a2Tech360 h2 {
  color: #88c873;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  padding-left: 15px;
}
#a2Tech360 h2.intro-header, #services-2 h2.intro-header, #team h2.intro-header, #start-grow h2.intro-header, #marketing h2.intro-header {
  font-size: 1.25em;
  color: #00274c;
  font-weight: 400;
  line-height: 1.4em;
}
#a2Tech360 h3, #services-2 h3, #team h3, #start-grow h3, #marketing h3 {
  color: #0087cc;
}
#a2Tech360 {
  background: rgba(133, 197, 113, 0);
}
#a2Tech360 p {
  margin-bottom: 1.7rem;
}
#a2Tech360 h3 {
  font-size: 4.4rem;
  line-height: .8;
  color: rgba(136, 200, 115, .35);
  margin-bottom: 1rem;
  letter-spacing: -.2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}
#a2Tech360 h1::before {
  background-color: rgba(136, 200, 115, .4);
}
#a2Tech360 h1.intro-header {
  margin-bottom: 6rem;
}
.timeline {
  background-image: url("../images/Timelines.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
#team {
  background-color: rgba(0, 150, 165, 0.15);
  padding-bottom: 0;
}
#team .team-pic {
  line-height: 0;
}
#team p {
  line-height: 1.3em;
}
#a2Tech360 h1::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#team h4 {
  text-transform: uppercase;
  font-weight: 500;
  color: #00274c;
  line-height: 1.2em;
}
#team ul {
  list-style: none;
}
#team li {
  line-height: 1.2em;
  margin-top: .5em;
  font-size: 1.1em;
}
#team li::before {
  content: "\f0a9";
  font-family: FontAwesome;
  color: #0087cc;
  margin-left: -2.1rem;
  padding-right: .4rem;
}
#start-grow, #marketing {
  background-color: rgba(0, 150, 165, 0);
  padding-bottom: 0;
}
#start-grow .team-pic, #marketing .team-pic {
padding: 3.5%;
}
#start-grow .team-pic img, #marketing .team-pic img {
}
#start-grow p, #marketing p {
}
#start-grow p.team, #marketing p.team {
  font-size: .9em;
	color: #004A80;
	margin-top: 10px;
}
#start-grow .blue, #marketing .blue {color: #004A80;}
#start-grow .blue-grad p, #marketing .blue-grad p {
  color: #00274c;
	font-size: .9em;
}
#start-grow p.services-title, #marketing p.services-title {font-size: 1.3em; font-family: "Roboto Condensed", sans-serif;line-height: 1.2em;}
#start-grow h4, #marketing h4 {
  font-weight: 500;
  color: #0087cc;
  line-height: 1.2em;
	
}
#start-grow h4, #marketing h4 {
    color: #004b80 !important;
	font-size: 1.35em;
	padding-top: 10px;
	letter-spacing: 1px;
	padding-top: 10px;
}
#start-grow p.services-title span, #marketing p.services-title span {font-size: 2em;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.2em;
    font-weight: 500;
    vertical-align: middle;
    letter-spacing: -.02em;
    opacity: .6;
}
span.bold-phrase {font-size: 1.5em;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.2em;
    font-weight: 500;
    vertical-align: baseline;
    letter-spacing: -.02em;
    opacity: 1;
	color: #004b80;
}
#start-grow ul, #marketing ul {
  list-style: none;
}
#start-grow li, #marketing ul {
  line-height: 1.2;
  margin-top: .5em;
  font-size: 1em;
  color: #00274c;
}
#marketing li {padding-bottom:.4em;}
#start-grow li::before, #marketing li::before {
  content: "\f0a9";
  font-family: FontAwesome;
  color: rgba(255,255,255,.7);
  margin-left: -2.1rem;
  padding-right: .4rem;
}
#a2Tech360 .owl-wrap {
  width: 80%;
  max-width: 900px;
  margin: 4.2rem auto 0;
}
img.stat {
  margin-top: -30px;
  margin-left: 1rem;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  #testimonial-slider p {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  #testimonial-slider p {
    font-size: 2.6rem;
  }
  #testimonial-slider .testimonial-author img {
    width: 6.6rem;
    height: 6.6rem;
  }
  #testimonial-slider .testimonial-author .author-info {
    font-size: 1.8rem;
  }
  #testimonial-slider .testimonial-author .author-info span {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  #a2Tech360 .owl-wrap {
    width: 90%;
  }
  #testimonial-slider p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 400px) {
  #a2Tech360 .owl-wrap {
    width: 100%;
  }
  #testimonial-slider p {
    font-size: 2rem;
  }
}


@media only screen and (min-width: 1025px) {
        .mobile-only {
            display:none !important;
        }
    } 
    @media only screen and (max-width: 1026px) {
        .desktop-only {
            display:none !important;
        }
    } 
/* ===================================================================
 *  14. download - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#successes {
  /* background: #0087cc;
  color: #98C1E4; */
  padding-top: 12rem;
  padding-bottom: 8rem;
  text-align: center;
}
.impact-desktop {
  display: block;
}
.impact-mobile {
  display: none;
}
#financial {
  padding-top: 12rem;
  padding-bottom: 8rem;
  background: rgba(0, 42, 84, 0);
}
#financial h3 {
  font-weight: 400;
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 6rem;
  margin-bottom: 0;
  line-height: .65;
  font-size: 3.5rem;
  letter-spacing: -1px;
}
#financial h3 span {
  font-size: .7em;
}
#financial p {
  margin-top: .3em;
  line-height: 1.2em;
  margin-bottom: 0;
  color: #ffffff;
}
.funder-box {
  padding: 3.5%;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}
.faded {
  background: rgba(255, 255, 255, .3);
  padding-bottom: 3.5%;
}
.black-grad {
  padding: 3.5% 1.5%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, 0) 100%);
}
.purple-grad {
  padding: 3.5% 1.5%;
  background: rgb(80, 21, 77);
  background: linear-gradient(180deg, rgba(80, 21, 77, .65) 0%, rgba(80, 21, 77, 0) 100%);
}
.blue-grad {
  padding: 3.5% 2% 0;
  background: rgb(0, 114, 188);
  background: linear-gradient(180deg, rgba(0, 114, 188, .45) 0%, rgba(0, 114, 188, 0) 100%);
}
.blue-faded {
  padding: 3.5% 2% 0;
  background: rgba(0, 114, 188,.2);
}
.teal-to-blue-grad {
  padding: 3.5% 2%;
  background: rgb(0, 42, 84);
  background: linear-gradient(180deg, rgba(0, 130, 144, .85) 0%, rgba(0, 42, 84, .8) 100%);
}
.white-grad {
  padding: 3.5% 2%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, 0) 100%);
}
.white-grad-light {
  padding: 3.5% 2%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 100%);
}
.white-grad-light-trim {
  padding: 2.5% 1%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 100%);
}
.white-grad-rev {
  padding: 0 8% 8%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 100%);
}
#financial p.fund {
  margin-top: 2rem;
}
#successes h1::before {
  background-color: #87c773;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#financial h1::before {
  background-color: rgba(255, 255, 255, .5);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#financial h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0087cc;
  line-height: 1em;
  margin-bottom: 0;
}
#financial h4.margin-top {
  margin-top: 1.2em;
}
#financial h4.white {
  color: #ffffff;
}
#successes .lead, #financial .lead {
  color: #98C1E4;
  margin-top: 4.8rem;
}
#successes .row, #financial .row {}
#successes .download-badges {
  list-style: none;
  margin: 0;
  text-align: center;
}
#successes .download-badges li {
  display: inline-block;
  margin: 0 7.5px;
  padding-left: 0;
}
#successes .download-badges li a {
  display: block;
  width: 230px;
  height: 71px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 230px 71px;
}
#successes .download-badges li a.badge-appstore {
  background-image: url("../images/appstore.png");
}
#successes .download-badges li a.badge-googleplay {
  background-image: url("../images/google-play.png");
}
/* ------------------------------------------------------------------- 
 * responsive:
 * download
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #successes .download-badges li a {
    width: 194px;
    height: 60px;
    background-size: 194px 60px;
  }
  #successes .oor-stats .lead {
    text-align: center;
  }
}
/* ===================================================================
 *  15. footer styles - (_site-layout.scss)
 *
 * ------------------------------------------------------------------- */
footer {
  padding-top: 9rem;
  padding-bottom: 4.2rem;
  font-size: 1.5rem;
  line-height: 2.1rem;
  color: rgba(255, 255, 255, 0.65);
  background-color: #00274c;
}
footer a, footer a:visited {
  color: #0087cc;
}
footer a:hover, footer a:focus {
  color: white;
}
footer h4 {
  color: white;
  font-size: 1.5rem;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  position: relative;
}
footer h4::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  left: 0;
  bottom: 0;
}
footer ul {
  list-style: none;
  margin: 0;
}
footer ul li {
  padding-left: 0;
}
footer ul a, footer ul a:visited {
  color: rgba(255, 255, 255, 0.25);
}
footer p {
  margin-bottom: 2rem;
}
footer p strong {
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.footer-logo {
  display: block;
  margin: 0 0 2.9rem 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 220px;
  height: 66px;
  background: url("../images/Logo.png") no-repeat center;
  background-size: 220px 66px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer-logo2 {
  display: block;
  margin: 0 0 2.9rem 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 220px;
  height: 66px;
  background: url("../images/Blank.png") no-repeat center;
  background-size: 220px 66px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer-logo3 {
  display: block;
  margin: 0 0 2.9rem 0;
  padding: 0;
  outline: 0;
  border: none;
  width: 220px;
  height: 66px;
  background: url("../images/Blank.png") no-repeat center;
  background-size: 220px 66px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer-social-list {
  font-size: 1.8rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}
.footer-social-list li {
  display: inline-block;
  margin-right: 8px;
}
.footer-social-list li:last-child {
  margin-right: 0;
}
.footer-site-links .list-links {
  margin-bottom: 3rem;
}
.footer-subscribe .subscribe-form {
  margin: 0;
  padding: 0;
  position: relative;
}
.footer-subscribe #mc-form {
  width: 100%;
}
.footer-subscribe #mc-form input[type="email"] {
  width: 100%;
  height: 5.4rem;
  padding: 1.2rem 100px 1.2rem 60px;
  background: url(../images/email-icon.png) 20px center no-repeat, rgba(0, 0, 0, 0.1);
  background-size: 24px 16px, auto;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-subscribe #mc-form input[type="email"]:focus {
  color: #ffffff;
}
.footer-subscribe #mc-form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  background: #0087cc;
  border-color: #0087cc;
  border-radius: 0 .5rem .5rem 0;
  padding: 0 15px;
}
.footer-subscribe #mc-form label {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  padding: 0 2rem;
}
.footer-subscribe #mc-form label i {
  padding-right: 6px;
}
.footer-subscribe #mc-form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.footer-subscribe #mc-form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  /* Firefox 18- */
}
.footer-subscribe #mc-form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  /* Firefox 19+ */
}
.footer-subscribe #mc-form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.footer-subscribe #mc-form .placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}
.footer-bottom {
  margin-top: 6.6rem;
  text-align: center;
}
.footer-bottom .copyright span {
  display: inline-block;
}
.footer-bottom .copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 1rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright span:last-child::after {
  display: none;
}
/* ------------------------------------------------------------------- 
 * go to top
 * ------------------------------------------------------------------- */
#go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
  display: none;
}
#go-top a, #go-top a:visited {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background: #88c873;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#go-top a i, #go-top a:visited i {
  font-size: 18px;
  line-height: inherit;
}
#go-top a:hover, #go-top a:focus {
  color: #FFFFFF;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * footer 
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .footer-main &gt; .row {
    max-width: 800px;
  }
  .footer-info, .footer-contact, .footer-site-links, .footer-subscribe {
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .footer-subscribe {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .footer-main &gt; .row {
    max-width: 600px;
  }
  .footer-logo, .footer-logo2 {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-logo3 {
    display: none;
  }
  .footer-info {
    text-align: center;
  }
  #go-top {
    bottom: 0;
    right: 0;
  }
  #go-top a, #go-top a:visited {
    border-radius: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .footer-main .row {
    max-width: 480px;
  }
  .footer-main h4 {
    padding-bottom: 0;
    margin-bottom: 2.4rem;
  }
  .footer-main h4::before {
    display: none;
  }
  .footer-main ul.list-links {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-main ul.list-links li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: .6rem 0;
  }
  .footer-main ul.list-links li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  .footer-contact, .footer-site-links, .footer-subscribe {
    text-align: center;
  }
  .footer-bottom {
    padding-bottom: .6rem;
  }
  .footer-bottom .copyright span {
    display: block;
  }
  .footer-bottom .copyright span::after {
    display: none;
  }
}
/* Add-on styles */
.quote-block {
  background-color: rgba(235, 235, 235, .7);
  padding: 4% 6%;
  font-family: "Roboto Condensed", sans-serif;
  border-radius: 0px;
  margin-bottom: 4%;
  text-align: left;
}
.MAF {
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
  padding: 0;
  background: none;
  margin-bottom: 0;
  display: block;
}
.MAF-title-block {
  width: 30%;
  text-align: right;
  display: inline-block;
}
.MAF-blurb {
  width: 65%;
  text-align: left;
  display: inline-block;
  padding-left: 10px;
}
.MAF-blurb p {
  margin-bottom: 0;
}
.community {
  background: rgba(0, 135, 204, .07) url("../images/community-bg.png") no-repeat 85% center;
  background-size: 300px;
}
.quote-block-white {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3% 5% 2%;
  font-family: "Roboto Condensed", sans-serif;
  border-radius: 0px;
  text-align: left;
}
.measure-padded-block {
  padding: 0 12%;
}
.quote-block-light {
  padding: 3% 2% 0 4%;
  font-family: "Roboto Condensed", sans-serif;
  border-radius: 0px;
  text-align: left;
  color: #00274c;
  margin-top: 4%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 100%);
}
.give-block {
  padding: 20px 30px;
  font-family: "Roboto Condensed", sans-serif;
  border-radius: 20px;
  background: url(../images/Mblock-give.png) center bottom no-repeat rgba(245, 194, 7, 0.7);
}
.give {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 2rem;
}
#financial .lead a {
  text-transform: uppercase;
  font-size: 1.8rem !important;
  line-height: 4rem;
}
#financial .lead a:hover {
  color: #ffffff;
}
.give-url {
  font-size: 1.8rem !important;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}
.give-url a {
  color: #00274c;
}
.give-url a:hover {
  color: #ffffff;
}
.quote, .fiscal-year {
  font-size: 2.5rem;
  line-height: 1.3;
  color: rgba(0, 42, 83, 1);
  margin-bottom: 2rem;
}
.small-caps-title {
  font-size: 2.1rem;
  line-height: 1;
  color: #00a88d;
  margin-bottom: 0;
  font-weight: 600;
}
.small-caps-services {
  font-size: 1.5rem;
  line-height: 1em;
  margin-bottom: 0;
  font-weight: 500;
	text-transform: uppercase;
}
.lg-lc-title {
  font-size: 7rem;
  line-height: .8;
  color: rgba(0, 42, 84, .4);
  margin-bottom: 2rem;
  letter-spacing: -.3rem;
}
.caption {
  font-size: 1.1em !important;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding: 0 4rem;
  color: #999;
}
.caption strong {
  font-size: 1em !important;
  line-height: 1.3;
}
.right {
  text-align: right;
}
.white {
  color: #ffffff;
}
.navy {
  color: #00274c;
}
.author {
  font-size: .85em !important;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.author strong, .give-url strong {
  font-size: 1em !important;
  line-height: 1.4;
}
img.quote-image.right {
  float: right;
  padding: 5px 0px 5px 10px;
}
.neg-top-margin {margin-top:-20px;}
#a2Tech360 img.right {
  float: right;
  padding: 5px 5px 5px 10px;
  margin-right: -20px;
  margin-top: -10px;
  max-width: 225px;
}
img.quote-image.left {
  float: left;
  padding: 5px 10px 5px 0px;
}
img.community-image.left {
  width: 285px;
  float: left;
  padding: 0px 10px 5px 0px;
}
@media only screen and (max-width: 768px) {
  img.quote-image.right, img.quote-image.left, img.quote-image.none {
    width: 235px !important;
    margin: 0 auto !important;
    float: none !important;
    display: block !important;
  }
  img.community-image.left {
    width: 100% !important;
    margin: 0 auto !important;
    float: none !important;
    display: block !important;
  }
  .quote-block-white, .caption, #a2Tech360, #services-2 {
    text-align: left;
  }
  .caption.right {
    margin-bottom: 4rem;
  }
	.neg-top-margin {margin-top:0px !important;}
  #a2Tech360 h1.intro-header::before, #services-2 h1.intro-header::before, #team h1.intro-header::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #about {
    padding-top: 10rem;
  }
  .fiscal-year-number {
    font-size: 6em !important;
  }
  .metrics-table .plan-block .plan-block-price {
    font-size: 8rem;
  }
  .home-content-left h1 {
    font-size: 5rem;
  }
  #financial .lead {
    text-align: center;
  }
  img.stat {
    margin-top: 0 !important;
  }	
.anniversary-icon {width:85% !important; margin: auto;}
.anniversary-icon-dark {width:85% !important; margin: auto;}
}
.fiscal-year {
  letter-spacing: 3px;
  font-weight: 600;
  color: #0087cc;
}
.fiscal-year-number {
  font-size: 7em;
  line-height: .8;
  letter-spacing: -10px;
  color: #0087cc;
  opacity: .3;
  font-weight: 500;
}
#successes .oor-stats .lead {
  color: #fff;
}
.oor-stats p.lead {
  line-height: 1.6em;
  text-align: left;
}
.oor-stats ul {
  font-size: 2.1rem;
  line-height: 1.4em;
  text-align: left;
  list-style: none;
  margin-left: 0;
}
.oor-stats ul li {
  padding-bottom: 1.2rem;
}
.oor-stats ul li .stat {
  color: #FFCB05;
  font-size: 2.6rem;
  font-weight: 600;
}
.oor-stats p.lead strong, .oor-stats ul li strong {
  font-size: 2.1rem;
}
#livingston h1.intro-header::before {
  left: 47%;
  background-color: rgba(136, 200, 115, .4);
}
.metrics-table .plan-block .plan-block-features li span sup {
  font-size: 50%;
  top: -.7em;
}
.margin-top {
  margin-top: 2em;
}
.margin-top-lg {
  margin-top: 5em;
}
.margin-bottom {
  margin-bottom: 2em;
}
.margin-bottom-lg {
  margin-bottom: 10em;
}
.margin-bottom0 {
  margin-bottom: 0 !important;
}
/*# sourceMappingURL=main.css.map */
.fa-caret-square-right:before {
  color: #0096a5;
}
ul.lead.fa-ul {
  margin-left: 1.5em;
}
.fa-ul &gt; li {
  margin-bottom: 1.3rem;
}
.teal-grad {
  background: rgb(0, 42, 83);
  background: linear-gradient(180deg, rgba(0, 42, 83, .4) 0%, rgba(0, 42, 83, 0) 100%);
}
.impact-btm-box {
	background: url("../images/ImpactBtmBg.png") no-repeat center;
	background-size: cover;
}
.caps {
  text-transform: uppercase;
}
.no-right-padding {
  padding-right: 0px;
}
.no-left-padding {
  padding-left: 0px;
}
.no-bottom-padding {
  padding-bottom: 0px;
}
hr.dark {
  margin: 5% auto 8%;
  width: 8%;
  border: 2px solid rgba(16, 36, 70, 0.1);
  clear: both;
  height: 0;
}
hr.light {
  margin: 5% auto 8%;
  width: 8%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  clear: both;
  height: 0;
}
#livingston h1.intro-header {
  font-weight: 400;
  font-size: 3.6rem;
}
#livingston h1.intro-header span {
  font-size: 1.9rem;
  vertical-align: middle;
  padding-left: 5px;
  font-weight: 600;
}
#20-years .intern {background: url("../images/Intern.png") no-repeat right bottom; background-size:30%; background-color: #DEDEDE;}

#20-years {background-color: #DEDEDE;}

#20-years p, #20-years blockquote {color:#ffffff;}

#20-years blockquote:before {
	color:rgba(255, 255, 255, .4);}

/* TIMELINE */

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
/*
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #303e49;
}
header h1 {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 1170px) {
  header {
    height: 300px;
    line-height: 300px;
  }
  header h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
*/
#cd-timeline {
  position: relative;
  padding: 3em 0;
  margin-top: 1em;
  margin-bottom: 0em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #ffffff;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom:0em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 2em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	/*
  box-shadow: 0 0 0 0px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
	*/
}
.anniversary-icon {width:400px; margin: auto;}
.anniversary-icon-dark {width:600px; margin: auto;}

.cd-timeline-img img {
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -13px;
}

.cd-timeline-img.cd-picture {
  background: #75ce66;
}
.cd-timeline-img.cd-movie {
  background: #c03b44;
}
.cd-timeline-img.cd-location {
  background: #fff;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: #ffffff;
  border-radius: 0.25em;
    padding: 1em 1.6em;
	/*
  box-shadow: 0 3px 0 #d7e4ed;
	*/
}
.cd-timeline-content::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.25;
	font-size: .9em;
}
.cd-timeline-content p strong {color:#004a80;}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: 0.8em 1em;
  background: #acb7c0;
  color: #ffffff;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: 0;
  opacity: 1;
    font-size: 20px;
	color: #0096a5;
	font-weight: 600;
}
.cd-timeline-content::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1em 1.6em;
    width: 45%;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #ffffff;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 26px;
	font-weight: 600;
	color: #0096a5;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #ffffff;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}</pre></body></html>