@charset "UTF-8";
/*------------------------------------------------------------------------------

	Theme Name: BSM
	Theme URI: http://www.betsmartmedia.com
	Description: V4 of betsmartmedia.com
	Author: Jonathan Cochran
	Author URI: http://www.betsmartmedia.com
	Version: 4

-------------------------------------------------------------------------------*/
/*
 * Gridism
 * A simple, responsive, and handy CSS grid by @cobyism
 * https://github.com/cobyism/gridism
 */
/* Preserve some sanity */
/* line 8, scss/vendor/_gridism.scss */
.grid,
.unit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Set up some rules to govern the grid */
/* line 16, scss/vendor/_gridism.scss */
.grid {
  display: block;
  clear: both;
}

/* line 20, scss/vendor/_gridism.scss */
.grid .unit {
  float: left;
  width: 100%;
  padding: 10px;
}

/* This ensures the outer gutters are equal to the (doubled) inner gutters. */
/* line 27, scss/vendor/_gridism.scss */
.grid .unit:first-child {
  padding-left: 20px;
}

/* line 28, scss/vendor/_gridism.scss */
.grid .unit:last-child {
  padding-right: 20px;
}

/* Nested grids already have padding though, so let’s nuke it */
/* line 31, scss/vendor/_gridism.scss */
.unit .unit:first-child {
  padding-left: 0;
}

/* line 32, scss/vendor/_gridism.scss */
.unit .unit:last-child {
  padding-right: 0;
}

/* line 33, scss/vendor/_gridism.scss */
.unit .grid:first-child > .unit {
  padding-top: 0;
}

/* line 34, scss/vendor/_gridism.scss */
.unit .grid:last-child > .unit {
  padding-bottom: 0;
}

/* Let people nuke the gutters/padding completely in a couple of ways */
/* line 37, scss/vendor/_gridism.scss */
.no-gutters .unit,
.unit.no-gutters {
  padding: 0 !important;
}

/* Wrapping at a maximum width is optional */
/* line 43, scss/vendor/_gridism.scss */
.wrap .grid,
.grid.wrap {
  max-width: 978px;
  margin: 0 auto;
}

/* Width classes also have shorthand versions numbered as fractions
 * For example: for a grid unit 1/3 (one third) of the parent width,
 * simply apply class="w-1-3" to the element. */
/* line 52, scss/vendor/_gridism.scss */
.grid .whole, .grid .w-1-1 {
  width: 100%;
}

/* line 53, scss/vendor/_gridism.scss */
.grid .half, .grid .w-1-2 {
  width: 50%;
}

/* line 54, scss/vendor/_gridism.scss */
.grid .one-third, .grid .w-1-3 {
  width: 33.3332%;
}

/* line 55, scss/vendor/_gridism.scss */
.grid .two-thirds, .grid .w-2-3 {
  width: 66.6665%;
}

/* line 56, scss/vendor/_gridism.scss */
.grid .one-quarter, .grid .w-1-4 {
  width: 25%;
}

/* line 57, scss/vendor/_gridism.scss */
.grid .three-quarters, .grid .w-3-4 {
  width: 75%;
}

/* line 58, scss/vendor/_gridism.scss */
.grid .one-fifth, .grid .w-1-5 {
  width: 20%;
}

/* line 59, scss/vendor/_gridism.scss */
.grid .two-fifths, .grid .w-2-5 {
  width: 40%;
}

/* line 60, scss/vendor/_gridism.scss */
.grid .three-fifths, .grid .w-3-5 {
  width: 60%;
}

/* line 61, scss/vendor/_gridism.scss */
.grid .four-fifths, .grid .w-4-5 {
  width: 80%;
}

/* line 62, scss/vendor/_gridism.scss */
.grid .golden-small, .grid .w-g-s {
  width: 38.2716%;
}

/* Golden section: smaller piece */
/* line 63, scss/vendor/_gridism.scss */
.grid .golden-large, .grid .w-g-l {
  width: 61.7283%;
}

/* Golden section: larger piece */
/* Clearfix after every .grid */
/* line 66, scss/vendor/_gridism.scss */
.grid {
  *zoom: 1;
}

/* line 69, scss/vendor/_gridism.scss */
.grid:before, .grid:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 74, scss/vendor/_gridism.scss */
.grid:after {
  clear: both;
}

/* Utility classes */
/* line 79, scss/vendor/_gridism.scss */
.align-center {
  text-align: center;
}

/* line 80, scss/vendor/_gridism.scss */
.align-left {
  text-align: left;
}

/* line 81, scss/vendor/_gridism.scss */
.align-right {
  text-align: right;
}

/* line 82, scss/vendor/_gridism.scss */
.pull-left {
  float: left;
}

/* line 83, scss/vendor/_gridism.scss */
.pull-right {
  float: right;
}

/* Responsive Stuff */
@media screen and (max-width: 568px) {
  /* Stack anything that isn’t full-width on smaller screens */
  /* line 88, scss/vendor/_gridism.scss */
  .grid .unit {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* line 93, scss/vendor/_gridism.scss */
  .unit .grid .unit {
    padding-left: 0px;
    padding-right: 0px;
  }

  /* Sometimes, you just want to be different on small screens */
  /* line 99, scss/vendor/_gridism.scss */
  .center-on-mobiles {
    text-align: center !important;
  }

  /* line 102, scss/vendor/_gridism.scss */
  .hide-on-mobiles {
    display: none !important;
  }
}
/* Expand the wrap a bit further on larger screens */
@media screen and (min-width: 1180px) {
  /* line 109, scss/vendor/_gridism.scss */
  .wider .grid {
    max-width: 1180px;
    margin: 0 auto;
  }
}
/* line 45, scss/vendor/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/* line 61, scss/vendor/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/* line 74, scss/vendor/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 84, scss/vendor/_normalize.scss */
[hidden], template {
  display: none;
}

/* line 97, scss/vendor/_normalize.scss */
html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 109, scss/vendor/_normalize.scss */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/* line 119, scss/vendor/_normalize.scss */
body {
  margin: 0;
}

/* line 132, scss/vendor/_normalize.scss */
a {
  background: transparent;
}
/* line 139, scss/vendor/_normalize.scss */
a:focus {
  outline: thin dotted;
}
/* line 145, scss/vendor/_normalize.scss */
a:hover, a:active {
  outline: 0;
}

/* line 159, scss/vendor/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 164, scss/vendor/_normalize.scss */
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

/* line 169, scss/vendor/_normalize.scss */
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

/* line 174, scss/vendor/_normalize.scss */
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

/* line 179, scss/vendor/_normalize.scss */
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

/* line 184, scss/vendor/_normalize.scss */
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/* line 192, scss/vendor/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 198, scss/vendor/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 211, scss/vendor/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 217, scss/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 233, scss/vendor/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/* line 246, scss/vendor/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 254, scss/vendor/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* line 269, scss/vendor/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 277, scss/vendor/_normalize.scss */
small {
  font-size: 80%;
}

/* line 284, scss/vendor/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 292, scss/vendor/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 296, scss/vendor/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 348, scss/vendor/_normalize.scss */
img {
  border: 0;
}

/* line 357, scss/vendor/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 367, scss/vendor/_normalize.scss */
figure {
  margin: 0;
}

/* line 384, scss/vendor/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 395, scss/vendor/_normalize.scss */
legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

/* line 409, scss/vendor/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

/* line 424, scss/vendor/_normalize.scss */
button,
input {
  line-height: normal;
}

/* line 434, scss/vendor/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 447, scss/vendor/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 460, scss/vendor/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/* line 470, scss/vendor/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 483, scss/vendor/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 493, scss/vendor/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 502, scss/vendor/_normalize.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 511, scss/vendor/_normalize.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* line 522, scss/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Set breakpoint widths. These values can be overridden in
 * a master _config.scss file
 */
/**
 * Create a custom breakpoint:
 *   @include respond('max-height: 500px') { ... }
 */
/**
 * Set a breakpoint by name:
 *   @include breakpoint(phones) { ... }
 *
 * Important to note that if you're styling for phone AND small-phones
 * you need to inlucde this mixin in a large to small heirarchy so
 * your do not superceed each other:
 *   @include breakpoint(tablets) { ... }
 *   @include breakpoint(phones) { ... }
 *   @include breakpoint(small-phones) { ... }
 */
/**
 * Hide content based on breakpoint name:
 *   @include hidden(phones);
 */
/**
 * Show content for a certain breakpoint:
 *   @include visible(tablets);
 */
/* line 106, ../../../../../../../../../../.rvm/gems/ruby-2.1.1/gems/compass-core-1.0.3/stylesheets/compass/typography/_vertical_rhythm.scss */
html {
  font-size: 87.5%;
  line-height: 0.42857em;
}

/* line 6, scss/partials/_base.scss */
html, body {
  -webkit-font-smoothing: antialiased;
  background: #23282c;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 13, scss/partials/_base.scss */
html {
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.71429em;
}

/* line 20, scss/partials/_base.scss */
body {
  width: 100%;
  height: 100%;
  color: #ccd7e2;
  font: 14px/1.6 "proxima-nova", sans-serif !important;
}

/* line 27, scss/partials/_base.scss */
::selection {
  color: white;
  background: #ccd7e2 !important;
  text-shadow: none;
}

/* line 34, scss/partials/_base.scss */
blockquote .quote {
  color: #000;
  font-family: "freight-text-pro", serif;
  font-size: 1.3em;
  line-height: 1.5;
}
/* line 40, scss/partials/_base.scss */
blockquote .author {
  font-family: "proxima-nova", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #757575;
}

/* line 48, scss/partials/_base.scss */
hr {
  margin: 0 auto;
  display: block;
  width: 60px;
  border: none;
  border-bottom: 1px solid rgba(204, 215, 226, 0.25);
}
/* line 56, scss/partials/_base.scss */
hr.left-block {
  min-width: 50px;
  width: 50px;
  margin: 4em 0;
  border-bottom: 1px solid rgba(204, 215, 226, 0.25);
}

/* line 75, scss/partials/_base.scss */
a {
  color: #e33726;
  font-weight: 600;
}
/* line 79, scss/partials/_base.scss */
a:hover {
  color: #ec756a;
}
/* line 86, scss/partials/_base.scss */
a.white {
  color: white;
}
/* line 88, scss/partials/_base.scss */
a.white:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* line 94, scss/partials/_base.scss */
div, ul {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 98, scss/partials/_base.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 1, scss/partials/_buttons.scss */
.btn, button, input[type="submit"] {
  text-decoration: none;
  font-weight: 300;
  padding: .5em 1.25em;
  text-align: center;
  border: none;
  font-family: "freight-text-pro", serif;
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 13, scss/partials/_buttons.scss */
.btn.large, button.large, input[type="submit"].large {
  font-size: 2em;
}
/* line 17, scss/partials/_buttons.scss */
.btn i, button i, input[type="submit"] i {
  margin-left: -.75em;
}

/* line 24, scss/partials/_buttons.scss */
.btn-primary, button, input[type="submit"] {
  background: transparent;
  color: #e33726;
  border: 1px solid #e33726;
}
/* line 30, scss/partials/_buttons.scss */
.btn-primary:hover, button:hover, input[type="submit"]:hover {
  color: white;
  border-color: white;
}
/* line 35, scss/partials/_buttons.scss */
.btn-primary:active, button:active, input[type="submit"]:active {
  color: #b5b5b5;
  border-color: #b5b5b5;
}

/* line 43, scss/partials/_buttons.scss */
.btn-secondary {
  background: none;
  color: #b5b5b5;
  border: 1px solid #b5b5b5;
}
/* line 48, scss/partials/_buttons.scss */
.btn-secondary:hover {
  color: white;
  border-color: white;
}
/* line 53, scss/partials/_buttons.scss */
.btn-secondary:active {
  color: #9c9c9c;
  border-color: #9c9c9c;
}

/* line 1, scss/partials/_content.scss */
.block {
  border-top: 1px solid rgba(204, 215, 226, 0.25);
  padding: 6em 0;
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}

/* line 10, scss/partials/_content.scss */
.block-content {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}
/* line 14, scss/partials/_content.scss */
.block-content.narrow {
  width: 720px;
  max-width: 100%;
}
@media only all and (max-width: 767px) {
  /* line 10, scss/partials/_content.scss */
  .block-content {
    padding: 0 1.5em;
    font-size: 16px;
  }
}

/* line 27, scss/partials/_content.scss */
.scroll-down {
  color: #fff;
  display: block;
  bottom: 10%;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 60px;
  position: absolute;
  left: 50%;
  margin-left: -28px;
  font-size: 40px;
  font-weight: 100;
  color: white;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 45, scss/partials/_content.scss */
.scroll-down.red {
  background: rgba(227, 55, 38, 0.75);
}
/* line 47, scss/partials/_content.scss */
.scroll-down.red:hover {
  color: #23282c;
  background: white;
}
/* line 53, scss/partials/_content.scss */
.scroll-down:hover {
  background: rgba(227, 55, 38, 0.75);
}
/* line 56, scss/partials/_content.scss */
.scroll-down:active {
  opacity: .8;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
@media only all and (max-width: 767px) {
  /* line 27, scss/partials/_content.scss */
  .scroll-down {
    -moz-transform: scale(0.85, 0.85);
    -ms-transform: scale(0.85, 0.85);
    -webkit-transform: scale(0.85, 0.85);
    transform: scale(0.85, 0.85);
  }
}

/* line 71, scss/partials/_content.scss */
.block-contact .btn-primary {
  margin-top: 1em;
  display: inline-block;
}
@media only all and (max-width: 767px) {
  /* line 76, scss/partials/_content.scss */
  .block-contact .btn-primary {
    display: block;
  }
  /* line 79, scss/partials/_content.scss */
  .block-contact span {
    display: block;
    padding: 1em 0;
    font-size: 80%;
    text-align: center;
  }
}

/* line 88, scss/partials/_content.scss */
.block-partners {
  text-align: center;
  position: relative;
}
/* line 91, scss/partials/_content.scss */
.block-partners h2 {
  background: #23282c;
  position: absolute;
  width: 280px;
  left: 50%;
  margin-left: -140px;
  margin-top: -103px;
  font-size: 12px;
  color: rgba(204, 215, 226, 0.25);
  padding: 10px 20px;
  border: 1px solid rgba(204, 215, 226, 0.25);
  -moz-border-radius: 50em;
  -webkit-border-radius: 50em;
  border-radius: 50em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 109, scss/partials/_content.scss */
.content-abs {
  position: absolute;
  height: 100%;
  width: 100%;
}

/* line 119, scss/partials/_content.scss */
.width-large {
  max-width: 1120px;
}

/* line 123, scss/partials/_content.scss */
.width-medium {
  max-width: 960px;
}

/* line 127, scss/partials/_content.scss */
.width-small {
  max-width: 810px;
}

/* line 131, scss/partials/_content.scss */
.width-xsmall {
  max-width: 600px;
}

/* line 135, scss/partials/_content.scss */
.narrow {
  max-width: 810px;
  margin: 0 auto;
}

/* line 140, scss/partials/_content.scss */
.content-10 {
  width: 10%;
}

/* line 141, scss/partials/_content.scss */
.content-20 {
  width: 20%;
}

/* line 142, scss/partials/_content.scss */
.content-30 {
  width: 30%;
}

/* line 143, scss/partials/_content.scss */
.content-40 {
  width: 40%;
}

/* line 144, scss/partials/_content.scss */
.content-50 {
  width: 50%;
}

/* line 145, scss/partials/_content.scss */
.content-60 {
  width: 60%;
}

/* line 146, scss/partials/_content.scss */
.content-70 {
  width: 70%;
}

/* line 147, scss/partials/_content.scss */
.content-80 {
  width: 80%;
}

/* line 148, scss/partials/_content.scss */
.content-90 {
  width: 90%;
}

/* line 149, scss/partials/_content.scss */
.content-100 {
  width: 100%;
}

/* line 1, scss/partials/_flash-msg.scss */
.flash-msg {
  position: absolute;
  width: 100%;
  padding: 1em;
  color: white;
  text-align: center;
  font-size: 14px;
  background: rgba(227, 55, 38, 0.9);
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -moz-transform: translate3d(0, -200px, 0);
  -ms-transform: translate3d(0, -200px, 0);
  -webkit-transform: translate3d(0, -200px, 0);
  transform: translate3d(0, -200px, 0);
}
/* line 11, scss/partials/_flash-msg.scss */
.flash-msg a {
  color: #23282c;
}
/* line 13, scss/partials/_flash-msg.scss */
.flash-msg.visible {
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media only all and (max-width: 1119px) {
  /* line 1, scss/partials/_flash-msg.scss */
  .flash-msg {
    text-align: left;
    right: 0;
    width: 200px;
    max-width: 80%;
  }
}

/* line 6, scss/partials/_forms.scss */
.form-row {
  margin-bottom: .5em;
  font-family: "proxima-nova", sans-serif;
  position: relative;
  overflow: hidden;
  *zoom: 1;
  overflow: visible;
}

/* line 16, scss/partials/_forms.scss */
label {
  color: #ccd7e2;
  font-size: .8em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* line 22, scss/partials/_forms.scss */
label.required {
  color: #e33726;
}

/* line 28, scss/partials/_forms.scss */
input:not([type="submit"]), textarea, select {
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(204, 215, 226, 0.5);
  color: #ccd7e2;
  display: block;
  width: 100%;
  margin: 0 0 0.88889rem 0;
  padding: .75em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
}
/* line 61, ../../../../../../../../../../.rvm/gems/ruby-2.1.1/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
input:not([type="submit"]):-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: rgba(204, 215, 226, 0.35);
}
/* line 64, ../../../../../../../../../../.rvm/gems/ruby-2.1.1/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
input:not([type="submit"])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: rgba(204, 215, 226, 0.35);
}
/* line 67, ../../../../../../../../../../.rvm/gems/ruby-2.1.1/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
input:not([type="submit"]):-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: rgba(204, 215, 226, 0.35);
}
/* line 56, ../../../../../../../../../../.rvm/gems/ruby-2.1.1/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
input:not([type="submit"])::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: rgba(204, 215, 226, 0.35);
}
/* line 49, scss/partials/_forms.scss */
input:not([type="submit"]).error, textarea.error, select.error {
  border-color: rgba(227, 55, 38, 0.5);
}
/* line 53, scss/partials/_forms.scss */
input:not([type="submit"]):active, input:not([type="submit"]):focus, textarea:active, textarea:focus, select:active, select:focus {
  outline: 0;
  border-color: white;
}

/* line 59, scss/partials/_forms.scss */
textarea {
  min-height: 150px;
}

/* line 1, scss/partials/_header.scss */
.header-primary {
  background: none;
  padding: 40px 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
/* line 8, scss/partials/_header.scss */
.header-primary.internal {
  padding: 20px;
}
/* line 12, scss/partials/_header.scss */
.header-primary .logo {
  display: block;
  width: 254px;
  max-width: 100%;
}
@media only all and (max-width: 479px) {
  /* line 12, scss/partials/_header.scss */
  .header-primary .logo {
    margin: 0 auto;
  }
}
/* line 21, scss/partials/_header.scss */
.header-primary .btn {
  padding: .5em 1.25em;
}

/* line 26, scss/partials/_header.scss */
.fixed-header {
  position: fixed;
  background: black;
  padding: .7em;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  height: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 37, scss/partials/_header.scss */
.fixed-header .header-primary {
  padding: 0px;
}
/* line 40, scss/partials/_header.scss */
.fixed-header nav {
  margin-top: 8px;
}
/* line 43, scss/partials/_header.scss */
.fixed-header .logo {
  margin: 5px 0 0 5px;
}
/* line 47, scss/partials/_header.scss */
.fixed-header.visible {
  height: 60px;
  z-index: 1;
}

/* line 2, scss/partials/_layout.scss */
.page-wrap {
  width: 100%;
  padding-left: 0;
  height: 100%;
  position: absolute;
  right: 0;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 11, scss/partials/_layout.scss */
.page-wrap.expanded {
  opacity: .5;
  -moz-transform: translate3d(250px, 0, 0);
  -ms-transform: translate3d(250px, 0, 0);
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0);
}
@media only all and (max-width: 767px) {
  /* line 11, scss/partials/_layout.scss */
  .page-wrap.expanded {
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -webkit-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
  }
}
@media only all and (min-width: 1120px) {
  /* line 2, scss/partials/_layout.scss */
  .page-wrap {
    padding-left: 250px;
    z-index: 0;
  }
}

/* line 27, scss/partials/_layout.scss */
.no-scroll .page-wrap, .no-scroll .page-wrap-relative {
  overflow: hidden !important;
}

/* line 32, scss/partials/_layout.scss */
.page-wrap-relative {
  position: relative;
  margin-top: -1px;
  height: 100%;
  border: 1px solid transparent;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 39, scss/partials/_layout.scss */
.page-wrap-relative.expanded {
  opacity: .5;
  -moz-transform: translate3d(250px, 0, 0);
  -ms-transform: translate3d(250px, 0, 0);
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0);
}
@media only all and (max-width: 767px) {
  /* line 39, scss/partials/_layout.scss */
  .page-wrap-relative.expanded {
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -webkit-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
  }
}
/* line 48, scss/partials/_layout.scss */
.page-wrap-relative:before {
  content: ' ';
  display: block;
  float: left;
  width: 250px;
}
@media only all and (max-width: 767px) {
  /* line 48, scss/partials/_layout.scss */
  .page-wrap-relative:before {
    width: 200px;
  }
}
@media only all and (min-width: 1120px) {
  /* line 32, scss/partials/_layout.scss */
  .page-wrap-relative {
    margin-left: 249px;
    z-index: 0;
  }
}

/* line 65, scss/partials/_layout.scss */
.full-viewport {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 79, scss/partials/_layout.scss */
.full-viewport .content {
  vertical-align: middle;
  display: table-cell;
  box-sizing: border-box;
  padding: 0 5%;
  text-align: center;
}
@media only all and (max-width: 1119px) {
  /* line 79, scss/partials/_layout.scss */
  .full-viewport .content {
    font-size: 90%;
    padding: 0 3em;
  }
}
@media only all and (max-width: 767px) {
  /* line 79, scss/partials/_layout.scss */
  .full-viewport .content {
    font-size: 90%;
    padding: 0 2em;
  }
}
@media only all and (max-width: 479px) {
  /* line 79, scss/partials/_layout.scss */
  .full-viewport .content {
    font-size: 80%;
  }
}
/* line 103, scss/partials/_layout.scss */
.full-viewport .bg-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* line 114, scss/partials/_layout.scss */
.full-viewport-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* line 123, scss/partials/_layout.scss */
.full-page {
  padding: 30px;
}
@media only all and (max-width: 1119px) {
  /* line 123, scss/partials/_layout.scss */
  .full-page {
    padding: 15px;
  }
}

/* line 134, scss/partials/_layout.scss */
.large-page {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only all and (max-width: 1119px) {
  /* line 134, scss/partials/_layout.scss */
  .large-page {
    padding: 15px;
  }
}
@media only all and (max-width: 767px) {
  /* line 134, scss/partials/_layout.scss */
  .large-page {
    padding: 10px !important;
  }
}

/* line 149, scss/partials/_layout.scss */
.small-page {
  width: 810px;
  max-width: 100%;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 11, scss/partials/_lists.scss */
ul li > i, ol li > i {
  margin-right: .5em;
}

/* line 17, scss/partials/_lists.scss */
.no-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 21, scss/partials/_lists.scss */
.no-bullets li {
  line-height: 1.5;
}

/* line 26, scss/partials/_lists.scss */
.list-checkmarks {
  list-style: none;
}
/* line 30, scss/partials/_lists.scss */
.list-checkmarks li:before {
  font-family: "untitled-font-5" !important;
  content: 'r';
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  color: #e33726;
  padding-right: 1em;
  -webkit-font-smoothing: antialiased;
}

/* line 4, scss/partials/_map.scss */
#google-map {
  position: relative;
  height: 650px;
  width: 100%;
}
/* line 12, scss/partials/_map.scss */
#google-map #google-container {
  width: 100%;
  height: 650px;
  display: block;
  /*
  &:before {
  	content: '';
  	position: absolute;
  	width: 100%;
  	margin: 0;
  	top: 0;
  	height: 150px;
  	z-index: 1;
  	@include background-image(linear-gradient(top, rgba($dark,1) 5%,rgba($dark,0) 100%));
  }
  */
}
/* line 35, scss/partials/_map.scss */
#google-map address {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 50%;
  top: 50%;
  margin-left: -100px;
  margin-top: -100px;
  padding: 1em 1em;
  font-style: normal;
  background-color: rgba(227, 55, 38, 0.9);
  color: white;
  width: 200px;
  height: 200px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 52, scss/partials/_map.scss */
#google-map address h2 {
  font-size: 26px;
  margin-top: 22px;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* line 58, scss/partials/_map.scss */
#google-map address h3 {
  margin: 0;
  padding: 0;
}
/* line 63, scss/partials/_map.scss */
#google-map address hr {
  background: rgba(255, 255, 255, 0.5);
  width: 80%;
  margin: 1.3em auto;
}

/* line 1, scss/partials/_media.scss */
.post-thumbnail {
  margin-top: 20px;
}

/**
 * A box which holds an image beside content (left or right):
 ---------------------------
 | <img> |    <content>    |
 |       |                 |
 ---------------------------
 */
/* line 12, scss/partials/_media.scss */
.post-thumbnail-content {
  margin-bottom: 2em;
  padding-top: 2em;
  border-top: 1px solid rgba(204, 215, 226, 0.25);
  overflow: hidden;
  *zoom: 1;
}
/* line 18, scss/partials/_media.scss */
.post-thumbnail-content .pt-img img {
  -moz-border-radius: 50em;
  -webkit-border-radius: 50em;
  border-radius: 50em;
}
/* line 21, scss/partials/_media.scss */
.post-thumbnail-content .pt-img.left {
  width: 20%;
  float: right;
  margin-right: 5%;
}
/* line 27, scss/partials/_media.scss */
.post-thumbnail-content .pt-img.right {
  width: 20%;
  float: left;
  margin-left: 5%;
}
/* line 34, scss/partials/_media.scss */
.post-thumbnail-content .pt-copy {
  width: 75%;
  float: left;
}

/* line 40, scss/partials/_media.scss */
img.alignleft {
  margin-right: 10px;
  float: left;
}

/* line 45, scss/partials/_media.scss */
img.alignright {
  margin-left: 10px;
  float: right;
}

/* line 50, scss/partials/_media.scss */
img.aligncenter {
  display: block;
  margin: 0 auto;
}

/* line 55, scss/partials/_media.scss */
.outside-content {
  margin-left: -20%;
  max-width: none;
  width: 140%;
}
@media only all and (max-width: 767px) {
  /* line 55, scss/partials/_media.scss */
  .outside-content {
    margin: 0 auto;
    width: auto !important;
    max-width: 100% !important;
  }
}

/* line 67, scss/partials/_media.scss */
.full-background-img {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 79, scss/partials/_media.scss */
.full-background-img.visible {
  opacity: 1;
}

/* line 1, scss/partials/_modals.scss */
.modal {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #757575;
  background: rgba(117, 117, 117, 0.6);
  z-index: 999;
  -moz-transition: all linear;
  -o-transition: all linear;
  -webkit-transition: all linear;
  transition: all linear;
  /*
  &:after {
  	content: ' ';
  	position: relative;
  	display: table;
  	overflow: hidden;
  	width: 100%;
  	min-height: 100%;
  	height: 100%;
  }
  */
}
/* line 14, scss/partials/_modals.scss */
.modal.active {
  display: block;
}

/* line 33, scss/partials/_modals.scss */
.modal-content, .modal-signup {
  position: absolute;
  width: 400px;
  min-height: 400px;
  background: white;
  text-align: left;
  padding: 20px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -200px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 47, scss/partials/_modals.scss */
.modal-close {
  position: absolute;
  font-size: 24px;
  right: 20px;
  top: 25px;
}

/* line 55, scss/partials/_modals.scss */
.blur:not(.modal) {
  overflow: hidden;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

/* line 67, scss/partials/_modals.scss */
.modal-signup {
  height: 658px;
  margin-top: -329px;
  -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

/**
 * Modifiers are 1 line class
 */
/* line 4, scss/partials/_modifiers.scss */
.clearfix {
  overflow: hidden;
  *zoom: 1;
}

/* line 6, scss/partials/_modifiers.scss */
.is-hidden {
  display: none !important;
}

/* line 7, scss/partials/_modifiers.scss */
.is-invisible {
  visibility: none !important;
}

/* line 9, scss/partials/_modifiers.scss */
.block {
  display: block        !important;
}

/* line 10, scss/partials/_modifiers.scss */
.inline {
  display: inline       !important;
}

/* line 11, scss/partials/_modifiers.scss */
.inline-block {
  display: inline-block !important;
}

/* line 13, scss/partials/_modifiers.scss */
.left {
  float: left  !important;
}

/* line 14, scss/partials/_modifiers.scss */
.centered {
  margin: 0 auto;
}

/* line 15, scss/partials/_modifiers.scss */
.right {
  float: right !important;
}

/* line 17, scss/partials/_modifiers.scss */
.text-left {
  text-align: left    !important;
}

/* line 18, scss/partials/_modifiers.scss */
.text-center {
  text-align: center  !important;
}

/* line 19, scss/partials/_modifiers.scss */
.text-right {
  text-align: right   !important;
}

/* line 20, scss/partials/_modifiers.scss */
.text-justify {
  text-align: justify !important;
}

/* line 22, scss/partials/_modifiers.scss */
.mt0 {
  margin-top: 0   !important;
}

/* line 23, scss/partials/_modifiers.scss */
.mt1 {
  margin-top: 1em !important;
}

/* line 24, scss/partials/_modifiers.scss */
.mb0 {
  margin-bottom: 0   !important;
}

/* line 25, scss/partials/_modifiers.scss */
.mb1 {
  margin-bottom: 1em !important;
}

/* line 27, scss/partials/_modifiers.scss */
.pad {
  padding: 30px;
}

/* line 28, scss/partials/_modifiers.scss */
.no-pad {
  padding: 0;
}

/* line 30, scss/partials/_modifiers.scss */
.no-border {
  border: none !important;
}

/* line 32, scss/partials/_modifiers.scss */
.pt0 {
  padding-top: 0     !important;
}

/* line 33, scss/partials/_modifiers.scss */
.pr0 {
  padding-right: 0   !important;
}

/* line 34, scss/partials/_modifiers.scss */
.pl0 {
  padding-left: 0    !important;
}

/* line 35, scss/partials/_modifiers.scss */
.pb0 {
  padding-bottom: 0  !important;
}

/* line 37, scss/partials/_modifiers.scss */
.pt1 {
  padding-top: 1em   !important;
}

/* line 38, scss/partials/_modifiers.scss */
.pb1 {
  padding-bottom: 1em !important;
}

/* line 41, scss/partials/_modifiers.scss */
.pt30 {
  padding-top: 30px !important;
}

/* line 42, scss/partials/_modifiers.scss */
.pl30 {
  padding-left: 30px !important;
}

/* line 43, scss/partials/_modifiers.scss */
.pr30 {
  padding-right: 30px !important;
}

/* line 44, scss/partials/_modifiers.scss */
.pb30 {
  padding-bottom: 30px !important;
}

/* line 46, scss/partials/_modifiers.scss */
.white {
  color: #fff;
}

/* line 47, scss/partials/_modifiers.scss */
.black {
  color: #000;
}

/* line 48, scss/partials/_modifiers.scss */
.desaturate {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* line 50, scss/partials/_modifiers.scss */
.no-scroll {
  overflow: hidden !important;
}

/* line 8, scss/partials/_pages.scss */
.page-header-image {
  position: relative;
}
/* line 10, scss/partials/_pages.scss */
.page-header-image .wp-post-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  -moz-transition: all 1500ms ease-in-out 500ms;
  -o-transition: all 1500ms ease-in-out 500ms;
  -webkit-transition: all 1500ms ease-in-out;
  -webkit-transition-delay: 500ms;
  transition: all 1500ms ease-in-out 500ms;
}
/* line 16, scss/partials/_pages.scss */
.page-header-image .wp-post-image.visible {
  opacity: 1;
}
/* line 21, scss/partials/_pages.scss */
.page-header-image .scroll-down {
  bottom: 5%;
  z-index: 999;
}
/* line 26, scss/partials/_pages.scss */
.page-header-image .page-header-image-overlay {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
/* line 35, scss/partials/_pages.scss */
.page-header-image .page-header-image-overlay .page-title {
  text-align: center;
  font-size: 3.5em;
  margin: 0 auto;
  max-width: 95%;
  width: 720px;
  position: absolute;
  left: 50%;
  margin-left: -360px;
  bottom: 20%;
}
@media only all and (max-width: 767px) {
  /* line 35, scss/partials/_pages.scss */
  .page-header-image .page-header-image-overlay .page-title {
    font-size: 1.5em;
    margin-left: 0;
    left: 0;
    width: 100%;
  }
}
/* line 54, scss/partials/_pages.scss */
.page-header-image .page-header-image-overlay .page-sub-title {
  font-size: 22px;
  font-family: "freight-text-pro", serif;
  font-weight: 400;
  color: #ccd7e2;
  letter-spacing: 0;
  text-transform: initial !important;
  font-style: italic;
}

/* line 67, scss/partials/_pages.scss */
.page-navigation {
  padding: 0 0 3em;
}
@media only all and (max-width: 1119px) {
  /* line 67, scss/partials/_pages.scss */
  .page-navigation {
    display: none;
  }
}

@media only all and (max-width: 767px) {
  /* line 75, scss/partials/_pages.scss */
  .page-heading {
    padding: 0 1.5em;
  }
}

/* line 86, scss/partials/_pages.scss */
.page-title {
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.25;
  font-size: 3em;
  text-transform: uppercase;
}

/* line 100, scss/partials/_pages.scss */
.page-copy {
  font-size: 120%;
}
/* line 103, scss/partials/_pages.scss */
.page-copy h1, .page-copy h2, .page-copy h3, .page-copy h4, .page-copy h5 {
  font-weight: 600;
  margin: 1.75em 0 .25em;
}
/* line 108, scss/partials/_pages.scss */
.page-copy ul {
  margin-bottom: 1.25em;
}
/* line 112, scss/partials/_pages.scss */
.page-copy li {
  margin-bottom: .75em;
}
/* line 116, scss/partials/_pages.scss */
.page-copy * {
  line-height: 1.4;
}
@media only all and (max-width: 767px) {
  /* line 100, scss/partials/_pages.scss */
  .page-copy {
    padding: 0 1.5em;
  }
}

/* line 126, scss/partials/_pages.scss */
.page-content {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only all and (max-width: 479px) {
  /* line 126, scss/partials/_pages.scss */
  .page-content {
    width: 100%;
    border-left: none;
    margin-left: 0;
    padding: 0;
    font-size: 90%;
  }
}

/* line 142, scss/partials/_pages.scss */
.edge-to-edge {
  position: relative;
  height: 100px;
}
/* line 145, scss/partials/_pages.scss */
.edge-to-edge .contents {
  position: absolute;
  height: 100%;
  background: #e33726;
  left: -60px;
  right: -60px;
}

/* line 2, scss/partials/_photo-grid.scss */
.photo-grid img {
  display: block;
  float: left;
  width: 50%;
  height: auto;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 10, scss/partials/_photo-grid.scss */
.photo-grid img:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

@media only all and (min-width: 1120px) {
  /* line 4, scss/partials/_responsive.scss */
  .desktop-only {
    display: inherit !important;
  }
}
@media only all and (max-width: 1119px) {
  /* line 4, scss/partials/_responsive.scss */
  .desktop-only {
    display: none !important;
  }
}
@media only all and (max-width: 767px) {
  /* line 4, scss/partials/_responsive.scss */
  .desktop-only {
    display: none !important;
  }
}

@media only all and (min-width: 1120px) {
  /* line 10, scss/partials/_responsive.scss */
  .phones-only {
    display: none !important;
  }
}
@media only all and (max-width: 1119px) {
  /* line 10, scss/partials/_responsive.scss */
  .phones-only {
    display: none !important;
  }
}
@media only all and (max-width: 767px) {
  /* line 10, scss/partials/_responsive.scss */
  .phones-only {
    display: inherit !important;
  }
}

@media only all and (max-width: 767px) {
  /* line 16, scss/partials/_responsive.scss */
  .phones-hidden {
    display: none !important;
  }
}

@media only all and (max-width: 479px) {
  /* line 20, scss/partials/_responsive.scss */
  .small-phones-hidden {
    display: none !important;
  }
}

/* line 4, scss/partials/_quote.scss */
.quote-txt {
  position: relative;
  margin: 0;
  font-size: 180%;
  line-height: 1.5;
  font-weight: 400;
}
@media only all and (max-width: 767px) {
  /* line 4, scss/partials/_quote.scss */
  .quote-txt {
    font-size: 140%;
  }
}

/* line 17, scss/partials/_quote.scss */
.quote-author {
  margin: 2em auto 0;
  text-align: center;
}

/* line 25, scss/partials/_quote.scss */
.quote-author-img {
  padding: 0;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 1em;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
@media only all and (max-width: 767px) {
  /* line 25, scss/partials/_quote.scss */
  .quote-author-img {
    margin: 0 auto;
    display: block;
  }
}

/* line 39, scss/partials/_quote.scss */
.quote-author-name {
  font-size: 120%;
  margin: 0;
  padding: 0;
  color: rgba(204, 215, 226, 0.75);
  font-weight: bold;
  font-weight: 600;
  line-height: 60px;
}
@media only all and (max-width: 767px) {
  /* line 39, scss/partials/_quote.scss */
  .quote-author-name {
    display: block;
    line-height: 1.4;
    margin-top: 10px;
    font-size: 90%;
  }
}

/* line 55, scss/partials/_quote.scss */
.quote-author-company {
  max-width: 70px;
  height: auto;
  margin-top: -8px;
  margin-left: 15px;
}

/* line 5, scss/partials/_sidebar.scss */
.sidebar {
  width: 250px;
  height: 100%;
  position: fixed;
  background: #15181b;
  z-index: 10;
  padding: 45px;
}
/* line 14, scss/partials/_sidebar.scss */
.sidebar .logo, .sidebar .logo img {
  display: block;
  margin: 0 auto;
  padding: 0;
}
@media only all and (max-height: 460px) {
  /* line 19, scss/partials/_sidebar.scss */
  .sidebar .logo img, .sidebar .logo img img {
    max-width: 70%;
  }
}
@media only all and (max-width: 767px) {
  /* line 5, scss/partials/_sidebar.scss */
  .sidebar {
    padding: 30px;
    width: 200px;
  }
}
@media only all and (max-height: 450px) {
  /* line 5, scss/partials/_sidebar.scss */
  .sidebar {
    padding: 20px;
  }
}

/**
 * Hidden version of the sidebar
 */
/* line 38, scss/partials/_sidebar.scss */
.sidebar-hidden {
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -moz-transform: translate3d(-250px, 0, 0);
  -ms-transform: translate3d(-250px, 0, 0);
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0);
}
/* line 39, scss/partials/_sidebar.scss */
.sidebar-hidden .sidebar-content {
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
/* line 45, scss/partials/_sidebar.scss */
.sidebar-hidden .sidebar-toggle {
  display: block;
}
/* line 52, scss/partials/_sidebar.scss */
.sidebar-hidden.expanded {
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 53, scss/partials/_sidebar.scss */
.sidebar-hidden.expanded .sidebar-content {
  opacity: 1;
}

/* line 62, scss/partials/_sidebar.scss */
.sidebar-toggle {
  display: none;
  width: 160px;
  position: absolute;
  top: 23px;
  padding-left: 30px;
  font-size: 26px;
  right: -160px;
  outline: 0 !important;
  color: white;
  font-weight: 400;
  font-family: "proxima-nova", sans-serif;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 76, scss/partials/_sidebar.scss */
.sidebar-toggle:hover, .sidebar-toggle:active {
  outline: 0;
  color: white;
}
@media only all and (max-width: 767px) {
  /* line 62, scss/partials/_sidebar.scss */
  .sidebar-toggle {
    top: 0;
    width: 60px;
    right: -110px;
  }
}

@media only all and (max-width: 767px) {
  /* line 89, scss/partials/_sidebar.scss */
  .expanded .sidebar-toggle {
    right: -60px;
  }
}
/* line 94, scss/partials/_sidebar.scss */
.dark .sidebar-toggle {
  color: #23282c;
  background: rgba(255, 255, 255, 0.85);
  -moz-border-radius: 0 0 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 0;
}

/* line 99, scss/partials/_sidebar.scss */
.dark.expanded .sidebar-toggle {
  background: none;
}

/* line 107, scss/partials/_sidebar.scss */
.sidebar-content {
  min-height: 480px;
}

/* line 111, scss/partials/_sidebar.scss */
.sidebar .menu {
  list-style: none;
  padding: 0;
  margin: 3em 0 0;
  font-size: 110%;
}
@media only all and (max-width: 767px) {
  /* line 111, scss/partials/_sidebar.scss */
  .sidebar .menu {
    margin-top: 2em;
  }
}
@media only all and (max-height: 480px) {
  /* line 111, scss/partials/_sidebar.scss */
  .sidebar .menu {
    margin-top: 1em;
    font-size: 95%;
  }
}
/* line 125, scss/partials/_sidebar.scss */
.sidebar .menu a {
  display: block;
  outline: 0;
  color: #e6e6e6;
  text-decoration: none;
  cursor: pointer;
}
/* line 69, scss/partials/_base.scss */
.sidebar .menu a:hover {
  color: white;
  font-weight: 600;
}
/* line 129, scss/partials/_sidebar.scss */
.sidebar .menu a:hover {
  color: #e33726;
}
/* line 137, scss/partials/_sidebar.scss */
.sidebar .menu > li:hover .sub-menu {
  display: block;
}
/* line 144, scss/partials/_sidebar.scss */
.sidebar .menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 90%;
  padding-bottom: 1em;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 154, scss/partials/_sidebar.scss */
.sidebar .menu .sub-menu.expanded {
  max-height: 10000px;
  padding-bottom: 1em;
}
/* line 159, scss/partials/_sidebar.scss */
.sidebar .menu .sub-menu li {
  padding: 0;
  margin: 0;
}
/* line 162, scss/partials/_sidebar.scss */
.sidebar .menu .sub-menu li > a {
  font-weight: 300;
  margin: 0;
  line-height: 1;
  padding: 5px 0 5px 10px;
}
@media only all and (max-height: 600px) {
  /* line 162, scss/partials/_sidebar.scss */
  .sidebar .menu .sub-menu li > a {
    padding: 3px 0 3px 10px;
  }
}
@media only all and (max-width: 767px) {
  /* line 144, scss/partials/_sidebar.scss */
  .sidebar .menu .sub-menu {
    padding-bottom: .5em;
    font-size: 85%;
  }
}
/* line 181, scss/partials/_sidebar.scss */
.sidebar .menu .current-menu-item:not(.menu-item-1298):not(.menu-item-2328):not(.menu-item-1338) > a {
  color: #e33726;
}

/**
 * Social
 */
/* line 191, scss/partials/_sidebar.scss */
.social {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 1.25em 0 1em 2.8em;
  width: 250px;
}
/* line 198, scss/partials/_sidebar.scss */
.social a {
  color: rgba(204, 215, 226, 0.45);
  font-size: 140%;
  margin-left: 0;
  margin-right: 5px;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  display: inline-block;
}
/* line 205, scss/partials/_sidebar.scss */
.social a:hover {
  color: #ccd7e2;
  -moz-transform: scale(1.05) translate3d(0, -4px, 0);
  -ms-transform: scale(1.05) translate3d(0, -4px, 0);
  -webkit-transform: scale(1.05) translate3d(0, -4px, 0);
  transform: scale(1.05) translate3d(0, -4px, 0);
}

/* line 1, scss/partials/_tables.scss */
table.grid-table {
  width: 100%;
  background: none;
}
/* line 4, scss/partials/_tables.scss */
table.grid-table tr {
  background: none;
}
/* line 7, scss/partials/_tables.scss */
table.grid-table td {
  width: 33%;
  display: table-cell;
  vertical-align: middle;
  text-align: center !important;
  background: none;
  padding: 1.5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 15, scss/partials/_tables.scss */
table.grid-table td a {
  display: inline-block;
}
/* line 18, scss/partials/_tables.scss */
table.grid-table td img {
  width: 100%;
}
/* line 21, scss/partials/_tables.scss */
table.grid-table td.bb {
  border-bottom: 1px solid #ccc;
}
/* line 24, scss/partials/_tables.scss */
table.grid-table td.br {
  border-right: 1px solid #ccc;
}

/* line 1, scss/partials/_typography.scss */
h2, .uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.25;
}

/* line 7, scss/partials/_typography.scss */
h1, h3, h4 {
  font-weight: 400;
}

/* line 11, scss/partials/_typography.scss */
p, ul, ol {
  margin-bottom: 2em;
}

/* line 15, scss/partials/_typography.scss */
.bold {
  font-weight: 500;
}

/* line 16, scss/partials/_typography.scss */
.bolder {
  font-weight: 600;
}

/* line 18, scss/partials/_typography.scss */
.highlighted {
  color: #fff;
  background: #e33726;
  white-space: nowrap;
}

/* line 24, scss/partials/_typography.scss */
pre {
  font-size: 70%;
  padding: 1em;
  background: rgba(230, 230, 230, 0.5);
}

/* line 30, scss/partials/_typography.scss */
code {
  font-weight: 500;
}

/* line 40, scss/partials/_typography.scss */
.xxxxl {
  font-size: 144px;
  line-height: 216px;
}

/* line 41, scss/partials/_typography.scss */
.xxxl {
  font-size: 89px;
  line-height: 133.5px;
}

/* line 42, scss/partials/_typography.scss */
.xxl {
  font-size: 45px;
  line-height: 67.5px;
}

/* line 43, scss/partials/_typography.scss */
.xl {
  font-size: 34px;
  line-height: 51px;
}

/* line 44, scss/partials/_typography.scss */
.l {
  font-size: 21px;
  line-height: 31.5px;
}

/* line 45, scss/partials/_typography.scss */
.m {
  font-size: 13px;
  line-height: 19.5px;
}

/* line 46, scss/partials/_typography.scss */
.s {
  font-size: 8px;
  line-height: 12px;
}

/* line 47, scss/partials/_typography.scss */
.xs {
  font-size: 5px;
  line-height: 7.5px;
}

@media only all and (max-width: 1119px) {
  /* line 40, scss/partials/_typography.scss */
  .xxxxl {
    font-size: 122.4px;
    line-height: 183.6px;
  }

  /* line 41, scss/partials/_typography.scss */
  .xxxl {
    font-size: 75.65px;
    line-height: 113.475px;
  }

  /* line 42, scss/partials/_typography.scss */
  .xxl {
    font-size: 38.25px;
    line-height: 57.375px;
  }

  /* line 43, scss/partials/_typography.scss */
  .xl {
    font-size: 28.9px;
    line-height: 43.35px;
  }

  /* line 44, scss/partials/_typography.scss */
  .l {
    font-size: 17.85px;
    line-height: 26.775px;
  }

  /* line 45, scss/partials/_typography.scss */
  .m {
    font-size: 11.05px;
    line-height: 16.575px;
  }

  /* line 46, scss/partials/_typography.scss */
  .s {
    font-size: 6.8px;
    line-height: 10.2px;
  }

  /* line 47, scss/partials/_typography.scss */
  .xs {
    font-size: 4.25px;
    line-height: 6.375px;
  }
}
@media only all and (max-width: 767px) {
  /* line 40, scss/partials/_typography.scss */
  .xxxxl {
    font-size: 100.8px;
    line-height: 151.2px;
  }

  /* line 41, scss/partials/_typography.scss */
  .xxxl {
    font-size: 62.3px;
    line-height: 93.45px;
  }

  /* line 42, scss/partials/_typography.scss */
  .xxl {
    font-size: 31.5px;
    line-height: 47.25px;
  }

  /* line 43, scss/partials/_typography.scss */
  .xl {
    font-size: 23.8px;
    line-height: 35.7px;
  }

  /* line 44, scss/partials/_typography.scss */
  .l {
    font-size: 14.7px;
    line-height: 22.05px;
  }

  /* line 45, scss/partials/_typography.scss */
  .m {
    font-size: 9.1px;
    line-height: 13.65px;
  }

  /* line 46, scss/partials/_typography.scss */
  .s {
    font-size: 5.6px;
    line-height: 8.4px;
  }

  /* line 47, scss/partials/_typography.scss */
  .xs {
    font-size: 3.5px;
    line-height: 5.25px;
  }
}
@media only all and (max-width: 479px) {
  /* line 40, scss/partials/_typography.scss */
  .xxxxl {
    font-size: 86.4px;
    line-height: 129.6px;
  }

  /* line 41, scss/partials/_typography.scss */
  .xxxl {
    font-size: 53.4px;
    line-height: 80.1px;
  }

  /* line 42, scss/partials/_typography.scss */
  .xxl {
    font-size: 27px;
    line-height: 40.5px;
  }

  /* line 43, scss/partials/_typography.scss */
  .xl {
    font-size: 20.4px;
    line-height: 30.6px;
  }

  /* line 44, scss/partials/_typography.scss */
  .l {
    font-size: 12.6px;
    line-height: 18.9px;
  }

  /* line 45, scss/partials/_typography.scss */
  .m {
    font-size: 7.8px;
    line-height: 11.7px;
  }

  /* line 46, scss/partials/_typography.scss */
  .s {
    font-size: 4.8px;
    line-height: 7.2px;
  }

  /* line 47, scss/partials/_typography.scss */
  .xs {
    font-size: 3px;
    line-height: 4.5px;
  }
}
@media only all and (max-width: 360px) {
  /* line 40, scss/partials/_typography.scss */
  .xxxxl {
    font-size: 72px;
    line-height: 108px;
  }

  /* line 41, scss/partials/_typography.scss */
  .xxxl {
    font-size: 44.5px;
    line-height: 66.75px;
  }

  /* line 42, scss/partials/_typography.scss */
  .xxl {
    font-size: 22.5px;
    line-height: 33.75px;
  }

  /* line 43, scss/partials/_typography.scss */
  .xl {
    font-size: 17px;
    line-height: 25.5px;
  }

  /* line 44, scss/partials/_typography.scss */
  .l {
    font-size: 10.5px;
    line-height: 15.75px;
  }

  /* line 45, scss/partials/_typography.scss */
  .m {
    font-size: 6.5px;
    line-height: 9.75px;
  }

  /* line 46, scss/partials/_typography.scss */
  .s {
    font-size: 4px;
    line-height: 6px;
  }

  /* line 47, scss/partials/_typography.scss */
  .xs {
    font-size: 2.5px;
    line-height: 3.75px;
  }
}
/* line 57, scss/partials/_typography.scss */
h1, h2, h3, h4, h5 {
  color: white;
  line-height: 1.2 !important;
}

/* line 67, scss/partials/_typography.scss */
.heading {
  text-align: center;
  font-size: 150%;
  margin-bottom: 1em;
}

/* line 82, scss/partials/_typography.scss */
.lead {
  line-height: 1.4;
  margin-bottom: 2em;
}
/* line 86, scss/partials/_typography.scss */
.lead span {
  line-height: 1.5;
  background: rgba(35, 40, 44, 0.9);
}
@media only all and (max-width: 767px) {
  /* line 82, scss/partials/_typography.scss */
  .lead {
    margin-top: 2em;
  }
}

/* line 97, scss/partials/_typography.scss */
.sub-text {
  color: #ccd7e2;
  font-weight: 500;
}

/* line 107, scss/partials/_typography.scss */
.first-letter::first-letter {
  font-size: 550%;
  line-height: 1;
  float: left;
  margin-top: -5px;
  margin-bottom: 5px;
  padding-right: .35em;
}

/* line 1, scss/partials/_video.scss */
.video-full {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  opacity: 0;
  -moz-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
/* line 11, scss/partials/_video.scss */
.video-full.visible {
  opacity: 1;
}
/* line 15, scss/partials/_video.scss */
.video-full > div {
  width: 100%;
  height: 100%;
}
/* line 20, scss/partials/_video.scss */
.video-full video {
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 1, scss/pages/_404.scss */
.page-404 {
  padding: 50px;
  color: #fff;
  margin-left: 310px;
  z-index: 10;
  position: absolute;
}
/* line 8, scss/pages/_404.scss */
.page-404 h1 {
  color: #fff;
}
/* line 9, scss/pages/_404.scss */
.page-404 input {
  font-size: 20px;
  padding: .5em 1em;
}

/* line 15, scss/pages/_404.scss */
.bessy {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: .2;
  background: url("images/gifs/fan-owned.gif");
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

/* line 4, scss/pages/_about.scss */
.about .video-full {
  background: url(images/backgrounds/office-1.jpg) center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

/* line 11, scss/pages/_about.scss */
.about-intro {
  height: 70%;
  max-height: 70%;
  z-index: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UzMzcyNiIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMzM3MjYiIHN0b3Atb3BhY2l0eT0iMC44NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(227, 55, 38, 0.9)), color-stop(100%, rgba(227, 55, 38, 0.85)));
  background-image: -moz-linear-gradient(top, rgba(227, 55, 38, 0.9) 0%, rgba(227, 55, 38, 0.85) 100%);
  background-image: -webkit-linear-gradient(top, rgba(227, 55, 38, 0.9) 0%, rgba(227, 55, 38, 0.85) 100%);
  background-image: linear-gradient(to bottom, rgba(227, 55, 38, 0.9) 0%, rgba(227, 55, 38, 0.85) 100%);
}
/* line 20, scss/pages/_about.scss */
.about-intro .scroll-down:hover {
  background: rgba(255, 255, 255, 0.75);
}
@media only all and (max-width: 767px) {
  /* line 26, scss/pages/_about.scss */
  .about-intro h1 {
    font-size: 200%;
    line-height: 1.4;
  }
}

/* line 33, scss/pages/_about.scss */
.about-offerings, .about-why {
  padding: 30px;
  font-size: 120%;
  margin: 0 auto;
  margin-bottom: 3em;
  max-width: 90%;
}
@media only all and (max-width: 767px) {
  /* line 33, scss/pages/_about.scss */
  .about-offerings, .about-why {
    padding: 0;
  }
  /* line 42, scss/pages/_about.scss */
  .about-offerings h1, .about-why h1 {
    font-size: 175%;
    line-height: 1.4;
  }
}
/* line 48, scss/pages/_about.scss */
.about-offerings i, .about-why i {
  font-size: 300%;
}
/* line 52, scss/pages/_about.scss */
.about-offerings .unit, .about-why .unit {
  padding: 2em 4em;
}
@media only all and (max-width: 767px) {
  /* line 52, scss/pages/_about.scss */
  .about-offerings .unit, .about-why .unit {
    padding: 1em;
    margin-bottom: 3em;
  }
}

/* line 65, scss/pages/_about.scss */
.about-why {
  font-size: 140%;
}
/* line 67, scss/pages/_about.scss */
.about-why h1 {
  margin-top: 1.5em;
}
/* line 70, scss/pages/_about.scss */
.about-why h3 {
  font-size: 1.5em;
  line-height: 1.4;
}

/* line 76, scss/pages/_about.scss */
.about-offerings {
  border-top: 1px solid rgba(204, 215, 226, 0.25);
  margin-bottom: 3em;
}
@media only all and (max-width: 767px) {
  /* line 80, scss/pages/_about.scss */
  .about-offerings h2 {
    font-size: 120%;
    line-height: 1.4;
  }
}
/* line 82, scss/pages/_about.scss */
.about-offerings h3 {
  margin-bottom: 2em;
}

/* line 4, scss/pages/_approach.scss */
.approach {
  background: #15181b;
}
/* line 6, scss/pages/_approach.scss */
.approach .btn {
  padding: .5em 1.25em;
  border: 1px solid #e33726 !important;
}

/* line 16, scss/pages/_approach.scss */
.arrow {
  position: fixed;
  top: 50%;
  margin-top: -27px;
  cursor: pointer;
  border: none !important;
  text-decoration: none !important;
  font-size: 64px;
  color: #e33726;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

/* line 28, scss/pages/_approach.scss */
.arrow:hover {
  color: white;
}

/* line 32, scss/pages/_approach.scss */
#arrowLeft {
  left: 270px;
}

/* line 36, scss/pages/_approach.scss */
#arrowRight {
  right: 20px;
}

/* line 44, scss/pages/_approach.scss */
.number-circled {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto;
  margin-top: -100px;
  font-style: normal !important;
  font-size: 50px !important;
  font-weight: bold;
  border: 1px solid #ccd7e2 !important;
  color: #ccd7e2;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/* line 59, scss/pages/_approach.scss */
.reveal .slides {
  width: 960px;
  height: 700px;
}

/* line 64, scss/pages/_approach.scss */
.reveal .slides section {
  font-size: 200%;
  margin-top: -3em;
  /*
  @include breakpoint(large) {
  	margin-top: -5em;
  }
  @include respond('max-height: 850px') {
  	margin-top: -2em;
  }
  */
}
/* line 77, scss/pages/_approach.scss */
.reveal .slides section h2 {
  font-size: 38px;
  margin-top: 1em;
  margin-bottom: .5em;
}
/* line 82, scss/pages/_approach.scss */
.reveal .slides section p {
  font-size: 80%;
  line-height: 1.4;
}
@media only all and (max-width: 767px) {
  /* line 90, scss/pages/_approach.scss */
  .reveal .slides section .number-circled {
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  /* line 91, scss/pages/_approach.scss */
  .reveal .slides section h2 {
    font-size: 220%;
  }
  /* line 92, scss/pages/_approach.scss */
  .reveal .slides section p {
    font-size: 170%;
  }
}

/* line 97, scss/pages/_approach.scss */
.slide-1 .sub-text {
  font-size: 60%;
  color: #e33726 !important;
}
@media only all and (max-width: 767px) {
  /* line 97, scss/pages/_approach.scss */
  .slide-1 .sub-text {
    font-size: 150% !important;
  }
}

@media only all and (max-width: 767px) {
  /* line 108, scss/pages/_approach.scss */
  .slide-5 {
    padding: 0 1em;
  }
  /* line 112, scss/pages/_approach.scss */
  .slide-5 p {
    font-size: 14px;
  }
}

/* line 119, scss/pages/_approach.scss */
.slide-6 .content {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  opacity: 1;
  border: 1px solid #e33726 !important;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 750ms ease-in-out;
  -o-transition: all 750ms ease-in-out;
  -webkit-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 129, scss/pages/_approach.scss */
.slide-6 .content h2 {
  margin-top: 180px !important;
  margin-bottom: 1em !important;
}
/* line 134, scss/pages/_approach.scss */
.slide-6 .content.minimize {
  opacity: 0;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
@media only all and (max-width: 767px) {
  /* line 119, scss/pages/_approach.scss */
  .slide-6 .content {
    width: 100%;
    border: none !important;
  }
  /* line 142, scss/pages/_approach.scss */
  .slide-6 .content h2 {
    margin-bottom: 1.5em !important;
  }
  /* line 145, scss/pages/_approach.scss */
  .slide-6 .content .btn-primary {
    font-size: 60px !important;
  }
}

/**
 * Progress bar
 */
/* line 158, scss/pages/_approach.scss */
.reveal .progress {
  top: 0;
  /*left: 250px;*/
  height: 10px !important;
}
/* line 163, scss/pages/_approach.scss */
.reveal .progress span {
  background: #e33726;
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/**
 * Controls
 */
/* line 176, scss/pages/_approach.scss */
.btn-prev-slide, .btn-next-slide {
  display: block;
  font-size: 300%;
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  background: rgba(255, 255, 255, 0.15);
  position: fixed;
  z-index: 999;
  color: #e33726;
  cursor: pointer;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 190, scss/pages/_approach.scss */
.btn-prev-slide:hover, .btn-next-slide:hover {
  color: white;
  background: rgba(255, 255, 255, 0.25);
  -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);
}

/* line 197, scss/pages/_approach.scss */
.btn-next-slide {
  right: 0;
}

/* line 1, scss/pages/_blog.scss */
.blog {
  background: white;
  color: #23282c;
  position: relative;
  height: auto;
  /**
   * The parent container which holds an entries content on the
   * blog overview page as well as a single blog page.
   */
}
/* line 7, scss/pages/_blog.scss */
.blog .logo-right {
  position: fixed;
  top: 40px;
  right: 50px;
}
/* line 11, scss/pages/_blog.scss */
.blog .logo-right img {
  max-width: 100px;
  height: auto;
}
@media only all and (max-width: 767px) {
  /* line 11, scss/pages/_blog.scss */
  .blog .logo-right img {
    display: none;
  }
}
/* line 22, scss/pages/_blog.scss */
.blog h1, .blog h2, .blog h3, .blog h4, .blog h5 {
  color: #23282c;
}
/* line 30, scss/pages/_blog.scss */
.blog .entry {
  margin-bottom: 2em;
  border-bottom: 1px solid rgba(181, 181, 181, 0.5);
  font-size: 1.8em;
  line-height: 1.4;
}
@media only all and (max-width: 767px) {
  /* line 30, scss/pages/_blog.scss */
  .blog .entry {
    padding: 1.5em;
    font-size: 1.45em;
    margin-bottom: 0;
  }
}
/* line 46, scss/pages/_blog.scss */
.blog .entry .entry-header {
  margin: 2em 0 0;
}
/* line 50, scss/pages/_blog.scss */
.blog .entry .entry-title {
  padding-bottom: 0;
  margin-bottom: 0 !important;
  text-decoration: none;
  color: #23282c;
}
/* line 55, scss/pages/_blog.scss */
.blog .entry .entry-title a {
  color: #23282c;
  text-decoration: none;
}
/* line 58, scss/pages/_blog.scss */
.blog .entry .entry-title a:hover {
  color: #e33726;
}
/* line 63, scss/pages/_blog.scss */
.blog .entry .entry-title .attachment-thumbnail {
  margin-left: 1em;
  float: right;
  width: 80px;
}
@media only all and (max-width: 767px) {
  /* line 63, scss/pages/_blog.scss */
  .blog .entry .entry-title .attachment-thumbnail {
    display: none;
  }
}
/* line 74, scss/pages/_blog.scss */
.blog .entry .entry-credits {
  margin: 0;
  font-weight: 300;
  font-family: "freight-text-pro", serif;
  color: #636060;
}
/* line 79, scss/pages/_blog.scss */
.blog .entry .entry-credits a {
  font-weight: 300;
  color: #636060;
}
/* line 87, scss/pages/_blog.scss */
.blog .entry .entry-content {
  font-family: "freight-text-pro", serif;
  overflow: hidden;
  *zoom: 1;
}

/* line 96, scss/pages/_blog.scss */
.blog-navigation {
  padding: 3em 0 1.5em;
  overflow: hidden;
  *zoom: 1;
}
/* line 99, scss/pages/_blog.scss */
.blog-navigation a:hover {
  color: #23282c;
  border-color: #23282c;
}

/* line 105, scss/pages/_blog.scss */
.blog-header {
  text-align: center;
  padding: 3em 0;
}
/* line 109, scss/pages/_blog.scss */
.blog-header .logo {
  width: 170px;
  height: auto;
}
/* line 114, scss/pages/_blog.scss */
.blog-header .blog-title {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  padding: 1em;
  font-weight: bold;
  color: #b5b5b5 !important;
}
/* line 125, scss/pages/_blog.scss */
.blog-header .avatar {
  width: 150px;
  height: 150px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/* line 134, scss/pages/_blog.scss */
.blog-pagination {
  padding: 0 0 3em 0;
  text-align: center;
  font-size: 200%;
  font-family: "freight-text-pro", serif;
}
/* line 141, scss/pages/_blog.scss */
.blog-pagination .wp-paginate {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* line 145, scss/pages/_blog.scss */
.blog-pagination .wp-paginate li {
  margin: 0;
  padding: .25em;
  display: inline-block;
}
/* line 152, scss/pages/_blog.scss */
.blog-pagination .current {
  color: #23282c;
  background: none;
  border: none;
}

/* line 163, scss/pages/_blog.scss */
.single .entry-header {
  margin: 2em 0 !important;
}
@media only all and (max-width: 767px) {
  /* line 163, scss/pages/_blog.scss */
  .single .entry-header {
    margin: 4em 0 0 !important;
  }
}
/* line 170, scss/pages/_blog.scss */
.single .entry-title {
  font-size: 2.5em;
}
@media only all and (max-width: 767px) {
  /* line 170, scss/pages/_blog.scss */
  .single .entry-title {
    font-size: 1.5em;
  }
}
@media only all and (max-width: 767px) {
  /* line 177, scss/pages/_blog.scss */
  .single #disqus_thread {
    padding: 1em;
  }
}

/* line 5, scss/pages/_contact.scss */
.contact-bg {
  height: 1250px;
  position: relative;
}
/* line 15, scss/pages/_contact.scss */
.contact-bg .contact-intro, .contact-bg .contact-form-msgs, .contact-bg .contact-form, .contact-bg .contact-fluff {
  z-index: 99;
}
/* line 19, scss/pages/_contact.scss */
.contact-bg .contact-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  background: url("images/backgrounds/victoria.jpg") center bottom no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  -moz-transition: all 1200ms ease-in-out;
  -o-transition: all 1200ms ease-in-out;
  -webkit-transition: all 1200ms ease-in-out;
  transition: all 1200ms ease-in-out;
}
/* line 29, scss/pages/_contact.scss */
.contact-bg .contact-bg-img.blurred {
  -webkit-filter: blur(15px);
  filter: blur(15px);
}
/* line 33, scss/pages/_contact.scss */
.contact-bg .contact-bg-img.hidden {
  opacity: 0;
  -webkit-filter: blur(15px);
  filter: blur(15px);
}

/* line 40, scss/pages/_contact.scss */
.contact-intro {
  padding: 8em 0 2em;
}
/* line 41, scss/pages/_contact.scss */
.contact-intro .phone {
  font-size: 2.5em;
  position: fixed;
  top: 50px;
  right: 50px;
  color: rgba(204, 215, 226, 0.5) !important;
  font-family: "freight-text-pro", serif;
  font-weight: 300;
  margin: 0;
  line-height: 1;
  text-decoration: none;
}
/* line 52, scss/pages/_contact.scss */
.contact-intro .phone a {
  color: rgba(204, 215, 226, 0.5) !important;
  text-decoration: none;
  font-weight: 300;
}
@media only all and (max-width: 1650px) {
  /* line 41, scss/pages/_contact.scss */
  .contact-intro .phone {
    position: absolute;
  }
}

/* line 65, scss/pages/_contact.scss */
.contact-form-msgs {
  position: relative;
  width: auto;
  text-align: center;
}
/* line 69, scss/pages/_contact.scss */
.contact-form-msgs .success, .contact-form-msgs .error {
  vertical-align: middle;
  opacity: 0;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  margin-top: -3em;
  margin-bottom: -2em;
}
/* line 75, scss/pages/_contact.scss */
.contact-form-msgs .success h3, .contact-form-msgs .error h3 {
  color: rgba(204, 215, 226, 0.75);
}
/* line 78, scss/pages/_contact.scss */
.contact-form-msgs .success i, .contact-form-msgs .error i {
  color: #40bf82;
  font-size: 300%;
}
/* line 86, scss/pages/_contact.scss */
.contact-form-msgs .success.visible, .contact-form-msgs .error.visible {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 93, scss/pages/_contact.scss */
.contact-form-msgs .error i {
  color: #e33726;
}

/* line 99, scss/pages/_contact.scss */
.contact-form {
  font-size: 1.4em;
}
/* line 104, scss/pages/_contact.scss */
.contact-form .submit {
  text-align: center;
}
/* line 112, scss/pages/_contact.scss */
.contact-form textarea {
  height: 300px;
}
/* line 116, scss/pages/_contact.scss */
.contact-form button {
  font-size: 1.5em;
  margin: 1em auto 0;
  font-style: normal;
  font-weight: 100;
}
@media only all and (max-width: 767px) {
  /* line 99, scss/pages/_contact.scss */
  .contact-form {
    padding: .5em;
  }
}

/* line 128, scss/pages/_contact.scss */
.contact-fluff {
  padding: 6em 0 0;
}
/* line 130, scss/pages/_contact.scss */
.contact-fluff h1 {
  font-size: 2em;
  font-weight: 300;
}

/* line 136, scss/pages/_contact.scss */
.contact-info {
  background: #15181b;
  text-align: center;
}
/* line 141, scss/pages/_contact.scss */
.contact-info ul {
  list-style: none;
  margin: 0 auto;
  display: inline-block;
}
/* line 145, scss/pages/_contact.scss */
.contact-info ul li {
  margin: 0;
  padding: 1.35em 3em;
  display: inline-block;
}

/* line 3, scss/pages/_home.scss */
.home .full-viewport h3 {
  margin-bottom: 5em;
}
@media only all and (max-width: 767px) {
  /* line 3, scss/pages/_home.scss */
  .home .full-viewport h3 {
    margin-bottom: 2em;
  }
}
@media only all and (max-width: 1119px) {
  /* line 3, scss/pages/_home.scss */
  .home .full-viewport h3 {
    margin-bottom: 3em;
  }
}

/* line 13, scss/pages/_home.scss */
.home-intro {
  opacity: 0;
  -moz-transition: opacity 1000ms ease-in-out;
  -o-transition: opacity 1000ms ease-in-out;
  -webkit-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
}
/* line 15, scss/pages/_home.scss */
.home-intro.bg-right {
  background-position: right center;
}
/* line 16, scss/pages/_home.scss */
.home-intro.bg-left {
  background-position: left center;
}
/* line 18, scss/pages/_home.scss */
.home-intro.visible {
  opacity: 1;
}
/* line 22, scss/pages/_home.scss */
.home-intro h2 {
  opacity: 0;
  -moz-transition: all 2s ease-in-out 1000ms;
  -o-transition: all 2s ease-in-out 1000ms;
  -webkit-transition: all 2s ease-in-out;
  -webkit-transition-delay: 1000ms;
  transition: all 2s ease-in-out 1000ms;
}
/* line 32, scss/pages/_home.scss */
.home-intro h2.visible {
  opacity: 1;
}
/* line 42, scss/pages/_home.scss */
.home-intro .sub-heading {
  line-height: 1.9;
  font-weight: 200;
  color: #ccd7e2;
  margin: 0 auto;
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.5);
}

/* line 58, scss/pages/_home.scss */
.home-services {
  background-image: url("images/backgrounds/bwin-trends-1.jpg");
}

/* line 64, scss/pages/_home.scss */
.home-products {
  background-image: url("images/backgrounds/pub-phone.jpg");
}

/* line 12, scss/pages/_products.scss */
.products.overview {
  background-attachment: fixed;
}
/* line 14, scss/pages/_products.scss */
.products.overview .products-intro {
  overflow: auto !important;
}
/* line 17, scss/pages/_products.scss */
.products.overview .products-intro .lead {
  padding-bottom: 0;
  margin-bottom: 1em;
}
/* line 22, scss/pages/_products.scss */
.products.overview .products-intro h3 {
  color: #ccd7e2;
  margin: 0;
  padding: 0 0 2em;
}
/* line 29, scss/pages/_products.scss */
.products.overview .full-background-img {
  opacity: 0;
  -moz-transition: all 2000ms ease-in-out;
  -o-transition: all 2000ms ease-in-out;
  -webkit-transition: all 2000ms ease-in-out;
  transition: all 2000ms ease-in-out;
}
/* line 32, scss/pages/_products.scss */
.products.overview .full-background-img.visible {
  opacity: 1;
}
/* line 38, scss/pages/_products.scss */
.products.overview .products-overview .unit {
  position: relative;
  display: block;
  height: 300px;
}
/* line 48, scss/pages/_products.scss */
.products.overview .products-overview .unit .desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  opacity: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transform: translate3d(0, 60px, 0);
  -ms-transform: translate3d(0, 60px, 0);
  -webkit-transform: translate3d(0, 60px, 0);
  transform: translate3d(0, 60px, 0);
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
/* line 60, scss/pages/_products.scss */
.products.overview .products-overview .unit .desc span {
  padding: 8px 40px;
  display: block;
  line-height: 1.4;
  font-weight: normal;
  color: #23282c;
}
@media only all and (max-width: 767px) {
  /* line 48, scss/pages/_products.scss */
  .products.overview .products-overview .unit .desc {
    font-size: 120%;
    opacity: 1;
    -moz-transform: translate3d(0, -35px, 0);
    -ms-transform: translate3d(0, -35px, 0);
    -webkit-transform: translate3d(0, -35px, 0);
    transform: translate3d(0, -35px, 0);
  }
}
/* line 81, scss/pages/_products.scss */
.products.overview .products-overview .unit a {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  text-decoration: none;
  overflow: hidden;
  background-position: center center;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 97, scss/pages/_products.scss */
.products.overview .products-overview .unit a .txt, .products.overview .products-overview .unit a .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 106, scss/pages/_products.scss */
.products.overview .products-overview .unit a .txt {
  z-index: 1;
}
/* line 110, scss/pages/_products.scss */
.products.overview .products-overview .unit a .bg {
  z-index: 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuMCIgeDI9IjEuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjE1JSIgc3RvcC1jb2xvcj0iI2NjZjNmZiIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZTVlNWU1IiBzdG9wLW9wYWNpdHk9IjAuMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(15%, rgba(204, 243, 255, 0.15)), color-stop(100%, rgba(229, 229, 229, 0.1)));
  background-image: -moz-linear-gradient(left top, rgba(255, 255, 255, 0.1) 0%, rgba(204, 243, 255, 0.15) 15%, rgba(229, 229, 229, 0.1) 100%);
  background-image: -webkit-linear-gradient(left top, rgba(255, 255, 255, 0.1) 0%, rgba(204, 243, 255, 0.15) 15%, rgba(229, 229, 229, 0.1) 100%);
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.1) 0%, rgba(204, 243, 255, 0.15) 15%, rgba(229, 229, 229, 0.1) 100%);
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 117, scss/pages/_products.scss */
.products.overview .products-overview .unit a .title, .products.overview .products-overview .unit a .desc span {
  color: white;
}
/* line 121, scss/pages/_products.scss */
.products.overview .products-overview .unit a .title {
  font-size: 115%;
  padding-top: 75px;
  text-decoration: none !important;
}
/* line 126, scss/pages/_products.scss */
.products.overview .products-overview .unit a .title i {
  font-size: 300%;
}
@media only all and (min-width: 1120px) {
  /* line 121, scss/pages/_products.scss */
  .products.overview .products-overview .unit a .title {
    padding-top: 55px;
  }
}
/* line 134, scss/pages/_products.scss */
.products.overview .products-overview .unit a:hover {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}
/* line 137, scss/pages/_products.scss */
.products.overview .products-overview .unit a:hover .desc {
  opacity: 1;
  -moz-transform: translate3d(0, -45px, 0);
  -ms-transform: translate3d(0, -45px, 0);
  -webkit-transform: translate3d(0, -45px, 0);
  transform: translate3d(0, -45px, 0);
}
/* line 144, scss/pages/_products.scss */
.products.overview .products-overview .unit a:hover .txt {
  -moz-transform: translate3d(0, -30px, 0);
  -ms-transform: translate3d(0, -30px, 0);
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
/* line 150, scss/pages/_products.scss */
.products.overview .products-overview .unit a:hover .bg {
  background: rgba(227, 55, 38, 0.95);
}

/* line 164, scss/pages/_products.scss */
.products.mobile .products-intro {
  text-align: left;
}
/* line 168, scss/pages/_products.scss */
.products.mobile .products-intro .content {
  max-width: 960px;
}
/* line 169, scss/pages/_products.scss */
.products.mobile .products-intro .content .lead {
  margin: 0;
}
/* line 173, scss/pages/_products.scss */
.products.mobile .products-intro .content .scroll-down {
  left: 380px;
  margin-top: 50px;
  bottom: auto;
}
/* line 178, scss/pages/_products.scss */
.products.mobile .products-intro .content .scroll-down:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 183, scss/pages/_products.scss */
.products.mobile .products-intro .content .sub-text strong {
  color: #23282c;
}
@media only all and (max-width: 767px) {
  /* line 182, scss/pages/_products.scss */
  .products.mobile .products-intro .content .sub-text {
    color: white;
    font-size: 16px;
  }
  /* line 190, scss/pages/_products.scss */
  .products.mobile .products-intro .content .sub-text strong {
    color: #e33726;
  }
}
/* line 196, scss/pages/_products.scss */
.products.mobile .products-intro .full-background-img {
  opacity: 0;
  -moz-transition: all 1000ms ease-out 1000ms;
  -o-transition: all 1000ms ease-out 1000ms;
  -webkit-transition: all 1000ms ease-out;
  -webkit-transition-delay: 1000ms;
  transition: all 1000ms ease-out 1000ms;
  -moz-transform: translate3d(0, -20px, 0);
  -ms-transform: translate3d(0, -20px, 0);
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
/* line 201, scss/pages/_products.scss */
.products.mobile .products-intro .full-background-img.visible {
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 209, scss/pages/_products.scss */
.products.mobile .mobile-philosophies {
  text-align: left;
  border-top: none;
  padding-top: 1em;
  padding-bottom: 0;
  overflow: hidden;
  *zoom: 1;
}
/* line 218, scss/pages/_products.scss */
.products.mobile .mobile-philosophies-img {
  float: left;
  width: 40%;
  vertical-align: bottom;
}
/* line 222, scss/pages/_products.scss */
.products.mobile .mobile-philosophies-img img {
  max-width: 100%;
  display: block;
  vertical-align: bottom;
}
/* line 232, scss/pages/_products.scss */
.products.mobile .mobile-philosophies-copy {
  float: left;
  width: 60%;
  right: 0;
  padding: 8em 0 0 3em;
  font-size: 120%;
}
/* line 238, scss/pages/_products.scss */
.products.mobile .mobile-philosophies-copy li {
  line-height: 2;
}
@media only all and (max-width: 767px) {
  /* line 232, scss/pages/_products.scss */
  .products.mobile .mobile-philosophies-copy {
    width: auto;
    float: none;
    padding: 1.5em;
  }
  /* line 243, scss/pages/_products.scss */
  .products.mobile .mobile-philosophies-copy h3 {
    font-size: 120%;
    line-height: 1.4;
  }
  /* line 247, scss/pages/_products.scss */
  .products.mobile .mobile-philosophies-copy ul {
    font-size: 90%;
    padding: 0;
  }
}
/* line 258, scss/pages/_products.scss */
.products.mobile .mobile-channels {
  padding-bottom: 6em;
  overflow: hidden;
  *zoom: 1;
}
/* line 262, scss/pages/_products.scss */
.products.mobile .mobile-channels h1 {
  padding-bottom: 2em;
}
/* line 268, scss/pages/_products.scss */
.products.mobile .mobile-channels .grid i {
  font-size: 300%;
}

/* line 277, scss/pages/_products.scss */
.products.data-feeds-overview {
  background: url("images/backgrounds/data-feeds.jpg") right bottom;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 282, scss/pages/_products.scss */
.products.data-feeds-overview .products-intro .content {
  vertical-align: top;
  text-align: left;
}
/* line 288, scss/pages/_products.scss */
.products.data-feeds-overview h3 {
  color: #ccd7e2;
  padding: 0 0 2em;
}
/* line 293, scss/pages/_products.scss */
.products.data-feeds-overview i:not(.scroll-down) {
  font-size: 300%;
}
/* line 297, scss/pages/_products.scss */
.products.data-feeds-overview .lead {
  font-size: 72px;
  margin-bottom: 0;
}
@media only all and (max-width: 767px) {
  /* line 297, scss/pages/_products.scss */
  .products.data-feeds-overview .lead {
    font-size: 36px;
    margin-top: 1em;
  }
}
/* line 304, scss/pages/_products.scss */
.products.data-feeds-overview .lead span {
  font-weight: 700;
  color: #e33726;
  background: none;
}
/* line 311, scss/pages/_products.scss */
.products.data-feeds-overview .unit {
  padding: 2em 1em;
}
/* line 313, scss/pages/_products.scss */
.products.data-feeds-overview .unit:first-child {
  padding-left: 0;
}
/* line 316, scss/pages/_products.scss */
.products.data-feeds-overview .unit:last-child {
  padding-right: 0;
}
/* line 322, scss/pages/_products.scss */
.products.data-feeds-overview .hr {
  height: 6px;
}
/* line 324, scss/pages/_products.scss */
.products.data-feeds-overview .hr span {
  display: block;
  width: 20%;
  height: 6px;
}
/* line 332, scss/pages/_products.scss */
.products.data-feeds-overview .xml-feeds .hr {
  background: rgba(227, 55, 38, 0.2);
}
/* line 333, scss/pages/_products.scss */
.products.data-feeds-overview .xml-feeds .hr span, .products.data-feeds-overview .xml-feeds .cta {
  background: #e33726;
}
/* line 334, scss/pages/_products.scss */
.products.data-feeds-overview .xml-feeds .cta:hover {
  background: #be2718;
}
/* line 338, scss/pages/_products.scss */
.products.data-feeds-overview .stats-centres .hr {
  background: rgba(255, 216, 0, 0.2);
}
/* line 339, scss/pages/_products.scss */
.products.data-feeds-overview .stats-centres .hr span, .products.data-feeds-overview .stats-centres .cta {
  background: #ffd800;
}
/* line 340, scss/pages/_products.scss */
.products.data-feeds-overview .stats-centres .cta:hover {
  background: #ccad00;
}
/* line 344, scss/pages/_products.scss */
.products.data-feeds-overview .twitter-streams .hr {
  background: rgba(0, 198, 255, 0.2);
}
/* line 345, scss/pages/_products.scss */
.products.data-feeds-overview .twitter-streams .hr span, .products.data-feeds-overview .twitter-streams .cta {
  background: #00c6ff;
}
/* line 346, scss/pages/_products.scss */
.products.data-feeds-overview .twitter-streams .cta:hover {
  background: #009ecc;
}
/* line 353, scss/pages/_products.scss */
.products.data-feeds-overview .cta {
  display: block;
  padding: 5px 10px 5px 15px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  color: black;
}
/* line 360, scss/pages/_products.scss */
.products.data-feeds-overview .cta .icon {
  font-size: 17px;
}
@media only all and (max-width: 767px) {
  /* line 360, scss/pages/_products.scss */
  .products.data-feeds-overview .cta .icon {
    font-size: 7px;
  }
}
@media only all and (max-width: 767px) {
  /* line 277, scss/pages/_products.scss */
  .products.data-feeds-overview {
    background-attachment: fixed;
    min-height: 100%;
    height: auto;
  }
  /* line 370, scss/pages/_products.scss */
  .products.data-feeds-overview h3 {
    padding: 1em 0;
  }
  /* line 373, scss/pages/_products.scss */
  .products.data-feeds-overview .unit {
    padding: 3em 0;
  }
  /* line 375, scss/pages/_products.scss */
  .products.data-feeds-overview .unit p {
    font-size: 12px;
    padding-bottom: 0;
  }
}

/* line 387, scss/pages/_products.scss */
.products.trends .full-background-img {
  opacity: 0;
  -moz-transition: all 1500ms ease-in-out 500ms;
  -o-transition: all 1500ms ease-in-out 500ms;
  -webkit-transition: all 1500ms ease-in-out;
  -webkit-transition-delay: 500ms;
  transition: all 1500ms ease-in-out 500ms;
}
/* line 390, scss/pages/_products.scss */
.products.trends .full-background-img.visible {
  opacity: 1;
}
/* line 395, scss/pages/_products.scss */
.products.trends .products-overview {
  padding: 6em;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(204, 215, 226, 0.25);
}
/* line 403, scss/pages/_products.scss */
.products.trends .products-overview .copy {
  font-size: 160%;
  line-height: 1.4;
}
/* line 408, scss/pages/_products.scss */
.products.trends .products-overview .scroll-down {
  font-size: 80%;
}
@media only all and (max-width: 767px) {
  /* line 395, scss/pages/_products.scss */
  .products.trends .products-overview {
    padding: 2em;
    font-size: 90%;
  }
}
/* line 420, scss/pages/_products.scss */
.products.trends .how-it-works {
  margin: 0 auto;
  padding-bottom: 6em;
}
/* line 424, scss/pages/_products.scss */
.products.trends .how-it-works hr {
  width: 80px;
}
/* line 428, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices {
  width: 1120px;
  max-width: 100%;
  padding: 3em 0 6em 0;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
/* line 435, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop, .products.trends .how-it-works .product-devices .iphone-ipad {
  float: left;
  width: 50%;
  height: 370px;
  display: block;
  text-align: center;
  opacity: .5;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
/* line 444, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop span, .products.trends .how-it-works .product-devices .iphone-ipad span {
  display: inline-block;
  color: white;
  font-weight: normal;
  font-size: 130%;
}
/* line 450, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop span h3, .products.trends .how-it-works .product-devices .iphone-ipad span h3 {
  font-weight: bold;
  margin: 0;
}
/* line 455, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop:hover, .products.trends .how-it-works .product-devices .iphone-ipad:hover {
  opacity: 1;
}
/* line 461, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop {
  width: 40%;
  margin-left: 6%;
  background: url("images/imac.png") center 2px no-repeat;
  -moz-background-size: 99% auto;
  -o-background-size: 99% auto;
  -webkit-background-size: 99% auto;
  background-size: 99% auto;
}
/* line 466, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .desktop span {
  margin-top: 125px;
}
/* line 471, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .iphone-ipad {
  float: right;
  margin-right: 6%;
  width: 35%;
  background: url("images/iphone-ipad.png") center 2px no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
/* line 477, scss/pages/_products.scss */
.products.trends .how-it-works .product-devices .iphone-ipad span {
  margin-left: 135px;
  margin-top: 175px;
}
/* line 485, scss/pages/_products.scss */
.products.trends .product-trends-builder {
  height: 1160px;
  text-align: center;
  background: url("images/backgrounds/trends.jpg") center top no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 490, scss/pages/_products.scss */
.products.trends .product-trends-builder .product-images {
  text-align: center;
}
/* line 492, scss/pages/_products.scss */
.products.trends .product-trends-builder .product-images img {
  display: block;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
/* line 499, scss/pages/_products.scss */
.products.trends .product-trends-builder .copy {
  margin-top: -60px;
  font-size: 120%;
  padding: 2em 1em;
}
/* line 504, scss/pages/_products.scss */
.products.trends .product-trends-builder ul {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
@media only all and (max-width: 767px) {
  /* line 485, scss/pages/_products.scss */
  .products.trends .product-trends-builder {
    background: none;
    display: inline-block;
    height: auto;
  }
}
/* line 517, scss/pages/_products.scss */
.products.trends .product-trends-mobile-lead {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5em 0;
  margin: 0;
  z-index: 999;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjg1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.85)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}
/* line 532, scss/pages/_products.scss */
.products.trends .product-trends-mobile {
  text-align: center;
  overflow: visible;
  height: auto;
  height: 100%;
}
/* line 538, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl, .products.trends .product-trends-mobile .download-nba {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media only all and (max-width: 1119px) {
  /* line 538, scss/pages/_products.scss */
  .products.trends .product-trends-mobile .download-nfl, .products.trends .product-trends-mobile .download-nba {
    float: none;
    width: 100%;
    height: 500px;
    position: relative;
    left: 0 !important;
  }
}
/* line 553, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl .download-links, .products.trends .product-trends-mobile .download-nba .download-links {
  background: black;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: -1%;
  width: 102%;
  opacity: 0;
  text-align: center;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
/* line 564, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl .download-links img, .products.trends .product-trends-mobile .download-nba .download-links img {
  margin-top: 24px;
  max-width: 120px;
  height: auto;
  width: 100%;
  display: block;
}
/* line 571, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl .download-links a, .products.trends .product-trends-mobile .download-nba .download-links a {
  display: inline-block;
}
/* line 573, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl .download-links a:hover, .products.trends .product-trends-mobile .download-nba .download-links a:hover {
  opacity: .75;
}
@media only all and (max-width: 1119px) {
  /* line 553, scss/pages/_products.scss */
  .products.trends .product-trends-mobile .download-nfl .download-links, .products.trends .product-trends-mobile .download-nba .download-links {
    opacity: .9;
    background: rgba(0, 0, 0, 0.5);
  }
}
/* line 585, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl:hover .download-links, .products.trends .product-trends-mobile .download-nba:hover .download-links {
  opacity: .9;
}
/* line 592, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nfl {
  background: url("images/backgrounds/trends-mobile-nfl.jpg") center center no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 597, scss/pages/_products.scss */
.products.trends .product-trends-mobile .download-nba {
  left: 50%;
  background: url("images/backgrounds/trends-mobile-nba.jpg") center center no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 604, scss/pages/_products.scss */
.products.trends .product-trends-mobile-copy {
  text-align: center;
  font-size: 120%;
  background: rgba(0, 0, 0, 0.85);
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 3em 0 4em;
}
/* line 611, scss/pages/_products.scss */
.products.trends .product-trends-mobile-copy ul {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
/* line 619, scss/pages/_products.scss */
.products.trends .product-trends-cta {
  background: url("images/backgrounds/football-2.jpg") center center no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

/* line 5, scss/pages/_roster.scss */
.roster .page-content {
  float: left;
  width: 60%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 10, scss/pages/_roster.scss */
.roster .page-content h1 {
  margin-bottom: 1.5em;
}
/* line 14, scss/pages/_roster.scss */
.roster .page-content article p {
  font-size: 120%;
}
@media only all and (max-width: 767px) {
  /* line 5, scss/pages/_roster.scss */
  .roster .page-content {
    position: relative;
    float: none;
    width: 100%;
    padding: 1.5em;
    margin-top: 2em;
  }
}

/* line 27, scss/pages/_roster.scss */
.roster .photo-grid {
  width: 30%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
}
@media only all and (max-width: 767px) {
  /* line 27, scss/pages/_roster.scss */
  .roster .photo-grid {
    position: relative;
    width: 100%;
  }
}

/* line 9, scss/pages/_services.scss */
.services-intro .lead {
  font-size: 300%;
  margin: 0 auto;
  opacity: 1;
  -moz-transition: all 1s ease-out 1000ms;
  -o-transition: all 1s ease-out 1000ms;
  -webkit-transition: all 1s ease-out;
  -webkit-transition-delay: 1000ms;
  transition: all 1s ease-out 1000ms;
}
@media only all and (max-width: 1210px) {
  /* line 9, scss/pages/_services.scss */
  .services-intro .lead {
    font-size: 250%;
  }
}
@media only all and (max-width: 950px) {
  /* line 9, scss/pages/_services.scss */
  .services-intro .lead {
    font-size: 200%;
  }
}
@media only all and (max-width: 820px) {
  /* line 23, scss/pages/_services.scss */
  .services-intro .lead br {
    display: none;
  }
}
/* line 28, scss/pages/_services.scss */
.services-intro .lead.visible {
  opacity: 1;
}
/* line 33, scss/pages/_services.scss */
.services-intro .products-collage {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  -moz-transition: all 3s ease-out 750ms, -moz-transform 3s ease-out;
  -o-transition: all 3s ease-out 750ms, -o-transform 3s ease-out;
  -webkit-transition: all 3s ease-out, -webkit-transform 3s ease-out;
  -webkit-transition-delay: 750ms, 0s;
  transition: all 3s ease-out 750ms, transform 3s ease-out;
}
/* line 47, scss/pages/_services.scss */
.services-intro .products-collage.visible {
  opacity: 1;
}

/* line 57, scss/pages/_services.scss */
.services-lead {
  padding: 30px;
  font-size: 120%;
  margin: 0 auto;
  margin-bottom: 3em;
  max-width: 1120px;
  overflow: hidden;
  *zoom: 1;
}
/* line 65, scss/pages/_services.scss */
.services-lead .lead {
  margin: 2em auto;
}
@media only all and (max-width: 767px) {
  /* line 65, scss/pages/_services.scss */
  .services-lead .lead {
    font-size: 26px;
  }
}

/* line 71, scss/pages/_services.scss */
.services-offered {
  padding: 30px;
  font-size: 120%;
  margin: 0 auto;
  margin-bottom: 3em;
  max-width: 1120px;
  border-top: 1px solid rgba(204, 215, 226, 0.25);
  overflow: hidden;
  *zoom: 1;
}
/* line 80, scss/pages/_services.scss */
.services-offered .lead {
  margin: 2em auto;
}
/* line 84, scss/pages/_services.scss */
.services-offered i {
  font-size: 300%;
}
/* line 87, scss/pages/_services.scss */
.services-offered .unit {
  padding: 2em 4em;
}
@media only all and (max-width: 767px) {
  /* line 87, scss/pages/_services.scss */
  .services-offered .unit {
    padding: 1em 1em 3em;
  }
}
/* line 93, scss/pages/_services.scss */
.services-offered p {
  padding-bottom: 2em;
  max-width: 380px;
  margin: 0 auto;
}

/* line 105, scss/pages/_services.scss */
.services.development .services-intro {
  background: url("images/backgrounds/bsm-phone-1.jpg") right center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
/* line 109, scss/pages/_services.scss */
.services.development .services-intro .content {
  width: 50%;
}
/* line 131, scss/pages/_services.scss */
.services.development .services-devices .devices-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 3em;
}
@media only all and (max-height: 815px) {
  /* line 137, scss/pages/_services.scss */
  .services.development .services-devices .scroll-down {
    display: none;
  }
}
/* line 143, scss/pages/_services.scss */
.services.development .services-market-stats {
  text-align: center;
}
/* line 146, scss/pages/_services.scss */
.services.development .services-market-stats .xxl {
  margin: 0;
  padding: 0;
}
/* line 150, scss/pages/_services.scss */
.services.development .services-market-stats h2 {
  text-transform: lowercase;
}
/* line 153, scss/pages/_services.scss */
.services.development .services-market-stats h3 {
  font-size: 220%;
  padding-bottom: 1em;
}
/* line 157, scss/pages/_services.scss */
.services.development .services-market-stats .animated-line-chart {
  width: 960px;
  margin: 0 auto;
}
/* line 163, scss/pages/_services.scss */
.services.development .services-development-phases {
  padding: 10em 0 6em;
}
/* line 167, scss/pages/_services.scss */
.services.development .services-development-phases h3 {
  font-size: 220%;
  padding-bottom: 3em;
}
/* line 171, scss/pages/_services.scss */
.services.development .services-development-phases .number-circled {
  border-color: white !important;
  color: white;
}
/* line 175, scss/pages/_services.scss */
.services.development .services-development-phases ul {
  color: white;
  font-size: 120%;
  list-style-type: disc;
}
@media only all and (max-width: 767px) {
  /* line 180, scss/pages/_services.scss */
  .services.development .services-development-phases .unit {
    margin-bottom: 2em;
  }
}

/*
$team-intro-h: 100%;
.team-intro {
	min-height: $team-intro-h;
	height: $team-intro-h;
	//background-image: url('images/company/team-photo-1-red.jpg');
	//@include background-size(378px 350px);

	.logo {
		width: 150px;
		left: 50%;
		top: -100px;
		margin-left: -75px;
		opacity: 0;
		position: absolute;
		@include transition(all 1500ms ease-in-out 1s);

		&.visible {
			//top: 50px;
			//@include opacity(1);
		}
	}
}
*/
/* line 31, scss/pages/_team.scss */
.team-names {
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  position: absolute;
  z-index: 1;
}
@media only all and (max-width: 825px) {
  /* line 31, scss/pages/_team.scss */
  .team-names {
    display: none;
  }
}
/* line 42, scss/pages/_team.scss */
.team-names a {
  display: block;
  text-align: center;
  height: 40px;
  width: 122px;
  color: white;
  line-height: 30px;
  position: absolute;
  cursor: pointer;
  background: url("images/black-speech-bubble.png") no-repeat;
  opacity: 0;
  -moz-transform: translate3d(0, 10px, 0);
  -ms-transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  -moz-transition: all 1500ms ease-in-out, scale 200ms;
  -o-transition: all 1500ms ease-in-out, scale 200ms;
  -webkit-transition: all 1500ms ease-in-out, scale 200ms;
  transition: all 1500ms ease-in-out, scale 200ms;
}
/* line 57, scss/pages/_team.scss */
.team-names a.visible {
  opacity: 1;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 62, scss/pages/_team.scss */
.team-names a:hover {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* line 66, scss/pages/_team.scss */
.team-names a.jordan {
  top: 20%;
  left: 8%;
}
/* line 67, scss/pages/_team.scss */
.team-names a.judd {
  top: 16%;
  left: 29%;
}
/* line 68, scss/pages/_team.scss */
.team-names a.jesse {
  top: 20%;
  left: 59%;
}
/* line 69, scss/pages/_team.scss */
.team-names a.jon {
  top: 16%;
  left: 85%;
}

/* line 75, scss/pages/_team.scss */
#page-520 .block {
  padding: 2em 0;
}

/* line 80, scss/pages/_team.scss */
.team-member {
  text-align: left;
  max-width: 100%;
  width: 810px;
}
/* line 86, scss/pages/_team.scss */
.team-member h2 {
  font-size: 200%;
}
/* line 90, scss/pages/_team.scss */
.team-member h2, .team-member h3 {
  text-align: center;
}
/* line 93, scss/pages/_team.scss */
.team-member h3 {
  font-family: "freight-text-pro", serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(204, 215, 226, 0.75);
}
/* line 98, scss/pages/_team.scss */
.team-member h3:after {
  content: ' ';
  margin: 1.5em auto;
  display: block;
  width: 5%;
  min-width: 50px;
  border-bottom: 1px solid rgba(204, 215, 226, 0.25);
}
/* line 108, scss/pages/_team.scss */
.team-member:last-child {
  border-bottom: none;
  margin-bottom: none !important;
}
/* line 113, scss/pages/_team.scss */
.team-member .social-links {
  display: block;
  text-align: center;
  opacity: 1;
}
/* line 117, scss/pages/_team.scss */
.team-member .social-links a {
  text-decoration: none !important;
  border: none !important;
}

/* line 124, scss/pages/_team.scss */
#jesse {
  margin-top: -4em;
  border-top: none !important;
}

/* line 129, scss/pages/_team.scss */
#jordan {
  margin-bottom: -3em;
}

/* line 1, scss/pages/_why.scss */
.why {
  padding: 0 2em;
  background: url("images/backgrounds/soccer-6.jpg") center -150px no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
/* line 12, scss/pages/_why.scss */
.why .lead {
  font-size: 300%;
  margin-top: 1.5em;
  margin-bottom: 1em;
  max-width: 900px;
  transform: translate3d(0, 50px, 0);
  opacity: .25;
  -moz-transition: all 750ms ease-in-out;
  -o-transition: all 750ms ease-in-out;
  -webkit-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
}
/* line 22, scss/pages/_why.scss */
.why .lead .icon {
  font-size: 300%;
}
/* line 26, scss/pages/_why.scss */
.why .lead.animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
@media only all and (max-width: 767px) {
  /* line 12, scss/pages/_why.scss */
  .why .lead {
    font-size: 175%;
  }
}
/* line 36, scss/pages/_why.scss */
.why .unit {
  text-align: center;
  padding: 1em 2em !important;
  font-size: 120%;
  opacity: 0;
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
/* line 44, scss/pages/_why.scss */
.why .unit .icon {
  font-size: 300%;
}
/* line 48, scss/pages/_why.scss */
.why .unit h2 {
  font-size: 18px;
}
/* line 52, scss/pages/_why.scss */
.why .unit p {
  text-align: left;
}
/* line 56, scss/pages/_why.scss */
.why .unit.visible {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 62, scss/pages/_why.scss */
.why .block {
  margin-top: 4em;
  max-width: calc(100% - 4em);
}

/* line 1, scss/pages/_xml.scss */
.xml {
  background: #0c0e10 url("images/backgrounds/xml.jpg") center top no-repeat;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}

/* line 6, scss/pages/_xml.scss */
.xml .intro {
  padding: 60px;
}
/* line 8, scss/pages/_xml.scss */
.xml .intro .xxxl {
  font-size: 60px;
}
/* line 12, scss/pages/_xml.scss */
.xml .intro .sub-text {
  color: #a5cad8;
}
/* line 15, scss/pages/_xml.scss */
.xml .intro ul li {
  color: white;
  font-weight: bold;
}
@media only all and (max-width: 767px) {
  /* line 6, scss/pages/_xml.scss */
  .xml .intro {
    padding: 30px;
  }
  /* line 21, scss/pages/_xml.scss */
  .xml .intro .xxxl {
    font-size: 32px;
  }
}

/* line 25, scss/pages/_xml.scss */
.xml .leagues {
  background: white;
  padding: 30px;
}
/* line 29, scss/pages/_xml.scss */
.xml .leagues h2 {
  color: #23282c;
  padding: 1em 0;
}
/* line 34, scss/pages/_xml.scss */
.xml .leagues .grid {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
/* line 40, scss/pages/_xml.scss */
.xml .leagues .league {
  width: 16.66667%;
  height: 150px;
  display: block;
  float: left;
  text-align: center;
}
@media only all and (max-width: 1119px) {
  /* line 40, scss/pages/_xml.scss */
  .xml .leagues .league {
    width: 25%;
  }
}
@media only all and (max-width: 767px) {
  /* line 40, scss/pages/_xml.scss */
  .xml .leagues .league {
    width: 50%;
  }
}
/* line 54, scss/pages/_xml.scss */
.xml .leagues .league .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* line 60, scss/pages/_xml.scss */
.xml .leagues .league img {
  vertical-align: middle;
  max-width: 150px;
  max-height: 80px;
}
/* line 66, scss/pages/_xml.scss */
.xml .leagues .league img.mlb {
  max-height: 50px;
}

/* line 73, scss/pages/_xml.scss */
.xml .prices {
  padding: 6em 0;
}
/* line 77, scss/pages/_xml.scss */
.xml .prices .grid.offerings .unit div {
  overflow: hidden;
  *zoom: 1;
  position: relative;
  padding: 2em 0;
  height: 240px;
  text-align: center;
  background: #e33726;
}
/* line 81, scss/pages/_xml.scss */
.xml .prices .grid.offerings .unit div .offering {
  font-size: 22px;
}
/* line 83, scss/pages/_xml.scss */
.xml .prices .grid.offerings .unit div .offering .or {
  display: block;
  padding: 10px 0;
  opacity: .5;
}
/* line 90, scss/pages/_xml.scss */
.xml .prices .grid.offerings .unit div .price {
  position: absolute;
  bottom: 0;
  font-size: 28px;
  text-align: center;
  width: 100%;
}
/* line 106, scss/pages/_xml.scss */
.xml .prices .grid.contact .unit div {
  border: 2px solid white;
  text-align: center;
  padding: 2em;
}
/* line 110, scss/pages/_xml.scss */
.xml .prices .grid.contact .unit div h4 {
  font-weight: bold;
}
