/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
*********************/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* line 12, ../scss/partials/_normalize.scss */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
/* line 25, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
/* line 33, ../scss/partials/_normalize.scss */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* line 47, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
/* line 60, ../scss/partials/_normalize.scss */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
/* line 70, ../scss/partials/_normalize.scss */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 79, ../scss/partials/_normalize.scss */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 90, ../scss/partials/_normalize.scss */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
/* line 103, ../scss/partials/_normalize.scss */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 113, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
/* line 123, ../scss/partials/_normalize.scss */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 132, ../scss/partials/_normalize.scss */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 142, ../scss/partials/_normalize.scss */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
/* line 153, ../scss/partials/_normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
/* line 161, ../scss/partials/_normalize.scss */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
/* line 170, ../scss/partials/_normalize.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
/* line 179, ../scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

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

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

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 202, ../scss/partials/_normalize.scss */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
/* line 211, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
/* line 220, ../scss/partials/_normalize.scss */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
/* line 228, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
/* line 240, ../scss/partials/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
/* line 256, ../scss/partials/_normalize.scss */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
/* line 266, ../scss/partials/_normalize.scss */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
/* line 277, ../scss/partials/_normalize.scss */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 288, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
/* line 300, ../scss/partials/_normalize.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
/* line 311, ../scss/partials/_normalize.scss */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
/* line 322, ../scss/partials/_normalize.scss */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
/* line 336, ../scss/partials/_normalize.scss */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
/* line 345, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
/* line 354, ../scss/partials/_normalize.scss */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* line 364, ../scss/partials/_normalize.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
/* line 374, ../scss/partials/_normalize.scss */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
/* line 383, ../scss/partials/_normalize.scss */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
/* line 393, ../scss/partials/_normalize.scss */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
/* line 406, ../scss/partials/_normalize.scss */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 415, ../scss/partials/_normalize.scss */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 426, ../scss/partials/_normalize.scss */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
/* line 434, ../scss/partials/_normalize.scss */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
/* line 445, ../scss/partials/_normalize.scss */
[hidden] {
  display: none;
}

/* line 451, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 458, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 466, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 468, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 469, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 476, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/* =============================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 489, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 496, ../scss/partials/_normalize.scss */
dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 504, ../scss/partials/_normalize.scss */
menu,
ol,
ul {
  list-style: none;
  list-style-image: none;
  padding: 0;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 517, ../scss/partials/_normalize.scss */
.entry-content ul {
  list-style: disc;
  padding: 0 0 0 20px;
}

/* line 522, ../scss/partials/_normalize.scss */
.entry-content ol {
  list-style: decimal;
  padding: 0 0 0 20px;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

******************************************************************/
/*********************
COLORS
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

******************************************************************/
/*
some nice typographical defaults
*/
/* line 21, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION


Here's a nice little helper function for calculating
target / context

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

******************************************************************/
/*********************
TRANSITION
*********************/
/*

USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* line 1, ../scss/partials/_grid.scss */
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

/* line 7, ../scss/partials/_grid.scss */
.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

/* line 12, ../scss/partials/_grid.scss */
.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

/* line 30, ../scss/partials/_grid.scss */
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* line 37, ../scss/partials/_grid.scss */
.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* line 44, ../scss/partials/_grid.scss */
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 78, ../scss/partials/_grid.scss */
.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

/* line 87, ../scss/partials/_grid.scss */
.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

/* line 93, ../scss/partials/_grid.scss */
.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

/* line 99, ../scss/partials/_grid.scss */
.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

/* line 105, ../scss/partials/_grid.scss */
.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

/* line 111, ../scss/partials/_grid.scss */
.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

/* line 117, ../scss/partials/_grid.scss */
.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

/* line 123, ../scss/partials/_grid.scss */
.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

/* line 129, ../scss/partials/_grid.scss */
.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

/* line 135, ../scss/partials/_grid.scss */
.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

/* line 141, ../scss/partials/_grid.scss */
.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

/* line 147, ../scss/partials/_grid.scss */
.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

/* line 153, ../scss/partials/_grid.scss */
.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

/* line 159, ../scss/partials/_grid.scss */
.col-xs-offset-0 {
  margin-left: 0;
}

/* line 163, ../scss/partials/_grid.scss */
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

/* line 167, ../scss/partials/_grid.scss */
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

/* line 171, ../scss/partials/_grid.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 175, ../scss/partials/_grid.scss */
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

/* line 179, ../scss/partials/_grid.scss */
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

/* line 183, ../scss/partials/_grid.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 187, ../scss/partials/_grid.scss */
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

/* line 191, ../scss/partials/_grid.scss */
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

/* line 195, ../scss/partials/_grid.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 199, ../scss/partials/_grid.scss */
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

/* line 203, ../scss/partials/_grid.scss */
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

/* line 207, ../scss/partials/_grid.scss */
.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

/* line 214, ../scss/partials/_grid.scss */
.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

/* line 221, ../scss/partials/_grid.scss */
.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

/* line 228, ../scss/partials/_grid.scss */
.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* line 234, ../scss/partials/_grid.scss */
.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 240, ../scss/partials/_grid.scss */
.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* line 246, ../scss/partials/_grid.scss */
.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* line 251, ../scss/partials/_grid.scss */
.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 257, ../scss/partials/_grid.scss */
.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

/* line 263, ../scss/partials/_grid.scss */
.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 481px) {
  /* line 270, ../scss/partials/_grid.scss */
  .container {
    width: 49rem;
  }

  /* line 274, ../scss/partials/_grid.scss */
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 308, ../scss/partials/_grid.scss */
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 317, ../scss/partials/_grid.scss */
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  /* line 323, ../scss/partials/_grid.scss */
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  /* line 329, ../scss/partials/_grid.scss */
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 335, ../scss/partials/_grid.scss */
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  /* line 341, ../scss/partials/_grid.scss */
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  /* line 347, ../scss/partials/_grid.scss */
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 353, ../scss/partials/_grid.scss */
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  /* line 359, ../scss/partials/_grid.scss */
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  /* line 365, ../scss/partials/_grid.scss */
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 371, ../scss/partials/_grid.scss */
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  /* line 377, ../scss/partials/_grid.scss */
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  /* line 383, ../scss/partials/_grid.scss */
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 389, ../scss/partials/_grid.scss */
  .col-sm-offset-0 {
    margin-left: 0;
  }

  /* line 393, ../scss/partials/_grid.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 397, ../scss/partials/_grid.scss */
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 401, ../scss/partials/_grid.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 405, ../scss/partials/_grid.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 409, ../scss/partials/_grid.scss */
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 413, ../scss/partials/_grid.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 417, ../scss/partials/_grid.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 421, ../scss/partials/_grid.scss */
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 425, ../scss/partials/_grid.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 429, ../scss/partials/_grid.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 433, ../scss/partials/_grid.scss */
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 437, ../scss/partials/_grid.scss */
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 444, ../scss/partials/_grid.scss */
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  /* line 451, ../scss/partials/_grid.scss */
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 458, ../scss/partials/_grid.scss */
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  /* line 464, ../scss/partials/_grid.scss */
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* line 470, ../scss/partials/_grid.scss */
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  /* line 476, ../scss/partials/_grid.scss */
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* line 481, ../scss/partials/_grid.scss */
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* line 487, ../scss/partials/_grid.scss */
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  /* line 493, ../scss/partials/_grid.scss */
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  /* line 501, ../scss/partials/_grid.scss */
  .container {
    width: 65rem;
  }

  /* line 505, ../scss/partials/_grid.scss */
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 539, ../scss/partials/_grid.scss */
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 548, ../scss/partials/_grid.scss */
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  /* line 554, ../scss/partials/_grid.scss */
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  /* line 560, ../scss/partials/_grid.scss */
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 566, ../scss/partials/_grid.scss */
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  /* line 572, ../scss/partials/_grid.scss */
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  /* line 578, ../scss/partials/_grid.scss */
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 584, ../scss/partials/_grid.scss */
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  /* line 590, ../scss/partials/_grid.scss */
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  /* line 596, ../scss/partials/_grid.scss */
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 602, ../scss/partials/_grid.scss */
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  /* line 608, ../scss/partials/_grid.scss */
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  /* line 614, ../scss/partials/_grid.scss */
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 620, ../scss/partials/_grid.scss */
  .col-md-offset-0 {
    margin-left: 0;
  }

  /* line 624, ../scss/partials/_grid.scss */
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 628, ../scss/partials/_grid.scss */
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 632, ../scss/partials/_grid.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 636, ../scss/partials/_grid.scss */
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 640, ../scss/partials/_grid.scss */
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 644, ../scss/partials/_grid.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 648, ../scss/partials/_grid.scss */
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 652, ../scss/partials/_grid.scss */
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 656, ../scss/partials/_grid.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 660, ../scss/partials/_grid.scss */
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 664, ../scss/partials/_grid.scss */
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 668, ../scss/partials/_grid.scss */
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 675, ../scss/partials/_grid.scss */
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  /* line 682, ../scss/partials/_grid.scss */
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 689, ../scss/partials/_grid.scss */
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  /* line 695, ../scss/partials/_grid.scss */
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* line 701, ../scss/partials/_grid.scss */
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  /* line 707, ../scss/partials/_grid.scss */
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* line 712, ../scss/partials/_grid.scss */
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* line 718, ../scss/partials/_grid.scss */
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  /* line 724, ../scss/partials/_grid.scss */
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 1030px) {
  /* line 732, ../scss/partials/_grid.scss */
  .container {
    width: 76rem;
  }

  /* line 736, ../scss/partials/_grid.scss */
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  /* line 770, ../scss/partials/_grid.scss */
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  /* line 779, ../scss/partials/_grid.scss */
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  /* line 785, ../scss/partials/_grid.scss */
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  /* line 791, ../scss/partials/_grid.scss */
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  /* line 797, ../scss/partials/_grid.scss */
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  /* line 803, ../scss/partials/_grid.scss */
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  /* line 809, ../scss/partials/_grid.scss */
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  /* line 815, ../scss/partials/_grid.scss */
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  /* line 821, ../scss/partials/_grid.scss */
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  /* line 827, ../scss/partials/_grid.scss */
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  /* line 833, ../scss/partials/_grid.scss */
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  /* line 839, ../scss/partials/_grid.scss */
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  /* line 845, ../scss/partials/_grid.scss */
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  /* line 851, ../scss/partials/_grid.scss */
  .col-lg-offset-0 {
    margin-left: 0;
  }

  /* line 855, ../scss/partials/_grid.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 859, ../scss/partials/_grid.scss */
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 863, ../scss/partials/_grid.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 867, ../scss/partials/_grid.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 871, ../scss/partials/_grid.scss */
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 875, ../scss/partials/_grid.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 879, ../scss/partials/_grid.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 883, ../scss/partials/_grid.scss */
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 887, ../scss/partials/_grid.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 891, ../scss/partials/_grid.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 895, ../scss/partials/_grid.scss */
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 899, ../scss/partials/_grid.scss */
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  /* line 906, ../scss/partials/_grid.scss */
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  /* line 913, ../scss/partials/_grid.scss */
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  /* line 920, ../scss/partials/_grid.scss */
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  /* line 926, ../scss/partials/_grid.scss */
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  /* line 933, ../scss/partials/_grid.scss */
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  /* line 939, ../scss/partials/_grid.scss */
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* line 944, ../scss/partials/_grid.scss */
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* line 950, ../scss/partials/_grid.scss */
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  /* line 956, ../scss/partials/_grid.scss */
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
/*********************
IMPORTING MODULES
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

******************************************************************/
/*********************
BUTTON DEFAULTS
*********************/
/* line 13, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit, .prim-btn {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  font-weight: 700;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 30, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .prim-btn:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .prim-btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* line 37, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active, .prim-btn:active {
  top: 1px;
}

/*
An example button.
*/
/* line 46, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  background-color: #2e7fe1;
}
/* line 50, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #1f74db;
}
/* line 55, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #1f72d7;
}

/* line 61, ../scss/modules/_buttons.scss */
.prim-btn {
  background-color: #7a2367;
}
/* line 65, ../scss/modules/_buttons.scss */
.prim-btn:hover, .prim-btn:focus {
  background-color: #1a1c27;
}
/* line 70, ../scss/modules/_buttons.scss */
.prim-btn:active {
  background-color: #1a1c27;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

******************************************************************/
/*********************
INPUTS
*********************/
/* line 14, ../scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #323232;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #eaedf2;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 48, ../scss/modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #f7f8fa;
  outline: none;
}
/* line 55, ../scss/modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 67, ../scss/modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 79, ../scss/modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 85, ../scss/modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

/* line 95, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 100, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 107, ../scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/* line 117, ../scss/modules/_forms.scss */
button {
  border: none;
  background: #7a2367;
  color: #fff;
}
/* line 122, ../scss/modules/_forms.scss */
button:hover {
  background: #1a1c27;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Responsive Nav Base CSS

******************************************************************/
/* line 9, ../scss/modules/_responsivenav.scss */
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

/* line 17, ../scss/modules/_responsivenav.scss */
.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

/* line 26, ../scss/modules/_responsivenav.scss */
.nav-collapse.opened {
  max-height: 9999px;
}

/* line 30, ../scss/modules/_responsivenav.scss */
.nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 100%;
  display: block;
  text-decoration: none;
  font-size: 26px;
  text-transform: uppercase;
  padding: 1em;
  background: #7a2367 url("../images/hamburger.png") no-repeat scroll center right 1em;
  color: #fff;
}

/* line 48, ../scss/modules/_responsivenav.scss */
.nav-toggle:hover, .nav-toggle:visited, .nav-toggle:focus {
  color: #fff;
}

/* line 52, ../scss/modules/_responsivenav.scss */
.nav-collapse {
  background: #7a2367;
}

/* line 56, ../scss/modules/_responsivenav.scss */
.nav-collapse a:visited:hover {
  color: #fff;
}

/* line 60, ../scss/modules/_responsivenav.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 66, ../scss/modules/_responsivenav.scss */
.nav.responsive li a {
  border-top: 1px solid #722160;
}
/* line 70, ../scss/modules/_responsivenav.scss */
.nav.responsive li:nth-child(even) a {
  border-left: 1px solid #722160;
}
/* line 74, ../scss/modules/_responsivenav.scss */
.nav.responsive li:last-child:nth-child(odd) a {
  width: 100%;
}
/* line 80, ../scss/modules/_responsivenav.scss */
.nav li:hover > a, .nav li:focus > a {
  background: #1a1c27;
}
/* line 84, ../scss/modules/_responsivenav.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
}
/* line 99, ../scss/modules/_responsivenav.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
@media screen and (min-width: 768px) {
  /* line 130, ../scss/modules/_responsivenav.scss */
  .js .nav-collapse {
    position: relative;
  }

  /* line 133, ../scss/modules/_responsivenav.scss */
  .js .nav-collapse.closed {
    max-height: none;
  }

  /* line 136, ../scss/modules/_responsivenav.scss */
  .nav-toggle {
    display: none;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Default Archive Styles

******************************************************************/
/* line 11, ../scss/modules/_archivedefault.scss */
.archive-default .archive-wrapper {
  border: 1px solid #e1e1e1;
  position: relative;
}
/* line 16, ../scss/modules/_archivedefault.scss */
.archive-default .center-cropped {
  height: 215px;
  background-color: #ccc;
  transition: 0.25s all;
}
/* line 22, ../scss/modules/_archivedefault.scss */
.archive-default .center-cropped:hover {
  opacity: 0.7;
}
/* line 26, ../scss/modules/_archivedefault.scss */
.archive-default .hentry {
  margin-bottom: 1em;
}
/* line 30, ../scss/modules/_archivedefault.scss */
.archive-default a, .archive-default a:active {
  color: inherit;
}
/* line 34, ../scss/modules/_archivedefault.scss */
.archive-default h1 {
  height: 45px;
  overflow: hidden;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 41, ../scss/modules/_archivedefault.scss */
.archive-default .excerpt {
  height: 80px;
  overflow: hidden;
  margin-bottom: 20px;
  line-height: 1.3em;
}
/* line 48, ../scss/modules/_archivedefault.scss */
.archive-default .byline {
  width: 100%;
  background: #7a2367;
  color: #fff;
  border-radius: 3px;
  padding: 5px;
  font-size: 12px;
}
/* line 57, ../scss/modules/_archivedefault.scss */
.archive-default .entry-author, .archive-default .by {
  float: right;
}
/* line 61, ../scss/modules/_archivedefault.scss */
.archive-default .blog-icon {
  background: #7a2367;
  position: absolute;
  left: 24px;
  top: 180px;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Responsive Nav Base CSS

******************************************************************/
/* default styles */
/* line 12, ../scss/modules/_parallax.scss */
section.module.parallax {
  height: 200px;
  min-height: 200px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
}
/* line 21, ../scss/modules/_parallax.scss */
section.module.parallax h1, section.module.parallax .h1 {
  color: white;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
/* line 28, ../scss/modules/_parallax.scss */
section.module.parallax p {
  text-align: center;
  color: #fff;
}

/* line 33, ../scss/modules/_parallax.scss */
.pContainer {
  max-width: 960px;
  margin: 0 auto;
  align-self: center;
}

/*specific styles*/
/* line 41, ../scss/modules/_parallax.scss */
section.module.parallax-1 {
  background-image: url("../images/main-img.jpg");
  min-height: 500px;
}
/* line 45, ../scss/modules/_parallax.scss */
section.module.parallax-1 h1, section.module.parallax-1 .h1 {
  color: #fff;
}

/**/
/* line 52, ../scss/modules/_parallax.scss */
section.module.parallax-contact {
  background-image: url("../images/contact-map.jpg");
  min-height: 400px;
}
/* line 56, ../scss/modules/_parallax.scss */
section.module.parallax-contact h1, section.module.parallax-contact .h1, section.module.parallax-contact p {
  color: #333;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Home Boxes CSS

******************************************************************/
/* default styles */
/* line 12, ../scss/modules/_homeboxes.scss */
section.homeboxes {
  margin-top: 20px;
}
/* line 14, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS {
  background: #7a2367;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
}
/* line 20, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:hover .shadow {
  transform: skewY(-18deg);
}
/* line 23, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:nth-of-type(2) {
  background: #2CA9DF;
}
/* line 26, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:nth-of-type(3) {
  background: #EEB21C;
}
/* line 29, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:nth-of-type(4) {
  background: #CF4140;
}
/* line 32, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:nth-of-type(5) {
  background: #dd802d;
}
/* line 35, ../scss/modules/_homeboxes.scss */
section.homeboxes .homeBoxS:nth-of-type(6) {
  background: #6AB177;
}
/* line 39, ../scss/modules/_homeboxes.scss */
section.homeboxes .shadow {
  background: #000 none repeat scroll 0 0;
  bottom: -100px;
  height: 185px;
  position: absolute;
  transform: skewY(18deg);
  transition: all 0.25s ease 0s;
  opacity: 0.05;
  width: 100%;
  z-index: 10;
}
/* line 50, ../scss/modules/_homeboxes.scss */
section.homeboxes .flex {
  flex-wrap: wrap;
}
/* line 54, ../scss/modules/_homeboxes.scss */
section.homeboxes img {
  margin: 0 auto 10px;
  display: block;
}

@media screen and (min-width: 481px) {
  /* line 62, ../scss/modules/_homeboxes.scss */
  section.homeboxes .homeBoxS {
    width: 49%;
  }
}
@media screen and (min-width: 768px) {
  /* line 70, ../scss/modules/_homeboxes.scss */
  section.homeboxes .homeBoxS {
    width: 32%;
  }
}
@media screen and (min-width: 1030px) {
  /* line 78, ../scss/modules/_homeboxes.scss */
  section.homeboxes .homeBoxS {
    width: auto;
  }
}
@media screen and (min-width: 1240px) {
  /* line 86, ../scss/modules/_homeboxes.scss */
  section.homeboxes .homeBoxS {
    width: 16%;
  }
}
/*********************
BASE (MOBILE) SIZE
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 13, ../scss/breakpoints/_base.scss */
body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #323232;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 23, ../scss/breakpoints/_base.scss */
img {
  max-width: 100%;
}

/* line 27, ../scss/breakpoints/_base.scss */
.flex {
  display: flex;
  justify-content: space-between;
}

/* line 32, ../scss/breakpoints/_base.scss */
.entry-content .homeContact {
  background: #f1f1f1;
  box-sizing: border-box;
  padding: 5px 20px;
  height: 500px;
}
/* line 38, ../scss/breakpoints/_base.scss */
.entry-content .homeContact p {
  margin-bottom: 12px;
}
/* line 42, ../scss/breakpoints/_base.scss */
.entry-content .homeContact input, .entry-content .homeContact textarea {
  background: #1a1c27;
  border: 1px solid #2d3e4f;
  border-radius: 5px;
  color: #fff;
}
/* line 47, ../scss/breakpoints/_base.scss */
.entry-content .homeContact input:focus, .entry-content .homeContact textarea:focus {
  border-color: #1abc9c;
  background: #1a1c27;
}
/* line 53, ../scss/breakpoints/_base.scss */
.entry-content .homeContact input[type=submit] {
  background: #7a2367;
  cursor: pointer;
  width: 100%;
  padding: 15px;
  border: #521846;
  box-shadow: 3px 5px #521846;
}
/* line 60, ../scss/breakpoints/_base.scss */
.entry-content .homeContact input[type=submit]:hover {
  background: #521846;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 70, ../scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto;
}

/* line 75, ../scss/breakpoints/_base.scss */
.mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 80, ../scss/breakpoints/_base.scss */
.center-cropped {
  background-position: center center;
  background-repeat: no-repeat;
}

/*********************
LINK STYLES
*********************/
/* line 89, ../scss/breakpoints/_base.scss */
a {
  color: #7a2367;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 94, ../scss/breakpoints/_base.scss */
a:hover, a:focus {
  color: #561949;
}
/* line 104, ../scss/breakpoints/_base.scss */
a:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 118, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 900;
  text-transform: uppercase;
  /* removing text decoration from all headline links */
}
/* line 124, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 129, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 20px;
  line-height: 1.333em;
  letter-spacing: 1px;
}

/* line 135, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 141, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 16px;
}

/* line 145, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 150, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
/* line 161, ../scss/breakpoints/_base.scss */
.header {
  background-color: #fff;
}

/* line 164, ../scss/breakpoints/_base.scss */
#inner-header {
  padding: 1.5em 0;
}

/* line 168, ../scss/breakpoints/_base.scss */
#logo {
  text-align: center;
  margin: 0;
}

/* line 173, ../scss/breakpoints/_base.scss */
#topBar {
  background: #7a2367;
  color: #fff;
}

/*********************
NAVIGATION STYLES
*********************/
/*hide desktop menu */
/* line 183, ../scss/breakpoints/_base.scss */
#menu-main-1.nav.top-nav.cf, #menu-main-1.nav.top-nav.comment-respond {
  display: none;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 191, ../scss/breakpoints/_base.scss */
#breadcrumb {
  background: #1a1c27;
  color: #fff;
}
/* line 195, ../scss/breakpoints/_base.scss */
#breadcrumb h1 {
  color: white;
  font-size: 18px;
  margin: 5px 0 0;
  padding: 0;
  text-transform: uppercase;
}
/* line 203, ../scss/breakpoints/_base.scss */
#breadcrumb p {
  margin: 0;
  font-size: 14px;
}
/* line 208, ../scss/breakpoints/_base.scss */
#breadcrumb a {
  color: #fff;
}
/* line 211, ../scss/breakpoints/_base.scss */
#breadcrumb a.bQuote {
  background: #7a2367;
  border-radius: 3px;
  padding: 10px 51px;
  text-align: center;
  float: right;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
  transition: 0.25s all;
  display: none;
}
/* line 223, ../scss/breakpoints/_base.scss */
#breadcrumb a.bQuote:hover {
  background: #ffc000;
}

/* line 230, ../scss/breakpoints/_base.scss */
.titleImg {
  background-color: #7a2367;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 3px;
  float: left;
  height: 56px;
  margin-right: 20px;
  width: 56px;
}

/* line 241, ../scss/breakpoints/_base.scss */
#content {
  margin-top: 1.5em;
}

/* line 244, ../scss/breakpoints/_base.scss */
.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em;
}
/* line 249, ../scss/breakpoints/_base.scss */
.hentry header {
  border-bottom: 1px solid #f8f9fa;
  padding: 1.5em;
}
/* line 254, ../scss/breakpoints/_base.scss */
.hentry footer {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}
/* line 258, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* end .hentry */
/* line 265, ../scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* post meta */
/* line 272, ../scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  margin: 0;
}
/* line 276, ../scss/breakpoints/_base.scss */
header .byline li {
  float: left;
  padding: 0 15px;
  line-height: 12px;
  margin-top: 20px;
  color: #7a2367;
}
/* line 283, ../scss/breakpoints/_base.scss */
header .byline li:first-of-type {
  padding-left: 0;
}
/* line 287, ../scss/breakpoints/_base.scss */
header .byline li + li {
  border-left: 1px solid #9fa6b4;
}

/* entry content */
/* line 296, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 1.5em 1.5em 0;
}
/* line 299, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 318, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
/* line 323, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 332, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
/* line 335, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* line 340, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
/* line 344, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 349, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
/* line 354, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 359, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #7a2367;
  font-style: italic;
  color: #9fa6b4;
}
/* line 374, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 381, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
/* line 387, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 396, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #323944;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 407, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 413, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 419, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 453, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 461, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 465, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 468, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 477, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
/* line 486, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #7a2367;
}
/* line 498, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #7a2367;
  color: #fff;
}
/* line 504, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #323232;
}
/* line 508, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #323232;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 521, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 525, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 536, ../scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}

/* line 552, ../scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none;
}

/* line 557, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 564, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 570, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 573, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
/* line 581, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 586, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
/* line 590, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 600, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 608, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 612, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 630, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 634, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 639, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
/* line 652, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 655, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #f8f9fa;
}

/* comment meta */
/* comment content */
/* line 686, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
/* line 695, ../scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 707, ../scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 720, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

/* line 726, ../scss/breakpoints/_base.scss */
#reply-title {
  margin: 0;
}

/* line 730, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* line 735, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #323232;
}

/* line 740, ../scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

/* line 744, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
/* line 751, ../scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
/* line 758, ../scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 771, ../scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
/* line 776, ../scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 786, ../scss/breakpoints/_base.scss */
.sidebar input[type="search"] {
  width: 70%;
  float: left;
}
/* line 791, ../scss/breakpoints/_base.scss */
.sidebar button {
  width: 25%;
  float: right;
  height: 40px;
}
/* line 797, ../scss/breakpoints/_base.scss */
.sidebar .cat-item {
  text-align: right;
}
/* line 800, ../scss/breakpoints/_base.scss */
.sidebar .cat-item a {
  float: left;
}

/* line 808, ../scss/breakpoints/_base.scss */
.sidebar {
  padding: 0 1.5em;
}

/* line 812, ../scss/breakpoints/_base.scss */
.widgettitle {
  padding-left: 25px;
  position: relative;
  margin-bottom: 1em;
}
/* line 817, ../scss/breakpoints/_base.scss */
.widgettitle:before {
  content: "";
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #7a2367 50%, #561949 50%);
  position: absolute;
  left: 0;
  top: 5px;
}

/* line 828, ../scss/breakpoints/_base.scss */
.widget {
  margin: 2em 0;
}
/* line 834, ../scss/breakpoints/_base.scss */
.widget ul li {
  padding: 10px 0;
  /* deep nesting */
}
/* line 838, ../scss/breakpoints/_base.scss */
.widget ul li.cat-item {
  text-align: right;
  border-bottom: 1px solid #ccc;
  color: #7a2367;
}
/* line 843, ../scss/breakpoints/_base.scss */
.widget ul li.cat-item:last-of-type {
  border: none;
}
/* line 847, ../scss/breakpoints/_base.scss */
.widget ul li.cat-item a {
  float: left;
  color: #323232;
}
/* line 851, ../scss/breakpoints/_base.scss */
.widget ul li.cat-item a:hover {
  color: #561949;
}

/* line 868, ../scss/breakpoints/_base.scss */
.tagcloud a {
  font-size: 12px !important;
  background: #eaedf2;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 0 5px 5px 0;
  display: block;
  float: left;
  color: #323232;
  transition: 0.25s all;
}
/* line 879, ../scss/breakpoints/_base.scss */
.tagcloud a:hover {
  background: #7a2367;
  color: #fff;
}

/* line 885, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/* line 895, ../scss/breakpoints/_base.scss */
.nexus_widget_recent_entries img {
  max-width: 25%;
  vertical-align: top;
  float: left;
  margin-right: 10px;
}
/* line 901, ../scss/breakpoints/_base.scss */
.nexus_widget_recent_entries .post-date {
  color: #323232;
  font-size: 12px;
}

/*********************
FOOTER STYLES
*********************/
/* line 912, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #1a1c27;
  color: white;
}
/* line 917, ../scss/breakpoints/_base.scss */
.footer .nexus_widget_recent_entries {
  padding: 0;
}
/* line 920, ../scss/breakpoints/_base.scss */
.footer .nexus_widget_recent_entries .post-date {
  color: #f8f9fa;
}
/* line 924, ../scss/breakpoints/_base.scss */
.footer .nexus_widget_recent_entries h2 {
  display: none;
}
/* line 929, ../scss/breakpoints/_base.scss */
.footer a {
  color: #fff;
}
/* line 933, ../scss/breakpoints/_base.scss */
.footer ul {
  padding: 0;
}
/* line 935, ../scss/breakpoints/_base.scss */
.footer ul li {
  list-style-type: none;
}

/* line 941, ../scss/breakpoints/_base.scss */
ul.footer-links {
  margin: 0;
}
/* line 944, ../scss/breakpoints/_base.scss */
ul.footer-links li a {
  padding: 8px 0;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}
/* line 951, ../scss/breakpoints/_base.scss */
ul.footer-links li:last-of-type a {
  border: none;
}

/* line 958, ../scss/breakpoints/_base.scss */
#inner-footer {
  padding: 0 1.5em;
}

/* line 962, ../scss/breakpoints/_base.scss */
.footBot {
  background: #7a2367;
}

/* line 966, ../scss/breakpoints/_base.scss */
#logoBar {
  border-top: 1px solid #e9e9e9;
  padding: 2em 0;
  background: #fff;
}

/*********************
LARGER MOBILE DEVICES
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  ******************************************************************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 14, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 18, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 23, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 28, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
}
/*********************
TABLET & SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 20, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 740px;
  }

  /* line 26, ../scss/breakpoints/_768up.scss */
  #breadcrumb a.bQuote {
    display: block;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 38, ../scss/breakpoints/_768up.scss */
  #logo {
    float: left;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /*hide mobile menu*/
  /* line 47, ../scss/breakpoints/_768up.scss */
  #menu-main.nav.top-nav.cf, #menu-main.nav.top-nav.comment-respond {
    display: none;
  }

  /*show desktop menu*/
  /* line 51, ../scss/breakpoints/_768up.scss */
  #menu-main-1.nav.top-nav.cf, #menu-main-1.nav.top-nav.comment-respond {
    display: block;
  }

  /* line 56, ../scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    float: right;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 59, ../scss/breakpoints/_768up.scss */
  .nav ul {
    margin-top: 0;
  }
  /* line 61, ../scss/breakpoints/_768up.scss */
  .nav ul.sub-menu {
    background: #7a2367;
  }
  /* line 66, ../scss/breakpoints/_768up.scss */
  .nav li {
    float: left;
    position: relative;
    /* showing sub-menus */
  }
  /* line 70, ../scss/breakpoints/_768up.scss */
  .nav li a {
    border-bottom: 0;
    width: 100%;
    float: none;
    font-weight: 700;
    font-size: 15px;
    color: #323232;
  }
  /* line 78, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: #7a2367;
  }
  /* line 82, ../scss/breakpoints/_768up.scss */
  .nav li:hover > a {
    background: none;
  }
  /* line 86, ../scss/breakpoints/_768up.scss */
  .nav li.menu-item-has-children:after, .nav li.menu-item-has-children ul.sub-menu li:after {
    border-color: white transparent transparent;
    border-image: none;
    border-style: solid;
    border-width: 5px;
    content: "";
    height: 0;
    margin-top: -3px;
    position: absolute;
    right: 1em;
    top: 50%;
    width: 0;
  }
  /* line 100, ../scss/breakpoints/_768up.scss */
  .nav li.menu-item-has-children ul.sub-menu li:after {
    border-color: transparent transparent transparent white;
  }
  /* line 104, ../scss/breakpoints/_768up.scss */
  .nav li.menu-item-has-children a {
    padding-right: 2.5em;
  }
  /* line 111, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border: none;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  /* line 121, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border: none;
    border-bottom: solid 1px #561949;
    display: block;
    width: 295px;
  }
  /* line 138, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border: none;
  }
  /* line 143, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  /* line 158, ../scss/breakpoints/_768up.scss */
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 178, ../scss/breakpoints/_768up.scss */
  .sidebar {
    padding: 0;
  }

  /* line 186, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
  }
  /* line 190, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    /* deep nesting */
  }
  /* line 197, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /* line 210, ../scss/breakpoints/_768up.scss */
  .footer .col-lg, .footer .col-lg-1, .footer .col-lg-2, .footer .col-lg-3, .footer .col-lg-4, .footer .col-lg-5, .footer .col-lg-6, .footer .col-lg-7, .footer .col-lg-8, .footer .col-lg-9, .footer .col-lg-10, .footer .col-lg-11, .footer .col-lg-12, .footer .col-lg-offset-0, .footer .col-lg-offset-1, .footer .col-lg-offset-2, .footer .col-lg-offset-3, .footer .col-lg-offset-4, .footer .col-lg-offset-5, .footer .col-lg-offset-6, .footer .col-lg-offset-7, .footer .col-lg-offset-8, .footer .col-lg-offset-9, .footer .col-lg-offset-10, .footer .col-lg-offset-11, .footer .col-lg-offset-12 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* line 214, ../scss/breakpoints/_768up.scss */
  .footer .row {
    padding-left: -1rem;
    padding-right: -1rem;
  }

  /* line 223, ../scss/breakpoints/_768up.scss */
  ul.footer-links li a {
    padding: 35px 15px;
    float: left;
    font-size: 14px;
    transition: 0.25s all;
  }
  /* line 228, ../scss/breakpoints/_768up.scss */
  ul.footer-links li a:hover {
    background: #7a2367;
  }
}
/*********************
DESKTOP
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  ******************************************************************/
  /* line 9, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 1015px;
  }
}
/*********************
LARGE VIEWING SIZE
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  ******************************************************************/
  /* line 9, ../scss/breakpoints/_1240up.scss */
  .wrap {
    width: 1210px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  ******************************************************************/
}
/*********************
PRINT STYLESHEET
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
