/**
 * Global Project Specific Variables
 */
/* =========================================
		Paths
   ========================================= */
/**
 * Prefix paths with $p_ to make
 * them easier to find with
 * autocomplete
 *
 */
/* =========================================
		Color Index
   ========================================= */
/**
 * Prefix colors with $c_ this
 * makes them easily findable
 * with auto complete
 *
 * Give colors their names in the
 * index. This makes it easier to
 * arrange them reasonably in the
 * index
 */
/* =========================================
		Colors Applied
   ========================================= */
/**
 * Prefix applied colors with $ca_
 * this makes them easily findable
 * with auto complete
 *
 * Define where colors where and how
 * colors are used. This makes it
 * easier to use them in the rest
 * of the sass code
 */
/* =========================================
		Typography
   ========================================= */
/**
 * Prefix typography vars with $t_
 * to make them easier to find with
 * autocomplete
 *
 */
/* =========================================
		Dimensions
   ========================================= */
/**
 * Prefix dimensions with $d_
 * to make them easier to find
 * with autocomplete
 *
 */
/* =========================================
		Breakpoints
   ========================================= */
/**
 * Prefix breakpoints with $b_
 * this makes them easier to find
 * with autocomplete
 *
 * You can use the 'bp' mixin to
 * easily use these breakpoints
 * in your sass code.
 */
/**
 * Functions & Mixins & Animations
 */
/* =========================================
		Opposite Direction Function
   ========================================= */
/**
 * Returns the opposite direction of each direction in a list
 * @author Hugo Giraudel
 *
 * @param {List} $directions - List of initial directions
 *
 * @return {List} - List of opposite directions
 */
/* =========================================
		Functions -- ParseInt
   ========================================= */
/**
 * Parses the input string into
 * an integer
 *
 * @param $n string
 *
 * @returns int
 */
/* =========================================
		Functions -- Easing
   ========================================= */
/**
 * Returns robert penners easing curves
 * for use in css3 transitions and animations
 *
 * @src <https://github.com/matthewlein/Ceaser/blob/master/developer/ceaser-easings.scss>
 *
 * @param $easing {string}
 */
/* =========================================
		Mixins -- Rem
   ========================================= */
/**
 * Use rem units with any property
 * with the correct pixel fallback
 *
 * REQUIRES that font-size on html
 * is set to 62.5%
 *
 * @link for more details, see:
 * http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
 *
 * @uses parseInt() {function}
 *
 * @param $property 	css property
 * @param $values 		list containing sizes in rems or pixels
 */
/* =========================================
		BP - Breakpoint Mixin
   ========================================= */
/**
 * Helper to make it
 * easier to print
 * media queries
 *
 * @param $query
 * @param $context
 */
/* =========================================
		Object Fit
   ========================================= */
/**
 * Cover a parent element
 *
 */
/* =========================================
		List
   ========================================= */
/* =========================================
		Reset
   ========================================= */
/* =========================================
		Clearfix
   ========================================= */
/**
 * De-Collapse Floated content within
 * element
 *
 */
/* =========================================
		No Collapse
   ========================================= */
/**
 * De-Collapse Margins
 *
 * Prevent Margins within element
 * from collapsing
 */
/* =========================================
		Visuallyhidden
   ========================================= */
/**
 * Clear the visuallyhidden styles from
 * an element given by the visuallyhidden
 * mixin
 *
 */
/**
 * Hide only visually, but have it available
 * for screenreaders: h5bp.com/v
 *
 */
/* =========================================
		Shape --- Triangle Mixin
   ========================================= */
/**
 * Prints the styles to display a CSS
 * Triangle using the transparent borders trick.
 *
 * @param {Value} $direction - direction the triangle should be pointing
 * @param {Value|List} $dimensions - dimensions of the triangle. Accepts between 1 and 3 separate dimensions
 * @param {Value} $color - color the triangle should have
 */
/* =========================================
		Range Input Styling
   ========================================= */
/**
 * Convenience mixin to
 * help style input
 * type range
 * track
 *
 */
/**
 * Convenience mixin to
 * help style input
 * type range
 * "thumb" grip
 *
 */
/* =========================================
		Placeholder
   ========================================= */
/**
 * Convenience mixin to
 * help style input
 * placeholder
 * text
 *
 */
/* =========================================
		Cascade
   ========================================= */
/**
 * Mixin to help create transitions that cascade
 * down/up a given set of elements
 *
 */
/**
 * Fonts, Icon Fonts & Sprites
 * ( - Each one requests external resources, keep out of critical css? - )
 */
/**
 * Vendor Styles
 * ( - Not Modified for Maintainability - )
 * ( - Reset/Normalize First - )
 */
/* normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  box-sizing: border-box;
  height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to border-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: border-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * Polyfill CSS object-fit
 * http://helloanselm.com/object-fit
 *
 * @author: Anselm Hannemann <hello@anselm-hannemann.com>
 * @author: Christian "Schepp" Schaefer <schaepp@gmx.de>
 * @version: 0.3.4
 *
 */
x-object-fit {
  position: relative !important;
  display: inline-block !important;
}

x-object-fit > .x-object-fit-taller,
x-object-fit > .x-object-fit-wider {
  position: absolute !important;
  left: -100% !important;
  right: -100% !important;
  top: -100% !important;
  bottom: -100% !important;
  margin: auto !important;
}

.x-object-fit-none > .x-object-fit-taller,
.x-object-fit-none > .x-object-fit-wider {
  width: auto !important;
  height: auto !important;
}

.x-object-fit-fill > .x-object-fit-taller,
.x-object-fit-fill > .x-object-fit-wider {
  width: 100% !important;
  height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-taller {
  width: auto !important;
  height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-wider {
  width: 100% !important;
  height: auto !important;
}

.x-object-fit-cover > .x-object-fit-taller,
.x-object-fit-cover > .x-object-fit-wider {
  max-width: none !important;
  max-height: none !important;
}

.x-object-fit-cover > .x-object-fit-taller {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
}

.x-object-fit-cover > .x-object-fit-wider {
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
}

.x-object-position-top > .x-object-fit-taller,
.x-object-position-top > .x-object-fit-wider {
  top: 0 !important;
  bottom: auto !important;
}

.x-object-position-right > .x-object-fit-taller,
.x-object-position-right > .x-object-fit-wider {
  left: auto !important;
  right: 0 !important;
}

.x-object-position-bottom > .x-object-fit-taller,
.x-object-position-bottom > .x-object-fit-wider {
  top: auto !important;
  bottom: 0 !important;
}

.x-object-position-left > .x-object-fit-taller,
.x-object-position-left > .x-object-fit-wider {
  left: 0 !important;
  right: auto !important;
}

/* =========================================
		Moz Background Picture
   ========================================= */
/**
 * Styles required to make
 * moz background picture
 * work relatively out of the
 * box
 *
 */
.moz-background-picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
		Utility Classes
   ========================================= */
/* =========================================
		Clearfix
   ========================================= */
/**
 * De-Collapse Floated content within
 * element
 *
 */
/* =========================================
		No Collapse
   ========================================= */
/**
 * De-Collapse Margins
 *
 * Prevent Margins within element
 * from collapsing
 */
/* =========================================
		Visuallyhidden
   ========================================= */
/**
 * Clear the visuallyhidden styles from
 * an element given by the visuallyhidden
 * mixin
 *
 */
/**
 * Hide only visually, but have it available
 * for screenreaders: h5bp.com/v
 *
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.nocollapse:before, .nocollapse:after {
  content: "\00a0";
  /* No-break space character */
  display: block;
  overflow: hidden;
  height: 0;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden--no-js {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.no-js .visuallyhidden--no-js {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.visuallyhidden--focusable {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden--focusable:active, .visuallyhidden--focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/**
 * Your Custom Styles
 */
/* =========================================
                Site
   ========================================= */
@font-face {
  font-family: "MuseoSansW01-Rounded300";
  src: url("../fonts/museo.eot");
  src: url("../fonts/museo.eot?#iefix") format("embedded-opentype"), url("../fonts/museo.woff2") format("woff2"), url("../fonts/museo.woff") format("woff"), url("../fonts/museo.ttf") format("truetype"), url("../fonts/museo.svg#MuseoSansW01-Rounded300") format("svg");
}

.site,
.site__body {
  margin: 0;
  background: #fff;
  padding: 0;
  height: 100%;
  font-family: "MuseoSansW01-Rounded300";
  font-weight: 300;
  color: #666666;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

h1, h2 {
  font-size: 1.3125rem;
}

@media all and (min-width: 800px) {
  h1, h2 {
    font-size: 2.375rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

p {
  font-size: 1rem;
}

@media all and (min-width: 800px) {
  p {
    font-size: 1.125rem;
  }
}

.site__header {
  text-align: left;
  /*height: 117px;*/
}

@media all and (min-width: 800px) {
  .site__header {
    text-align: center;
    height: 189px;
  }
}

.site__header .bar {
  height: 55px;
  width: 100%;
  position: absolute;
  background-color: #f6f6f6;
  text-align: right;
}

.site__header .bar .phone {
  text-decoration: none;
  color: #48c0bf;
  margin: 17px 15px;
  font-size: 18px;
  line-height: 20px;
  display: inline-block;
}

.site__header .bar .phone img {
  width: 19px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.site__header .page-title {
  margin: 0;
  float: left;
  position: relative;
  display: inline-block;
  height: 117px;
}

@media all and (min-width: 800px) {
  .site__header .page-title {
    height: 189px;
  }
}

.site__header .page-title .logo {
  display: none;
}

@media all and (min-width: 800px) {
  .site__header .page-title .logo {
    display: inline-block;
  }
}

.site__header .page-title .logo-mobile {
  display: inline-block;
}

@media all and (min-width: 800px) {
  .site__header .page-title .logo-mobile {
    display: none;
  }
}

.site__header .page-title img {
  height: 100%;
  width: auto;
}

/* =========================================
                Slider
   ========================================= */
@media all and (min-width: 800px) {
  .mobile-slider {
    display: none;
  }
}

.desktop-slider {
  display: none;
}

@media all and (min-width: 800px) {
  .desktop-slider {
    display: block;
  }
}

.custom-nav .flex-direction-nav a {
  width: 30px;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  background-size: contain;
  z-index: 20;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 1;
  transition: all .3s ease;
}

@media all and (min-width: 800px) {
  .custom-nav .flex-direction-nav a {
    width: 70px;
  }
}

.custom-nav .flexslider .flex-prev {
  left: 0;
  background-color: rgba(72, 192, 191, 0.5);
  /*background-image: url($p_images + 'left.png');*/
  background-image: url("../img/left.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.custom-nav .flexslider:hover .flex-prev {
  opacity: 1;
  background-color: #48c0bf;
  left: 0;
}

.custom-nav .flexslider .flex-next {
  right: 0;
  background-color: rgba(72, 192, 191, 0.5);
  /*background-image: url($p_images + 'right.png');*/
  background-image: url("../img/right.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.custom-nav .flexslider:hover .flex-next {
  background-color: #48c0bf;
  opacity: 1;
  right: 0;
}

/* =========================================
                Welcome
   ========================================= */
@media screen and (min-width: 1120px) and (max-width: 1365px) {
  #welcome-video {
    position: relative !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    margin-top: 1rem !important;
    width: 100% !important;
  }
  #welcome-wrapper {
    background-size: 75vw 100% !important;
  }
  .welcome__text {
    padding: 60px 30vw 60px calc(250px + 4rem) !important;
  }
}

@media screen and (max-width: 1119px) {
  #welcome-wrapper {
    background-size: 100vw 100% !important;
  }
  #welcome-video {
    position: relative !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    margin-top: 1rem !important;
    width: 100% !important;
  }
  .welcome__signature {
    display: none !important;
  }
  .welcome__text {
    padding: 60px 50px 60px 50px !important;
  }
  .welcome__text h1 {
    min-height: 90px !important;
    vertical-align: middle !important;
  }
}

@media screen and (max-width: 700px) {
  #welcome-video {
    width: 70vw;
    height: 36vw;
  }
}

#welcome-video {
  overflow: hidden !important;
}

#welcome-video iframe {
  display: none;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

#welcome-wrapper {
  width: 100%;
  background: linear-gradient(45deg, #e9953c 50%, #efbc3b 100%) no-repeat;
  background-size: 63vw 100%;
}

.welcome h1, .welcome h2, .welcome h3, .welcome h4, .welcome h5, .welcome h6 {
  color: #48c0bf;
}

.welcome__image {
  box-sizing: border-box;
  width: 0;
  float: left;
  position: relative;
  overflow: visible;
  display: none;
}

@media all and (min-width: 1120px) {
  .welcome__image {
    display: block;
    width: 25%;
  }
}

.welcome__image .image-wrapper {
  width: 1000px;
  /* ff3.6+ */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(45deg, #e9953c 50%, #efbc3b 100%);
  /* w3c */
  display: block;
  position: absolute;
  right: 40px;
  top: 0;
  text-align: right;
}

.welcome__image .image {
  display: inline-block;
  position: relative;
  top: 97px;
  right: -40px;
  background: blue;
}

.welcome__text {
  width: 100%;
  float: none;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

@media all and (min-width: 1120px) {
  .welcome__text {
    width: 100%;
    padding: 60px 500px 60px calc(250px + 4rem);
  }
}

.welcome__text h1 {
  margin-top: 0 !important;
  font-size: 38px !important;
  line-height: 42px !important;
  font-weight: 300 !important;
}

.welcome__text * {
  color: #fff !important;
}

.welcome__text .welcome__text-bottom {
  padding-bottom: 10px;
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom {
    padding-bottom: 0;
  }
}

.welcome__text .welcome__text-bottom .welcome__image-mobile {
  width: 75px;
  float: left;
  padding-right: 15px;
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom .welcome__image-mobile {
    display: none;
  }
}

.welcome__text .welcome__text-bottom .welcome__signature {
  position: absolute;
  left: 50px;
  top: 70px;
  vertical-align: top;
  padding-right: 4rem;
}

.welcome__text .welcome__text-bottom .welcome__signature img {
  width: 200px;
}

#welcome-video {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.welcome__text .welcome__text-bottom .welcome__signature .welcome__signature-image {
  height: 40px;
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom .welcome__signature .welcome__signature-image {
    height: auto;
  }
}

.welcome__text .welcome__text-bottom .welcome__signature .welcome__signature-text {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: #fff;
  margin-top: 1rem;
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom .welcome__signature .welcome__signature-text {
    font-size: 20px;
  }
}

.welcome__text .welcome__text-bottom .welcome__stockwell-link {
  float: right;
  display: inline-block;
}

.welcome__text .welcome__text-bottom .welcome__stockwell-link img {
  height: 30px;
  padding-top: 30px;
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom .welcome__stockwell-link img {
    height: auto;
    padding-top: 0;
  }
}

@media all and (min-width: 1120px) {
  .welcome__text .welcome__text-bottom .welcome__stockwell-link {
    position: absolute;
    bottom: 60px;
    right: 0px;
  }
}

/* =========================================
                Reasons
   ========================================= */
.reasons {
  margin-top: -7px;
  background-color: #48c0bf;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  color: #fff;
}

@media all and (min-width: 1024px) {
  .reasons {
    /*background-image: url($p_images + 'features-background-narrow.png');*/
    background-image: url("../img/features-background-narrow.png");
  }
}

@media all and (min-width: 1400px) {
  .reasons {
    /*background-image: url($p_images + 'features-background.png');*/
    background-image: url("../img/features-background.png");
  }
}

.reasons-inner {
  padding: 10px 20px 20px;
  box-sizing: border-box;
}

.reasons-inner h2 {
  margin: 0.5em 0;
}

@media all and (min-width: 600px) {
  .reasons-inner .col1,
  .reasons-inner .col2 {
    width: 50%;
    float: left;
  }
}

@media all and (min-width: 800px) {
  .reasons-inner {
    padding: 20px 50px;
  }
}

@media all and (min-width: 1024px) {
  .reasons-inner .col1,
  .reasons-inner .col2 {
    width: 33%;
    float: left;
  }
}

.reason {
  margin-bottom: 2px;
  display: table-row;
}

@media all and (min-width: 800px) {
  .reason {
    margin-bottom: 10px;
  }
}

.reason-icon {
  margin: 0 15px 0 0;
  width: 25px;
  padding: 0 10px;
  display: table-cell;
  vertical-align: middle;
}

@media all and (min-width: 800px) {
  .reason-icon {
    padding: 0 20px;
    width: 70px;
  }
}

.reason-icon img {
  width: 100%;
}

.reason-icon path, .reason-icon polygon {
  fill: #fff;
}

.reason-text {
  vertical-align: middle;
  display: table-cell;
  font-size: 1rem;
}

@media all and (min-width: 800px) {
  .reason-text {
    font-size: 1.375rem;
  }
}

/* =========================================
Bottom
========================================= */
.bottom {
  background: #fff;
}

@media all and (min-width: 800px) {
  .bottom {
    background: linear-gradient(90deg, #fff7ec 50%, #fff 50%);
  }
}

@media all and (min-width: 800px) {
  .bottom .register {
    padding-bottom: 96px;
  }
}

/* =========================================
Benefits
========================================= */
.benefits-wrap, .register {
  width: 100%;
  float: none;
  box-sizing: border-box;
}

.benefits-wrap .benefits, .benefits-wrap .event-calendar, .register .benefits, .register .event-calendar {
  padding-left: 10px;
  padding-right: 10px;
}

@media all and (min-width: 800px) {
  .benefits-wrap, .register {
    float: left;
    width: 50%;
  }
  .benefits-wrap .benefits, .benefits-wrap .event-calendar, .register .benefits, .register .event-calendar {
    padding: 30px 50px;
  }
}

.benefits, .event-calendar {
  width: 100%;
  /*float: left;*/
  background-color: #fff7ec;
  /*padding: 10px 20px 70px;*/
  box-sizing: border-box;
  position: relative;
}

@media all and (min-width: 800px) {
  .benefits, .event-calendar {
    /*width: 50%;*/
    /*float: left;*/
    /*background-color: transparent;*/
    /*padding: 30px $d_default_gutter;*/
  }
}

.benefits .benefits__image, .event-calendar .benefits__image {
  max-width: 100%;
  /*        position: absolute;
                right: 0;
                bottom: -69px;
                height: 150px;
                max-width: 100%;*/
  /*        @include bp($b_laptop) {
                    position: relative;
                    right: -50px;
                    height: auto;
                    bottom: 0;
                }*/
}

.benefits h1, .benefits h2, .benefits h3, .benefits h4, .benefits h5, .benefits h6, .event-calendar h1, .event-calendar h2, .event-calendar h3, .event-calendar h4, .event-calendar h5, .event-calendar h6 {
  color: #f6a822;
}

/* =========================================
Contact
========================================= */
.title-banner img {
  vertical-align: middle;
  width: 100%;
}

.content-container {
  *zoom: 1;
}

.content-container:before, .content-container:after {
  content: " ";
  display: table;
}

.content-container:after {
  clear: both;
}

.content-container.theme-bg-primary {
  /*background: #fff;*/
}

@media all and (min-width: 800px) {
  .content-container.theme-bg-primary {
    background: linear-gradient(90deg, #fff7ec 50%, #fff 50%);
  }
}

.content-container > .container, .content-container > .container article {
  *zoom: 1;
}

.content-container > .container:before, .content-container > .container:after, .content-container > .container article:before, .content-container > .container article:after {
  content: " ";
  display: table;
}

.content-container > .container:after, .content-container > .container article:after {
  clear: both;
}

.content-container .content-left, .content-container .content-right {
  float: left;
  width: 50%;
  padding: 30px 50px;
  box-sizing: border-box;
}

.content-container .content-left h1 a, .content-container .content-left h2 a, .content-container .content-left h3 a, .content-container .content-left h4 a, .content-container .content-left h5 a, .content-container .content-left h6 a, .content-container .content-right h1 a, .content-container .content-right h2 a, .content-container .content-right h3 a, .content-container .content-right h4 a, .content-container .content-right h5 a, .content-container .content-right h6 a {
  color: inherit;
  text-decoration: none;
}

.content-container .content-left > h1:first-child, .content-container .content-left > h2:first-child, .content-container .content-right > h1:first-child, .content-container .content-right > h2:first-child {
  font-size: 2.375rem;
  line-height: 1;
  margin-top: 0;
}

.content-container .content-left h1, .content-container .content-left h2, .content-container .content-left h3, .content-container .content-left h4, .content-container .content-left h5, .content-container .content-left h6 {
  color: #f6a822;
}

.content-container .content-left .alt {
  color: #48c0bf;
}

.content-container .content-right h1, .content-container .content-right h2, .content-container .content-right h3, .content-container .content-right h4, .content-container .content-right h5, .content-container .content-right h6 {
  color: #48c0bf;
}

.content-container .content-right .alt {
  color: #f6a822;
}

a.no-style {
  text-decoration: none;
}

img.icon {
  vertical-align: middle;
}

.contact-us .feature {
  overflow: hidden;
  background: #FFF;
}

.contact-us .feature .feature__image img {
  float: left;
}

.contact-us .wrap {
  max-width: 620px;
  margin: 0 0 0 auto;
}

.contact-us .inclusions {
  background: #fff7ec;
  padding: 0 15px;
}

@media all and (min-width: 800px) {
  .contact-us .inclusions {
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-us .inclusions > div {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 50%;
  }
}

.contact-us .inclusions ul {
  padding-left: 15px;
}

.contact-us .inclusions .text {
  padding: 15px 0;
}

.contact-us .inclusions .image {
  background: no-repeat right / cover;
  display: none;
}

@media all and (min-width: 800px) {
  .contact-us .inclusions .image {
    display: block;
  }
}

.contact-us .benefits-wrap {
  padding: 15px;
}

@media all and (min-width: 800px) {
  .contact-us .benefits-wrap {
    padding: 30px 15px;
  }
}

.contact-us .orange h1, .contact-us .orange h2, .contact-us .orange h3, .contact-us .orange h4, .contact-us .orange h5, .contact-us .orange h6 {
  color: #f6a822;
}

.contact-us .blue {
  padding: 0;
}

.contact-us .blue h1, .contact-us .blue h2, .contact-us .blue h3, .contact-us .blue h4, .contact-us .blue h5, .contact-us .blue h6 {
  color: #48c0bf;
}

.contact-us .map-container {
  width: 100%;
}

.contact-us .map-container .map {
  height: 500px;
}

.contact-us .map-container .map img {
  max-width: inherit !important;
}

.contact-us .map-container .map-link {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.title-banner {
  text-align: center;
}

.title-banner .container {
  position: relative;
}

.title-banner h1 {
  text-align: left;
  position: absolute;
  z-index: 1;
  top: 11px;
  right: 25px;
  font-size: 22px;
  color: #fff;
  width: 150px;
  line-height: 1;
}

@media all and (min-width: 600px) {
  .title-banner h1 {
    top: 16px;
    right: 160px;
    font-size: 40px;
  }
}

@media all and (min-width: 800px) {
  .title-banner h1 {
    right: 148px;
    font-size: 53px;
    width: 420px;
  }
}

@media all and (min-width: 1024px) {
  .title-banner h1 {
    font-size: 66px;
    width: 420px;
  }
}

.chevron::before, .faq-container .faq-item .question .indicator::before {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: '';
  display: inline-block;
  position: relative;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  vertical-align: top;
  height: 0.65em;
  width: 0.65em;
  top: 0.15em;
  left: 0.15em;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

.chevron::before.right:before, .faq-container .faq-item .question .indicator::before.right:before {
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.chevron::before.bottom:before, .faq-container .faq-item .question .indicator::before.bottom:before {
  top: 0;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.chevron::before.left:before, .faq-container .faq-item .question .indicator::before.left:before {
  left: 0.25em;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.faq-container {
  padding: 30px 50px 104px 50px;
}

.faq-container .faq-item {
  border-bottom: 1px solid #c2c2c2;
}

.faq-container .faq-item .question {
  color: #48c0bf;
  font-weight: normal;
  font-size: 1.125rem;
  cursor: pointer;
}

.faq-container .faq-item .question .indicator {
  float: right;
}

.faq-container .faq-item .question .indicator:before {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  left: -1.25em;
}

.faq-container .faq-item .answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: all 0.35s ease;
}

.faq-container .faq-item.open .question .indicator:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.faq-container .faq-item.open .answer {
  padding-bottom: 30px;
  max-height: 300px;
}

/* =========================================
Register
========================================= */
.register {
  width: 100%;
  float: none;
  padding: 50px 20px 0;
  box-sizing: border-box;
}

@media all and (min-width: 800px) {
  .register {
    width: 50%;
    float: left;
    padding: 30px 50px;
  }
}

.register h1, .register h2, .register h3, .register h4, .register h5, .register h6 {
  color: #48c0bf;
}

.register form {
  margin: 0 -5px;
}

@media all and (min-width: 800px) {
  .register form {
    margin: 0;
  }
}

.register input[type=text],
.register input[type=email],
.register textarea {
  border: 1px solid #dedede;
  width: 100%;
  box-sizing: border-box;
}

.register input[type=text],
.register input[type=email] {
  padding: 0 20px;
  height: 55px;
  line-height: 55px;
}

.register textarea {
  padding: 20px;
  height: 135px;
}

.register ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #666666;
  font-family: "MuseoSansW01-Rounded300";
  font-size: 13.82px;
}

@media all and (min-width: 800px) {
  .register ::-webkit-input-placeholder {
    font-size: 18px;
  }
}

.register ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666666;
  opacity: 1;
  font-family: "MuseoSansW01-Rounded300";
  font-size: 13.82px;
}

@media all and (min-width: 800px) {
  .register ::-moz-placeholder {
    font-size: 18px;
  }
}

.register :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666666;
  font-family: "MuseoSansW01-Rounded300";
  font-size: 13.82px;
}

@media all and (min-width: 800px) {
  .register :-ms-input-placeholder {
    font-size: 18px;
  }
}

.register input[type=submit] {
  padding: 0 20px;
  height: 75px;
  line-height: 75px;
  background: #48c0bf;
  color: #fff;
  border: 0;
  width: 100%;
  font-size: 24px;
}

@media all and (min-width: 800px) {
  .register input[type=submit] {
    padding: 0 20px;
    height: 68px;
    line-height: 68px;
  }
}

footer .container {
  box-sizing: border-box;
  position: relative;
  text-align: center;
  width: 100%;
}

@media all and (min-width: 800px) {
  footer .container {
    padding: 0 50px;
    text-align: left;
    height: 96px;
    line-height: 96px;
    margin-top: -96px;
    overflow: hidden;
  }
}

footer .container .footer__copyright {
  padding: 20px;
  font-size: 14px;
}

@media all and (min-width: 800px) {
  footer .container .footer__copyright {
    padding: 0;
  }
}

footer .container .footer__copyright a {
  color: #48c0bf;
  text-decoration: none;
}

@media all and (min-width: 800px) {
  footer .container .footer__logos {
    position: absolute;
    right: 50px;
    top: 10px;
  }
}

footer .container .footer__logos .footer__solana-logo {
  height: 55px;
}

footer .container .footer__logos .footer__stockwell-logo {
  display: inline-block;
  padding-left: 20px;
}

footer .container .footer__logos .footer__stockwell-logo img {
  height: 38px;
  padding-top: 15px;
}

/* =========================================
                Event calendar
   ========================================= */
#tribe-events-header, #tribe-events-footer, .tribe-events-list-separator-month, .tribe-events-gmap, .events_link {
  display: none;
}

a.tribe-events-ical.tribe-events-button {
  display: none;
}

h2.tribe-events-list-event-title {
  margin-bottom: 0;
}

a.tribe-event-url {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  line-height: 14px;
  color: #48c0bf;
}

.tribe-event-schedule-details {
  color: #48c0bf;
  text-transform: uppercase;
  font-size: 18px;
}

.tribe-events-read-more {
  color: #48c0bf;
  text-decoration: none;
}

.tribe-events-backa {
  color: #48c0bf;
}

/* =========================================
                Features
   ========================================= */
.feature h1, .feature h2, .feature h3, .feature h4, .feature h5, .feature h6 {
  color: #48c0bf;
}

.inclusions h1, .inclusions h2, .inclusions h3, .inclusions h4, .inclusions h5, .inclusions h6 {
  color: #f6a822;
}

.inclusions ul {
  list-style: none;
}

.inclusions li:before {
  font-family: 'FontAwesome';
  content: "\f0c8";
  margin: 0 5px 0 -15px;
  color: #f6a822;
}

.feature__image {
  display: none;
  width: 30%;
  float: left;
}

.feature__image img {
  width: 100%;
}

@media all and (min-width: 800px) {
  .feature__image {
    display: block;
  }
}

.feature__body > h2, .house-details-secondary > h2 {
  color: #f6a822;
}

.feature__body ul {
  list-style: none;
}

.feature__body li:before {
  font-family: 'FontAwesome';
  content: "\f0c8";
  margin: 0 5px 0 -15px;
  color: #f6a822;
}

.feature__text {
  padding: 0 15px;
}

.feature__text a.icon-down {
  padding-bottom: 32px;
}

@media all and (min-width: 800px) {
  .feature__text {
    width: 65%;
    padding-left: 15px;
    float: right;
  }
}

.home-designs__slider {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 90px 44px 90px;
}

.home-designs__slider .flexslider:hover .flex-prev {
  opacity: 1;
  left: -70px;
  background-color: transparent;
}

.home-designs__slider .flexslider:hover .flex-next {
  opacity: 1;
  right: -70px;
  background-color: transparent;
}

.home-designs__slider ul.flex-direction-nav li .flex-prev {
  height: 50px;
  width: 50px;
  top: 60px;
  left: -70px;
  background-image: url("../img/left.png");
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid white;
  border-radius: 50%;
}

.home-designs__slider ul.flex-direction-nav li .flex-next {
  height: 50px;
  width: 50px;
  top: 60px;
  right: -70px;
  background-image: url("../img/right.png");
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid white;
  border-radius: 50%;
}

.home-designs__slider .metaslider .caption-wrap {
  position: relative;
  opacity: 1;
}

.home-designs__slider .caption {
  background-color: #48c0bf;
  line-height: 1.4em;
  color: white;
  text-decoration: none;
}

/* =========================================
                Submenu
   ========================================= */
.submenu {
  display: none;
  padding: 20px 0;
  background-color: #f6f6f6;
  text-align: center;
}

@media all and (min-width: 800px) {
  .submenu {
    display: block;
  }
}

a.submenu-item {
  text-decoration: none;
  padding-bottom: 20px;
  margin-right: 15px;
  color: #48c0bf;
}

a.submenu-item:hover {
  border-bottom: 2px solid #48c0bf;
}

#home-designs {
  margin-top: -7px;
  /*height: 400px;*/
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: linear-gradient(45deg, #f6a822 0%, #f6a822 50%, #fac910 76%, yellow 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffff00', endColorstr='$c_orange',GradientType=1 );
  /* ie6-9 */
}

.home-designs__title {
  text-align: center;
  padding: 30px 0;
  color: #eee;
  font-size: 28px;
}

.house-details {
  top: -82px;
  /*margin-bottom: -82px;*/
}

.house-details-wrap {
  margin-top: -45px;
  padding: 0 15px;
}

@media all and (min-width: 800px) {
  .house-details-wrap {
    position: relative;
    top: -82px;
    margin-top: 0;
    float: left;
    width: 45%;
  }
}

.house-details-floorplan {
  padding: 0 15px;
}

.house-details-floorplan a.secondary {
  display: inline-block;
  padding-bottom: 15px;
}

@media all and (min-width: 800px) {
  .house-details-floorplan {
    position: relative;
    top: -40px;
    float: right;
    width: 45%;
    margin-top: 25px;
  }
  .house-details-floorplan a.secondary {
    display: none;
  }
}

.house-details-floorplan img {
  max-width: 100%;
}

.house-details-top {
  position: relative;
  bottom: 45px;
  margin: 0 30px;
  padding: 0 20px;
  background-color: #48c0bf;
}

@media all and (min-width: 800px) {
  .house-details-top {
    bottom: 82px;
    margin: 0;
    padding: 0 15px;
  }
}

.house-details-top img {
  height: 22px;
}

@media all and (min-width: 800px) {
  .house-details-top img {
    height: 48px;
  }
}

.house-details-secondary a.primary {
  display: none;
}

@media all and (min-width: 800px) {
  .house-details-secondary a.primary {
    display: inline-block;
  }
}

.house-details-top h1 {
  color: #eee;
}

/* =========================================
                News and Events
   ========================================= */
.page-template-news .title-banner {
  display: none;
}

@media all and (min-width: 1024px) {
  .page-template-news .title-banner {
    display: block;
  }
}

.single-news .title-banner {
  display: none;
}

@media all and (min-width: 1024px) {
  .single-news .title-banner {
    display: block;
  }
}

.news-bg {
  background-color: #fef7eb;
}

.news-section {
  background-color: transparent;
}

.news-section h1, .news-section h2, .news-section h3, .news-section h4, .news-section h5, .news-section h6 {
  color: #f6a822;
}

.events-section {
  padding-left: 15px;
}

@media all and (min-width: 800px) {
  .news-section h2 {
    text-align: center;
  }
}

.news-section .content-left, .news-section .content-right {
  float: left;
  width: 50%;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.news-section .content-left h3, .news-section .content-right h3 {
  margin-top: 0;
  font-weight: 600;
  font-size: 22px;
}

.news-section .content-left .img__wrap, .news-section .content-right .img__wrap {
  border-radius: 50%;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

@media all and (min-width: 800px) {
  .news-section .content-left .img__wrap, .news-section .content-right .img__wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .news-section .content-left .img__wrap > .news__image, .news-section .content-right .img__wrap > .news__image {
    border-radius: 0;
  }
}

.news-section .content-right {
  padding-right: 20px;
}

.news-section .content-right h3, .news-section .content-right p.date, .news-section .content-right a {
  color: #48c0bf;
}

.news-section .content-right p.date {
  text-transform: uppercase;
}

.news-section .content-right a {
  text-decoration: none;
}

.events-section .tribe-events-page-title {
  color: #48c0bf;
}

.news-section,
.events-section {
  padding: 0 15px;
  padding-bottom: 25px;
}

.news-section a,
.events-section a {
  text-decoration: none;
  color: #48c0bf;
}

.news-section a.new-load-archive,
.events-section a.new-load-archive {
  padding: 10px 80px;
  border: 1px solid #48c0bf;
}

.news-section .archive,
.events-section .archive {
  text-align: center;
}

@media all and (min-width: 800px) {
  .news-section,
  .events-section {
    width: 50%;
    float: left;
    box-sizing: border-box;
    position: relative;
  }
}

.news-heading {
  padding: 0 15px;
  border-bottom: 3px solid #eee;
  margin-bottom: 15px;
}

.news-heading h1, .news-heading h2, .news-heading h3, .news-heading h4, .news-heading h5, .news-heading h6 {
  color: #48c0bf;
}

.news-heading p {
  text-transform: uppercase;
}

.back_link {
  text-transform: uppercase;
  text-decoration: none;
  float: right;
  color: #48c0bf;
}

.news-text {
  padding: 0 15px;
}

@media all and (min-width: 800px) {
  .news-text {
    width: 70%;
    float: left;
  }
}

@media all and (min-width: 800px) {
  .news-images {
    padding-left: 15px;
    width: 25%;
    float: left;
  }
}

.news-images img {
  width: 100%;
}

/* =========================================
                Menu
   ========================================= */
.menu {
  display: block;
}

@media all and (min-width: 800px) {
  .menu {
    list-style-type: none;
    display: table;
  }
}

.menu-item {
  display: block;
}

@media all and (min-width: 800px) {
  .menu-item {
    display: table-cell;
    padding-right: 15px;
  }
}

.menu-item a {
  text-decoration: none;
  color: #b0b0af;
}

.menu-item a:hover {
  color: #48c0bf;
}

.main-navigation {
  position: relative;
}

.main-navigation .menu_class {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  width: 100%;
}

@media all and (min-width: 800px) {
  .main-navigation .menu_class {
    max-height: 600px;
    float: none;
    top: 95px;
    position: relative;
    width: auto;
  }
}

@media all and (min-width: 800px) and (min-width: 1024px) {
  .main-navigation .menu_class {
    float: right;
  }
}

.main-navigation .menu-toggle:focus {
  outline: none;
  /*border-color: transparent;*/
}

.main-navigation .menu-toggle {
  display: block;
  border: none;
  background: #fff;
  margin: 0;
  padding: 0;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: block;
   -ms-user-select: block;
       user-select: block;
  position: absolute;
  right: 37px;
  top: 60px;
}

@media all and (min-width: 800px) {
  .main-navigation .menu-toggle {
    display: none;
  }
}

.main-navigation .menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 8px;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
      -ms-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.main-navigation .menu-toggle span.text {
  display: none;
}

.main-navigation .menu-toggle span:nth-child(1) {
  -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

.main-navigation .menu-toggle span:nth-child(3) {
  -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

.main-navigation.toggled .menu-toggle span {
  opacity: 1;
  /*transform: rotate(45deg) translate(-2px, -1px);*/
  background: #232323;
}

.main-navigation.toggled .menu-toggle span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-navigation.toggled .menu-toggle span:nth-child(2) {
  opacity: 0;
  /*transform: rotate(45deg);// scale(0.2, 0.2);*/
}

.main-navigation.toggled .menu-toggle span:nth-child(3) {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.main-navigation.toggled .menu_class {
  max-height: 600px;
  overflow: hidden;
}

/* =========================================
                Misc
   ========================================= */
/* Icon Down */
@-webkit-keyframes icon-down {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes icon-down {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

/* Icon Down */
.icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  text-decoration: none;
  color: #48c0bf;
}

.icon-down:before {
  content: "\f0ab";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.icon-down:hover:before, .icon-down:focus:before, .icon-down:active:before {
  -webkit-animation-name: icon-down;
  animation-name: icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.home-designs__slider ul.slides {
  /* Float */
}

.home-designs__slider ul.slides li.ms-image {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: ease-out;
}

.home-designs__slider ul.slides li.ms-image:hover, .home-designs__slider ul.slides li.ms-image:focus, .home-designs__slider ul.slides li.ms-image:active {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
      transform: translateY(-8px);
}

#features_slider.flexslider ul.slides {
  list-style: none;
  overflow: hidden;
  white-space: nowrap;
}

#features_slider.flexslider ul.slides li {
  max-width: 245px;
  min-height: 185px;
  display: inline-block;
  margin-right: 5px;
  /*width: 235px;*/
}

#features_slider.flexslider ul.slides li a {
  text-decoration: none;
  display: block;
  width: 100%;
}

#features_slider.flexslider ul.slides li img {
  /*width: 100%;*/
  /*width: 235px;*/
}

#features_slider.flexslider ul.slides li .caption-wrap {
  width: 100%;
  box-sizing: border-box;
}

#features_slider.flexslider ul.slides li .caption-wrap .caption {
  *zoom: 1;
}

#features_slider.flexslider ul.slides li .caption-wrap .caption:before, #features_slider.flexslider ul.slides li .caption-wrap .caption:after {
  content: " ";
  display: table;
}

#features_slider.flexslider ul.slides li .caption-wrap .caption:after {
  clear: both;
}

#features_slider.flexslider ul.slides li .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 7px;
}

#features_slider.flexslider ul.slides li .count {
  vertical-align: middle;
}

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