/*********************************************
  :: Necessary SASS files                           
********************************************/
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */
/*********************************************
  :: Sass Setup
  :: Variables, mixins and more!!
********************************************/
/*********************************************
  :: colors!!!!!!
  :: 3 most over used colors for the site
  :: usage = background: $primary-color;
********************************************/
/*********************************************
  :: typography defaults!!!!!!
  :: 3 most over used colors for the site
  :: usage = font-size: $body-copy-size; || line-height: $body-copy-lh;
********************************************/
/*********************************************
  :: breakpoint mixin
  :: simple custom defined breakpoints
  :: usage = @include breakpoint(gt760)
********************************************/
/*********************************************
  :: rgba mixin
  :: good for those pesky old browsers!!!
  :: usage = @include rgba(#000, 0.5)
********************************************/
/*********************************************
  :: Cross Browser - Border Radius
  :: good for those pesky old browsers!!!
  :: usage = @include border-radius(0px 0px 0px 0px)
********************************************/
/*********************************************
  :: Cross Browser - Input Placeholder text styling
  :: good for those pesky old browsers!!!
  :: usage = @include placeholder {STLYES GO HERE}
********************************************/
/*********************************************
  :: Cross Browser - Vertical ALignment
  :: good for those pesky old browsers!!!
  :: usage = @include vertical-align
********************************************/
/*********************************************
  :: Cross Browser - Keyframes
  :: good for those pesky old browsers!!!
  :: usage =
	@include keyframes(slide-down) {
	  0% { opacity: 1; }
	  90% { opacity: 0; }
	}
}
********************************************/
/*********************************************
  :: Cross Browser - Animation Name
  :: good for those pesky old browsers!!!
  :: usage =
	@include animation('slide-down 5s 3');
}
********************************************/
/*********************************************
  :: The Core                         
********************************************/
/* Project Font */
@import url(http://fonts.googleapis.com/css?family=Roboto:300,400);
/* Brown Paperag Footer Font */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,300,600,700);
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?jnky0c");
  src: url("../fonts/icomoon.eot?#iefixjnky0c") format("embedded-opentype"), url("../fonts/icomoon.ttf?jnky0c") format("truetype"), url("../fonts/icomoon.woff?jnky0c") format("woff"), url("../fonts/icomoon.svg?jnky0c#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 19, ../../private/scss/core/_fonts.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 33, ../../private/scss/core/_fonts.scss */
.icon-double-right-arrow:before {
  content: "\e600";
}

/* line 36, ../../private/scss/core/_fonts.scss */
.icon-circle-right-arrow:before {
  content: "\e601";
}

/* line 39, ../../private/scss/core/_fonts.scss */
.icon-single-left-arrow:before {
  content: "\e602";
}

/* line 42, ../../private/scss/core/_fonts.scss */
.icon-facebook:before {
  content: "\e603";
}

/* line 45, ../../private/scss/core/_fonts.scss */
.icon-circle-minus:before {
  content: "\e604";
}

/* line 48, ../../private/scss/core/_fonts.scss */
.icon-circle-plus:before {
  content: "\e605";
}

/*********************************************
  :: Normalize                        
********************************************/
/* line 4, ../../private/scss/core/_base.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 4, ../../private/scss/core/_base.scss */
body {
  margin: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 4, ../../private/scss/core/_base.scss */
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 4, ../../private/scss/core/_base.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
[hidden], template {
  display: none;
}

/* line 4, ../../private/scss/core/_base.scss */
a {
  background-color: transparent;
}

/* line 4, ../../private/scss/core/_base.scss */
a:active, a:hover {
  outline: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 4, ../../private/scss/core/_base.scss */
b, strong {
  font-weight: 700;
}

/* line 4, ../../private/scss/core/_base.scss */
dfn {
  font-style: italic;
}

/* line 4, ../../private/scss/core/_base.scss */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* line 4, ../../private/scss/core/_base.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 4, ../../private/scss/core/_base.scss */
small {
  font-size: 80%;
}

/* line 4, ../../private/scss/core/_base.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 4, ../../private/scss/core/_base.scss */
sup {
  top: -.5em;
}

/* line 4, ../../private/scss/core/_base.scss */
sub {
  bottom: -.25em;
}

/* line 4, ../../private/scss/core/_base.scss */
img {
  border: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 4, ../../private/scss/core/_base.scss */
figure {
  margin: 1em 40px;
}

/* line 4, ../../private/scss/core/_base.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
pre {
  overflow: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

/* line 4, ../../private/scss/core/_base.scss */
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
button {
  overflow: visible;
}

/* line 4, ../../private/scss/core/_base.scss */
button, select {
  text-transform: none;
}

/* line 4, ../../private/scss/core/_base.scss */
button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 4, ../../private/scss/core/_base.scss */
button[disabled], html input[disabled] {
  cursor: default;
}

/* line 4, ../../private/scss/core/_base.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
input {
  line-height: normal;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 4, ../../private/scss/core/_base.scss */
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

/* line 4, ../../private/scss/core/_base.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
textarea {
  overflow: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
optgroup {
  font-weight: 700;
}

/* line 4, ../../private/scss/core/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
td, th {
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
h1, h2, h3, h4, h5, h6, ol, ul, blockquote, p, li {
  margin: 0px;
  padding: 0px;
}

/*********************************************
  :: Personal Global Adjustments                            
********************************************/
/* line 10, ../../private/scss/core/_base.scss */
::-moz-selection {
  background: #304149;
  color: white;
}

/* line 15, ../../private/scss/core/_base.scss */
::selection {
  background: #304149;
  color: white;
}

/* line 20, ../../private/scss/core/_base.scss */
img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
}

/* line 27, ../../private/scss/core/_base.scss */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*********************************************
  :: Layout                            
********************************************/
/* line 37, ../../private/scss/core/_base.scss */
body {
  background: white;
  font-family: 'Open Sans', 'Helvetica','Arial', sans-serif;
  font-weight: 400;
  position: relative;
}

/*********************************************
  :: Typography                             
********************************************/
/* line 4, ../../private/scss/core/_typography.scss */
h1, .h1 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 4, ../../private/scss/core/_typography.scss */
  h1, .h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

/* line 19, ../../private/scss/core/_typography.scss */
h2, .h2 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 19, ../../private/scss/core/_typography.scss */
  h2, .h2 {
    font-size: 30px;
    line-height: 37px;
  }
}

/* line 32, ../../private/scss/core/_typography.scss */
h3, .h3 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 32, ../../private/scss/core/_typography.scss */
  h3, .h3 {
    font-size: 30px;
    line-height: 37px;
  }
}

/* line 46, ../../private/scss/core/_typography.scss */
h4, .h4 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 46, ../../private/scss/core/_typography.scss */
  h4, .h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 59, ../../private/scss/core/_typography.scss */
h5, .h5 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 59, ../../private/scss/core/_typography.scss */
  h5, .h5 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 72, ../../private/scss/core/_typography.scss */
h6, .h6 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  color: #AD9059;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 72, ../../private/scss/core/_typography.scss */
  h6, .h6 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 85, ../../private/scss/core/_typography.scss */
p, li, td, th, a, blockquote, label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  /* line 85, ../../private/scss/core/_typography.scss */
  p, li, td, th, a, blockquote, label {
    font-size: 13px;
    line-height: 18px;
  }
}

/* line 99, ../../private/scss/core/_typography.scss */
a {
  color: #AD9059;
  margin: 0px;
}
/* line 102, ../../private/scss/core/_typography.scss */
a:hover, a:focus {
  text-decoration: none;
}

/* line 107, ../../private/scss/core/_typography.scss */
strong, b {
  font-weight: 700;
}

/* line 111, ../../private/scss/core/_typography.scss */
em, i {
  font-style: italic;
}

/* line 115, ../../private/scss/core/_typography.scss */
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* line 121, ../../private/scss/core/_typography.scss */
ul li {
  list-style-type: none;
  position: relative;
}
/* line 124, ../../private/scss/core/_typography.scss */
ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: #AD9059;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: -14px;
}
@media (min-width: 1024px) {
  /* line 124, ../../private/scss/core/_typography.scss */
  ul li:before {
    /*top: 12px;*/
  }
}

/* line 143, ../../private/scss/core/_typography.scss */
ol {
  margin-left: 26px;
}

/* line 147, ../../private/scss/core/_typography.scss */
li {
  margin-bottom: 5px;
}

/* line 151, ../../private/scss/core/_typography.scss */
hr {
  float: left;
  width: 100%;
  background: #DDDDDD;
  height: 1px;
  border: none;
  outline: none;
  margin-bottom: 40px;
  margin-top: 40px;
  display: block;
}

/* line 163, ../../private/scss/core/_typography.scss */
blockquote {
  display: block;
  padding: 20px 40px 20px 40px;
  background: #444;
  color: white;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
}

/* line 174, ../../private/scss/core/_typography.scss */
figure {
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0px;
  padding: 10px;
  background: #F2F2F2;
}
/* line 183, ../../private/scss/core/_typography.scss */
figure img {
  margin-bottom: 5px;
  display: inline-block;
}
/* line 188, ../../private/scss/core/_typography.scss */
figure figcaption {
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
}

/* line 197, ../../private/scss/core/_typography.scss */
table {
  float: left;
  width: 100%;
}
/* line 201, ../../private/scss/core/_typography.scss */
table td, table th {
  padding: 10px 10px 10px 25px;
  border: 1px solid black;
  text-align: left;
}
/* line 207, ../../private/scss/core/_typography.scss */
table th {
  background: #999;
  color: white;
  font-weight: 600;
}

/*********************************************
  :: Buttons                             
********************************************/
/* line 4, ../../private/scss/core/_buttons.scss */
.button, button, button[type="submit"], input[type="submit"], input[type="button"], input[type="reset"] {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  padding: 0px;
  margin: 0px;
}

/* line 15, ../../private/scss/core/_buttons.scss */
.disabled-button,
.button[disabled],
button[disabled],
button[type="submit"][disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}

/* line 26, ../../private/scss/core/_buttons.scss */
.button, button, button[type="submit"], input[type="submit"], input[type="button"], input[type="reset"] {
  background: #AD9059;
  border-radius: 5px;
  behavior: url(../js/lib/PIE.htc);
  font-weight: 400;
  text-transform: none;
  color: white;
  font-size: 18px;
  line-height: 24px;
  padding: 11px 37px 11px 37px;
  display: inline-block;
  text-decoration: none;
  height: auto;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 41, ../../private/scss/core/_buttons.scss */
.button:hover, .button:focus, button:hover, button:focus, button[type="submit"]:hover, button[type="submit"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus {
  background: #999;
  color: white;
}

/* line 47, ../../private/scss/core/_buttons.scss */
button[type="submit"].darkblue-button,
input[type="submit"].darkblue-button,
input[type="button"].darkblue-button,
.darkblue-button {
  background: #000;
}
/* line 52, ../../private/scss/core/_buttons.scss */
button[type="submit"].darkblue-button:hover, button[type="submit"].darkblue-button:focus,
input[type="submit"].darkblue-button:hover,
input[type="submit"].darkblue-button:focus,
input[type="button"].darkblue-button:hover,
input[type="button"].darkblue-button:focus,
.darkblue-button:hover,
.darkblue-button:focus {
  background: #504F5F;
  color: white;
}

/* line 59, ../../private/scss/core/_buttons.scss */
button[type="submit"].green-button,
input[type="submit"].green-button,
input[type="button"].green-button,
.green-button {
  background: #85B200;
}
/* line 64, ../../private/scss/core/_buttons.scss */
button[type="submit"].green-button:hover, button[type="submit"].green-button:focus,
input[type="submit"].green-button:hover,
input[type="submit"].green-button:focus,
input[type="button"].green-button:hover,
input[type="button"].green-button:focus,
.green-button:hover,
.green-button:focus {
  background: #6F9400;
  color: white;
}

/*********************************************
  :: Forms                             
********************************************/
/* line 4, ../../private/scss/core/_forms.scss */
form {
  float: left;
  width: 100%;
}

/* line 9, ../../private/scss/core/_forms.scss */
legend, fieldset {
  margin: 0px;
  padding: 0px;
  border: none;
}

/* line 15, ../../private/scss/core/_forms.scss */
legend {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

/* line 23, ../../private/scss/core/_forms.scss */
label {
  text-transform: none;
  font-size: 15px;
  line-height: 20px;
}

/* line 29, ../../private/scss/core/_forms.scss */
input, textarea, select {
  outline: none;
  border: none;
  width: 100%;
  background: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  color: #000;
  border: 1px solid #CCCCCC;
  padding: 7px 10px 7px 10px;
  height: 40px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  /* line 29, ../../private/scss/core/_forms.scss */
  input, textarea, select {
    padding: 10px 10px 7px 10px;
    height: 46px;
  }
  /* line 47, ../../private/scss/core/_forms.scss */
  input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
    border-color: #000;
    color: #000;
  }
}

/* line 56, ../../private/scss/core/_forms.scss */
input[disabled], textarea[disabled], select[disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

/* line 114, ../../private/scss/core/_sass-setup.scss */
::-webkit-input-placeholder {
  color: #ccc;
}

/* line 115, ../../private/scss/core/_sass-setup.scss */
:-moz-placeholder {
  color: #ccc;
}

/* line 116, ../../private/scss/core/_sass-setup.scss */
::-moz-placeholder {
  color: #ccc;
}

/* line 117, ../../private/scss/core/_sass-setup.scss */
:-ms-input-placeholder {
  color: #ccc;
}

/* line 64, ../../private/scss/core/_forms.scss */
textarea {
  height: 60px;
}
@media (min-width: 760px) {
  /* line 64, ../../private/scss/core/_forms.scss */
  textarea {
    height: 80px;
  }
}

/* line 72, ../../private/scss/core/_forms.scss */
select[multiple] {
  height: 80px;
}

/*********************************************
  :: Form Layout (Default)                          
********************************************/
/* line 82, ../../private/scss/core/_forms.scss */
.form-field {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
/* line 87, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio {
  float: left;
  width: auto;
  margin-right: 20px;
  line-height: 23px;
  text-transform: initial;
  cursor: pointer;
}
/* line 95, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio input {
  box-sizing: border-box;
  padding: 0;
  width: 15px;
  height: 15px;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
  margin-top: 3px;
}
/* line 108, ../../private/scss/core/_forms.scss */
.form-field label {
  float: left;
  width: 100%;
  margin-bottom: 3px;
}
/* line 114, ../../private/scss/core/_forms.scss */
.form-field input[type="submit"] {
  float: right;
}
/* line 118, ../../private/scss/core/_forms.scss */
.form-field .note {
  float: left;
  font-size: 12px;
  color: #777;
}

/* line 126, ../../private/scss/core/_forms.scss */
.form-field-container {
  float: left;
  width: 100%;
}

/* (Applied on .form-field-container) Evenly stack fields @ 50% */
@media (min-width: 760px) {
  /* line 136, ../../private/scss/core/_forms.scss */
  .field-width50 .form-field:first-of-type {
    margin-right: 2%;
  }
  /* line 141, ../../private/scss/core/_forms.scss */
  .field-width50 .form-field {
    width: 49%;
  }
}

/* Custom padding separators for fields */
@media (min-width: 760px) {
  /* line 148, ../../private/scss/core/_forms.scss */
  .field-padding-right2 {
    padding-right: 2%;
  }
}

/* (Applied on individual .form-field divs) Custom widths for fields */
@media (min-width: 760px) {
  /* line 155, ../../private/scss/core/_forms.scss */
  .field-width-15 {
    width: 15%;
  }
}

@media (min-width: 760px) {
  /* line 161, ../../private/scss/core/_forms.scss */
  .field-width-20 {
    width: 20%;
  }
}

@media (min-width: 760px) {
  /* line 167, ../../private/scss/core/_forms.scss */
  .field-width-25 {
    width: 25%;
  }
}

@media (min-width: 760px) {
  /* line 173, ../../private/scss/core/_forms.scss */
  .field-width-30 {
    width: 30%;
  }
}

@media (min-width: 760px) {
  /* line 179, ../../private/scss/core/_forms.scss */
  .field-width-40 {
    width: 40%;
  }
}

@media (min-width: 760px) {
  /* line 185, ../../private/scss/core/_forms.scss */
  .field-width-50 {
    width: 50%;
  }
}

/*********************************************
  :: Error/Misc Messages                        
********************************************/
/* line 195, ../../private/scss/core/_forms.scss */
.form-note {
  font-size: 12px;
  line-height: 17px;
  color: #858585;
}

/* line 201, ../../private/scss/core/_forms.scss */
input.error, textarea.error, select.error {
  border-color: #DE2828;
}

/* line 205, ../../private/scss/core/_forms.scss */
label.error {
  color: #DE2828 !important;
  margin-top: 10px;
  font-weight: bold !important;
}

/*********************************************
  :: Animations                        
********************************************/
@-webkit-keyframes $animation-name {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-moz-keyframes $animation-name {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-ms-keyframes $animation-name {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-o-keyframes $animation-name {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes $animation-name {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
/* line 10, ../../private/scss/core/_animations.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* ################################################### */
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  from {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 33, ../../private/scss/core/_animations.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

/* ################################################### */
@-ms-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    -moz-transform: translate3d(-60%, 0, 0);
    -ms-transform: translate3d(-60%, 0, 0);
    -o-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    -moz-transform: translate3d(-60%, 0, 0);
    -ms-transform: translate3d(-60%, 0, 0);
    -o-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    -moz-transform: translate3d(-60%, 0, 0);
    -ms-transform: translate3d(-60%, 0, 0);
    -o-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    -moz-transform: translate3d(-60%, 0, 0);
    -ms-transform: translate3d(-60%, 0, 0);
    -o-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
/* line 120, ../../private/scss/core/_animations.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* ################################################### */
@-ms-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(60%, 0, 0);
    -moz-transform: translate3d(60%, 0, 0);
    -ms-transform: translate3d(60%, 0, 0);
    -o-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(60%, 0, 0);
    -moz-transform: translate3d(60%, 0, 0);
    -ms-transform: translate3d(60%, 0, 0);
    -o-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@-moz-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(60%, 0, 0);
    -moz-transform: translate3d(60%, 0, 0);
    -ms-transform: translate3d(60%, 0, 0);
    -o-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60%, 0, 0);
    -moz-transform: translate3d(60%, 0, 0);
    -ms-transform: translate3d(60%, 0, 0);
    -o-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
/* line 204, ../../private/scss/core/_animations.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*********************************************
  :: The Core - Layout & Components                      
********************************************/
/*********************************************
  :: Header                             
********************************************/
/* line 4, ../../private/scss/core/_header.scss */
header {
  float: left;
  width: 100%;
  padding: 0px;
  position: relative;
}

/* Logo */
/* line 13, ../../private/scss/core/_header.scss */
.header-logo {
  float: left;
  z-index: 999;
  margin-top: 31px;
  margin-left: 0px;
}

/* Right Section */
/* line 21, ../../private/scss/core/_header.scss */
.right-section {
  float: right;
}

/* Top Bar */
/* line 27, ../../private/scss/core/_header.scss */
.top-bar {
  float: right;
  width: auto;
  position: relative;
}
/* line 32, ../../private/scss/core/_header.scss */
.top-bar:before {
  content: "";
  background: white;
  width: 160px;
  height: 6px;
  position: absolute;
  top: 0px;
  right: 0px;
}

/* Header Phone Number */
/* line 46, ../../private/scss/core/_header.scss */
.header-phone-number {
  float: right;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: black;
  margin-top: 21px;
  margin-right: 0px;
  margin-left: 14px;
}

/* Header Track Delivery Button */
/* line 58, ../../private/scss/core/_header.scss */
.header-track-delivery-btn {
  background: white;
  border: 1px solid #eee;
  text-decoration: none;
  padding: 6px 15px 6px 15px;
  border-radius: 3px;
  color: #bababa;
  margin-top: 16px;
  display: inline-block;
  margin-right: 0px;
  font-size: 14px;
  line-height: 18px;
  margin-left: 0px;
}

/* Header Facebook Button */
/* line 75, ../../private/scss/core/_header.scss */
.header-facebook {
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  color: #ccc;
  margin-left: 31px;
  display: inline-block;
  vertical-align: middle;
}

/* Main Menu */
/* line 86, ../../private/scss/core/_header.scss */
.main-menu {
  float: right;
  width: 100%;
  margin-top: 2px;
}
/* line 91, ../../private/scss/core/_header.scss */
.main-menu ul {
  margin: 0px;
  float: right;
  width: 100%;
  text-align: right;
}
/* line 98, ../../private/scss/core/_header.scss */
.main-menu li {
  float: right;
  display: inline-block;
  margin-bottom: 0px;
}
/* line 102, ../../private/scss/core/_header.scss */
.main-menu li:before {
  display: none;
}
/* line 107, ../../private/scss/core/_header.scss */
.main-menu a {
  text-decoration: none;
  float: left;
  color: #868686;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 0px;
  padding-top: 4px;
  font-weight: 400;
  padding-right: 14px;
  padding-left: 13px;
  border-right: 1px solid #AD9059;
  display: block;
  height: 51px;
}
/* line 122, ../../private/scss/core/_header.scss */
.main-menu a:hover, .main-menu a:focus {
  color: #000;
}
/* line 130, ../../private/scss/core/_header.scss */
.main-menu li:first-of-type a {
  border: none;
  padding-right: 0px;
}
/* line 137, ../../private/scss/core/_header.scss */
.main-menu .services-menu-item {
  color: #AD9059;
  font-weight: 700;
}

/*  Active State Menu Items  */
/* line 145, ../../private/scss/core/_header.scss */
.page-home .home-menu-item,
.page-about .about-menu-item,
.page-services .services-menu-item,
.page-solutions .solutions-menu-item,
.page-solution .solutions-menu-item,
.page-contact .contactus-menu-item {
  color: #000;
  font-weight: 700;
}

/*********************************************
  :: Footer                           
********************************************/
/* line 4, ../../private/scss/core/_footer.scss */
footer {
  float: left;
  width: 100%;
  padding: 0px;
}

/* Brown Paper Bag Container */
/* line 11, ../../private/scss/core/_footer.scss */
.brownpaperbag-container {
  float: left;
  width: 100%;
  padding: 0px;
  position: relative;
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid #888;
  margin-bottom: 50px;
}
/* line 21, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .left-section {
  float: left;
}
/* line 25, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .middle-section {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10px;
}
/* line 33, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .middle-section a {
  text-transform: uppercase;
  color: #AD9059;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
/* line 42, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .right-section {
  float: right;
}
/* line 46, ../../private/scss/core/_footer.scss */
.brownpaperbag-container a, .brownpaperbag-container p {
  color: #ccc;
  margin: 0px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  line-height: 8px;
  font-size: 12px;
  font-weight: 300;
  margin: 0px;
}
/* line 57, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .attribution {
  border: none;
  display: block;
}
@media (min-width: 1024px) {
  /* line 57, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .attribution {
    margin: 0px;
    font-size: 12px;
    margin-right: 0px;
  }
}
@media (min-width: 1024px) {
  /* line 68, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .copyright span {
    display: inline-block !important;
  }
}

/*********************************************
  :: Main Section                             
********************************************/
/* line 4, ../../private/scss/core/_general.scss */
.main {
  float: left;
  width: 100%;
  padding: 45px 0px 63px 0px;
}

/* line 10, ../../private/scss/core/_general.scss */
.clear {
  clear: both;
}

/* line 14, ../../private/scss/core/_general.scss */
.clear-left {
  clear: left;
}

/* line 18, ../../private/scss/core/_general.scss */
.container-max-width {
  width: 940px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  /* line 23, ../../private/scss/core/_general.scss */
  .small-screen-only {
    display: none !important;
  }
}

/* line 29, ../../private/scss/core/_general.scss */
.large-screen-only {
  display: none !important;
}
@media (min-width: 1024px) {
  /* line 29, ../../private/scss/core/_general.scss */
  .large-screen-only {
    display: block !important;
  }
}

/* line 36, ../../private/scss/core/_general.scss */
.rounded-image-container {
  border-radius: 100%;
  behavior: url(../js/lib/PIE.htc);
}

/* line 41, ../../private/scss/core/_general.scss */
.rounded-image {
  border-radius: 100%;
  behavior: url(../js/lib/PIE.htc);
}

/* line 47, ../../private/scss/core/_general.scss */
.internal-banner {
  float: left;
  height: 65px;
  width: 100%;
  background: #f8f8f8;
  margin-bottom: 17px;
}
/* line 54, ../../private/scss/core/_general.scss */
.internal-banner h1 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #202020;
  text-transform: Uppercase;
  margin-top: 17px;
}

/*********************************************
  :: Views                       
********************************************/
/*********************************************
    :: Homepage                             
********************************************/
/* line 6, ../../private/scss/views/_home.scss */
.page-home .main {
  padding: 0px !important;
}

/* line 13, ../../private/scss/views/_home.scss */
.cssanimations .owl-item .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/* Slideshow */
/* line 20, ../../private/scss/views/_home.scss */
.slideshow {
  float: left;
  width: 100%;
  position: relative;
  height: 346px;
}
/* line 26, ../../private/scss/views/_home.scss */
.slideshow .slides {
  float: left;
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
}
/* line 35, ../../private/scss/views/_home.scss */
.slideshow .slide {
  float: left;
  width: 100%;
  height: 346px;
  position: relative;
}
/* line 42, ../../private/scss/views/_home.scss */
.slideshow .slideshow-controls {
  position: absolute;
  top: 135px;
  left: -55px;
  background: url("/images/slideshow-arrow-left.png");
  width: 40px;
  height: 78px;
  display: block;
  z-index: 999;
  cursor: pointer;
}
/* line 54, ../../private/scss/views/_home.scss */
.slideshow .slideshow-next {
  right: -55px;
  left: auto;
  background: url("/images/slideshow-arrow-right.png");
}
/* line 60, ../../private/scss/views/_home.scss */
.slideshow .content {
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms;
  -webkit-animation-timing-function: cubic-bezier(0.47, 0.17, 0.54, -1.06);
  animation-timing-function: cubic-bezier(0.47, 0.17, 0.54, -1.06);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 1;
}
/* line 70, ../../private/scss/views/_home.scss */
.slideshow .owl-item {
  /*-webkit-animation-duration: 1500ms;*/
  /*animation-duration: 1500ms;*/
  /*@include animation('fadeIn');*/
}
/* line 76, ../../private/scss/views/_home.scss */
.slideshow .owl-item.active {
  -webkit-animation-delay: 6000ms;
  animation-delay: 6000ms;
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
/* line 86, ../../private/scss/views/_home.scss */
.slideshow .active .content-left {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
/* line 91, ../../private/scss/views/_home.scss */
.slideshow .active .content-right {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
/* line 96, ../../private/scss/views/_home.scss */
.slideshow .content-left p, .slideshow .content-left h1, .slideshow .content-left h2, .slideshow .content-left h3, .slideshow .content-left h4, .slideshow .content-left h5, .slideshow .content-left a {
  float: left;
  width: 350px;
  color: white;
  font-size: 45px;
  line-height: 53px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: 60px;
  left: 50px;
  text-decoration: none;
}
/* line 108, ../../private/scss/views/_home.scss */
.slideshow .content-left p em, .slideshow .content-left p i, .slideshow .content-left h1 em, .slideshow .content-left h1 i, .slideshow .content-left h2 em, .slideshow .content-left h2 i, .slideshow .content-left h3 em, .slideshow .content-left h3 i, .slideshow .content-left h4 em, .slideshow .content-left h4 i, .slideshow .content-left h5 em, .slideshow .content-left h5 i, .slideshow .content-left a em, .slideshow .content-left a i {
  font-style: italic;
  color: #CCA55F;
}
/* line 116, ../../private/scss/views/_home.scss */
.slideshow .content-right p, .slideshow .content-right h1, .slideshow .content-right h2, .slideshow .content-right h3, .slideshow .content-right h4, .slideshow .content-right h5, .slideshow .content-right a {
  float: right;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: white;
  width: 490px;
  clear: both;
  padding-left: 20px;
  border-left: 1px solid #bbb;
  margin-top: 17px;
  position: absolute;
  right: 26px;
  bottom: -340px;
  text-decoration: none;
}

/* Slideshow background image */
/* line 137, ../../private/scss/views/_home.scss */
.slidehow-background-image {
  float: left;
  width: 940px;
  height: 346px;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
}
/* line 145, ../../private/scss/views/_home.scss */
.slidehow-background-image:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.43);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6E000000,endColorstr=#6E000000);
  zoom: 1;
  position: absolute;
  z-index: 6;
  left: 0px;
  top: 0px;
}

/* Featured Solutions */
/* line 160, ../../private/scss/views/_home.scss */
.featured-solutions {
  float: left;
  width: 100%;
  background: #f8f8f8;
  text-align: center;
  padding: 37px 35px 32px 84px;
}
/* line 167, ../../private/scss/views/_home.scss */
.featured-solutions .content {
  display: inline-block;
}
/* line 171, ../../private/scss/views/_home.scss */
.featured-solutions .icons {
  float: left;
}
/* line 175, ../../private/scss/views/_home.scss */
.featured-solutions .link {
  width: 200px;
  float: left;
  text-align: left;
  margin-left: 33px;
  padding-left: 30px;
  border-left: 1px solid #bbb;
}
/* line 184, ../../private/scss/views/_home.scss */
.featured-solutions h2 {
  font-size: 24px;
  line-height: 24px;
  color: black;
}
/* line 190, ../../private/scss/views/_home.scss */
.featured-solutions .circle-icon {
  float: left;
  display: block;
  margin-left: 30px;
  width: 100px;
  height: 100px;
  position: relative;
}
/* line 198, ../../private/scss/views/_home.scss */
.featured-solutions .circle-icon:first-of-type {
  margin-left: 0px;
}
/* line 202, ../../private/scss/views/_home.scss */
.featured-solutions .circle-icon:after {
  content: "";
  width: 24px;
  height: 2px;
  background: url("/images/dashes.png");
  display: block;
  position: absolute;
  top: 50px;
  right: -26px;
}
/* line 214, ../../private/scss/views/_home.scss */
.featured-solutions .circle-icon:last-of-type:after {
  display: none;
}
/* line 221, ../../private/scss/views/_home.scss */
.featured-solutions img {
  width: 100px;
  height: 100px;
}
/* line 226, ../../private/scss/views/_home.scss */
.featured-solutions a {
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 17px;
  position: relative;
}
/* line 231, ../../private/scss/views/_home.scss */
.featured-solutions a:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e601";
  position: absolute;
  top: 0px;
  left: -3px;
  font-size: 19px;
}

/* Additional Blocks */
/* line 253, ../../private/scss/views/_home.scss */
.additional-blocks {
  float: left;
  width: 100%;
  padding: 50px 0px 10px 0px;
  text-align: center;
}
/* line 259, ../../private/scss/views/_home.scss */
.additional-blocks .block {
  display: inline-block;
  text-align: left;
  width: 215px;
  margin-right: 80px;
  vertical-align: top;
}
/* line 266, ../../private/scss/views/_home.scss */
.additional-blocks .block .image {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
/* line 272, ../../private/scss/views/_home.scss */
.additional-blocks .block .image, .additional-blocks .block img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  behavior: url(../js/lib/PIE.htc);
}
/* line 276, ../../private/scss/views/_home.scss */
.additional-blocks .block img {
  float: left;
  display: block;
  width: 210px;
  height: 210px;
  border: 1px solid #eee;
}
/* line 284, ../../private/scss/views/_home.scss */
.additional-blocks .block .content {
  float: left;
  width: 100%;
}
/* line 289, ../../private/scss/views/_home.scss */
.additional-blocks .block h2 {
  font-size: 20px;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
/* line 296, ../../private/scss/views/_home.scss */
.additional-blocks .block p {
  color: #868686;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
}
/* line 303, ../../private/scss/views/_home.scss */
.additional-blocks .block a {
  text-decoration: none;
  padding-left: 14px;
  position: relative;
  color: #000;
}
/* line 308, ../../private/scss/views/_home.scss */
.additional-blocks .block a:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e600";
  position: absolute;
  top: 2px;
  left: -2px;
  font-size: 16px;
}
/* line 327, ../../private/scss/views/_home.scss */
.additional-blocks .block.black h2 {
  color: black;
}
/* line 332, ../../private/scss/views/_home.scss */
.additional-blocks .block:last-child {
  margin-right: 0px;
}

/*********************************************
  :: Contact Us                             
********************************************/
/* line 6, ../../private/scss/views/_contact.scss */
.page-contact .intro-text {
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 30px;
}
/* line 10, ../../private/scss/views/_contact.scss */
.page-contact .intro-text p, .page-contact .intro-text h1, .page-contact .intro-text h2, .page-contact .intro-text h3, .page-contact .intro-text h4, .page-contact .intro-text h5, .page-contact .intro-text a {
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
}
/* line 17, ../../private/scss/views/_contact.scss */
.page-contact .main {
  padding-top: 13px;
  padding-bottom: 10px;
}
/* line 22, ../../private/scss/views/_contact.scss */
.page-contact footer {
  padding-top: 31px;
}

/* line 30, ../../private/scss/views/_contact.scss */
.contact-information-container {
  float: left;
  width: 100%;
  width: 240px;
  margin-right: 80px;
}

/* line 37, ../../private/scss/views/_contact.scss */
.contact-information-block {
  float: left;
  width: 100%;
  text-align: left;
  margin-bottom: 31px;
}
/* line 43, ../../private/scss/views/_contact.scss */
.contact-information-block:first-of-type {
  margin-bottom: 34px;
}
/* line 46, ../../private/scss/views/_contact.scss */
.contact-information-block:first-of-type h2 {
  padding-bottom: 13px;
  margin-bottom: 16px;
  line-height: 23px;
}
/* line 54, ../../private/scss/views/_contact.scss */
.contact-information-block h2 {
  padding-bottom: 6px;
  font-weight: 400;
  color: black;
  border-bottom: 1px solid #DDDDDD;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 5px;
}
/* line 64, ../../private/scss/views/_contact.scss */
.contact-information-block p {
  margin-bottom: 0px;
  color: #202020;
  font-size: 14px;
  line-height: 20px;
}
/* line 71, ../../private/scss/views/_contact.scss */
.contact-information-block address {
  color: #777777;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
/* line 78, ../../private/scss/views/_contact.scss */
.contact-information-block .contact-phone-link {
  font-weight: 400;
  font-size: 20px;
  color: #000;
  margin-bottom: 14px;
}
/* line 84, ../../private/scss/views/_contact.scss */
.contact-information-block .contact-phone-link a {
  text-decoration: none;
  font-size: 20px;
  margin-left: 0px;
}
/* line 91, ../../private/scss/views/_contact.scss */
.contact-information-block .contact-email-link {
  margin-top: 9px;
}
/* line 93, ../../private/scss/views/_contact.scss */
.contact-information-block .contact-email-link a {
  font-size: 17.5px;
}

/* Contact Us Form */
/* line 103, ../../private/scss/views/_contact.scss */
.contact-us-form {
  float: left;
  width: 100%;
  margin-bottom: 21px;
  width: 620px;
}
/* line 109, ../../private/scss/views/_contact.scss */
.contact-us-form label {
  text-transform: none;
  margin-bottom: 12px;
  font-size: 15px;
}
/* line 115, ../../private/scss/views/_contact.scss */
.contact-us-form .form-field {
  margin-bottom: 14px;
}
/* line 120, ../../private/scss/views/_contact.scss */
.contact-us-form form > .form-field:last-of-type {
  margin-bottom: 0px;
}
/* line 127, ../../private/scss/views/_contact.scss */
.contact-us-form .field-width50 .form-field:first-of-type {
  margin-right: 3%;
}
/* line 132, ../../private/scss/views/_contact.scss */
.contact-us-form .field-width50 .form-field {
  width: 48.5%;
}
/* line 137, ../../private/scss/views/_contact.scss */
.contact-us-form .form-note {
  margin-bottom: 5px;
  float: left;
  color: #858585;
  font-size: 15px;
  margin-top: 7px;
}
/* line 145, ../../private/scss/views/_contact.scss */
.contact-us-form textarea {
  height: 185px;
}
/* line 149, ../../private/scss/views/_contact.scss */
.contact-us-form button {
  float: right;
  padding: 14px 16px 14px 16px;
  width: 133px;
  font-size: 18px;
}

/* Google Maps */
/* line 160, ../../private/scss/views/_contact.scss */
.contactus-map {
  float: left;
  width: 100%;
  margin-top: 13px;
}
/* line 165, ../../private/scss/views/_contact.scss */
.contactus-map h2 {
  color: black;
  font-size: 30px;
  line-height: 20px;
  font-weight: 400;
  padding-bottom: 30px;
  margin-bottom: 0px;
  border: none;
}
/* line 176, ../../private/scss/views/_contact.scss */
.contactus-map .gmap {
  float: left;
  width: 100%;
  height: 395px;
}
/* line 182, ../../private/scss/views/_contact.scss */
.contactus-map iframe, .contactus-map #map-canvas {
  float: left;
  width: 100%;
  display: block;
}

/*********************************************
  :: About Us                             
********************************************/
/* line 6, ../../private/scss/views/_about.scss */
.page-about .main {
  padding-top: 13px;
  padding-bottom: 0px;
}
/* line 11, ../../private/scss/views/_about.scss */
.page-about .top-img {
  width: 100%;
  margin-bottom: 40px;
}
/* line 16, ../../private/scss/views/_about.scss */
.page-about .main-column {
  float: left;
  width: 540px;
  margin-right: 80px;
}
/* line 22, ../../private/scss/views/_about.scss */
.page-about .side-column {
  float: left;
  width: 320px;
}
/* line 27, ../../private/scss/views/_about.scss */
.page-about .main-column p {
  line-height: 20px;
  color: #858585;
}
/* line 30, ../../private/scss/views/_about.scss */
.page-about .main-column p:first-of-type {
  color: black;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 30px;
}
/* line 38, ../../private/scss/views/_about.scss */
.page-about blockquote {
  max-width: 312px;
  background: none;
  color: #999;
  font-weight: 600;
  text-align: center;
  font-style: normal;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  padding: 19px 13px 19px 13px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
/* line 39, ../../private/scss/views/_about.scss */
.page-about blockquote p, .page-about blockquote h1, .page-about blockquote h2, .page-about blockquote h3, .page-about blockquote h4, .page-about blockquote h5, .page-about blockquote a {
  margin: 0;
  color: #999;
  font-weight: 600;
  text-align: center;
  font-style: normal;
  font-size: 30px;
  line-height: 35px;
}
/* line 61, ../../private/scss/views/_about.scss */
.page-about blockquote em, .page-about blockquote i {
  font-style: italic;
  color: #AD9059;
}
/* line 67, ../../private/scss/views/_about.scss */
.page-about footer {
  padding-top: 0px;
}

/*********************************************
  :: Solutions                            
********************************************/
/* line 6, ../../private/scss/views/_services.scss */
.page-services .main {
  padding-top: 13px;
  padding-bottom: 0px;
}
/* line 11, ../../private/scss/views/_services.scss */
.page-services .intro-text {
  margin-bottom: 50px;
  max-width: 500px;
}
/* line 14, ../../private/scss/views/_services.scss */
.page-services .intro-text p, .page-services .intro-text h1, .page-services .intro-text h2, .page-services .intro-text h3, .page-services .intro-text h4, .page-services .intro-text h5, .page-services .intro-text a {
  color: black;
  font-size: 17px;
  line-height: 24px;
}
/* line 21, ../../private/scss/views/_services.scss */
.page-services .main-column {
  float: left;
  width: 540px;
  margin-right: 80px;
}
/* line 27, ../../private/scss/views/_services.scss */
.page-services .side-column {
  float: left;
  width: 320px;
  padding-top: 10px;
}
/* line 33, ../../private/scss/views/_services.scss */
.page-services footer {
  padding-top: 0px;
  margin-top: -10px;
}

/* Solutions */
/* line 41, ../../private/scss/views/_services.scss */
.services-container {
  float: left;
  width: 100%;
}

/* line 46, ../../private/scss/views/_services.scss */
.service-block {
  float: left;
  width: 100%;
  margin-bottom: 31px;
  min-height: 178px;
}
/* line 52, ../../private/scss/views/_services.scss */
.service-block .image {
  float: left;
  margin-left: 30px;
  margin-top: 10px;
}
/* line 58, ../../private/scss/views/_services.scss */
.service-block .image, .service-block img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  behavior: url(../js/lib/PIE.htc);
}
/* line 62, ../../private/scss/views/_services.scss */
.service-block .image img {
  width: 160px;
  height: 160px;
  display: block;
  border: 1px solid #AE8F53;
}
/* line 69, ../../private/scss/views/_services.scss */
.service-block .content {
  float: left;
  width: 620px;
  margin-left: 50px;
  margin-top: 10px;
}
/* line 76, ../../private/scss/views/_services.scss */
.service-block h2 {
  font-size: 19px;
  line-height: 19px;
  padding-bottom: 15px;
  border-bottom: 1px solid #444;
  font-weight: 700;
  margin-bottom: 17px;
}
/* line 85, ../../private/scss/views/_services.scss */
.service-block p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 10px;
}
/* line 91, ../../private/scss/views/_services.scss */
.service-block .read-more-btn {
  text-decoration: none;
  font-size: 14px;
}

/* line 98, ../../private/scss/views/_services.scss */
.service-logos {
  float: left;
  width: 700px;
  border-top: 1px solid #ddd;
  margin-left: 240px;
  margin-top: 48px;
  padding-top: 35px;
}
/* line 106, ../../private/scss/views/_services.scss */
.service-logos img {
  float: left;
  display: block;
  margin-right: 36px;
}

/*********************************************
  :: Solutions Detail                           
********************************************/
/* line 6, ../../private/scss/views/_service.scss */
.page-service .main {
  padding-top: 13px;
  padding-bottom: 0px;
}
/* line 11, ../../private/scss/views/_service.scss */
.page-service .main-column {
  float: left;
  width: 540px;
  margin-right: 45px;
}
/* line 17, ../../private/scss/views/_service.scss */
.page-service .side-column {
  float: left;
  width: 355px;
  padding-top: 8px;
}
/* line 22, ../../private/scss/views/_service.scss */
.page-service .side-column img {
  margin-top: 54px;
  display: block;
  width: 360px;
  height: 360px;
  border: 2px solid #C2AB82;
}
/* line 30, ../../private/scss/views/_service.scss */
.page-service .side-column div, .page-service .side-column img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  behavior: url(../js/lib/PIE.htc);
}
/* line 36, ../../private/scss/views/_service.scss */
.page-service .back-btn {
  float: right;
  font-size: 19px;
  line-height: 19px;
  text-decoration: none;
  color: #545454;
}
/* line 42, ../../private/scss/views/_service.scss */
.page-service .back-btn span {
  display: inline-block;
  vertical-align: bottom;
}
/* line 48, ../../private/scss/views/_service.scss */
.page-service h2 {
  font-size: 27px;
  line-height: 37px;
  margin-bottom: 19px;
}
/* line 54, ../../private/scss/views/_service.scss */
.page-service .main p {
  line-height: 20px;
}
/* line 56, ../../private/scss/views/_service.scss */
.page-service .main p:first-of-type {
  color: black;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 19px;
}
/* line 64, ../../private/scss/views/_service.scss */
.page-service footer {
  padding-top: 0px;
}

/* line 4, ../../private/scss/views/solutions.scss */
.page-solutions .intro-text {
  margin-bottom: 30px;
}
/* line 6, ../../private/scss/views/solutions.scss */
.page-solutions .intro-text p, .page-solutions .intro-text h1, .page-solutions .intro-text h2, .page-solutions .intro-text h3, .page-solutions .intro-text h4, .page-solutions .intro-text h5, .page-solutions .intro-text a {
  color: black;
  font-size: 17px;
  line-height: 24px;
}
/* line 13, ../../private/scss/views/solutions.scss */
.page-solutions .main {
  padding-top: 13px;
  padding-bottom: 0px;
}
/* line 18, ../../private/scss/views/solutions.scss */
.page-solutions footer {
  padding-top: 0px;
  margin-top: 55px;
}

/* FAQ */
/* line 26, ../../private/scss/views/solutions.scss */
.solutions-container {
  float: left;
  width: 100%;
  max-width: 870px;
  /*padding-left: 20px;*/
}

/* line 33, ../../private/scss/views/solutions.scss */
.solution-block {
  float: left;
  width: 100%;
}
/* line 37, ../../private/scss/views/solutions.scss */
.solution-block .question {
  padding: 30px 10px 30px 0px;
  position: relative;
  border-bottom: 1px solid #ddd;
  margin-left: 40px;
  cursor: pointer;
}
/* line 45, ../../private/scss/views/solutions.scss */
.solution-block .question p, .solution-block .question h1, .solution-block .question h2, .solution-block .question h3, .solution-block .question h4, .solution-block .question h5, .solution-block .question a {
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: #AE9059;
  margin-bottom: 0px;
}
/* line 53, ../../private/scss/views/solutions.scss */
.solution-block .question:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e605";
  color: black;
  font-size: 22px;
  line-height: 22px;
  position: absolute;
  top: 30px;
  left: -40px;
}
/* line 74, ../../private/scss/views/solutions.scss */
.solution-block .content {
  display: none;
  float: left;
  width: 100%;
  max-width: 830px;
  margin-left: 40px;
  padding: 25px 25px 10px 42px;
  border-bottom: 1px solid #ddd;
}
/* line 84, ../../private/scss/views/solutions.scss */
.solution-block .content p, .solution-block .content h1, .solution-block .content h2, .solution-block .content h3, .solution-block .content h4, .solution-block .content h5, .solution-block .content a, .solution-block .content li {
  line-height: 20px;
  color: #858585;
}
/* line 92, ../../private/scss/views/solutions.scss */
.solution-block:last-of-type h2 {
  border-bottom: none;
}

/* line 100, ../../private/scss/views/solutions.scss */
.expand-solution-block .question {
  border-bottom: 1px solid #ddd !important;
}
/* line 102, ../../private/scss/views/solutions.scss */
.expand-solution-block .question:before {
  content: "\e604";
}
/* line 106, ../../private/scss/views/solutions.scss */
.expand-solution-block .content {
  display: block;
}

/*********************************************
  :: Third Party                       
********************************************/
/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */
/* Remove, change to fit your needs */
/*@import url(http://fonts.googleapis.com/css?family=Lato:300,700);*/
/* line 20, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select,
.sod_select * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
/* line 34, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select {
  display: inline-block;
  position: relative;
  line-height: 1;
  outline-offset: -2px;
  /* Opera */
  cursor: default;
  outline: none;
  border: none;
  background: #ffff;
  font-size: 18px;
  font-weight: 40;
  line-height: 25px;
  color: #000;
  border: 1px solid #ccc;
  width: 100%;
  padding: 6px 10px 6px 10px;
  height: 40px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* Up/Down arrows */
/* line 58, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:before,
.sod_select:after {
  /*content: "\25B2";*/
  /*position: absolute;*/
  /*right: 10px;*/
  /*top: 12px;*/
  /*font-size: 7px;*/
}

/* Down arrow */
/* line 69, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:after {
  /*content: "\25BC";*/
  /*top: auto;*/
  /*bottom: 12px;*/
  position: absolute;
  top: 12px;
  right: 10px;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e601";
  font-size: 10px;
  line-height: 16px;
  color: #888888;
}

/* Change the border color on hover, focus and when open */
/* line 99, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:hover,
.sod_select.open,
.sod_select.focus {
  border-color: #000000;
}

/* line 103, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.open {
  color: #919191;
}

/* When the entire SoD is disabled, go crazy! */
/* line 107, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.disabled {
  border-color: #828282;
  color: #b2b2b2;
  cursor: not-allowed;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
/* line 115, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 15px;
}

/* line 125, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_prefix {
  /* Use this if you're using a prefix and want to style it */
}

/* line 126, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_placeholder {
  /* Use this if you're using a placeholder and want to style it */
}

/* Options list wrapper */
/* line 131, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  height: auto;
  width: 100%;
  margin: 0 0 0 0px;
  background: #ffffff;
  border-top: none;
  color: #444444;
  font-weight: 300;
  z-index: 99999;
  box-shadow: 0px 10px 18px -12px #000000;
  border-bottom: 3px solid black;
}

/* Shows the option list (don't edit) */
/* line 150, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.open .sod_list_wrapper {
  display: block;
}

/* Don't display the options when  */
/* line 153, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.disabled.open .sod_list_wrapper {
  display: none;
}

/* When the option list is displayed above the SoD */
/* line 156, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.above .sod_list_wrapper {
  top: auto;
  bottom: 100%;
  border-top: 3px solid #000000;
  border-bottom: none;
}

/* Options list container */
/* line 165, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

/* All the options. Keep the first three lines for truncating... */
/* line 174, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  padding: 10px 10px;
  list-style-type: none;
}

/* Optgroups */
/* line 187, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
  background: inherit;
  color: #939393;
  font-size: 10px;
  font-style: italic;
}

/* Children of an optgroup */
/* line 197, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
/* line 200, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.is-placeholder {
  display: none;
}

/* Disabled option */
/* line 205, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.disabled {
  background: inherit;
  color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
/* line 212, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
/* line 219, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.selected {
  font-weight: 700;
  padding-right: 25px;
}

/* Displays a check mark for the selected option */
/* line 226, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.selected:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #808080;
  height: 9px;
  width: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
/* line 243, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 300;
}

/* line 244, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.no_highlight .sod_option.selected:before {
  display: none;
}

/* line 246, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.link {
  /* If data-link is set on a specific option */
}

/* line 247, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.linkexternal {
  /* If data-link-external is set on a specific option */
}

/* Hide native select */
/* line 252, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select select {
  display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
/* line 255, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.touch select {
  -webkit-appearance: menulist-button;
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

/* 
 *  Owl Carousel - Animate Plugin
 */
/* line 4, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 10, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 13, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 21, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
/* line 32, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 40, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 44, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 52, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 58, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 69, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 72, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 76, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 79, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-refresh .owl-item {
  display: none;
}

/* line 82, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 94, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 99, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* line 105, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

/* line 112, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 115, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 120, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 127, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 135, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
/* line 142, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 147, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

/* line 165, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

/* line 172, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 176, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 191, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* line 197, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 1px 6px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #CCCCCC;
}

/*********************************************
  :: Styleguide                     
********************************************/
/*********************************************
  :: Styelguide                             
********************************************/
/* line 7, ../../private/scss/views/_styleguide.scss */
.page-styleguide .main, .page-styleguide aside {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 12, ../../private/scss/views/_styleguide.scss */
  .page-styleguide .main {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  /* line 18, ../../private/scss/views/_styleguide.scss */
  .page-styleguide aside {
    width: 30%;
    padding-left: 5%;
  }
}
/* line 25, ../../private/scss/views/_styleguide.scss */
.page-styleguide header, .page-styleguide footer {
  padding: 20px;
  background: #5E5E5E;
  margin-bottom: 20px;
  position: static;
}
/* line 31, ../../private/scss/views/_styleguide.scss */
.page-styleguide header h1, .page-styleguide header p, .page-styleguide header a, .page-styleguide footer h1, .page-styleguide footer p, .page-styleguide footer a {
  color: white;
  margin-bottom: 0px;
}
/* line 37, ../../private/scss/views/_styleguide.scss */
.page-styleguide footer {
  margin-bottom: 0px;
  margin-top: 20px;
}
/* line 42, ../../private/scss/views/_styleguide.scss */
.page-styleguide .brownpaperbag-container {
  float: left;
  width: 100%;
  padding: 0px;
  border: none;
}
/* line 49, ../../private/scss/views/_styleguide.scss */
.page-styleguide .back-to-top-trigger {
  width: auto;
  height: auto;
  display: inline-block;
  background: none;
}
/* line 56, ../../private/scss/views/_styleguide.scss */
.page-styleguide .styles-collection {
  width: 100%;
  margin-bottom: 20px;
}
/* line 60, ../../private/scss/views/_styleguide.scss */
.page-styleguide .styles-collection .button, .page-styleguide .styles-collection input[type="submit"], .page-styleguide .styles-collection input[type="button"] {
  margin-bottom: 10px !important;
}
/* line 66, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span {
  font-size: 100px;
  line-height: 120px;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}
/* line 72, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span:before {
  margin-right: 10px;
}
