@charset "UTF-8";
/*********************************************
  :: 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)
********************************************/
/*********************************************
  :: Vertical Align
  :: usage = @include vertical-align()
********************************************/
/*********************************************
  :: Vertical Align
  :: usage = @include vertical-align()
********************************************/
/*********************************************
  :: The Core                         
********************************************/
/* Project Font */
@import url(https://fonts.googleapis.com/css?family=PT+Sans);
@import url(https://fonts.googleapis.com/css?family=Alegreya:400,400italic,700,700italic);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:600italic,400,300,600,700,800);
/*********************************************
:: Icon Fonts                    
********************************************/
@font-face {
  font-family: 'icomoon';
  src: url("/fonts/icomoon.eot?l1en53");
  src: url("/fonts/icomoon.eot?#iefixl1en53") format("embedded-opentype"), url("/fonts/icomoon.ttf?l1en53") format("truetype"), url("/fonts/icomoon.woff?l1en53") format("woff"), url("/fonts/icomoon.svg?l1en53#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 20, ../../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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 32, ../../private/scss/core/_fonts.scss */
.icon-Icon-1:before {
  content: "\e98f";
}

/* line 35, ../../private/scss/core/_fonts.scss */
.icon-Icon-2:before {
  content: "\e990";
}

/* line 38, ../../private/scss/core/_fonts.scss */
.icon-angle-double-down:before {
  content: "\e922";
}

/* line 41, ../../private/scss/core/_fonts.scss */
.icon-angle-double-left:before {
  content: "\e923";
}

/* line 44, ../../private/scss/core/_fonts.scss */
.icon-angle-double-right:before {
  content: "\e924";
}

/* line 47, ../../private/scss/core/_fonts.scss */
.icon-angle-double-up:before {
  content: "\e925";
}

/* line 50, ../../private/scss/core/_fonts.scss */
.icon-angle-down:before {
  content: "\e926";
}

/* line 53, ../../private/scss/core/_fonts.scss */
.icon-angle-left:before {
  content: "\e927";
}

/* line 56, ../../private/scss/core/_fonts.scss */
.icon-angle-right:before {
  content: "\e928";
}

/* line 59, ../../private/scss/core/_fonts.scss */
.icon-angle-up:before {
  content: "\e929";
}

/* line 62, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-down:before {
  content: "\e92a";
}

/* line 65, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-left:before {
  content: "\e92b";
}

/* line 68, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-down:before {
  content: "\e92c";
}

/* line 71, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-left:before {
  content: "\e92d";
}

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

/* line 77, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-up:before {
  content: "\e92f";
}

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

/* line 83, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-up:before {
  content: "\e931";
}

/* line 86, ../../private/scss/core/_fonts.scss */
.icon-bars:before {
  content: "\e932";
}

/* line 89, ../../private/scss/core/_fonts.scss */
.icon-calendar2:before {
  content: "\e933";
}

/* line 92, ../../private/scss/core/_fonts.scss */
.icon-check:before {
  content: "\e934";
}

/* line 95, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-down:before {
  content: "\e935";
}

/* line 98, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-left:before {
  content: "\e936";
}

/* line 101, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-right:before {
  content: "\e937";
}

/* line 104, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-up:before {
  content: "\e938";
}

/* line 107, ../../private/scss/core/_fonts.scss */
.icon-chevron-down:before {
  content: "\e939";
}

/* line 110, ../../private/scss/core/_fonts.scss */
.icon-chevron-left:before {
  content: "\e93a";
}

/* line 113, ../../private/scss/core/_fonts.scss */
.icon-chevron-right:before {
  content: "\e93b";
}

/* line 116, ../../private/scss/core/_fonts.scss */
.icon-chevron-up:before {
  content: "\e93c";
}

/* line 119, ../../private/scss/core/_fonts.scss */
.icon-envelope-o:before {
  content: "\e93d";
}

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

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

/* line 128, ../../private/scss/core/_fonts.scss */
.icon-file:before {
  content: "\e940";
}

/* line 131, ../../private/scss/core/_fonts.scss */
.icon-google-plus-square:before {
  content: "\e941";
}

/* line 134, ../../private/scss/core/_fonts.scss */
.icon-google-plus:before {
  content: "\e942";
}

/* line 137, ../../private/scss/core/_fonts.scss */
.icon-info-circle:before {
  content: "\e943";
}

/* line 140, ../../private/scss/core/_fonts.scss */
.icon-instagram:before {
  content: "\e944";
}

/* line 143, ../../private/scss/core/_fonts.scss */
.icon-linkedin-square:before {
  content: "\e945";
}

/* line 146, ../../private/scss/core/_fonts.scss */
.icon-linkedin:before {
  content: "\e946";
}

/* line 149, ../../private/scss/core/_fonts.scss */
.icon-map-marker:before {
  content: "\e947";
}

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

/* line 155, ../../private/scss/core/_fonts.scss */
.icon-phone-diagonal:before {
  content: "\e949";
}

/* line 158, ../../private/scss/core/_fonts.scss */
.icon-pinterest-square:before {
  content: "\e94a";
}

/* line 161, ../../private/scss/core/_fonts.scss */
.icon-pinterest:before {
  content: "\e94b";
}

/* line 164, ../../private/scss/core/_fonts.scss */
.icon-play:before {
  content: "\e94c";
}

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

/* line 170, ../../private/scss/core/_fonts.scss */
.icon-question-circle:before {
  content: "\e94e";
}

/* line 173, ../../private/scss/core/_fonts.scss */
.icon-search-plus:before {
  content: "\e94f";
}

/* line 176, ../../private/scss/core/_fonts.scss */
.icon-search:before {
  content: "\e950";
}

/* line 179, ../../private/scss/core/_fonts.scss */
.icon-shopping-cart:before {
  content: "\e951";
}

/* line 182, ../../private/scss/core/_fonts.scss */
.icon-sort:before {
  content: "\e952";
}

/* line 185, ../../private/scss/core/_fonts.scss */
.icon-tags:before {
  content: "\e953";
}

/* line 188, ../../private/scss/core/_fonts.scss */
.icon-times:before {
  content: "\e954";
}

/* line 191, ../../private/scss/core/_fonts.scss */
.icon-tumblr-square:before {
  content: "\e956";
}

/* line 194, ../../private/scss/core/_fonts.scss */
.icon-tumblr:before {
  content: "\e957";
}

/* line 197, ../../private/scss/core/_fonts.scss */
.icon-twitter-square:before {
  content: "\e958";
}

/* line 200, ../../private/scss/core/_fonts.scss */
.icon-twitter:before {
  content: "\e959";
}

/* line 203, ../../private/scss/core/_fonts.scss */
.icon-user:before {
  content: "\e95a";
}

/* line 206, ../../private/scss/core/_fonts.scss */
.icon-vimeo-square:before {
  content: "\e95b";
}

/* line 209, ../../private/scss/core/_fonts.scss */
.icon-youtube-play:before {
  content: "\e95c";
}

/* line 212, ../../private/scss/core/_fonts.scss */
.icon-youtube-square:before {
  content: "\e95d";
}

/* line 215, ../../private/scss/core/_fonts.scss */
.icon-youtube:before {
  content: "\e95e";
}

/* line 218, ../../private/scss/core/_fonts.scss */
.icon-thin-search:before {
  content: "\e921";
}

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

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

/* line 227, ../../private/scss/core/_fonts.scss */
.icon-pin:before {
  content: "\e955";
}

/* line 230, ../../private/scss/core/_fonts.scss */
.icon-close:before {
  content: "\e90c";
}

/* line 233, ../../private/scss/core/_fonts.scss */
.icon-heart:before {
  content: "\e95f";
}

/* line 236, ../../private/scss/core/_fonts.scss */
.icon-cloud:before {
  content: "\e960";
}

/* line 239, ../../private/scss/core/_fonts.scss */
.icon-star:before {
  content: "\e961";
}

/* line 242, ../../private/scss/core/_fonts.scss */
.icon-tv2:before {
  content: "\e962";
}

/* line 245, ../../private/scss/core/_fonts.scss */
.icon-sound:before {
  content: "\e963";
}

/* line 248, ../../private/scss/core/_fonts.scss */
.icon-video:before {
  content: "\e964";
}

/* line 251, ../../private/scss/core/_fonts.scss */
.icon-trash:before {
  content: "\e965";
}

/* line 254, ../../private/scss/core/_fonts.scss */
.icon-user2:before {
  content: "\e966";
}

/* line 257, ../../private/scss/core/_fonts.scss */
.icon-key:before {
  content: "\e967";
}

/* line 260, ../../private/scss/core/_fonts.scss */
.icon-search2:before {
  content: "\e968";
}

/* line 263, ../../private/scss/core/_fonts.scss */
.icon-settings:before {
  content: "\e969";
}

/* line 266, ../../private/scss/core/_fonts.scss */
.icon-camera:before {
  content: "\e96a";
}

/* line 269, ../../private/scss/core/_fonts.scss */
.icon-tag:before {
  content: "\e96b";
}

/* line 272, ../../private/scss/core/_fonts.scss */
.icon-lock:before {
  content: "\e96c";
}

/* line 275, ../../private/scss/core/_fonts.scss */
.icon-bulb:before {
  content: "\e96d";
}

/* line 278, ../../private/scss/core/_fonts.scss */
.icon-pen:before {
  content: "\e96e";
}

/* line 281, ../../private/scss/core/_fonts.scss */
.icon-diamond:before {
  content: "\e96f";
}

/* line 284, ../../private/scss/core/_fonts.scss */
.icon-display2:before {
  content: "\e970";
}

/* line 287, ../../private/scss/core/_fonts.scss */
.icon-location3:before {
  content: "\e971";
}

/* line 290, ../../private/scss/core/_fonts.scss */
.icon-eye:before {
  content: "\e972";
}

/* line 293, ../../private/scss/core/_fonts.scss */
.icon-bubble:before {
  content: "\e973";
}

/* line 296, ../../private/scss/core/_fonts.scss */
.icon-stack:before {
  content: "\e974";
}

/* line 299, ../../private/scss/core/_fonts.scss */
.icon-cup:before {
  content: "\e975";
}

/* line 302, ../../private/scss/core/_fonts.scss */
.icon-phone3:before {
  content: "\e976";
}

/* line 305, ../../private/scss/core/_fonts.scss */
.icon-news:before {
  content: "\e977";
}

/* line 308, ../../private/scss/core/_fonts.scss */
.icon-mail:before {
  content: "\e978";
}

/* line 311, ../../private/scss/core/_fonts.scss */
.icon-like:before {
  content: "\e979";
}

/* line 314, ../../private/scss/core/_fonts.scss */
.icon-photo:before {
  content: "\e97a";
}

/* line 317, ../../private/scss/core/_fonts.scss */
.icon-note:before {
  content: "\e97b";
}

/* line 320, ../../private/scss/core/_fonts.scss */
.icon-clock:before {
  content: "\e97c";
}

/* line 323, ../../private/scss/core/_fonts.scss */
.icon-paperplane:before {
  content: "\e97d";
}

/* line 326, ../../private/scss/core/_fonts.scss */
.icon-params:before {
  content: "\e97e";
}

/* line 329, ../../private/scss/core/_fonts.scss */
.icon-banknote:before {
  content: "\e97f";
}

/* line 332, ../../private/scss/core/_fonts.scss */
.icon-data:before {
  content: "\e980";
}

/* line 335, ../../private/scss/core/_fonts.scss */
.icon-music:before {
  content: "\e981";
}

/* line 338, ../../private/scss/core/_fonts.scss */
.icon-megaphone:before {
  content: "\e982";
}

/* line 341, ../../private/scss/core/_fonts.scss */
.icon-study:before {
  content: "\e983";
}

/* line 344, ../../private/scss/core/_fonts.scss */
.icon-lab:before {
  content: "\e984";
}

/* line 347, ../../private/scss/core/_fonts.scss */
.icon-food:before {
  content: "\e985";
}

/* line 350, ../../private/scss/core/_fonts.scss */
.icon-t-shirt:before {
  content: "\e986";
}

/* line 353, ../../private/scss/core/_fonts.scss */
.icon-fire:before {
  content: "\e987";
}

/* line 356, ../../private/scss/core/_fonts.scss */
.icon-clip:before {
  content: "\e988";
}

/* line 359, ../../private/scss/core/_fonts.scss */
.icon-shop:before {
  content: "\e989";
}

/* line 362, ../../private/scss/core/_fonts.scss */
.icon-calendar3:before {
  content: "\e98a";
}

/* line 365, ../../private/scss/core/_fonts.scss */
.icon-wallet:before {
  content: "\e98b";
}

/* line 368, ../../private/scss/core/_fonts.scss */
.icon-vynil:before {
  content: "\e98c";
}

/* line 371, ../../private/scss/core/_fonts.scss */
.icon-truck:before {
  content: "\e98d";
}

/* line 374, ../../private/scss/core/_fonts.scss */
.icon-world:before {
  content: "\e98e";
}

/* line 377, ../../private/scss/core/_fonts.scss */
.icon-home:before {
  content: "\e900";
}

/* line 380, ../../private/scss/core/_fonts.scss */
.icon-newspaper:before {
  content: "\e901";
}

/* line 383, ../../private/scss/core/_fonts.scss */
.icon-image:before {
  content: "\e902";
}

/* line 386, ../../private/scss/core/_fonts.scss */
.icon-file-empty:before {
  content: "\e903";
}

/* line 389, ../../private/scss/core/_fonts.scss */
.icon-file-text2:before {
  content: "\e904";
}

/* line 392, ../../private/scss/core/_fonts.scss */
.icon-phone:before {
  content: "\e905";
}

/* line 395, ../../private/scss/core/_fonts.scss */
.icon-phone-hang-up:before {
  content: "\e906";
}

/* line 398, ../../private/scss/core/_fonts.scss */
.icon-location:before {
  content: "\e907";
}

/* line 401, ../../private/scss/core/_fonts.scss */
.icon-location2:before {
  content: "\e908";
}

/* line 404, ../../private/scss/core/_fonts.scss */
.icon-compass:before {
  content: "\e909";
}

/* line 407, ../../private/scss/core/_fonts.scss */
.icon-map:before {
  content: "\e90a";
}

/* line 410, ../../private/scss/core/_fonts.scss */
.icon-map2:before {
  content: "\e90b";
}

/* line 413, ../../private/scss/core/_fonts.scss */
.icon-alarm:before {
  content: "\e90f";
}

/* line 416, ../../private/scss/core/_fonts.scss */
.icon-bell:before {
  content: "\e910";
}

/* line 419, ../../private/scss/core/_fonts.scss */
.icon-stopwatch:before {
  content: "\e911";
}

/* line 422, ../../private/scss/core/_fonts.scss */
.icon-calendar:before {
  content: "\e91e";
}

/* line 425, ../../private/scss/core/_fonts.scss */
.icon-display:before {
  content: "\e91f";
}

/* line 428, ../../private/scss/core/_fonts.scss */
.icon-laptop:before {
  content: "\e920";
}

/* line 431, ../../private/scss/core/_fonts.scss */
.icon-mobile:before {
  content: "\e912";
}

/* line 434, ../../private/scss/core/_fonts.scss */
.icon-mobile2:before {
  content: "\e913";
}

/* line 437, ../../private/scss/core/_fonts.scss */
.icon-tablet:before {
  content: "\e914";
}

/* line 440, ../../private/scss/core/_fonts.scss */
.icon-tv:before {
  content: "\e915";
}

/* line 443, ../../private/scss/core/_fonts.scss */
.icon-point-up:before {
  content: "\e916";
}

/* line 446, ../../private/scss/core/_fonts.scss */
.icon-point-right:before {
  content: "\e917";
}

/* line 449, ../../private/scss/core/_fonts.scss */
.icon-point-down:before {
  content: "\e918";
}

/* line 452, ../../private/scss/core/_fonts.scss */
.icon-point-left:before {
  content: "\e919";
}

/* line 455, ../../private/scss/core/_fonts.scss */
.icon-plus2:before {
  content: "\e91a";
}

/* line 458, ../../private/scss/core/_fonts.scss */
.icon-minus2:before {
  content: "\e91b";
}

/* line 461, ../../private/scss/core/_fonts.scss */
.icon-checkmark:before {
  content: "\e91c";
}

/* line 464, ../../private/scss/core/_fonts.scss */
.icon-checkmark2:before {
  content: "\e91d";
}

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

/*********************************************
  :: Typography                             
********************************************/
/* line 5, ../../private/scss/core/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Alegreya", "Georgia", "Times", "Times New Roman", serif;
}

/* line 9, ../../private/scss/core/_typography.scss */
h1, .h1 {
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
@media (min-width: 960px) {
  /* line 9, ../../private/scss/core/_typography.scss */
  h1, .h1 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 15px;
  }
}

/* line 24, ../../private/scss/core/_typography.scss */
h2, .h2 {
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  color: #444;
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  /* line 24, ../../private/scss/core/_typography.scss */
  h2, .h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

/* line 37, ../../private/scss/core/_typography.scss */
h3, .h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  /* line 37, ../../private/scss/core/_typography.scss */
  h3, .h3 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 51, ../../private/scss/core/_typography.scss */
h4, .h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  /* line 51, ../../private/scss/core/_typography.scss */
  h4, .h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 64, ../../private/scss/core/_typography.scss */
h5, .h5 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  /* line 64, ../../private/scss/core/_typography.scss */
  h5, .h5 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 77, ../../private/scss/core/_typography.scss */
h6, .h6 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #aaa;
  margin-bottom: 5px;
}
@media (min-width: 960px) {
  /* line 77, ../../private/scss/core/_typography.scss */
  h6, .h6 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 90, ../../private/scss/core/_typography.scss */
p, li, td, th, a, blockquote {
  font-family: "PT Sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 90, ../../private/scss/core/_typography.scss */
  p, li, td, th, a, blockquote {
    font-size: 15px;
    line-height: 21px;
  }
}

/* line 105, ../../private/scss/core/_typography.scss */
a {
  color: inherit;
  margin: 0px;
  text-decoration: none;
}
/* line 110, ../../private/scss/core/_typography.scss */
a:hover, a:focus {
  text-decoration: none;
}

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

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

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

/* line 129, ../../private/scss/core/_typography.scss */
ul li, nav li {
  list-style-type: none;
  position: relative;
}

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

/* line 150, ../../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 162, ../../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 173, ../../private/scss/core/_typography.scss */
figure {
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0px;
  padding: 10px;
}
/* line 180, ../../private/scss/core/_typography.scss */
figure img {
  margin-bottom: 5px;
}
/* line 184, ../../private/scss/core/_typography.scss */
figure figcaption {
  font-style: italic;
}

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

/*********************************************
  :: Buttons                             
********************************************/
/* line 4, ../../private/scss/core/_buttons.scss */
.button, button {
  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] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}

/* line 22, ../../private/scss/core/_buttons.scss */
.button {
  background: #A59D7E;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  font-size: 15px;
  line-height: 20px;
  padding: 8px 15px 8px 15px;
  display: inline-block;
  text-decoration: none;
  -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 35, ../../private/scss/core/_buttons.scss */
.button:hover, .button:focus {
  background: #54565A;
  color: white;
}

/* line 42, ../../private/scss/core/_buttons.scss */
.dark-button {
  background: #54565A;
}
/* line 44, ../../private/scss/core/_buttons.scss */
.dark-button:hover, .dark-button:focus {
  background: #000;
  color: white;
}

/* line 51, ../../private/scss/core/_buttons.scss */
.left-icon-button {
  position: relative;
  padding-left: 50px;
}
/* line 55, ../../private/scss/core/_buttons.scss */
.left-icon-button span {
  display: block;
  background: black;
  color: white;
  padding: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 36px;
  padding: 10px 10px 10px 8px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 23px;
  line-height: 16px;
}
/* line 72, ../../private/scss/core/_buttons.scss */
.left-icon-button:hover, .left-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* line 79, ../../private/scss/core/_buttons.scss */
.right-icon-button {
  position: relative;
  padding-right: 50px;
}
/* line 83, ../../private/scss/core/_buttons.scss */
.right-icon-button span {
  display: block;
  background: black;
  color: white;
  padding: 5px;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 36px;
  padding: 10px 10px 10px 8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 23px;
  line-height: 16px;
}
/* line 100, ../../private/scss/core/_buttons.scss */
.right-icon-button:hover, .right-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* Custom styles for specific icon buttons  */
/* line 110, ../../private/scss/core/_buttons.scss */
.right-arrow-button {
  padding-right: 40px;
}
/* line 112, ../../private/scss/core/_buttons.scss */
.right-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}

/* line 121, ../../private/scss/core/_buttons.scss */
.left-arrow-button {
  padding-left: 40px;
}
/* line 123, ../../private/scss/core/_buttons.scss */
.left-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}

/* line 136, ../../private/scss/core/_buttons.scss */
.loading-spinner {
  text-align: center;
  position: absolute;
  margin: auto;
  top: 40%;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 141, ../../private/scss/core/_buttons.scss */
.loading-spinner > p {
  color: white;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 10px;
}
/* line 147, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner {
  width: 220px;
  text-align: center;
  margin: auto;
}
/* line 153, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner > div {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
/* line 162, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #ea883c;
}
/* line 168, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #faec23;
}
/* line 173, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce3 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.08s;
  background-color: #78c8d4;
}
/* line 178, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce4 {
  -webkit-animation-delay: -0.04s;
  animation-delay: -0.04s;
  background-color: #b172a3;
}
/* line 183, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce5 {
  -webkit-animation-delay: -0.02s;
  animation-delay: -0.02s;
  background-color: #892b7c;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*********************************************
  :: 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 {
  font-size: 12.5px;
  line-height: 21px;
  color: #4a4a4a;
  font-weight: 400;
  margin-top: 12px;
}
@media (min-width: 960px) {
  /* line 23, ../../private/scss/core/_forms.scss */
  label {
    font-size: 15px;
    margin-top: 10px;
  }
}

/* line 36, ../../private/scss/core/_forms.scss */
input, textarea, select {
  outline: none;
  border: none;
  background: white;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #212121;
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 40px;
  margin-top: 5px;
  -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;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  behavior: url(../js/lib/PIE.htc);
  -webkit-appearance: none;
}
@media (min-width: 960px) {
  /* line 36, ../../private/scss/core/_forms.scss */
  input, textarea, select {
    margin-top: 10px;
    height: 46px;
  }
}
/* line 58, ../../private/scss/core/_forms.scss */
input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  border-color: #000;
  color: #000;
}

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

/* line 73, ../../private/scss/core/_forms.scss */
input[type="submit"], button[type="submit"], input[type="button"] {
  background: #4a4a4a;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  display: inline-block;
  padding: 0;
  width: 150px;
  height: 40px;
  text-transform: none;
  float: right;
  border-radius: 4px;
  -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: 960px) {
  /* line 73, ../../private/scss/core/_forms.scss */
  input[type="submit"], button[type="submit"], input[type="button"] {
    width: 132px;
    height: 46px;
  }
}

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

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

/* line 103, ../../private/scss/core/_forms.scss */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #212121;
}

/*********************************************
  :: Form Layout (Default)                          
********************************************/
/* line 115, ../../private/scss/core/_forms.scss */
.form-field {
  float: left;
  width: 100%;
}
/* line 119, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio {
  float: left;
  width: auto;
  margin-right: 20px;
  text-transform: initial;
  cursor: pointer;
}
/* line 126, ../../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 139, ../../private/scss/core/_forms.scss */
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 22px;
}
@media (min-width: 960px) {
  /* line 139, ../../private/scss/core/_forms.scss */
  .form-field label {
    font-size: 15px;
  }
}
/* line 151, ../../private/scss/core/_forms.scss */
.form-field input[type="submit"] {
  float: right;
}

/* line 158, ../../private/scss/core/_forms.scss */
.form-footer {
  float: left;
  width: 100%;
}
@media (min-width: 960px) {
  /* line 158, ../../private/scss/core/_forms.scss */
  .form-footer {
    margin-top: 13px;
  }
}
/* line 167, ../../private/scss/core/_forms.scss */
.form-footer span {
  font-size: 12px;
  margin-top: 15px;
  color: #4a4a4a;
  font-weight: 300;
  float: left;
}
@media (min-width: 960px) {
  /* line 167, ../../private/scss/core/_forms.scss */
  .form-footer span {
    font-size: 15px;
    margin-top: 0px;
  }
}

/* line 184, ../../private/scss/core/_forms.scss */
.width60 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 184, ../../private/scss/core/_forms.scss */
  .width60 {
    width: 66%;
  }
}

/* line 190, ../../private/scss/core/_forms.scss */
.width50 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 190, ../../private/scss/core/_forms.scss */
  .width50 {
    width: 49%;
  }
}

/* line 196, ../../private/scss/core/_forms.scss */
.width30 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 196, ../../private/scss/core/_forms.scss */
  .width30 {
    width: 32%;
  }
}

/* line 202, ../../private/scss/core/_forms.scss */
.width20 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 202, ../../private/scss/core/_forms.scss */
  .width20 {
    width: 20%;
  }
}

/* line 208, ../../private/scss/core/_forms.scss */
.width15 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 208, ../../private/scss/core/_forms.scss */
  .width15 {
    width: 15%;
  }
}

/* line 214, ../../private/scss/core/_forms.scss */
.mr2 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 214, ../../private/scss/core/_forms.scss */
  .mr2 {
    margin-right: 2%;
  }
}

/* line 220, ../../private/scss/core/_forms.scss */
.mr3 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 220, ../../private/scss/core/_forms.scss */
  .mr3 {
    margin-right: 5%;
  }
}

/* line 226, ../../private/scss/core/_forms.scss */
.mr4 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 226, ../../private/scss/core/_forms.scss */
  .mr4 {
    margin-right: 4%;
  }
}

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

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

/* line 246, ../../private/scss/core/_forms.scss */
label.error {
  color: #DE2828;
  margin-top: 3px;
  font-weight: 500;
  font-size: 11px;
}

/*********************************************
  :: Main Menu Toggle                            
********************************************/
/* line 4, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger {
  width: 20px;
  float: right;
  padding: 0px;
  background: transparent;
  margin-top: 1px;
  position: static;
  top: 0%;
  left: 0%;
  right: auto;
  display: inline-block;
  margin-top: 20px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 18, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span {
  width: 20px;
  height: 3px;
  background: #4a4a4a;
  margin-bottom: 4px;
  display: block;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  opacity: 1;
}
/* line 29, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  /* line 4, ../../private/scss/core/_header-small-screen-menu.scss */
  button.small-screen-main-menu-trigger {
    display: none;
  }
}

/* line 39, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger {
  position: relative;
  right: 0%;
  top: 0%;
  left: auto;
  height: 33px;
  width: 33px;
  text-align: center;
  z-index: 9999999;
  padding: 0px;
}
/* line 50, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span {
  margin: 0px;
  background: black;
  margin-left: 16px;
}
/* line 56, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:last-of-type {
  opacity: 0;
}
/* line 60, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:first-of-type {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 64, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:nth-of-type(2) {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -2px;
}

/*********************************************
  :: Main Menu                            
********************************************/
/* line 77, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu {
  width: 85%;
  background: #eda349;
  position: fixed;
  top: 0px;
  right: -85%;
  height: 100%;
  text-align: center;
  z-index: 999999;
  overflow-y: auto;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 89, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul {
  margin: 118px 0 0 0;
  padding: 0px;
  float: left;
  width: 100%;
}
/* line 96, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li {
  list-style-type: none;
}
/* line 100, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li {
  margin-bottom: 0px;
}
/* line 103, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li.active {
  background: white;
}
/* line 106, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li.active a {
  color: #eda349;
}
/* line 111, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li:before {
  display: none;
}
/* line 117, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li > a {
  line-height: 24px;
  font-size: 20px;
  color: black;
  text-decoration: none;
  padding: 13px 20px 13px 0px;
  display: block;
  font-weight: 700;
  margin-bottom: 0px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 129, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent {
  position: relative;
}
/* line 132, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent .arrow {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 14px;
  display: block;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 145, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .current a {
  color: #212121;
}

/* line 152, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu {
  right: 0px;
}

@media (min-width: 960px) {
  /* line 156, ../../private/scss/core/_header-small-screen-menu.scss */
  .small-screen-main-menu {
    display: none;
  }
}

/*********************************************
  :: Sub Main Menu                            
********************************************/
/* line 168, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul {
  height: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 177, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  vertical-align: top;
  border-bottom: 1px solid #DFDFD0;
  text-align: left;
}
/* line 188, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul img {
  display: block;
  margin-bottom: 5px;
}
/* line 193, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul a {
  margin-bottom: 0px;
  padding: 0px;
  width: 81px;
  font-size: 16px;
  line-height: 16px;
  color: black;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 207, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li:last-of-type a {
  border-bottom: none;
}

/* line 214, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > ul {
  height: auto;
  background: white;
  text-align: center;
  padding: 20px 20px 0px 0px;
  width: 85%;
  float: right;
}

/* Acive state for sub-menu parent */
/* line 226, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu .arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*********************************************
  :: The Core - Layout & Components                      
********************************************/
/*********************************************
	:: Header                             
********************************************/
/* line 4, ../../private/scss/core/_header.scss */
header {
  float: left;
  width: 100%;
  height: 88px;
  padding-top: 10px;
}
@media (min-width: 960px) {
  /* line 4, ../../private/scss/core/_header.scss */
  header {
    height: 137px;
    padding-top: 16px;
  }
}
/* line 16, ../../private/scss/core/_header.scss */
header .logo {
  width: auto;
  display: inline-block;
  float: left;
}
/* line 21, ../../private/scss/core/_header.scss */
header .logo img {
  height: auto;
  max-height: 67px;
}
@media (min-width: 960px) {
  /* line 21, ../../private/scss/core/_header.scss */
  header .logo img {
    max-height: 97px;
  }
}
/* line 32, ../../private/scss/core/_header.scss */
header .menu {
  display: none;
}
@media (min-width: 960px) {
  /* line 32, ../../private/scss/core/_header.scss */
  header .menu {
    width: 60%;
    display: inline-block;
    float: right;
    margin-top: 40px;
  }
}
/* line 42, ../../private/scss/core/_header.scss */
header .menu nav {
  float: right;
}
/* line 46, ../../private/scss/core/_header.scss */
header .menu ul {
  display: inline-block;
  margin-left: 0px;
}
/* line 50, ../../private/scss/core/_header.scss */
header .menu ul li {
  float: left;
  margin-left: 13px;
}
/* line 54, ../../private/scss/core/_header.scss */
header .menu ul li:first-of-type {
  margin-left: 0px;
}
/* line 58, ../../private/scss/core/_header.scss */
header .menu ul li.active a {
  color: #eda349;
}
/* line 62, ../../private/scss/core/_header.scss */
header .menu ul li a {
  font-style: 16px;
  font-weight: 700;
}

/*********************************************
  :: Footer                           
********************************************/
/* line 4, ../../private/scss/core/_footer.scss */
footer {
  width: 100%;
  background: #eda349;
  float: left;
}

/* line 10, ../../private/scss/core/_footer.scss */
.contact-title {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 960px) {
  /* line 10, ../../private/scss/core/_footer.scss */
  .contact-title {
    font-size: 48px;
    margin-bottom: 37px;
  }
}
/* line 21, ../../private/scss/core/_footer.scss */
.contact-title img {
  width: 14px;
  margin: 20px auto;
  display: block;
}
@media (min-width: 960px) {
  /* line 21, ../../private/scss/core/_footer.scss */
  .contact-title img {
    width: auto;
  }
}

/* line 31, ../../private/scss/core/_footer.scss */
.contact-footer {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
/* line 36, ../../private/scss/core/_footer.scss */
.contact-footer p, .contact-footer a {
  color: white;
  margin-bottom: 3px;
}
@media (min-width: 960px) {
  /* line 36, ../../private/scss/core/_footer.scss */
  .contact-footer p, .contact-footer a {
    font-size: 18px;
  }
}

/* Brown Paper Bag Container */
/* line 47, ../../private/scss/core/_footer.scss */
.brownpaperbag-container {
  float: left;
  width: 100%;
  margin: 25px 0;
  text-align: center;
}
/* line 53, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .left-section {
  float: left;
}
/* line 57, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .right-section {
  float: left;
  clear: both;
}
@media (min-width: 960px) {
  /* line 57, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .right-section {
    float: right;
    clear: none;
  }
}
/* line 67, ../../private/scss/core/_footer.scss */
.brownpaperbag-container a, .brownpaperbag-container p {
  color: white;
  margin: 0px;
  padding: 0 5px;
  text-decoration: none;
  line-height: 14px;
  font-size: 11px;
  text-align: left;
  display: block;
}
@media (min-width: 960px) {
  /* line 67, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container a, .brownpaperbag-container p {
    display: inline-block;
    text-align: center;
  }
}

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

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

/* line 13, ../../private/scss/core/_general.scss */
.clearleft {
  clear: left;
}

/* line 20, ../../private/scss/core/_general.scss */
.container-max-width {
  width: 88%;
  margin: 0 6%;
  position: relative;
  *zoom: 1;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.container-max-width:before, .container-max-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.container-max-width:after {
  clear: both;
}
@media (min-width: 960px) {
  /* line 20, ../../private/scss/core/_general.scss */
  .container-max-width {
    width: auto;
    max-width: 960px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 0 10px;
  }
}

/* line 34, ../../private/scss/core/_general.scss */
.container-half-width {
  width: 88%;
  max-width: 760px;
  margin: 0 6%;
  position: relative;
  *zoom: 1;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.container-half-width:before, .container-half-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.container-half-width:after {
  clear: both;
}
@media (min-width: 960px) {
  /* line 34, ../../private/scss/core/_general.scss */
  .container-half-width {
    width: auto;
    max-width: 800px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 0 10px;
  }
}

/* line 48, ../../private/scss/core/_general.scss */
.full-max-width {
  width: 100%;
  *zoom: 1;
  position: relative;
  clear: both;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.full-max-width:before, .full-max-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.full-max-width:after {
  clear: both;
}

/*********************************************
  :: Modules                    
********************************************/
/*********************************************
  :: Views                       
********************************************/
/*********************************************
  :: Homepage                             
********************************************/
/* line 7, ../../private/scss/views/_home.scss */
.home h2 {
  font-size: 20px;
  font-weight: 700;
  color: #eda349;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 7, ../../private/scss/views/_home.scss */
  .home h2 {
    font-size: 48px;
    margin-bottom: 30px;
  }
}
/* line 19, ../../private/scss/views/_home.scss */
.home .intro-container {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 0;
  min-height: 220px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 960px) {
  /* line 19, ../../private/scss/views/_home.scss */
  .home .intro-container {
    padding: 45px 0 90px 0;
    min-height: 390px;
    background-attachment: fixed;
  }
}
/* line 34, ../../private/scss/views/_home.scss */
.home .intro-container h1 {
  font-size: 20px;
  color: #eda349;
  margin-top: 36px;
  margin-top: 0px;
}
@media (min-width: 960px) {
  /* line 34, ../../private/scss/views/_home.scss */
  .home .intro-container h1 {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 20px;
  }
}
/* line 45, ../../private/scss/views/_home.scss */
.home .intro-container h1 span {
  color: black;
}
/* line 50, ../../private/scss/views/_home.scss */
.home .intro-container p {
  color: #4a4a4a;
  font-weight: 700;
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  /* line 50, ../../private/scss/views/_home.scss */
  .home .intro-container p {
    font-size: 24px;
    line-height: 31px;
  }
}
/* line 64, ../../private/scss/views/_home.scss */
.home .list-container {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 0;
  background: black;
}
@media (min-width: 960px) {
  /* line 64, ../../private/scss/views/_home.scss */
  .home .list-container {
    padding: 45px 0 90px 0;
  }
}
/* line 74, ../../private/scss/views/_home.scss */
.home .list-container .centered-container {
  width: 88%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  /* line 74, ../../private/scss/views/_home.scss */
  .home .list-container .centered-container {
    width: auto;
    max-width: 660px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 82, ../../private/scss/views/_home.scss */
.home .list-container h4 {
  font-family: "PT Sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #eda349;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 82, ../../private/scss/views/_home.scss */
  .home .list-container h4 {
    margin-bottom: 43px;
    font-size: 23px;
  }
}
/* line 91, ../../private/scss/views/_home.scss */
.home .list-container h4 span {
  color: black;
}
/* line 97, ../../private/scss/views/_home.scss */
.home .list-container ul li {
  font-size: 16px;
  color: white;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}
/* line 104, ../../private/scss/views/_home.scss */
.home .list-container ul li:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  /* line 97, ../../private/scss/views/_home.scss */
  .home .list-container ul li {
    font-size: 22px;
    margin-bottom: 36px;
  }
}
/* line 112, ../../private/scss/views/_home.scss */
.home .list-container ul li:before {
  content: '';
  width: 15px;
  height: 16px;
  background: url(/images/icon1.svg) no-repeat center;
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: -30px;
}
@media (min-width: 960px) {
  /* line 112, ../../private/scss/views/_home.scss */
  .home .list-container ul li:before {
    width: 24px;
    height: 28px;
    top: -3px;
    left: -40px;
  }
}
@media (min-width: 960px) {
  /* line 96, ../../private/scss/views/_home.scss */
  .home .list-container ul {
    margin-bottom: 5px;
  }
}
/* line 139, ../../private/scss/views/_home.scss */
.home .slider-container {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 0;
  min-height: 290px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 960px) {
  /* line 139, ../../private/scss/views/_home.scss */
  .home .slider-container {
    padding: 45px 0 90px 0;
    min-height: 550px;
    background-attachment: fixed;
  }
}
/* line 158, ../../private/scss/views/_home.scss */
.home .service-container {
  width: 100%;
  float: left;
  padding: 30px 0;
  background: white;
}
@media (min-width: 960px) {
  /* line 158, ../../private/scss/views/_home.scss */
  .home .service-container {
    padding: 75px 0 25px 0;
  }
}
@media (min-width: 960px) {
  /* line 167, ../../private/scss/views/_home.scss */
  .home .service-container .centered-container {
    width: auto;
    max-width: 660px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 173, ../../private/scss/views/_home.scss */
.home .service-container h2 {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 173, ../../private/scss/views/_home.scss */
  .home .service-container h2 {
    margin-bottom: 60px;
  }
}
/* line 180, ../../private/scss/views/_home.scss */
.home .service-container article {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 30px;
  margin-bottom: 13px;
}
@media (min-width: 760px) {
  /* line 180, ../../private/scss/views/_home.scss */
  .home .service-container article {
    width: 50%;
    min-height: 250px;
    padding-right: 15px;
    padding: 20px 0;
  }
}
/* line 193, ../../private/scss/views/_home.scss */
.home .service-container article:before {
  content: '';
  width: 44px;
  height: 20px;
  background: url(/images/icon2.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 0px;
}
/* line 204, ../../private/scss/views/_home.scss */
.home .service-container article:last-of-type {
  margin-bottom: 0px;
}
/* line 208, ../../private/scss/views/_home.scss */
.home .service-container article h4 {
  font-family: "PT Sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 4px;
}
@media (min-width: 760px) {
  /* line 208, ../../private/scss/views/_home.scss */
  .home .service-container article h4 {
    font-size: 23px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media (min-width: 760px) {
  /* line 221, ../../private/scss/views/_home.scss */
  .home .service-container article p {
    line-height: 28px;
    padding-right: 26px;
  }
}
/* line 234, ../../private/scss/views/_home.scss */
.home .our-container {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 0;
  min-height: 220px;
  background: #eda349;
}
@media (min-width: 960px) {
  /* line 234, ../../private/scss/views/_home.scss */
  .home .our-container {
    padding: 45px 0 0px 0;
  }
}
/* line 245, ../../private/scss/views/_home.scss */
.home .our-container h2 {
  color: black;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  /* line 245, ../../private/scss/views/_home.scss */
  .home .our-container h2 {
    margin-top: 23px;
    margin-bottom: 40px;
  }
}
/* line 254, ../../private/scss/views/_home.scss */
.home .our-container .centered {
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 43px;
}
@media (min-width: 960px) {
  /* line 254, ../../private/scss/views/_home.scss */
  .home .our-container .centered {
    margin-bottom: 0px;
  }
}
/* line 263, ../../private/scss/views/_home.scss */
.home .our-container .centered p {
  color: black;
  font-size: 16px;
}
@media (min-width: 960px) {
  /* line 263, ../../private/scss/views/_home.scss */
  .home .our-container .centered p {
    font-size: 20px;
    line-height: 27px;
  }
}
/* line 274, ../../private/scss/views/_home.scss */
.home .our-container article {
  width: 100%;
  float: left;
  text-align: left;
  position: relative;
  margin-bottom: 27px;
}
@media (min-width: 760px) {
  /* line 274, ../../private/scss/views/_home.scss */
  .home .our-container article {
    width: 50%;
    min-height: 250px;
    padding-right: 15px;
    padding: 20px 15px 20px 0;
    margin-bottom: 0px;
  }
}
/* line 288, ../../private/scss/views/_home.scss */
.home .our-container article p:first-of-type {
  color: black;
  font-weight: 700;
  margin-bottom: 0px;
}
@media (min-width: 760px) {
  /* line 288, ../../private/scss/views/_home.scss */
  .home .our-container article p:first-of-type {
    margin-bottom: 0px;
  }
}
/* line 297, ../../private/scss/views/_home.scss */
.home .our-container article p {
  font-size: 14px;
  color: #4a4a4a;
}
/* line 307, ../../private/scss/views/_home.scss */
.home .why-container {
  width: 100%;
  float: left;
  text-align: center;
  padding: 30px 0;
  min-height: 220px;
  background: white;
}
@media (min-width: 960px) {
  /* line 307, ../../private/scss/views/_home.scss */
  .home .why-container {
    padding: 45px 0 0px 0;
  }
}
/* line 318, ../../private/scss/views/_home.scss */
.home .why-container .special-title {
  width: 88%;
  max-width: 1300px;
  margin: 0 auto 25px auto;
  position: relative;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 318, ../../private/scss/views/_home.scss */
  .home .why-container .special-title {
    margin: 0 auto 20px auto;
  }
}
/* line 328, ../../private/scss/views/_home.scss */
.home .why-container .special-title:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid black;
  position: absolute;
  top: 4px;
  left: 0px;
}
@media (min-width: 960px) {
  /* line 328, ../../private/scss/views/_home.scss */
  .home .why-container .special-title:before {
    top: 0px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 11px solid black;
  }
}
/* line 346, ../../private/scss/views/_home.scss */
.home .why-container .special-title:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid black;
  position: absolute;
  top: 4px;
  right: 0px;
}
@media (min-width: 960px) {
  /* line 346, ../../private/scss/views/_home.scss */
  .home .why-container .special-title:after {
    top: 0px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 11px solid black;
  }
}
/* line 364, ../../private/scss/views/_home.scss */
.home .why-container .special-title .grey-line {
  width: 92.5%;
  margin: 0 auto;
  border-bottom: 2px solid #d0cfcf;
  position: absolute;
  top: 10px;
  right: 0px;
  left: 0px;
}
@media (min-width: 960px) {
  /* line 364, ../../private/scss/views/_home.scss */
  .home .why-container .special-title .grey-line {
    width: 96.5%;
    border-bottom: 1px solid #979797;
    top: 11px;
  }
}
/* line 379, ../../private/scss/views/_home.scss */
.home .why-container .special-title h2 {
  width: auto;
  display: inline-block;
  padding: 0px 10px;
  background: white;
  color: #eda349;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  /* line 379, ../../private/scss/views/_home.scss */
  .home .why-container .special-title h2 {
    padding: 0px 30px;
  }
}
/* line 393, ../../private/scss/views/_home.scss */
.home .why-container article {
  width: 100%;
  float: left;
  text-align: left;
  position: relative;
}
@media (min-width: 760px) {
  /* line 393, ../../private/scss/views/_home.scss */
  .home .why-container article {
    width: 50%;
    min-height: 250px;
    padding: 20px 15px 20px 0;
  }
}
/* line 404, ../../private/scss/views/_home.scss */
.home .why-container article p {
  color: #4a4a4a;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 20px;
}
@media (min-width: 760px) {
  /* line 404, ../../private/scss/views/_home.scss */
  .home .why-container article p {
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/* line 417, ../../private/scss/views/_home.scss */
.home .why-container .container-half-width {
  max-width: 982px;
}

/*********************************************
	:: Contact                   
********************************************/
/* line 8, ../../private/scss/views/_contact-us.scss */
.contact .breadcrumb-container {
  width: 100%;
  height: 42px;
  background: #4a4a4a;
}
@media (min-width: 960px) {
  /* line 8, ../../private/scss/views/_contact-us.scss */
  .contact .breadcrumb-container {
    height: 53px;
  }
}
/* line 17, ../../private/scss/views/_contact-us.scss */
.contact .breadcrumb-container h3 {
  color: white;
  font-size: 17px;
  line-height: 42px;
}
@media (min-width: 960px) {
  /* line 17, ../../private/scss/views/_contact-us.scss */
  .contact .breadcrumb-container h3 {
    font-size: 28px;
    line-height: 53px;
  }
}
/* line 32, ../../private/scss/views/_contact-us.scss */
.contact .contact-intro {
  width: 100%;
}
/* line 35, ../../private/scss/views/_contact-us.scss */
.contact .contact-intro p {
  font-size: 13px;
  color: black;
  margin: 20px 0 12px 0;
}
@media (min-width: 960px) {
  /* line 35, ../../private/scss/views/_contact-us.scss */
  .contact .contact-intro p {
    font-size: 15px;
    margin: 45px 0 18px 0;
    line-height: 22px;
  }
}
/* line 46, ../../private/scss/views/_contact-us.scss */
.contact .contact-intro p br {
  display: none;
}
@media (min-width: 960px) {
  /* line 46, ../../private/scss/views/_contact-us.scss */
  .contact .contact-intro p br {
    display: inline-block;
  }
}
/* line 61, ../../private/scss/views/_contact-us.scss */
.contact .contact-left {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 61, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left {
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 60px 0 0;
  }
}
/* line 69, ../../private/scss/views/_contact-us.scss */
.contact .contact-left h3 {
  font-size: 14px;
  font-weight: 500;
  color: black;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 0 7px 0;
}
@media (min-width: 960px) {
  /* line 69, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left h3 {
    font-size: 20px;
  }
}
/* line 83, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details p {
  font-size: 14px;
  color: black;
  margin: 0px;
}
@media (min-width: 960px) {
  /* line 83, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-details p {
    font-size: 17px;
    margin: 0px 0 0 0;
  }
}
/* line 93, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details p a {
  font-size: 14px;
  color: #4a4a4a;
  float: right;
}
@media (min-width: 960px) {
  /* line 93, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-details p a {
    font-size: 17px;
    line-height: 21px;
    padding-left: 10px;
  }
}
/* line 105, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details p:first-of-type {
  margin-top: 12px;
  width: 185px;
}
@media (min-width: 960px) {
  /* line 105, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-details p:first-of-type {
    margin: 18px 0 0 0;
    width: 220px;
    display: inline-block;
  }
}
/* line 116, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details p:last-of-type {
  margin-bottom: 12px;
  width: 185px;
}
@media (min-width: 960px) {
  /* line 116, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-details p:last-of-type {
    margin: 0px 0 34px 0;
    width: 220px;
    display: inline-block;
  }
}
/* line 129, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details .email {
  font-size: 15px;
  color: black;
  display: inline-block;
  border-bottom: 1px solid #999;
}
/* line 135, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-details .email:first-of-type {
  margin-top: 10px;
}
@media (min-width: 960px) {
  /* line 135, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-details .email:first-of-type {
    margin-top: 0px;
  }
}
/* line 151, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .left-address p {
  font-size: 12.5px;
  line-height: 16px;
  font-weight: 300;
  color: #4a4a4a;
}
@media (min-width: 960px) {
  /* line 151, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .left-address p {
    font-size: 16px;
    line-height: 22px;
    margin: 1px 0 14px 0;
  }
}
/* line 171, ../../private/scss/views/_contact-us.scss */
.contact .contact-right {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 171, ../../private/scss/views/_contact-us.scss */
  .contact .contact-right {
    float: left;
    clear: none;
    width: 66.66667%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0px 0 10px;
  }
}
/* line 180, ../../private/scss/views/_contact-us.scss */
.contact .contact-right h3 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: black;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 0 7px 0;
}
@media (min-width: 960px) {
  /* line 180, ../../private/scss/views/_contact-us.scss */
  .contact .contact-right h3 {
    display: none;
    font-size: 20px;
  }
}
/* line 194, ../../private/scss/views/_contact-us.scss */
.contact .contact-right form {
  margin: 5px 0 52px 0;
}
@media (min-width: 960px) {
  /* line 194, ../../private/scss/views/_contact-us.scss */
  .contact .contact-right form {
    margin: 15px 0 25px 0;
  }
}
/* line 207, ../../private/scss/views/_contact-us.scss */
.contact .map-area {
  width: 100%;
  float: left;
}
/* line 211, ../../private/scss/views/_contact-us.scss */
.contact .map-area .map {
  position: relative;
  height: 145px;
  width: 100%;
  min-width: 100%;
  margin: 10px 0 43px;
}
@media (min-width: 960px) {
  /* line 211, ../../private/scss/views/_contact-us.scss */
  .contact .map-area .map {
    height: 360px;
    width: 840px;
    margin: 20px 0 60px 0;
  }
}
/* line 225, ../../private/scss/views/_contact-us.scss */
.contact .map-area .map__container {
  width: 100%;
  float: left;
  height: 145px;
  margin: auto;
}
@media (min-width: 600px) {
  /* line 225, ../../private/scss/views/_contact-us.scss */
  .contact .map-area .map__container {
    height: 250px;
  }
}
@media (min-width: 960px) {
  /* line 225, ../../private/scss/views/_contact-us.scss */
  .contact .map-area .map__container {
    height: 360px;
  }
}
/* line 240, ../../private/scss/views/_contact-us.scss */
.contact .map-area .map-title {
  font-size: 14px;
  font-weight: 500;
  color: black;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 0 7px 0;
}
@media (min-width: 960px) {
  /* line 240, ../../private/scss/views/_contact-us.scss */
  .contact .map-area .map-title {
    font-size: 20px;
  }
}

/*********************************************
  :: 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: #F8F8F8;
  font-size: 15px;
  font-weight: 40;
  line-height: 25px;
  color: #212121;
  border: 1px solid #A59D7C;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 37px;
  -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: 10px;
  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: "\e60c";
  font-size: 16px;
  line-height: 16px;
  color: #54565A;
}

/* 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: 1;
  box-shadow: 0px 11px 20px 0px #C8C8C8;
  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;
}

/* Transitions */
/* line 18, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 43, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 74, ../../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 85, ../../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 93, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 97, ../../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 105, ../../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 111, ../../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 122, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-loaded {
  display: block;
}

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

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

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

/* line 136, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 147, ../../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 159, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 164, ../../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 170, ../../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 177, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

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

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

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 192, ../../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 200, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

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

/* line 212, ../../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 230, ../../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 237, ../../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 241, ../../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 256, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* line 262, ../../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;
}

/* line 276, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-controls {
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 5%;
}

/* line 289, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dots {
  width: 100%;
  height: 15px;
  text-align: center;
}

/* line 295, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dot {
  margin: 0 3px;
  width: 8px;
  height: 8px;
  border: 1px solid #eda349;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  behavior: url(../js/lib/PIE.htc);
  background: #eda349;
  display: inline-block;
}
/* line 304, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dot.active {
  background: white;
  border: 1px solid white;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  /* line 9, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: transparent;
  }

  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  /* line 31, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight:last-of-type {
    background-color: transparent;
    background-color: rgba(240, 224, 209, 0.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCF0E0D1,endColorstr=#CCF0E0D1);
    zoom: 1;
  }

  /* line 35, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

  /* line 44, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
    /* dimensions: handling small or empty content */
    min-width: 30%;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal;
  }

  /* contains the content */
  /* line 75, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }

  /* line 80, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 20px;
    right: 20px;
    text-indent: -9999px;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 41px;
    height: 41px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font: Arial, sans-serif;
    background: url("../images/large-circle-cross.png");
    color: #000;
  }

  /* line 102, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-image {
    /* styling */
    width: 100%;
  }

  /* line 108, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
  }

  /* line 114, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight iframe {
    /* styling */
    border: none;
  }
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  /* line 122, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/* line 7, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker {
  max-width: 320px;
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 61px;
  display: none;
}
/* line 20, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker td, .picker th {
  padding: 0px;
  text-align: inherit;
  border: none;
}

/**
 * The picker input element.
 */
/* line 33, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__input {
  cursor: default;
}

/**
 * When the picker is opened, the input element is “activated”.
 */
/* line 39, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__input.picker__input--active {
  border-color: #0089ec;
}

/**
 * The holder is the only “scrollable” top-level container element.
 */
/* line 45, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__holder {
  width: 100%;
  /*overflow-y: auto;*/
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/* line 58, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker {
  width: 100%;
}

/**
 * The holder is the base of the picker.
 */
/* line 64, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
/* line 88, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__frame {
  padding: 1px;
}

/* line 91, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__wrap {
  margin: -1px;
}

/**
 * When the picker opens...
 */
/* line 97, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}

/* line 112, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker--opened {
  display: block !important;
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
/* line 122, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__box {
  padding: 0 1em;
}

/**
 * The header containing the month and year stuff.
 */
/* line 128, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}

/**
 * The month and year labels.
 */
/* line 136, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}

/* line 143, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}

/**
 * The month and year selectors.
 */
/* line 151, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}

@media (min-width: 24.5em) {
  /* line 160, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
/* line 165, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month {
  width: 35%;
}

/* line 168, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--year {
  width: 22.5%;
}

/* line 171, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}

/**
 * The month navigation buttons.
 */
/* line 178, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}

@media (min-width: 24.5em) {
  /* line 188, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
/* line 193, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}

@media (min-width: 24.5em) {
  /* line 198, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
/* line 202, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}

@media (min-width: 24.5em) {
  /* line 207, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
/* line 211, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}

/* line 222, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}

/* line 226, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 232, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}

/**
 * The calendar table of dates
 */
/* line 244, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}

@media (min-height: 33.875em) {
  /* line 255, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__table {
    margin-bottom: .75em;
  }
}
/* line 259, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__table td {
  margin: 0;
  padding: 0;
}

/**
 * The weekday labels
 */
/* line 266, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  background: white;
  /* Increase the spacing a tad */
}

@media (min-height: 33.875em) {
  /* line 276, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
/* line 283, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}

/* line 288, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--today {
  position: relative;
}

/* line 291, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}

/* line 301, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}

/* line 304, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--outfocus {
  color: #dddddd;
}

/* line 307, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 313, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted {
  border-color: #0089ec;
}

/* line 316, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 322, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff;
}

/* line 328, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

/* line 336, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
/* line 343, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__footer {
  text-align: center;
}

/* line 346, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
  color: #000;
}

/* line 359, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}

/* line 367, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}

/* line 374, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}

/* line 381, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}

/* line 386, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}

/* line 392, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200;
}

/* line 397, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777;
}

/* line 405, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

/* line 412, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
/*********************************************
  :: 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;
}
/* line 30, ../../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 36, ../../private/scss/views/_styleguide.scss */
.page-styleguide footer {
  margin-bottom: 0px;
  margin-top: 20px;
}
/* line 41, ../../private/scss/views/_styleguide.scss */
.page-styleguide .brownpaperbag-container {
  float: left;
  width: 100%;
  padding: 0px;
  border: none;
}
/* line 48, ../../private/scss/views/_styleguide.scss */
.page-styleguide .back-to-top-trigger {
  width: auto;
  height: auto;
  display: inline-block;
  background: none;
}
/* line 55, ../../private/scss/views/_styleguide.scss */
.page-styleguide .styles-collection {
  width: 100%;
  margin-bottom: 20px;
}
/* line 60, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span {
  font-size: 30px;
  line-height: 40px;
  width: 49%;
  display: inline-block;
  margin-bottom: 10px;
}
/* line 66, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span:before {
  margin-right: 10px;
}

/*# sourceMappingURL=styles.css.map */
