/* 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;
}

/* 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;
}

/* line 66, ../../_sass/partials/base.scss */
.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;
}
/* line 73, ../../_sass/partials/base.scss */
.content ul, .post-content ul, .privacy-policy ul {
  list-style: url("../images/CB_gear.png");
}
/* line 77, ../../_sass/partials/base.scss */
.content ol, .post-content ol, .privacy-policy ol {
  list-style: decimal;
}

/* line 84, ../../_sass/partials/base.scss */
.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]--> */
/* line 6, ../../_sass/modules/_ie.scss */
.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
 */
/* line 28, ../../_sass/modules/_modal.scss */
html {
  overflow-y: scroll;
}

/* line 32, ../../_sass/modules/_modal.scss */
.has-overlay {
  overflow: hidden;
}
/* line 35, ../../_sass/modules/_modal.scss */
.has-overlay > body {
  height: 100%;
  overflow-y: scroll;
}

/* line 41, ../../_sass/modules/_modal.scss */
.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;
}
/* line 65, ../../_sass/modules/_modal.scss */
.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;
}
/* line 79, ../../_sass/modules/_modal.scss */
.is-active.semantic-content {
  display: block\9;
}
/* line 84, ../../_sass/modules/_modal.scss */
.semantic-content:target {
  display: block\9;
}
/* line 90, ../../_sass/modules/_modal.scss */
.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);
}
/* line 105, ../../_sass/modules/_modal.scss */
.semantic-content .modal-inner > img,
.semantic-content .modal-inner > video,
.semantic-content .modal-inner > iframe {
  width: 100%;
  height: auto;
  min-height: 300px;
}
/* line 113, ../../_sass/modules/_modal.scss */
.semantic-content .modal-inner > img {
  width: auto;
  max-width: 100%;
}
/* line 120, ../../_sass/modules/_modal.scss */
.semantic-content header {
  border-bottom: 1px solid #ddd;
  padding: 0 1.2em;
}
/* line 124, ../../_sass/modules/_modal.scss */
.semantic-content header > h2 {
  margin: 0.5em 0;
}
/* line 131, ../../_sass/modules/_modal.scss */
.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;
}
/* line 139, ../../_sass/modules/_modal.scss */
.semantic-content .modal-content > * {
  max-width: 100%;
}
/* line 146, ../../_sass/modules/_modal.scss */
.semantic-content footer {
  border-top: 1px solid white;
  padding: 0 1.2em 18px;
  background: #f0f0f0;
  border-radius: 2px;
}
/* line 155, ../../_sass/modules/_modal.scss */
.semantic-content .modal-close {
  display: block;
  text-indent: -100px;
  overflow: hidden;
}
/* line 161, ../../_sass/modules/_modal.scss */
.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==");
}
/* line 175, ../../_sass/modules/_modal.scss */
.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) {
  /* line 197, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-inner {
    width: auto;
    left: 20px;
    right: 20px;
    margin-left: 0;
  }
  /* line 204, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-close {
    left: auto;
    right: 33px;
    margin-left: 0;
  }
  /* line 209, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-close:after {
    margin-left: 40%;
  }
}
@media screen and (max-width: 30em) {
  /* line 41, ../../_sass/modules/_modal.scss */
  .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;
  }
  /* line 231, ../../_sass/modules/_modal.scss */
  .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;
  }
  /* line 239, ../../_sass/modules/_modal.scss */
  .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);
  }
  /* line 258, ../../_sass/modules/_modal.scss */
  .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;
  }
  /* line 273, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-content {
    max-height: none;
  }
  /* line 277, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-close {
    right: auto;
    text-decoration: none;
  }
  /* line 281, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-close:before {
    display: block;
  }
  /* line 285, ../../_sass/modules/_modal.scss */
  .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) {
  /* line 299, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-content {
    max-height: 340px;
    max-height: 50vh;
  }
}
@media screen and (max-height: 36em) and (min-width: 30em) {
  /* line 306, ../../_sass/modules/_modal.scss */
  .semantic-content .modal-content {
    max-height: 265px;
    max-height: 40vh;
  }
}

@media screen and (min-width: 30em) {
  /* line 315, ../../_sass/modules/_modal.scss */
  .semantic-content {
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
}

/*  ===============================
				FONTS
	===============================*/
/* line 10, ../../_sass/modules/_typography.scss */
em {
  font-style: italic;
}

/* line 12, ../../_sass/modules/_typography.scss */
strong {
  font-weight: 700;
}

/* line 14, ../../_sass/modules/_typography.scss */
p {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 34px;
}

/* line 20, ../../_sass/modules/_typography.scss */
h1, h2, h3, h4, h5,
blockquote {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 26, ../../_sass/modules/_typography.scss */
h1, h2, h3, h4, h5 {
  font-weight: normal;
}

/* line 30, ../../_sass/modules/_typography.scss */
h1 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 42px;
  font-font-weight: 300;
}

/* line 41, ../../_sass/modules/_typography.scss */
h2 {
  font-family: "Share Tech", sans-serif;
  font-size: 48px;
  color: #e9662c;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* line 51, ../../_sass/modules/_typography.scss */
h3 {
  font-size: 36px;
  font-family: "Share Tech", sans-serif;
  color: #f7931d;
  margin-bottom: 5px;
  line-height: 42px;
  text-transform: uppercase;
}

/* line 63, ../../_sass/modules/_typography.scss */
h4 {
  text-transform: uppercase;
  color: #519d97;
  margin: 18px 0;
  font-size: 36px;
  font-family: "Share Tech", sans-serif;
}

/* line 73, ../../_sass/modules/_typography.scss */
h5 {
  text-transform: uppercase;
  color: #e9662c;
  margin: 48px 0 10px;
  font-size: 28px;
  font-family: "Share Tech", sans-serif;
}

/* line 83, ../../_sass/modules/_typography.scss */
h6 {
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 22px;
  color: #7dcbbc;
  text-transform: uppercase;
  margin: 40px 0 8px;
}

/* line 93, ../../_sass/modules/_typography.scss */
.sub-head {
  color: #fff;
  font-size: 36px;
  font-family: "Rambla", "Helvetica", sans-serif;
}

/* line 101, ../../_sass/modules/_typography.scss */
.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;
 }
*/
/* line 1, ../../_sass/partials/_buttons.scss */
.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;
}
/* line 9, ../../_sass/partials/_buttons.scss */
.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;
}
/* line 21, ../../_sass/partials/_buttons.scss */
.contact-btn .btn:hover {
  background: #e9662c;
}

/* line 25, ../../_sass/partials/_buttons.scss */
.purchase-button {
  display: block;
  border-radius: 4px;
  font-family: "Share Tech", sans-serif;
  font-size: 18px;
  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;
  clear: both;
  cursor: pointer;
}
/* line 44, ../../_sass/partials/_buttons.scss */
.purchase-button:disabled {
  opacity: 0.35;
  cursor: default;
}
/* line 49, ../../_sass/partials/_buttons.scss */
.purchase-button.orange {
  background: #f7931D;
}
/* line 51, ../../_sass/partials/_buttons.scss */
.purchase-button.orange:enabled:hover {
  background: #E9662C;
}
/* line 54, ../../_sass/partials/_buttons.scss */
.purchase-button.teal {
  background: #7DC4B0;
}
/* line 56, ../../_sass/partials/_buttons.scss */
.purchase-button.teal:enabled:hover {
  background: #519E98;
}
/* line 59, ../../_sass/partials/_buttons.scss */
.purchase-button.green {
  background: #A0C33D;
}
/* line 61, ../../_sass/partials/_buttons.scss */
.purchase-button.green:enabled:hover {
  background: #70913c;
}
/* line 64, ../../_sass/partials/_buttons.scss */
.purchase-button.gray {
  background: #808284;
}
/* line 66, ../../_sass/partials/_buttons.scss */
.purchase-button.gray:enabled:hover {
  background: #585858;
}

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

/* line 8, ../../_sass/partials/_global.scss */
html, body {
  height: 100%;
  color: #58585b;
  font-family: "Rambla", "Helvetica", sans-serif;
  font-size: 21px;
}

/* line 15, ../../_sass/partials/_global.scss */
.global-wrap {
  width: 100%;
  /* 	max-width: 1440px; */
  min-height: 100%;
  margin: 0 auto -88px;
}

/* line 22, ../../_sass/partials/_global.scss */
a {
  color: #82ad0a;
  text-decoration: none;
}
/* line 26, ../../_sass/partials/_global.scss */
a:hover, a:focus {
  color: #7dcbbc;
}

/* line 31, ../../_sass/partials/_global.scss */
.content h3:before {
  display: block;
  content: " ";
  margin-top: -160px;
  padding-top: 160px;
  visibility: hidden;
  z-index: 1;
}

/* line 40, ../../_sass/partials/_global.scss */
.content h4.presentation-title {
  display: inline-block;
  margin-top: 0;
  z-index: 1;
}

/*  ===============================
				HEADER
	===============================*/
/* line 51, ../../_sass/partials/_global.scss */
.header {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 140px;
  padding: 25px;
  background: white;
  z-index: 1000;
  transition: padding .5s, height .5s;
}
/* line 60, ../../_sass/partials/_global.scss */
.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;
}

/* line 74, ../../_sass/partials/_global.scss */
.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;
}
/* line 82, ../../_sass/partials/_global.scss */
.sticky .header .logo {
  height: 40px;
  width: 140px;
}

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

/* line 106, ../../_sass/partials/_global.scss */
.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) {
  /* line 115, ../../_sass/partials/_global.scss */
  .section-header {
    height: 270px;
    padding-top: 105px;
  }

  /* line 119, ../../_sass/partials/_global.scss */
  h1 {
    font-size: 32px;
  }

  /* line 122, ../../_sass/partials/_global.scss */
  .sub-head {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
  }

  /* line 128, ../../_sass/partials/_global.scss */
  .header {
    padding: 20px;
    height: 120px;
  }

  /* line 134, ../../_sass/partials/_global.scss */
  .sticky .header {
    padding: 10px;
  }
}
@media only screen and (max-width: 620px) {
  /* line 141, ../../_sass/partials/_global.scss */
  .section-header {
    height: auto;
    padding: 55px 50px 35px;
    margin-bottom: 25px;
  }

  /* line 147, ../../_sass/partials/_global.scss */
  h1 {
    font-size: 32px;
  }

  /* line 151, ../../_sass/partials/_global.scss */
  .sub-head {
    font-size: 22px;
  }

  /* line 155, ../../_sass/partials/_global.scss */
  .header {
    padding: 10px;
    height: 90px;
  }
  /* line 159, ../../_sass/partials/_global.scss */
  .header .logo {
    width: 230px;
    height: 66px;
  }

  /* line 166, ../../_sass/partials/_global.scss */
  .sticky .header {
    padding: 10px;
  }
}
@media only screen and (max-width: 385px) {
  /* line 173, ../../_sass/partials/_global.scss */
  .global-wrapper {
    margin: 0 auto -148px;
  }

  /* line 176, ../../_sass/partials/_global.scss */
  .section-header {
    padding-top: 55px;
    margin-bottom: 10px;
  }

  /* line 180, ../../_sass/partials/_global.scss */
  h1 {
    font-size: 24px;
    line-height: 29px;
  }

  /* line 184, ../../_sass/partials/_global.scss */
  .sub-head {
    font-size: 21px;
  }
}
/*  ===============================
				MENU
	===============================*/
/* line 5, ../../_sass/partials/_menu.scss */
.menu-button {
  display: none;
  transition: width .5s, height .5s, margin .5s;
}

/* line 9, ../../_sass/partials/_menu.scss */
.close-menu {
  display: none;
}

/* line 11, ../../_sass/partials/_menu.scss */
.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;
}
/* line 24, ../../_sass/partials/_menu.scss */
.menu .main-nav li, .menu-show .main-nav li {
  margin-left: 5px;
  display: inline-block;
  transition: margin-left .5s;
}
/* line 28, ../../_sass/partials/_menu.scss */
.menu .main-nav li:first-child, .menu-show .main-nav li:first-child {
  margin-left: 0px;
}
/* line 29, ../../_sass/partials/_menu.scss */
.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: */
}
/* line 36, ../../_sass/partials/_menu.scss */
.menu .main-nav li a:hover, .menu-show .main-nav li a:hover {
  background: #e9662c;
  color: #fff;
}

/* line 46, ../../_sass/partials/_menu.scss */
.sticky .menu, .sticky .menu-show {
  padding-top: 6px;
  font-size: 16px;
}
/* line 51, ../../_sass/partials/_menu.scss */
.sticky .menu .main-nav li, .sticky .menu-show .main-nav li {
  margin-left: 0;
}

@media only screen and (max-width: 920px) {
  /* line 60, ../../_sass/partials/_menu.scss */
  .sticky .menu-button {
    width: 43px;
    height: 40px;
    margin-top: 0;
    background-size: contain;
  }

  /* line 67, ../../_sass/partials/_menu.scss */
  .menu-button {
    display: block;
    background: url("../images/menu.png") no-repeat;
    width: 57px;
    height: 48px;
    float: right;
    margin-top: 10px;
  }

  /* line 75, ../../_sass/partials/_menu.scss */
  .close-menu {
    width: 100%;
    position: fixed;
    opacity: 0.9;
    background: #fff;
    height: 100%;
    top: 0;
    right: 0;
  }

  /* line 84, ../../_sass/partials/_menu.scss */
  .menu {
    width: 220px;
    height: 100%;
    position: fixed;
    right: -220px;
    top: 0;
    text-align: left;
    font-size: 29px;
    background: #519d97;
  }
  /* line 94, ../../_sass/partials/_menu.scss */
  .menu .main-nav li {
    width: 100%;
    margin-left: 0;
  }
  /* line 97, ../../_sass/partials/_menu.scss */
  .menu .main-nav li a {
    color: #fff;
    display: block;
    padding-left: 15px;
  }

  /* line 105, ../../_sass/partials/_menu.scss */
  .menu-show {
    right: 0px;
    width: 220px;
    height: 100%;
    position: fixed;
    top: 0;
    text-align: left;
    font-size: 29px;
    background: #e9662c;
  }
  /* line 115, ../../_sass/partials/_menu.scss */
  .menu-show .main-nav li {
    width: 100%;
    margin-left: 0;
  }
  /* line 118, ../../_sass/partials/_menu.scss */
  .menu-show .main-nav li a {
    color: #fff;
    display: block;
    padding-left: 15px;
  }
  /* line 122, ../../_sass/partials/_menu.scss */
  .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: */
  }

  /* line 128, ../../_sass/partials/_menu.scss */
  .sticky .menu, .sticky .menu-show {
    padding-top: 27px;
    font-size: 29px;
  }
}
/*  ===============================
				FOOTER
	===============================*/
/* line 6, ../../_sass/partials/_footer.scss */
.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;
}

/* line 12, ../../_sass/partials/_footer.scss */
.footer-global {
  background: #f1f1f2;
  padding: 0 50px;
}
/* line 16, ../../_sass/partials/_footer.scss */
.footer-global .footer-wrap {
  /* max-width:1440px; */
  margin: 0 auto;
}
/* line 21, ../../_sass/partials/_footer.scss */
.footer-global .copyright-and-links {
  margin-top: 30px;
  float: left;
  font-size: 16px;
  font-family: "Share Tech", sans-serif;
}
/* line 30, ../../_sass/partials/_footer.scss */
.footer-global .copyright-and-links .copyright {
  color: #808284;
}
/* line 34, ../../_sass/partials/_footer.scss */
.footer-global .copyright-and-links .footer-links {
  margin-top: 3px;
}
/* line 39, ../../_sass/partials/_footer.scss */
.footer-global .social {
  float: right;
  margin-top: 15px;
}
/* line 42, ../../_sass/partials/_footer.scss */
.footer-global .social li {
  display: inline-block;
  margin-left: 8px;
}
/* line 45, ../../_sass/partials/_footer.scss */
.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) {
  /* line 65, ../../_sass/partials/_footer.scss */
  .footer-global {
    height: 148px;
  }

  /* line 68, ../../_sass/partials/_footer.scss */
  .push {
    height: 30px;
  }

  /* line 69, ../../_sass/partials/_footer.scss */
  .footer-global {
    padding: 0 30px;
    text-align: center;
  }
  /* line 72, ../../_sass/partials/_footer.scss */
  .footer-global .copyright {
    margin-top: 26px;
  }
  /* line 75, ../../_sass/partials/_footer.scss */
  .footer-global .social {
    float: none;
    display: inline-block;
  }
}
/* line 3, ../../_sass/partials/_home.scss */
.home-row {
  float: left;
  width: 100%;
  margin: 30px 0;
}
/* line 8, ../../_sass/partials/_home.scss */
.home-row .col-1 {
  width: 70%;
  float: left;
  display: inline-block;
}
/* line 13, ../../_sass/partials/_home.scss */
.home-row .col-2 {
  width: 25%;
  float: left;
  display: inline-block;
}
/* line 17, ../../_sass/partials/_home.scss */
.home-row .col-2.left {
  margin-right: 5%;
  float: left;
}
/* line 18, ../../_sass/partials/_home.scss */
.home-row .col-2.right {
  margin-left: 5%;
  float: right;
  text-align: right;
}
/* line 19, ../../_sass/partials/_home.scss */
.home-row .col-2 img {
  width: 100%;
  height: auto;
  max-width: 317px;
}
/* line 25, ../../_sass/partials/_home.scss */
.home-row p {
  font-size: 24px;
}

/* line 28, ../../_sass/partials/_home.scss */
.inner-tagline {
  float: left;
  display: inline-block;
  width: 100%;
  padding: 60px 0;
}
/* line 33, ../../_sass/partials/_home.scss */
.inner-tagline .service-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}
/* line 37, ../../_sass/partials/_home.scss */
.inner-tagline .service-wrap .title {
  width: auto;
  text-align: center;
  margin-bottom: 2em;
}

/* line 45, ../../_sass/partials/_home.scss */
.home-services {
  float: left;
  display: inline-block;
  width: 100%;
  padding: 60px 0;
  margin-bottom: 60px;
}
/* line 51, ../../_sass/partials/_home.scss */
.home-services .service-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}
/* line 55, ../../_sass/partials/_home.scss */
.home-services .service-wrap .title {
  width: auto;
  text-align: center;
  margin-bottom: 2em;
}
/* line 60, ../../_sass/partials/_home.scss */
.home-services .service-wrap .col {
  width: 28%;
  float: left;
  margin-left: 5%;
  text-align: center;
}
/* line 65, ../../_sass/partials/_home.scss */
.home-services .service-wrap .col:first-child {
  margin-left: 0;
}
/* line 67, ../../_sass/partials/_home.scss */
.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;
}
/* line 76, ../../_sass/partials/_home.scss */
.home-services .service-wrap .btn:hover {
  background: #a0c33d;
}

@media only screen and (min-width: 415px) and (max-width: 680px) {
  /* line 84, ../../_sass/partials/_home.scss */
  .home-services {
    text-align: center;
    padding: 40px 0 0;
    margin-bottom: 20px;
  }
  /* line 89, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col {
    width: 100%;
    margin: 0;
  }
  /* line 92, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col img {
    width: 30%;
  }
  /* line 93, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col h4 {
    font-size: 26px;
  }
  /* line 97, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .btn {
    margin-bottom: 40px;
    font-size: 19px;
  }
}
@media only screen and (max-width: 414px) {
  /* line 103, ../../_sass/partials/_home.scss */
  .home-row {
    text-align: center;
  }
  /* line 106, ../../_sass/partials/_home.scss */
  .home-row .col-2 {
    width: 100%;
  }
  /* line 108, ../../_sass/partials/_home.scss */
  .home-row .col-2 img {
    width: 80%;
    margin-bottom: 10px;
  }
  /* line 109, ../../_sass/partials/_home.scss */
  .home-row .col-2.left {
    margin-right: 0;
    text-align: center;
  }
  /* line 110, ../../_sass/partials/_home.scss */
  .home-row .col-2.right {
    margin-left: 0;
    text-align: center;
  }
  /* line 112, ../../_sass/partials/_home.scss */
  .home-row .col-1 {
    width: 100%;
  }
  /* line 115, ../../_sass/partials/_home.scss */
  .home-row h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
    text-align: center;
  }
  /* line 121, ../../_sass/partials/_home.scss */
  .home-row p {
    font-size: 20px;
  }

  /* line 125, ../../_sass/partials/_home.scss */
  .home-services {
    text-align: center;
    padding: 40px 0 0;
    margin-bottom: 20px;
  }
  /* line 130, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col {
    width: 100%;
    margin: 0;
  }
  /* line 133, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col img {
    width: 50%;
  }
  /* line 134, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .col h4 {
    font-size: 26px;
  }
  /* line 138, ../../_sass/partials/_home.scss */
  .home-services .service-wrap .btn {
    margin-bottom: 40px;
    font-size: 19px;
  }
}
/* line 1, ../../_sass/partials/_interior.scss */
.content-wrap {
  border-top: none;
  padding-top: 0px;
}

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

/* line 16, ../../_sass/partials/_interior.scss */
.page-about .section-header {
  background: url("../images/bg-greengear.png") repeat;
}

/* line 21, ../../_sass/partials/_interior.scss */
.content {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
}
/* line 25, ../../_sass/partials/_interior.scss */
.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;
}
/* line 29, ../../_sass/partials/_interior.scss */
.content a:hover {
  color: #7dcbbc;
}

/* line 35, ../../_sass/partials/_interior.scss */
.privacy-policy {
  width: 100%;
  padding: 0 3%;
  margin: 0 auto 30px;
}
/* line 40, ../../_sass/partials/_interior.scss */
.privacy-policy p {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
/* line 45, ../../_sass/partials/_interior.scss */
.privacy-policy h2, .privacy-policy h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
/* line 50, ../../_sass/partials/_interior.scss */
.privacy-policy h1 {
  font-family: "Share Tech", sans-serif;
  font-size: 2.5em;
  color: #e9662c;
  text-transform: uppercase;
  margin-top: 0.5em;
}
/* line 58, ../../_sass/partials/_interior.scss */
.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;
}
/* line 61, ../../_sass/partials/_interior.scss */
.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: -150px;
  padding-top: 150px;
  visibility: hidden;
  z-index: 1;
}
/* line 70, ../../_sass/partials/_interior.scss */
.privacy-policy h1 {
  font-size: 2em;
}
/* line 71, ../../_sass/partials/_interior.scss */
.privacy-policy h2 {
  font-size: 1.75em;
}
/* line 72, ../../_sass/partials/_interior.scss */
.privacy-policy h3 {
  font-size: 1.5em;
}
/* line 73, ../../_sass/partials/_interior.scss */
.privacy-policy h4 {
  font-size: 1.25em;
}
/* line 74, ../../_sass/partials/_interior.scss */
.privacy-policy h5 {
  font-size: 1.125em;
  margin-top: 0;
}
/* line 78, ../../_sass/partials/_interior.scss */
.privacy-policy h6 {
  font-size: 1em;
}

/* line 82, ../../_sass/partials/_interior.scss */
.row {
  width: 100%;
  clear: right;
  display: inline-block;
  padding: 0 3%;
  margin: 0 auto 30px;
}
/* line 88, ../../_sass/partials/_interior.scss */
.row .col-1 {
  display: inline-block;
  width: 30%;
  float: left;
}
/* line 92, ../../_sass/partials/_interior.scss */
.row .col-1 img {
  width: 100%;
  max-width: 354px;
  height: auto;
  text-align: center;
}
/* line 98, ../../_sass/partials/_interior.scss */
.row .col-1 h3 {
  color: #808284;
}
/* line 100, ../../_sass/partials/_interior.scss */
.row .col-2 {
  display: inline-block;
  width: 65%;
  margin-left: 5%;
}

/* line 108, ../../_sass/partials/_interior.scss */
article.row {
  margin-bottom: 80px;
}
/* line 110, ../../_sass/partials/_interior.scss */
article.row .name {
  margin-bottom: 40px;
  font-size: 24px;
  color: #000;
  display: block;
}

/* line 119, ../../_sass/partials/_interior.scss */
.whoweare {
  color: #808284;
  text-transform: uppercase;
  margin-bottom: 75px;
  margin-left: 36%;
  font-weight: normal;
  font-size: 36px;
  font-family: "Share Tech", sans-serif;
}

/* line 131, ../../_sass/partials/_interior.scss */
.divider {
  background: #e6e7e8;
  width: 100%;
  height: 2px;
  float: left;
  margin: 65px 0 115px;
}

/* line 139, ../../_sass/partials/_interior.scss */
.sublist {
  color: #808284;
}
/* line 141, ../../_sass/partials/_interior.scss */
.sublist li {
  display: inline;
  line-height: 34px;
  padding-left: 0px;
}
/* line 145, ../../_sass/partials/_interior.scss */
.sublist li:before {
  content: "//";
  padding: 0 5px;
}
/* line 150, ../../_sass/partials/_interior.scss */
.sublist li:first-child:before {
  content: "";
  padding: 0;
}

/* line 157, ../../_sass/partials/_interior.scss */
.listhead {
  margin-bottom: 15px;
  line-height: 10px;
}

/* line 160, ../../_sass/partials/_interior.scss */
.whitegear li {
  margin-left: 15px;
  margin-bottom: 10px;
  background: url("../images/sprites/cog.png") no-repeat;
  padding-left: 25px;
}
/* line 166, ../../_sass/partials/_interior.scss */
.whitegear li:last-child {
  margin-bottom: 20px;
}

/* line 171, ../../_sass/partials/_interior.scss */
.row .presentation-title {
  display: inline-block;
  width: 65%;
  margin-left: 5%;
}

@media only screen and (max-width: 750px) {
  /* line 181, ../../_sass/partials/_interior.scss */
  .row .presentation-title {
    width: 100%;
    align: center;
  }
  /* line 185, ../../_sass/partials/_interior.scss */
  .row .col-1 {
    width: 100%;
  }
  /* line 187, ../../_sass/partials/_interior.scss */
  .row .col-1 img {
    margin: 0 auto 40px;
    display: inherit;
  }
  /* line 191, ../../_sass/partials/_interior.scss */
  .row .col-1 .presentation-title {
    display: block;
  }
  /* line 195, ../../_sass/partials/_interior.scss */
  .row .col-2 {
    width: 100%;
    margin-left: 0%;
  }
  /* line 198, ../../_sass/partials/_interior.scss */
  .row .col-2 .presentation-title {
    display: none;
  }

  /* line 203, ../../_sass/partials/_interior.scss */
  .whoweare {
    margin: 0 auto 75px;
    text-align: center;
  }
}
@media only screen and (max-width: 385px) {
  /* line 207, ../../_sass/partials/_interior.scss */
  .content-wrap {
    padding-top: 25px;
  }

  /* line 208, ../../_sass/partials/_interior.scss */
  .content {
    padding: 0px 20px;
  }

  /* line 213, ../../_sass/partials/_interior.scss */
  .article.row name {
    text-align: center;
    margin-bottom: 30px;
    line-height: 30px;
  }
}
/* line 1, ../../_sass/partials/_services.scss */
.service-info {
  width: 100%;
  margin: 75px 0;
  display: table;
}
/* line 5, ../../_sass/partials/_services.scss */
.service-info h3 {
  color: #fff;
  text-transform: uppercase;
}

/* line 9, ../../_sass/partials/_services.scss */
.service-col {
  width: 50%;
  padding: 5%;
  display: table-cell;
}
/* line 13, ../../_sass/partials/_services.scss */
.service-col.teal {
  background: #7dcbbc;
}
/* line 14, ../../_sass/partials/_services.scss */
.service-col.orange {
  background: #f7931d;
}
/* line 15, ../../_sass/partials/_services.scss */
.service-col .service-content {
  max-width: 600px;
  margin: 0 auto;
}
/* line 18, ../../_sass/partials/_services.scss */
.service-col .service-content a {
  color: #58585b;
  text-decoration: none;
}
/* line 19, ../../_sass/partials/_services.scss */
.service-col .service-content a:hover {
  color: #FFF;
}

/* line 24, ../../_sass/partials/_services.scss */
.services-cta {
  text-align: center;
  max-width: 900px;
  margin: 0px auto;
}
/* line 29, ../../_sass/partials/_services.scss */
.services-cta .purchase-button {
  margin-left: 3%;
}

/* line 34, ../../_sass/partials/_services.scss */
.buttons-col {
  width: 50%;
  float: left;
}

@media only screen and (max-width: 920px) {
  /* line 40, ../../_sass/partials/_services.scss */
  .buttons-col {
    width: 100%;
    display: block;
    float: none;
  }
}
@media only screen and (max-width: 385px) {
  /* line 49, ../../_sass/partials/_services.scss */
  .service-col {
    width: 100%;
    display: block;
  }

  /* line 54, ../../_sass/partials/_services.scss */
  .buttons-col {
    width: 100%;
    display: block;
    float: none;
  }

  /* line 60, ../../_sass/partials/_services.scss */
  .listhead {
    line-height: 25px;
  }
}
/* line 1, ../../_sass/partials/_contact.scss */
.contact-col {
  width: 48%;
  float: left;
  display: inline-block;
}
/* line 6, ../../_sass/partials/_contact.scss */
.contact-col.left img {
  width: 100%;
  height: auto;
}
/* line 8, ../../_sass/partials/_contact.scss */
.contact-col.right {
  margin-left: 2%;
}
/* line 10, ../../_sass/partials/_contact.scss */
.contact-col.right h5 {
  margin-top: 0px;
}

/* line 15, ../../_sass/partials/_contact.scss */
.top-row h5 {
  margin-top: 0px;
}

/* line 18, ../../_sass/partials/_contact.scss */
form .row {
  text-transform: uppercase;
  color: #e9662c;
  margin: 10px 0 10px;
  font-size: 20px;
  font-family: "Share Tech", sans-serif;
}
/* line 26, ../../_sass/partials/_contact.scss */
form .row label {
  text-align: right;
}

/* line 31, ../../_sass/partials/_contact.scss */
button {
  border: 0px;
}

/* line 35, ../../_sass/partials/_contact.scss */
.full-width {
  width: 100%;
}

/* line 40, ../../_sass/partials/_contact.scss */
.recaptcha-form .row {
  padding: 0;
}
/* line 44, ../../_sass/partials/_contact.scss */
.recaptcha-form input, .recaptcha-form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  top: -4px;
  position: relative;
  resize: vertical;
}
/* line 52, ../../_sass/partials/_contact.scss */
.recaptcha-form .g-recaptcha {
  margin-left: 35%;
}

@media only screen and (max-width: 920px) {
  /* line 59, ../../_sass/partials/_contact.scss */
  #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) {
  /* line 69, ../../_sass/partials/_contact.scss */
  form .row {
    padding: 0;
  }
  /* line 72, ../../_sass/partials/_contact.scss */
  form .row.recaptcha {
    margin-bottom: 0;
  }
  /* line 76, ../../_sass/partials/_contact.scss */
  form .row .g-recaptcha {
    margin-left: 0;
  }
  /* line 80, ../../_sass/partials/_contact.scss */
  form .row label {
    text-align: left;
    margin-bottom: 5px;
  }

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

/* line 16, ../../_sass/partials/_blog.scss */
.blog-head {
  font-family: "Share Tech", sans-serif;
  font-size: 36px;
  color: #7dcbbc;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 45px;
}

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

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

/* line 53, ../../_sass/partials/_blog.scss */
ul.blog {
  width: 100%;
  padding-left: 0;
  max-width: 75ch;
  margin-top: 45px;
}
/* line 59, ../../_sass/partials/_blog.scss */
.page-archive ul.blog {
  margin-top: 2px;
}
/* line 63, ../../_sass/partials/_blog.scss */
ul.blog a {
  color: #a0c33d;
}
/* line 65, ../../_sass/partials/_blog.scss */
ul.blog a:visited, ul.blog a:active {
  color: #a0c33d;
}
/* line 69, ../../_sass/partials/_blog.scss */
ul.blog a:hover {
  color: #808284;
}
/* line 74, ../../_sass/partials/_blog.scss */
ul.blog > li {
  margin-bottom: 52px;
  list-style: none;
}
/* line 78, ../../_sass/partials/_blog.scss */
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: */
}
/* line 86, ../../_sass/partials/_blog.scss */
ul.blog > li .meta {
  font-family: "Share Tech", sans-serif;
  margin-bottom: 6px;
  display: block;
}
/* line 92, ../../_sass/partials/_blog.scss */
ul.blog > li h5 {
  margin-top: 0;
}

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

/* line 155, ../../_sass/partials/_blog.scss */
ul.categories {
  font-size: 18px;
  line-height: 36px;
  list-style: none;
  letter-spacing: .03em;
}
/* line 161, ../../_sass/partials/_blog.scss */
ul.categories li {
  position: relative;
}
/* line 164, ../../_sass/partials/_blog.scss */
ul.categories li:before {
  content: '+';
  position: absolute;
  left: -1em;
  line-height: 36px;
  color: #82ad0a;
}
/* line 172, ../../_sass/partials/_blog.scss */
ul.categories li:hover:before, ul.categories li:focus:before {
  color: #7dcbbc;
}
/* line 177, ../../_sass/partials/_blog.scss */
ul.categories a {
  color: #82ad0a;
}
/* line 180, ../../_sass/partials/_blog.scss */
ul.categories a:hover, ul.categories a:focus {
  color: #7dcbbc;
}

/* line 186, ../../_sass/partials/_blog.scss */
.service-link {
  z-index: 999;
  position: relative;
  white-space: normal;
  padding-left: 3px;
}

/* line 192, ../../_sass/partials/_blog.scss */
.next {
  width: 20%;
}

/* line 195, ../../_sass/partials/_blog.scss */
.prev {
  float: left;
}

/* line 199, ../../_sass/partials/_blog.scss */
.next,
.prev {
  color: #7dcbbc !important;
}
/* line 202, ../../_sass/partials/_blog.scss */
.next:hover,
.prev:hover {
  color: #e9662c !important;
}

/* line 207, ../../_sass/partials/_blog.scss */
.pagination {
  clear: both;
  display: inline-block;
  font-size: 21px;
  display: flex;
  justify-content: space-between;
}
/* line 214, ../../_sass/partials/_blog.scss */
.pagination ul {
  margin: 0 auto;
  display: block;
  width: 60%;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  /* line 214, ../../_sass/partials/_blog.scss */
  .pagination ul {
    display: none;
  }
}
/* line 224, ../../_sass/partials/_blog.scss */
.pagination ul li {
  display: inline-block;
  margin: 0 6px;
}
/* line 228, ../../_sass/partials/_blog.scss */
.pagination ul li a {
  padding: 5px 8px 3px;
  color: #a0c33d;
}
/* line 232, ../../_sass/partials/_blog.scss */
.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) {
  /* line 246, ../../_sass/partials/_blog.scss */
  .page-blog .content {
    padding: 0 20px;
  }

  /* line 250, ../../_sass/partials/_blog.scss */
  ul.blog {
    width: 100%;
  }
  /* line 252, ../../_sass/partials/_blog.scss */
  ul.blog .excerpt {
    display: none;
  }

  /* line 256, ../../_sass/partials/_blog.scss */
  .sidebar {
    margin-bottom: 40px;
    padding-left: 0;
  }
}
/* line 1, ../../_sass/partials/_post.scss */
.post {
  padding-left: 0;
  max-width: 75ch;
}
/* line 5, ../../_sass/partials/_post.scss */
.post p {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
/* line 10, ../../_sass/partials/_post.scss */
.post h2 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* line 16, ../../_sass/partials/_post.scss */
.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) {
  /* line 16, ../../_sass/partials/_post.scss */
  .post-content {
    padding-left: 90px;
  }
}
@media screen and (min-width: 740px) {
  /* line 16, ../../_sass/partials/_post.scss */
  .post-content {
    flex-direction: row;
  }
  /* line 32, ../../_sass/partials/_post.scss */
  .post-content .sidebar {
    order: 0;
    margin-top: 69px;
  }
  /* line 37, ../../_sass/partials/_post.scss */
  .post-content .post {
    order: 1;
    margin: 0;
    margin-top: -25px;
  }
}

/* line 45, ../../_sass/partials/_post.scss */
h5.sidebar-title {
  margin-top: 0;
}

/* line 49, ../../_sass/partials/_post.scss */
ul.post-categories {
  list-style: none;
  letter-spacing: .03em;
  display: inline;
  padding: 0;
}
/* line 55, ../../_sass/partials/_post.scss */
ul.post-categories li {
  display: inline;
}

/* line 60, ../../_sass/partials/_post.scss */
ul.post-tags {
  list-style: none;
  padding: 32px 0;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: .03em;
}
/* line 67, ../../_sass/partials/_post.scss */
ul.post-tags li {
  display: inline;
}
/* line 70, ../../_sass/partials/_post.scss */
ul.post-tags li span {
  margin: 0 0.5em;
  display: inline-block;
}

/* line 77, ../../_sass/partials/_post.scss */
.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;
}
/* line 84, ../../_sass/partials/_post.scss */
.backtoblog:hover {
  background: #e9662c;
}

/* line 86, ../../_sass/partials/_post.scss */
.share-side {
  float: left;
  height: 100%;
  margin-top: 25px;
}
/* line 90, ../../_sass/partials/_post.scss */
.share-side li {
  margin-bottom: 22px;
  width: 115px;
  float: left;
  display: inline-block;
  padding-left: 44px;
}
/* line 96, ../../_sass/partials/_post.scss */
.share-side li:first-child {
  padding: 0;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}
/* line 102, ../../_sass/partials/_post.scss */
.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;
}

/* line 126, ../../_sass/partials/_post.scss */
.post-content img {
  max-width: 80%;
}

/* line 130, ../../_sass/partials/_post.scss */
article.post {
  max-width: 75ch;
  margin: 0 auto;
  color: #808284;
}
/* line 135, ../../_sass/partials/_post.scss */
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) {
  /* line 135, ../../_sass/partials/_post.scss */
  article.post h1 {
    font-size: 2em;
  }
}
/* line 147, ../../_sass/partials/_post.scss */
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;
}
/* line 151, ../../_sass/partials/_post.scss */
article.post h2 {
  font-size: 1.75em;
}
/* line 152, ../../_sass/partials/_post.scss */
article.post h3 {
  font-size: 1.5em;
}
/* line 153, ../../_sass/partials/_post.scss */
article.post h4 {
  font-size: 1.25em;
}
/* line 154, ../../_sass/partials/_post.scss */
article.post h5 {
  font-size: 1.125em;
  margin-top: 0;
}
/* line 158, ../../_sass/partials/_post.scss */
article.post h6 {
  font-size: 1em;
}
/* line 160, ../../_sass/partials/_post.scss */
article.post .feat-img {
  width: 100%;
  margin-bottom: 8px;
  height: auto;
  max-height: 415px;
  background: black;
}
/* line 168, ../../_sass/partials/_post.scss */
article.post .meta {
  font-family: "Share Tech", sans-serif;
  margin-bottom: 24px;
  display: block;
  line-height: 1.2;
}
/* line 175, ../../_sass/partials/_post.scss */
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;
}
/* line 184, ../../_sass/partials/_post.scss */
article.post pre code {
  padding: 0;
  display: block;
  overflow-x: auto;
}
/* line 190, ../../_sass/partials/_post.scss */
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;
}
/* line 203, ../../_sass/partials/_post.scss */
article.post .codeblock .comment, article.post .codeblock .c1, article.post pre .comment, article.post pre .c1 {
  color: #808284;
}
/* line 204, ../../_sass/partials/_post.scss */
article.post .codeblock .ltorange, article.post pre .ltorange {
  color: #f2b95a;
}
/* line 205, ../../_sass/partials/_post.scss */
article.post .codeblock .orange, article.post .codeblock .k, article.post pre .orange, article.post pre .k {
  color: #f7931d;
}
/* line 206, ../../_sass/partials/_post.scss */
article.post .codeblock .dkorange, article.post .codeblock .nb, article.post pre .dkorange, article.post pre .nb {
  color: #e9662c;
}
/* line 208, ../../_sass/partials/_post.scss */
article.post .codeblock .ltteal, article.post pre .ltteal {
  color: #a8dbd2;
}
/* line 209, ../../_sass/partials/_post.scss */
article.post .codeblock .teal, article.post pre .teal {
  color: #7dcbbc;
}
/* line 210, ../../_sass/partials/_post.scss */
article.post .codeblock .dkteal, article.post pre .dkteal {
  color: #519d97;
}
/* line 212, ../../_sass/partials/_post.scss */
article.post .codeblock .ltgreen, article.post pre .ltgreen {
  color: #cfdc6d;
}
/* line 213, ../../_sass/partials/_post.scss */
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;
}
/* line 214, ../../_sass/partials/_post.scss */
article.post .codeblock .dkgreen, article.post pre .dkgreen {
  color: #70913c;
}

/* line 218, ../../_sass/partials/_post.scss */
.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%;
}
/* line 226, ../../_sass/partials/_post.scss */
.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;
}
/* line 235, ../../_sass/partials/_post.scss */
.author .bio {
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
  float: left;
  width: 50%;
  line-height: 24px;
  color: #808284;
}
/* line 236, ../../_sass/partials/_post.scss */
.author .bio .author-name {
  font-size: 21px;
  color: #58585b;
  display: block;
  margin-bottom: 10px;
}
/* line 246, ../../_sass/partials/_post.scss */
.author .share-bottom {
  float: right;
  display: inline-block;
}
/* line 249, ../../_sass/partials/_post.scss */
.author .share-bottom li {
  float: left;
  display: inline-block;
  margin-right: 5px;
  font-family: "Share Tech", sans-serif;
}
/* line 254, ../../_sass/partials/_post.scss */
.author .share-bottom li a {
  display: inline-block;
  height: 25px;
  width: 25px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
/* line 259, ../../_sass/partials/_post.scss */
.author .share-bottom li a.tw {
  background: url('/images/sprites-s316d8630b8.png') 0 -1818px no-repeat;
}
/* line 260, ../../_sass/partials/_post.scss */
.author .share-bottom li a.tw:hover {
  background: url('/images/sprites-s316d8630b8.png') 0 -1764px no-repeat;
}
/* line 262, ../../_sass/partials/_post.scss */
.author .share-bottom li a.fb {
  background: url('/images/sprites-s316d8630b8.png') 6px -495px no-repeat;
}
/* line 263, ../../_sass/partials/_post.scss */
.author .share-bottom li a.fb:hover {
  background: url('/images/sprites-s316d8630b8.png') 6px -438px no-repeat;
}
/* line 265, ../../_sass/partials/_post.scss */
.author .share-bottom li a.in {
  background: url('/images/sprites-s316d8630b8.png') 0 -1259px no-repeat;
}
/* line 266, ../../_sass/partials/_post.scss */
.author .share-bottom li a.in:hover {
  background: url('/images/sprites-s316d8630b8.png') 0 -1203px no-repeat;
}
/* line 268, ../../_sass/partials/_post.scss */
.author .share-bottom li a.pin {
  background: url('/images/sprites-s316d8630b8.png') 0 -1496px no-repeat;
}
/* line 269, ../../_sass/partials/_post.scss */
.author .share-bottom li a.pin:hover {
  background: url('/images/sprites-s316d8630b8.png') 0 -1439px no-repeat;
}
/* line 271, ../../_sass/partials/_post.scss */
.author .share-bottom li a.google {
  background: url('/images/sprites-s316d8630b8.png') 0 -830px no-repeat;
}
/* line 272, ../../_sass/partials/_post.scss */
.author .share-bottom li a.google:hover {
  background: url('/images/sprites-s316d8630b8.png') 0 -773px no-repeat;
}

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

/* line 315, ../../_sass/partials/_post.scss */
#disqus_thread {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}

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

/* line 331, ../../_sass/partials/_post.scss */
.moreposts {
  width: 100%;
  padding-left: 0px;
}
/* line 335, ../../_sass/partials/_post.scss */
.moreposts .blog {
  width: 85%;
}
/* line 338, ../../_sass/partials/_post.scss */
.moreposts .blog li .postlink {
  color: #808284;
}
/* line 341, ../../_sass/partials/_post.scss */
.moreposts .blog li .post {
  width: 65%;
}
/* line 342, ../../_sass/partials/_post.scss */
.moreposts .blog li .postimg {
  width: 175px;
  height: 175px;
}
/* line 346, ../../_sass/partials/_post.scss */
.moreposts .blog li .excerpt {
  font-size: 16px;
  line-height: 26px;
}

@media only screen and (max-width: 1035px) {
  /* line 356, ../../_sass/partials/_post.scss */
  .moreposts .blog {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 363, ../../_sass/partials/_post.scss */
  .backtoblog {
    display: block;
    margin-bottom: 15px;
  }

  /* line 367, ../../_sass/partials/_post.scss */
  .share-side {
    display: none;
  }

  /* line 370, ../../_sass/partials/_post.scss */
  article.post {
    width: 100%;
  }

  /* line 377, ../../_sass/partials/_post.scss */
  .moreposts .blog li .post {
    width: 60%;
  }
  /* line 380, ../../_sass/partials/_post.scss */
  .moreposts .blog li .postimg {
    width: 125px;
    height: 125px;
  }
}
@media only screen and (max-width: 385px) {
  /* line 390, ../../_sass/partials/_post.scss */
  .post-content {
    width: 100%;
    padding: 0 20px;
  }

  /* line 394, ../../_sass/partials/_post.scss */
  article.post {
    width: 100%;
  }
  /* line 396, ../../_sass/partials/_post.scss */
  article.post p {
    font-size: 16px;
    line-height: 34px;
  }

  /* line 401, ../../_sass/partials/_post.scss */
  .author {
    width: 100%;
    display: inline-block;
    margin: 85px 0 10px;
    padding: 30px 20px 30px 20px;
    text-align: left;
  }
  /* line 407, ../../_sass/partials/_post.scss */
  .author .bio {
    width: 100%;
    margin-left: 0px;
  }
  /* line 412, ../../_sass/partials/_post.scss */
  .author img {
    margin-bottom: 10px;
  }
  /* line 415, ../../_sass/partials/_post.scss */
  .author .share-bottom {
    float: left;
    margin-top: 10px;
  }

  /* line 420, ../../_sass/partials/_post.scss */
  .moreposts {
    padding-left: 0;
  }
  /* line 423, ../../_sass/partials/_post.scss */
  .moreposts .blog {
    width: 100%;
  }
  /* line 424, ../../_sass/partials/_post.scss */
  .moreposts .blog .excerpt {
    display: none;
  }
  /* line 426, ../../_sass/partials/_post.scss */
  .moreposts .blog li .post {
    width: 46%;
    margin-left: 7%;
  }
  /* line 430, ../../_sass/partials/_post.scss */
  .moreposts .blog li .postimg {
    width: 125px;
    height: 125px;
  }
}
/* line 2, ../../_sass/partials/_thanks.scss */
.top-row h5 {
  margin-top: 0px;
}

/* line 6, ../../_sass/partials/_thanks.scss */
.thanks .thank-you-image {
  text-align: right;
}
/* line 8, ../../_sass/partials/_thanks.scss */
.thanks .thank-you-image img {
  width: 35%;
  min-width: 150px;
}
/* line 13, ../../_sass/partials/_thanks.scss */
.thanks .row .col-2 {
  width: 68%;
  max-width: 625px;
  margin-left: 2%;
}

/* line 4, ../../_sass/partials/_about.scss */
.headshot-wrapper {
  border: 8px solid transparent;
  border-radius: 50%;
  overflow: hidden;
}

/* line 12, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+1) .headshot-wrapper {
  border-color: #a8dbd2;
}
/* line 15, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+2) .headshot-wrapper {
  border-color: #f2b95a;
}
/* line 18, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+3) .headshot-wrapper {
  border-color: #cfdc6d;
}
/* line 21, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+4) .headshot-wrapper {
  border-color: #7dcbbc;
}
/* line 24, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+5) .headshot-wrapper {
  border-color: #f7931d;
}
/* line 27, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+6) .headshot-wrapper {
  border-color: #a0c33d;
}
/* line 30, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+7) .headshot-wrapper {
  border-color: #519d97;
}
/* line 33, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+8) .headshot-wrapper {
  border-color: #e9662c;
}
/* line 36, ../../_sass/partials/_about.scss */
.about-member:nth-of-type(9n+9) .headshot-wrapper {
  border-color: #70913c;
}
/* line 39, ../../_sass/partials/_about.scss */
.about-member:nth-last-of-type(2) .headshot-wrapper {
  border-color: #e6e7e8;
}

/* line 43, ../../_sass/partials/_about.scss */
.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) {
  /* line 52, ../../_sass/partials/_about.scss */
  .headshot-container {
    text-align: center;
  }
  /* line 55, ../../_sass/partials/_about.scss */
  .headshot-container .headshot-wrapper {
    display: inline-block;
    margin-bottom: 40px;
  }
  /* line 59, ../../_sass/partials/_about.scss */
  .headshot-container .headshot-wrapper .headshot-image {
    margin: 0;
  }
}
