/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* line 5, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

i {
  font-style: italic; }

/* line 22, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1; }

/* line 24, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none; }

/* line 26, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 28, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

/* line 30, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none; }

/* line 103, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none; }

/* line 32, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none; }

/* line 116, ../../vendor/bundle/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

.content:after {
  content: "";
  display: table;
  clear: both; }

.content ul, .content ol, .post-content ul, .post-content ol, .privacy-policy ul, .privacy-policy ol {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 34px;
  padding-left: 1em; }
.content ul, .post-content ul, .privacy-policy ul {
  list-style: url("../images/CB_gear.png"); }
.content ol, .post-content ol, .privacy-policy ol {
  list-style: decimal; }

.privacy-policy ol ol {
  list-style: lower-alpha; }

/*  ===============================
				COLORS
	===============================*/
/* Base Colors - These colors are used throughout the system as needed */
/* Primary body text color */
/* Link over solid/primary color */
/* Welcome to Compass. Use this file to write IE specific override styles.
 * Import this file using the following HTML or equivalent:
 * <!--[if IE]>
 *   <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
 * <![endif]--> */
.event-date {
  filter: alpha(opacity=80);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  /* For IE 8*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"; }

/**
 * CSS Modal
 * Modal as reusable module
 * http://drublic.github.com/css-modal
 *
 * @author Hans Christian Reinl - @drublic
 * @version 1.0.4
 *
 * Usage:
 *    selector {
 *        @extend %modal;
 *    }
 */
/*
 * Configuration
 */
html {
  overflow-y: scroll; }

.has-overlay {
  overflow: hidden; }
  .has-overlay > body {
    height: 100%;
    overflow-y: scroll; }

.semantic-content {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  color: #222;
  line-height: 1.3;
  display: none\9; }
  .semantic-content:target {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  .is-active.semantic-content {
    display: block\9; }
  .semantic-content:target {
    display: block\9; }
  .semantic-content .modal-inner {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 20;
    margin-left: -120px;
    width: 240px;
    overflow-x: hidden;
    border-radius: 2px;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); }
    .semantic-content .modal-inner > img,
    .semantic-content .modal-inner > video,
    .semantic-content .modal-inner > iframe {
      width: 100%;
      height: auto;
      min-height: 300px; }
    .semantic-content .modal-inner > img {
      width: auto;
      max-width: 100%; }
  .semantic-content header {
    border-bottom: 1px solid #ddd;
    padding: 0 1.2em; }
    .semantic-content header > h2 {
      margin: 0.5em 0; }
  .semantic-content .modal-content {
    max-height: 400px;
    max-height: 70vh;
    border-bottom: 1px solid #ddd;
    padding: 15px 1.2em;
    overflow-x: hidden;
    overflow-y: auto; }
    .semantic-content .modal-content > * {
      max-width: 100%; }
  .semantic-content footer {
    border-top: 1px solid white;
    padding: 0 1.2em 18px;
    background: #f0f0f0;
    border-radius: 2px; }
  .semantic-content .modal-close {
    display: block;
    text-indent: -100px;
    overflow: hidden; }
    .semantic-content .modal-close:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10;
      background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AAAAAMwA0QDNTiUx4gAAAABJRU5ErkJggg=="); }
    .semantic-content .modal-close:after {
      content: '\00d7';
      position: absolute;
      top: 25px;
      left: 50%;
      z-index: 20;
      margin-left: 80px;
      background: #fff;
      border-radius: 2px;
      padding: 2px 8px;
      font-size: 1.2em;
      text-decoration: none;
      text-indent: 0; }
  @media screen and (max-width: 280px) {
    .semantic-content .modal-inner {
      width: auto;
      left: 20px;
      right: 20px;
      margin-left: 0; }
    .semantic-content .modal-close {
      left: auto;
      right: 33px;
      margin-left: 0; }
      .semantic-content .modal-close:after {
        margin-left: 40%; } }
  @media screen and (max-width: 30em) {
    .semantic-content {
      -webkit-transform: translate(0, 400px);
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      -webkit-transition: -webkit-transform .25s ease-in-out, opacity 1ms .25s;
      -moz-transition: -moz-transform .25s ease-in-out, opacity 1ms .25s;
      -o-transition: -o-transform .25s ease-in-out, opacity 1ms .25s;
      -ms-transition: -ms-transform .25s ease-in-out, opacity 1ms .25s;
      transition: transform .25s ease-in-out, opacity 1ms .25s;
      display: block;
      height: 100%;
      bottom: auto; }
      .semantic-content:target {
        -webkit-transition: -webkit-transform .25s ease-in-out;
        -moz-transition: -moz-transform .25s ease-in-out;
        -o-transition: -o-transform .25s ease-in-out;
        -ms-transition: -ms-transform .25s ease-in-out;
        transition: transform .25s ease-in-out; }
      .semantic-content:before {
        background-color: #27aae2;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#27aae2), to(#1c9cd3));
        background-image: -webkit-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: -moz-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: -o-linear-gradient(top, #27aae2, #1c9cd3);
        background-image: linear-gradient(to bottom, #27aae2, #1c9cd3);
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 30;
        height: 3em;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.6); }
      .semantic-content .modal-inner {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        top: 0;
        /* 			left: 0; */
        right: 0;
        padding-top: 3em;
        height: 100%;
        overflow: scroll;
        -webkit-box-shadow: none;
        box-shadow: none; }
      .semantic-content .modal-content {
        max-height: none; }
      .semantic-content .modal-close {
        right: auto;
        text-decoration: none; }
        .semantic-content .modal-close:before {
          display: block; }
        .semantic-content .modal-close:after {
          content: attr(data-close);
          top: 0.4em;
          left: 1em;
          z-index: 40;
          margin-left: 0;
          font-size: 1em;
          padding: 0.5em 1em; } }
  @media screen and (max-height: 46em) and (min-width: 30em) {
    .semantic-content .modal-content {
      max-height: 340px;
      max-height: 50vh; } }
  @media screen and (max-height: 36em) and (min-width: 30em) {
    .semantic-content .modal-content {
      max-height: 265px;
      max-height: 40vh; } }

@media screen and (min-width: 30em) {
  .semantic-content {
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; } }

/*  ===============================
				FONTS
	===============================*/
em {
  font-style: italic; }

strong {
  font-weight: 700; }

p {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 34px; }

h1, h2, h3, h4, h5,
blockquote {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1, h2, h3, h4, h5 {
  font-weight: normal; }

h1 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 42px;
  font-font-weight: 300; }

h2 {
  font-family: "Share Tech", sans-serif;
  font-size: 48px;
  color: #e9662c;
  margin-bottom: 5px;
  text-transform: uppercase; }

h3 {
  font-size: 36px;
  font-family: "Share Tech", sans-serif;
  color: #f7931d;
  margin-bottom: 5px;
  line-height: 42px;
  text-transform: uppercase; }

h4 {
  text-transform: uppercase;
  color: #519d97;
  margin: 18px 0;
  font-size: 36px;
  font-family: "Share Tech", sans-serif; }

h5 {
  text-transform: uppercase;
  color: #e9662c;
  margin: 48px 0 10px;
  font-size: 28px;
  font-family: "Share Tech", sans-serif; }

h6 {
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 22px;
  color: #7dcbbc;
  text-transform: uppercase;
  margin: 40px 0 8px; }

.sub-head {
  color: #fff;
  font-size: 36px;
  font-family: "Rambla", "Helvetica", sans-serif; }

.quote {
  color: #e9662c;
  font-style: italic;
  font-size: 18px; }

/*
@mixin prod-logo($x: 0, $y: 0, $z: url ) {
 	background-image: $z;
	background-position:$x $y;
	background-repeat: no-repeat;
 }
*/
/**
 * This forces a slight adjustment to elements to allow for before and after content
 */
::before,
::after {
  --corgibytes-content: ''; }

.contact-btn {
  width: 748px;
  height: 253px;
  background: url("../images/corgibytes-contact.png") no-repeat 50% 0px;
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }
  .contact-btn .btn {
    text-indent: 0;
    width: 410px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #a0c33d;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 180px;
    right: 20px; }
    .contact-btn .btn:hover {
      background: #e9662c; }

.purchase-button {
  display: block;
  border-radius: 4px;
  font-family: "Share Tech", sans-serif;
  font-size: 125%;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: .05em;
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  margin-top: 3%;
  margin-right: 3%;
  margin-bottom: 3%;
  max-width: 100%;
  min-width: 200px;
  max-width: 900px;
  clear: both;
  cursor: pointer; }
  .purchase-button:disabled {
    opacity: 0.35;
    cursor: default; }
  .purchase-button.orange {
    background: #f7931D; }
    .purchase-button.orange:enabled:hover {
      background: #E9662C; }
  .purchase-button.teal {
    background: #7DC4B0; }
    .purchase-button.teal:enabled:hover {
      background: #519E98; }
  .purchase-button.green {
    background: #A0C33D; }
    .purchase-button.green:enabled:hover {
      background: #70913c; }
  .purchase-button.gray {
    background: #808284; }
    .purchase-button.gray:enabled:hover {
      background: #585858; }

@media only screen and (max-width: 685px) {
  .contact-btn {
    width: 310px;
    height: 211px;
    background: url("../images/contact-mobile.png") no-repeat; }
    .contact-btn .btn {
      top: 140px;
      left: 32px;
      width: 80%;
      padding: 15px 0; } }
* {
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  height: 100%;
  color: #58585b;
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 21px; }

.global-wrap {
  width: 100%;
  /* 	max-width: 1440px; */
  min-height: 100%;
  margin: 0 auto -88px; }

a {
  color: #82ad0a;
  text-decoration: none; }
  a:hover, a:focus {
    color: #7dcbbc; }

.content h3:before {
  display: block;
  content: " ";
  margin-top: -80px;
  padding-top: 80px;
  visibility: hidden;
  z-index: 1; }

.content h4.presentation-title {
  display: inline-block;
  margin-top: 0;
  z-index: 1; }

/*  ===============================
				HEADER
	===============================*/
.header {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 140px;
  padding: 25px;
  background: white;
  z-index: 1000;
  transition: padding .5s, height .5s; }
  .header .logo {
    background: url("../images/logo.png") no-repeat;
    background-size: contain;
    display: inline-block;
    width: 273px;
    height: 78px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    float: left;
    transition: width .5s, height .5s; }

.sticky .header {
  -webkit-box-shadow: -6px 6px 6px -6px #666;
  -moz-box-shadow: -6px 6px 6px -6px #666;
  box-shadow: -6px 6px 6px -6px #666;
  width: 100% !important;
  padding: 15px 25px;
  height: auto; }
  .sticky .header .logo {
    height: 40px;
    width: 140px; }

/*  ===============================
				CONTENT
	===============================*/
.section-header {
  background: url("../images/bg-tealwrench.png") repeat;
  width: 100%;
  height: 350px;
  text-align: center;
  padding-top: 130px;
  margin-bottom: 50px; }
  .section-header .sub-head {
    line-height: 1.2; }
  .section-header h1 {
    text-transform: uppercase; }

.section-header-home {
  background: url("../images/bg-tealwrench.png") repeat;
  width: 100%;
  height: 350px;
  text-align: center;
  padding-top: 130px; }

@media only screen and (max-width: 920px) {
  .section-header {
    height: 270px;
    padding-top: 105px; }

  h1 {
    font-size: 32px; }

  .sub-head {
    font-size: 24px;
    display: block;
    margin-bottom: 5px; }

  .header {
    padding: 20px;
    height: 120px; }

  .sticky .header {
    padding: 10px; } }
@media only screen and (max-width: 620px) {
  .section-header {
    height: auto;
    padding: 55px 50px 35px;
    margin-bottom: 25px; }

  h1 {
    font-size: 32px; }

  .sub-head {
    font-size: 22px; }

  .header {
    padding: 10px;
    height: 90px; }
    .header .logo {
      width: 230px;
      height: 66px; }

  .sticky .header {
    padding: 10px; } }
@media only screen and (max-width: 385px) {
  .global-wrapper {
    margin: 0 auto -148px; }

  .section-header {
    padding-top: 55px;
    margin-bottom: 10px; }

  h1 {
    font-size: 24px;
    line-height: 29px; }

  .sub-head {
    font-size: 21px; } }
/*  ===============================
				MENU
	===============================*/
.menu-button {
  display: none;
  transition: width .5s, height .5s, margin .5s; }

.close-menu {
  display: none; }

.menu, .menu-show {
  float: right;
  padding-top: 29px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 66%;
  text-align: right;
  font-family: "Share Tech", sans-serif;
  font-size: 21px;
  transition: font-size .5s, padding-top .5s; }
  .menu .main-nav li, .menu-show .main-nav li {
    margin-left: 5px;
    display: inline-block;
    transition: margin-left .5s; }
    .menu .main-nav li:first-child, .menu-show .main-nav li:first-child {
      margin-left: 0px; }
    .menu .main-nav li a, .menu-show .main-nav li a {
      color: #58585b;
      text-decoration: none;
      padding: 8px 10px;
      line-height: .8;
      display: inline-block;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
      .menu .main-nav li a:hover, .menu-show .main-nav li a:hover {
        background: #e9662c;
        color: #fff; }

.sticky .menu, .sticky .menu-show {
  padding-top: 6px;
  font-size: 16px; }
  .sticky .menu .main-nav li, .sticky .menu-show .main-nav li {
    margin-left: 0; }

@media only screen and (max-width: 920px) {
  .sticky .menu-button {
    width: 43px;
    height: 40px;
    margin-top: 0;
    background-size: contain; }

  .menu-button {
    display: block;
    background: url("../images/menu.png") no-repeat;
    width: 57px;
    height: 48px;
    float: right;
    margin-top: 10px; }

  .close-menu {
    width: 100%;
    position: fixed;
    opacity: 0.9;
    background: #fff;
    height: 100%;
    top: 0;
    right: 0; }

  .menu {
    width: 220px;
    height: 100%;
    position: fixed;
    right: -220px;
    top: 0;
    text-align: left;
    font-size: 29px;
    background: #519d97; }
    .menu .main-nav li {
      width: 100%;
      margin-left: 0; }
      .menu .main-nav li a {
        color: #fff;
        display: block;
        padding-left: 15px; }

  .menu-show {
    right: 0px;
    width: 220px;
    height: 100%;
    position: fixed;
    top: 0;
    text-align: left;
    font-size: 29px;
    background: #e9662c; }
    .menu-show .main-nav li {
      width: 100%;
      margin-left: 0; }
      .menu-show .main-nav li a {
        color: #fff;
        display: block;
        padding-left: 15px; }
        .menu-show .main-nav li a:hover {
          background: #7dcbbc;
          -webkit-border-radius: 0px;
          border-radius: 0px;
          background-clip: padding-box;
          /* stops bg color from leaking outside the border: */ }

  .sticky .menu, .sticky .menu-show {
    padding-top: 27px;
    font-size: 29px; } }
/*  ===============================
				FOOTER
	===============================*/
.footer-global, .push {
  height: 88px;
  /* .push must be the same height as .footer and the same height as the negative margin on .content-wrap */
  width: 100%;
  float: left; }

.footer-global {
  background: #f1f1f2;
  padding: 0 50px; }
  .footer-global .footer-wrap {
    /* max-width:1440px; */
    margin: 0 auto; }
  .footer-global .copyright-and-links {
    margin-top: 30px;
    float: left;
    font-size: 16px;
    font-family: "Share Tech", sans-serif; }
    .footer-global .copyright-and-links .copyright {
      color: #808284; }
    .footer-global .copyright-and-links .footer-links {
      margin-top: 3px; }
  .footer-global .social {
    float: right;
    margin-top: 15px; }
    .footer-global .social li {
      display: inline-block;
      margin-left: 8px; }
      .footer-global .social li a {
        display: block;
        height: 57px;
        width: 57px;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap; }

/* line 50, ../../_sass/partials/_footer.scss */
.footer-global .social li a.tw {
  background: url("/images/sprites-s316d8630b8.png") 0 -1874px no-repeat; }

/* line 51, ../../_sass/partials/_footer.scss */
.footer-global .social li a.tw:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1553px no-repeat; }

/* line 53, ../../_sass/partials/_footer.scss */
.footer-global .social li a.fb {
  background: url("/images/sprites-s316d8630b8.png") 0 -552px no-repeat; }

/* line 54, ../../_sass/partials/_footer.scss */
.footer-global .social li a.fb:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -217px no-repeat; }

/* line 56, ../../_sass/partials/_footer.scss */
.footer-global .social li a.git {
  background: url("/images/sprites-s316d8630b8.png") 0 -984px no-repeat; }

/* line 57, ../../_sass/partials/_footer.scss */
.footer-global .social li a.git:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -887px no-repeat; }

@media only screen and (max-width: 385px) {
  .footer-global {
    height: 148px; }

  .push {
    height: 30px; }

  .footer-global {
    padding: 0 30px;
    text-align: center; }
    .footer-global .copyright {
      margin-top: 26px; }
    .footer-global .social {
      float: none;
      display: inline-block; } }
.home-row {
  float: left;
  width: 100%;
  margin: 30px 0; }
  .home-row .col-1 {
    width: 70%;
    float: left;
    display: inline-block; }
  .home-row .col-2 {
    width: 25%;
    float: left;
    display: inline-block; }
    .home-row .col-2.left {
      margin-right: 5%;
      float: left; }
    .home-row .col-2.right {
      margin-left: 5%;
      float: right;
      text-align: right; }
    .home-row .col-2 img {
      width: 100%;
      height: auto;
      max-width: 317px; }
  .home-row p {
    font-size: 24px; }

.inner-tagline {
  float: left;
  display: inline-block;
  width: 100%;
  padding: 60px 0; }
  .inner-tagline .service-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%; }
    .inner-tagline .service-wrap .title {
      width: auto;
      text-align: center;
      margin-bottom: 2em; }

.home-services {
  float: left;
  display: inline-block;
  width: 100%;
  padding: 60px 0;
  margin-bottom: 60px; }
  .home-services .service-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%; }
    .home-services .service-wrap .title {
      width: auto;
      text-align: center;
      margin-bottom: 2em; }
    .home-services .service-wrap .col {
      width: 28%;
      float: left;
      margin-left: 5%;
      text-align: center; }
      .home-services .service-wrap .col:first-child {
        margin-left: 0; }
    .home-services .service-wrap .btn {
      padding: 8px 12px;
      color: #fff;
      display: inline-block;
      background: #a8dbd2;
      text-decoration: none;
      margin-top: 10px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      -webkit-transition: background 0.3s;
      -moz-transition: background 0.3s;
      -o-transition: background 0.3s;
      -ms-transition: background 0.3s;
      transition: background 0.3s; }
      .home-services .service-wrap .btn:hover {
        background: #a0c33d; }

@media only screen and (min-width: 415px) and (max-width: 680px) {
  .home-services {
    text-align: center;
    padding: 40px 0 0;
    margin-bottom: 20px; }
    .home-services .service-wrap .col {
      width: 100%;
      margin: 0; }
      .home-services .service-wrap .col img {
        width: 30%; }
      .home-services .service-wrap .col h4 {
        font-size: 26px; }
    .home-services .service-wrap .btn {
      margin-bottom: 40px;
      font-size: 19px; } }
@media only screen and (max-width: 414px) {
  .home-row {
    text-align: center; }
    .home-row .col-2 {
      width: 100%; }
      .home-row .col-2 img {
        width: 80%;
        margin-bottom: 10px; }
      .home-row .col-2.left {
        margin-right: 0;
        text-align: center; }
      .home-row .col-2.right {
        margin-left: 0;
        text-align: center; }
    .home-row .col-1 {
      width: 100%; }
    .home-row h3 {
      font-size: 24px;
      line-height: 34px;
      margin-bottom: 8px;
      text-align: center; }
    .home-row p {
      font-size: 20px; }

  .home-services {
    text-align: center;
    padding: 40px 0 0;
    margin-bottom: 20px; }
    .home-services .service-wrap .col {
      width: 100%;
      margin: 0; }
      .home-services .service-wrap .col img {
        width: 50%; }
      .home-services .service-wrap .col h4 {
        font-size: 26px; }
    .home-services .service-wrap .btn {
      margin-bottom: 40px;
      font-size: 19px; } }
.content-wrap {
  border-top: none;
  padding-top: 0px; }

/* Add classes of pages with section headers to remove the top padding and border */
.page-about .content-wrap, .page-index .content-wrap {
  padding-top: 0;
  border-top: none; }

.page-about .section-header {
  background: url("../images/bg-greengear.png") repeat; }

.content {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto; }
  .content a {
    color: #a0c33d;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    -ms-transition: color 0.3s;
    transition: color 0.3s; }
    .content a:hover {
      color: #7dcbbc; }

.privacy-policy {
  width: 100%;
  padding: 0 3%;
  margin: 0 auto 30px; }
  .privacy-policy p {
    margin-top: 0.25em;
    margin-bottom: 0.25em; }
  .privacy-policy h2, .privacy-policy h3 {
    margin-top: 1em;
    margin-bottom: 0.5em; }
  .privacy-policy h1 {
    font-family: "Share Tech", sans-serif;
    font-size: 2.5em;
    color: #e9662c;
    text-transform: uppercase;
    margin-top: 0.5em; }
  .privacy-policy h1, .privacy-policy h2, .privacy-policy h3, .privacy-policy h4, .privacy-policy h5, .privacy-policy h6 {
    margin-bottom: 0.5em;
    line-height: 1; }
    .privacy-policy h1::before, .privacy-policy h2::before, .privacy-policy h3::before, .privacy-policy h4::before, .privacy-policy h5::before, .privacy-policy h6::before {
      display: block;
      content: " ";
      margin-top: -80px;
      padding-top: 80px;
      visibility: hidden;
      z-index: 1; }
  .privacy-policy h1 {
    font-size: 2em; }
  .privacy-policy h2 {
    font-size: 1.75em; }
  .privacy-policy h3 {
    font-size: 1.5em; }
  .privacy-policy h4 {
    font-size: 1.25em; }
  .privacy-policy h5 {
    font-size: 1.125em;
    margin-top: 0; }
  .privacy-policy h6 {
    font-size: 1em; }

.row {
  width: 100%;
  clear: right;
  display: inline-block;
  padding: 0 3%;
  margin: 0 auto 30px; }
  .row .col-1 {
    display: inline-block;
    width: 30%;
    float: left; }
    .row .col-1 img {
      width: 100%;
      max-width: 354px;
      height: auto;
      text-align: center; }
    .row .col-1 h3 {
      color: #808284; }
  .row .col-2 {
    display: inline-block;
    width: 65%;
    margin-left: 5%; }

article.row {
  margin-bottom: 80px; }
  article.row .name {
    margin-bottom: 40px;
    font-size: 24px;
    color: #000;
    display: block; }

.whoweare {
  color: #808284;
  text-transform: uppercase;
  margin-bottom: 75px;
  margin-left: 36%;
  font-weight: normal;
  font-size: 36px;
  font-family: "Share Tech", sans-serif; }

.divider {
  background: #e6e7e8;
  width: 100%;
  height: 2px;
  float: left;
  margin: 65px 0 115px; }

.short-divider {
  background: #e6e7e8;
  width: 100%;
  height: 2px;
  float: left;
  margin: 0 0 50px; }

.sublist {
  color: #808284; }
  .sublist li {
    display: inline;
    line-height: 34px;
    padding-left: 0px; }
    .sublist li:before {
      content: "//";
      padding: 0 5px; }
    .sublist li:first-child:before {
      content: "";
      padding: 0; }

.listhead {
  margin-bottom: 15px;
  line-height: 10px; }

.whitegear li {
  margin-left: 15px;
  margin-bottom: 10px;
  background: url("../images/sprites/cog.png") no-repeat;
  padding-left: 25px; }
  .whitegear li:last-child {
    margin-bottom: 20px; }

.row .presentation-title {
  display: inline-block;
  width: 65%;
  margin-left: 5%; }

@media only screen and (max-width: 750px) {
  .row .presentation-title {
    width: 100%;
    align: center; }
  .row .col-1 {
    width: 100%; }
    .row .col-1 img {
      margin: 0 auto 40px;
      display: inherit; }
    .row .col-1 .presentation-title {
      display: block; }
  .row .col-2 {
    width: 100%;
    margin-left: 0%; }
    .row .col-2 .presentation-title {
      display: none; }

  .whoweare {
    margin: 0 auto 75px;
    text-align: center; } }
@media only screen and (max-width: 385px) {
  .content-wrap {
    padding-top: 25px; }

  .content {
    padding: 0px 20px; }

  .article.row name {
    text-align: center;
    margin-bottom: 30px;
    line-height: 30px; } }
.service-info {
  width: 100%;
  margin: 75px 0;
  display: table; }
  .service-info h3 {
    color: #fff;
    text-transform: uppercase; }

.service-col {
  width: 50%;
  padding: 5%;
  display: table-cell; }
  .service-col.teal {
    background: #7dcbbc; }
  .service-col.orange {
    background: #f7931d; }
  .service-col .service-content {
    max-width: 600px;
    margin: 0 auto; }
    .service-col .service-content a {
      color: #58585b;
      text-decoration: none; }
      .service-col .service-content a:hover {
        color: #FFF; }

.services-cta {
  text-align: center;
  max-width: 900px;
  margin: 0px auto; }
  .services-cta .purchase-button {
    margin-left: 3%; }

.buttons-col {
  width: 50%;
  float: left; }

@media only screen and (max-width: 920px) {
  .buttons-col {
    width: 100%;
    display: block;
    float: none; } }
@media only screen and (max-width: 385px) {
  .service-col {
    width: 100%;
    display: block; }

  .buttons-col {
    width: 100%;
    display: block;
    float: none; }

  .listhead {
    line-height: 25px; } }
.contact-col {
  width: 48%;
  float: left;
  display: inline-block; }
  .contact-col.left img {
    width: 100%;
    height: auto; }
  .contact-col.right {
    margin-left: 2%; }
    .contact-col.right h5 {
      margin-top: 0px; }

.top-row h5 {
  margin-top: 0px; }

form .row {
  text-transform: uppercase;
  color: #e9662c;
  margin: 10px 0 10px;
  font-size: 20px;
  font-family: "Share Tech", sans-serif; }
  form .row label {
    text-align: right; }
  form .row .col-2 {
    display: inline-block;
    width: 65%;
    margin-left: 3%; }
  form .row .g-recaptcha {
    margin-left: 33%; }

.required label::after {
  content: " *"; }

button {
  border: 0px; }

.full-width {
  width: 100%; }

.recaptcha-form .row {
  padding: 0; }
.recaptcha-form input, .recaptcha-form textarea, .recaptcha-form select {
  border: 1px solid #ddd;
  padding: 5px;
  top: -4px;
  position: relative;
  resize: vertical; }

@media only screen and (max-width: 920px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }
@media only screen and (max-width: 750px) {
  form .row {
    padding: 0; }
    form .row.recaptcha {
      margin-bottom: 0; }
    form .row .col-2 {
      margin-left: 0; }
    form .row .g-recaptcha {
      margin-left: 0; }
    form .row label {
      text-align: left;
      margin-bottom: 5px; }

  .recaptcha-form input, .recaptcha-form textarea {
    position: static; } }
@media only screen and (max-width: 385px) {
  .contact-col {
    width: 100%; } }
.page-blog {
  max-width: 1440px;
  padding: 0 50px; }
  @media screen and (min-width: 320px) {
    .page-blog {
      padding-left: 90px; } }
  @media screen and (min-width: 740px) {
    .page-blog {
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end; } }

.blog-head {
  font-family: "Share Tech", sans-serif;
  font-size: 36px;
  color: #7dcbbc;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 45px; }

.category-title {
  font-size: 18px;
  color: #808284;
  font-family: "Share Tech", sans-serif;
  margin-bottom: 28px;
  line-height: 39px; }

blockquote {
  margin-bottom: 30px;
  margin-top: 24px;
  border-left: solid 8px;
  border-color: #519E98;
  padding-left: .8em; }
  @media screen and (min-width: 740px) {
    blockquote {
      margin-left: 2em; } }
  blockquote p {
    font-size: 120%;
    font-style: italic;
    color: #7dcbbc; }

ul.blog {
  width: 100%;
  padding-left: 0;
  max-width: 75ch;
  margin-top: 45px; }
  .page-archive ul.blog {
    margin-top: 2px; }
  ul.blog a {
    color: #a0c33d; }
    ul.blog a:visited, ul.blog a:active {
      color: #a0c33d; }
    ul.blog a:hover {
      color: #808284; }
  ul.blog > li {
    margin-bottom: 52px;
    list-style: none; }
    ul.blog > li .postimg {
      width: 24%;
      background: black;
      display: inline-block;
      float: left;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */ }
    ul.blog > li .meta {
      font-family: "Share Tech", sans-serif;
      margin-bottom: 6px;
      display: block; }
    ul.blog > li h5 {
      margin-top: 0; }

.side-nav {
  position: relative; }
  @media screen and (min-width: 740px) {
    .side-nav {
      width: 24.9999%;
      box-sizing: border-box;
      margin-top: 48px;
      margin-right: 40px;
      width: 250px;
      display: inline-block; } }
  .page-archive .side-nav {
    margin-top: 72px; }
  .side-nav h5.side-nav-title {
    color: #808284; }
  .side-nav #search {
    border: none;
    border-bottom: 2px solid #7dcbbc;
    position: relative;
    background: none;
    width: 168px;
    height: 28px;
    font-size: 18px;
    padding-bottom: 13px; }
  .side-nav .curFocus {
    border: none;
    box-shadow: none;
    outline: none;
    border-bottom: 2px #7dcbbc solid !important; }
  .side-nav label {
    position: absolute;
    top: 10px; }
  .side-nav #submit {
    border: none;
    background: url(../images/sprites/search.png);
    height: 42px;
    width: 42px;
    cursor: pointer;
    text-indent: -9999px;
    margin-left: 10px; }
    .side-nav #submit.curFocus {
      border-bottom: none !important; }
    .side-nav #submit:hover {
      background: url(../images/sprites/search-h.png); }

ul.categories {
  font-size: 18px;
  line-height: 36px;
  list-style: none;
  letter-spacing: .03em; }
  ul.categories li {
    position: relative; }
    ul.categories li:before {
      content: '+';
      position: absolute;
      left: -1em;
      line-height: 36px;
      color: #82ad0a; }
    ul.categories li:hover:before, ul.categories li:focus:before {
      color: #7dcbbc; }
  ul.categories a {
    color: #82ad0a; }
    ul.categories a:hover, ul.categories a:focus {
      color: #7dcbbc; }

.service-link {
  z-index: 999;
  position: relative;
  white-space: normal;
  padding-left: 3px; }

.next {
  width: 20%; }

.prev {
  float: left; }

.next,
.prev {
  color: #7dcbbc !important; }
  .next:hover,
  .prev:hover {
    color: #e9662c !important; }

.pagination {
  clear: both;
  display: inline-block;
  font-size: 21px;
  display: flex;
  justify-content: space-between; }
  .pagination ul {
    margin: 0 auto;
    display: block;
    width: 60%;
    text-align: center; }
    @media only screen and (max-width: 960px) {
      .pagination ul {
        display: none; } }
    .pagination ul li {
      display: inline-block;
      margin: 0 6px; }
      .pagination ul li a {
        padding: 5px 8px 3px;
        color: #a0c33d; }
        .pagination ul li a.current-page {
          background: #7dcbbc;
          -webkit-border-radius: 5px;
          border-radius: 5px;
          background-clip: padding-box;
          /* stops bg color from leaking outside the border: */
          color: #fff; }

@media only screen and (max-width: 385px) {
  .page-blog .content {
    padding: 0 20px; }

  ul.blog {
    width: 100%; }
    ul.blog .excerpt {
      display: none; }

  .side-nav {
    margin-bottom: 40px;
    padding-left: 0; } }
.sidebar {
  float: right;
  max-width: 20ch;
  background: #f1f1f2;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-left: 0.5rem; }

.footnote {
  color: #808284;
  text-decoration: none; }

.footnotes {
  color: #808284; }

.footnotes ol,
.footnotes li,
.footnotes p {
  margin-bottom: 0;
  font-size: 80%; }

a.reversefootnote {
  color: #808284;
  text-decoration: none; }

a.reversefootnote:hover {
  text-decoration: underline; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

.post {
  padding-left: 0;
  max-width: 75ch; }
  .post p {
    margin-top: 0.25em;
    margin-bottom: 1.25em; }
  .post h2 {
    margin-top: 1em;
    margin-bottom: 0.5em; }

.post-content {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  justify-content: flex-start; }
  @media screen and (min-width: 320px) {
    .post-content {
      padding-left: 90px; } }
  @media screen and (min-width: 740px) {
    .post-content {
      flex-direction: row; }
      .post-content .side-nav {
        order: 0;
        margin-top: 69px; }
      .post-content .post {
        order: 1;
        margin: 0;
        margin-top: -25px; } }

h5.side-nav-title {
  margin-top: 0; }

ul.post-categories {
  list-style: none;
  letter-spacing: .03em;
  display: inline;
  padding: 0; }
  ul.post-categories li {
    display: inline; }

ul.post-tags {
  list-style: none;
  padding: 32px 0;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: .03em; }
  ul.post-tags li {
    display: inline; }
    ul.post-tags li span {
      margin: 0 0.5em;
      display: inline-block; }

.backtoblog {
  padding: 6px 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  background: #7dcbbc; }
  .backtoblog:hover {
    background: #e9662c; }

.share-side {
  float: left;
  height: 100%;
  margin-top: 25px; }
  .share-side li {
    margin-bottom: 22px;
    width: 115px;
    float: left;
    display: inline-block;
    padding-left: 44px; }
    .share-side li:first-child {
      padding: 0;
      text-transform: uppercase;
      font-size: 18px;
      text-align: center; }
    .share-side li a {
      display: block;
      height: 25px;
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap; }

/* line 106, ../../_sass/partials/_post.scss */
.share-side li a.tw {
  background: url("/images/sprites-s316d8630b8.png") 0 -1708px no-repeat; }

/* line 107, ../../_sass/partials/_post.scss */
.share-side li a.tw:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1650px no-repeat; }

/* line 109, ../../_sass/partials/_post.scss */
.share-side li a.fb {
  background: url("/images/sprites-s316d8630b8.png") 6px -376px no-repeat; }

/* line 110, ../../_sass/partials/_post.scss */
.share-side li a.fb:hover {
  background: url("/images/sprites-s316d8630b8.png") 6px -314px no-repeat; }

/* line 112, ../../_sass/partials/_post.scss */
.share-side li a.in {
  background: url("/images/sprites-s316d8630b8.png") 0 -1142px no-repeat; }

/* line 113, ../../_sass/partials/_post.scss */
.share-side li a.in:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1081px no-repeat; }

/* line 115, ../../_sass/partials/_post.scss */
.share-side li a.pin {
  background: url("/images/sprites-s316d8630b8.png") 0 -1377px no-repeat; }

/* line 116, ../../_sass/partials/_post.scss */
.share-side li a.pin:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1315px no-repeat; }

/* line 118, ../../_sass/partials/_post.scss */
.share-side li a.google {
  background: url("/images/sprites-s316d8630b8.png") 0 -711px no-repeat; }

/* line 119, ../../_sass/partials/_post.scss */
.share-side li a.google:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -649px no-repeat; }

.post-content img {
  max-width: 80%; }

article.post {
  max-width: 75ch;
  margin: 0 auto;
  color: #808284; }
  article.post h1 {
    font-family: "Share Tech", sans-serif;
    font-size: 1.5em;
    color: #e9662c;
    text-transform: uppercase;
    margin-top: 0.5em; }
    @media screen and (min-width: 960px) {
      article.post h1 {
        font-size: 2em; } }
  article.post h1, article.post h2, article.post h3, article.post h4, article.post h5, article.post h6 {
    margin-bottom: 0.5em;
    line-height: 1; }
  article.post h2 {
    font-size: 1.75em; }
  article.post h3 {
    font-size: 1.5em; }
  article.post h4 {
    font-size: 1.25em; }
  article.post h5 {
    font-size: 1.125em;
    margin-top: 0; }
  article.post h6 {
    font-size: 1em; }
  article.post .feat-img {
    width: 100%;
    margin-bottom: 8px;
    height: auto;
    max-height: 415px;
    background: black; }
  article.post .meta {
    font-family: "Share Tech", sans-serif;
    margin-bottom: 24px;
    display: block;
    line-height: 1.2; }
  article.post .copycode, article.post code {
    padding: 4px 6px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    background: #2a2a2a;
    color: #fff;
    font-family: "Share Tech Mono", monospace;
    font-size: 18px; }
  article.post pre code {
    padding: 0;
    display: block;
    overflow-x: auto; }
  article.post .codeblock, article.post pre {
    background: #2a2a2a;
    color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    width: 100%;
    padding: 30px;
    font-family: "Share Tech Mono", monospace;
    font-size: 16px;
    line-height: 32px;
    margin: 15px 0;
    float: left; }
    article.post .codeblock .comment, article.post .codeblock .c1, article.post pre .comment, article.post pre .c1 {
      color: #808284; }
    article.post .codeblock .ltorange, article.post pre .ltorange {
      color: #f2b95a; }
    article.post .codeblock .orange, article.post .codeblock .k, article.post pre .orange, article.post pre .k {
      color: #f7931d; }
    article.post .codeblock .dkorange, article.post .codeblock .nb, article.post pre .dkorange, article.post pre .nb {
      color: #e9662c; }
    article.post .codeblock .ltteal, article.post pre .ltteal {
      color: #a8dbd2; }
    article.post .codeblock .teal, article.post pre .teal {
      color: #7dcbbc; }
    article.post .codeblock .dkteal, article.post pre .dkteal {
      color: #519d97; }
    article.post .codeblock .ltgreen, article.post pre .ltgreen {
      color: #cfdc6d; }
    article.post .codeblock .green, article.post .codeblock .s1, article.post .codeblock .s2, article.post pre .green, article.post pre .s1, article.post pre .s2 {
      color: #a0c33d; }
    article.post .codeblock .dkgreen, article.post pre .dkgreen {
      color: #70913c; }

.post-content .blog-tweet-screenshot img {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  min-width: 320px;
  max-width: 550px; }

.author {
  width: 100%;
  display: inline-block;
  margin: 45px 0 30px;
  border-top: 1px solid #e6e7e8;
  border-bottom: 5px solid #a8dbd2;
  background: #f1f1f2;
  padding: 30px 7.5% 30px 7.5%; }
  .author img {
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    width: 125px;
    height: 125px;
    background: grey;
    display: inline-block;
    float: left; }
  .author .bio {
    display: inline-block;
    margin-left: 30px;
    font-size: 14px;
    float: left;
    width: 50%;
    line-height: 24px;
    color: #808284; }
    .author .bio .author-name {
      font-size: 21px;
      color: #58585b;
      display: block;
      margin-bottom: 10px; }
  .author .share-bottom {
    float: right;
    display: inline-block; }
    .author .share-bottom li {
      float: left;
      display: inline-block;
      margin-right: 5px;
      font-family: "Share Tech", sans-serif; }
      .author .share-bottom li a {
        display: inline-block;
        height: 25px;
        width: 25px;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap; }

/* line 267, ../../_sass/partials/_post.scss */
.author .share-bottom li a.tw {
  background: url("/images/sprites-s316d8630b8.png") 0 -1818px no-repeat; }

/* line 268, ../../_sass/partials/_post.scss */
.author .share-bottom li a.tw:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1764px no-repeat; }

/* line 270, ../../_sass/partials/_post.scss */
.author .share-bottom li a.fb {
  background: url("/images/sprites-s316d8630b8.png") 6px -495px no-repeat; }

/* line 271, ../../_sass/partials/_post.scss */
.author .share-bottom li a.fb:hover {
  background: url("/images/sprites-s316d8630b8.png") 6px -438px no-repeat; }

/* line 273, ../../_sass/partials/_post.scss */
.author .share-bottom li a.in {
  background: url("/images/sprites-s316d8630b8.png") 0 -1259px no-repeat; }

/* line 274, ../../_sass/partials/_post.scss */
.author .share-bottom li a.in:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1203px no-repeat; }

/* line 276, ../../_sass/partials/_post.scss */
.author .share-bottom li a.pin {
  background: url("/images/sprites-s316d8630b8.png") 0 -1496px no-repeat; }

/* line 277, ../../_sass/partials/_post.scss */
.author .share-bottom li a.pin:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -1439px no-repeat; }

/* line 279, ../../_sass/partials/_post.scss */
.author .share-bottom li a.google {
  background: url("/images/sprites-s316d8630b8.png") 0 -830px no-repeat; }

/* line 280, ../../_sass/partials/_post.scss */
.author .share-bottom li a.google:hover {
  background: url("/images/sprites-s316d8630b8.png") 0 -773px no-repeat; }

.post-tags {
  border-top: 1px solid #58585b;
  margin-top: 2em;
  margin-bottom: 4em;
  padding-top: 2em; }
  .post-tags a {
    display: inline-block;
    margin-right: 12px;
    font-family: "Share Tech", sans-serif; }
    .post-tags a:hover {
      color: #7dcbbc; }
    .post-tags a:after {
      content: "\25AA";
      color: #2a2a2a;
      padding-left: 12px;
      font-size: 12px;
      vertical-align: middle;
      margin-bottom: 2px;
      display: inline-block; }
    .post-tags a:last-of-type {
      margin-right: 0; }
      .post-tags a:last-of-type:after {
        content: "";
        padding-left: 0; }

#disqus_thread {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto; }

.morepostsheader {
  font-size: 38px;
  margin-bottom: 5px;
  /* font-weight: 600; */
  text-transform: uppercase;
  color: #a0c33d;
  text-align: center;
  margin-top: 25px; }

.moreposts {
  width: 100%;
  padding-left: 0px; }
  .moreposts .blog {
    width: 85%; }
    .moreposts .blog li .postlink {
      color: #808284; }
    .moreposts .blog li .post {
      width: 65%; }
    .moreposts .blog li .postimg {
      width: 175px;
      height: 175px; }
    .moreposts .blog li .excerpt {
      font-size: 16px;
      line-height: 26px; }

@media only screen and (max-width: 1035px) {
  .moreposts .blog {
    width: 75%; } }
@media only screen and (max-width: 768px) {
  .backtoblog {
    display: block;
    margin-bottom: 15px; }

  .share-side {
    display: none; }

  article.post {
    width: 100%; }

  .moreposts .blog li .post {
    width: 60%; }
  .moreposts .blog li .postimg {
    width: 125px;
    height: 125px; } }
@media only screen and (max-width: 385px) {
  .post-content {
    width: 100%;
    padding: 0 20px; }

  article.post {
    width: 100%; }
    article.post p, article.post ul, article.post ol, article.post li, article.post td, article.post th {
      font-size: 16px;
      line-height: 34px; }

  .author {
    width: 100%;
    display: inline-block;
    margin: 85px 0 10px;
    padding: 30px 20px 30px 20px;
    text-align: left; }
    .author .bio {
      width: 100%;
      margin-left: 0px; }
    .author img {
      margin-bottom: 10px; }
    .author .share-bottom {
      float: left;
      margin-top: 10px; }

  .moreposts {
    padding-left: 0; }
    .moreposts .blog {
      width: 100%; }
      .moreposts .blog .excerpt {
        display: none; }
      .moreposts .blog li .post {
        width: 46%;
        margin-left: 7%; }
      .moreposts .blog li .postimg {
        width: 125px;
        height: 125px; } }
.top-row h5 {
  margin-top: 0px; }

.thanks .thank-you-image {
  text-align: right; }
  .thanks .thank-you-image img {
    width: 35%;
    min-width: 150px; }
.thanks .row .col-2 {
  width: 68%;
  max-width: 625px;
  margin-left: 2%; }
.thanks .video {
  width: 640px;
  height: 480px;
  margin-bottom: 25px; }

.headshot-wrapper {
  border: 8px solid transparent;
  border-radius: 50%;
  overflow: hidden; }

.about-member:nth-of-type(9n+1) .headshot-wrapper {
  border-color: #a8dbd2; }
.about-member:nth-of-type(9n+2) .headshot-wrapper {
  border-color: #f2b95a; }
.about-member:nth-of-type(9n+3) .headshot-wrapper {
  border-color: #cfdc6d; }
.about-member:nth-of-type(9n+4) .headshot-wrapper {
  border-color: #7dcbbc; }
.about-member:nth-of-type(9n+5) .headshot-wrapper {
  border-color: #f7931d; }
.about-member:nth-of-type(9n+6) .headshot-wrapper {
  border-color: #a0c33d; }
.about-member:nth-of-type(9n+7) .headshot-wrapper {
  border-color: #519d97; }
.about-member:nth-of-type(9n+8) .headshot-wrapper {
  border-color: #e9662c; }
.about-member:nth-of-type(9n+9) .headshot-wrapper {
  border-color: #70913c; }
.about-member:nth-last-of-type(2) .headshot-wrapper {
  border-color: #e6e7e8; }

.headshot-image {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  text-align: center;
  display: block; }

@media only screen and (max-width: 750px) {
  .headshot-container {
    text-align: center; }
    .headshot-container .headshot-wrapper {
      display: inline-block;
      margin-bottom: 40px; }
      .headshot-container .headshot-wrapper .headshot-image {
        margin: 0; } }
