@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?-d3wut2");
  src: url("fonts/icomoon.eot?#iefix-d3wut2") format('embedded-opentype'), url("fonts/icomoon.woff?-d3wut2") format('woff'), url("fonts/icomoon.ttf?-d3wut2") format('truetype'), url("fonts/icomoon.svg?-d3wut2#icomoon") format('svg');
  font-weight: normal;
  font-style: normal;
}
.icon,
.a-block:after,
.a-block.a-block--left:before,
input[type="checkbox"] + label:before,
input[type="radio"] + label:before,
.gallery .bx-prev:before,
.gallery .bx-next:before,
.modal-exit a:before,
.transition:before,
body.errorPage:before {
  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;
}
.icon-profile:before {
  content: "\e639";
}
.icon-close:before,
.modal-exit a:before {
  content: "\e638";
}
.icon-Swallow:before {
  content: "\e600";
}
.icon-Sun3:before {
  content: "\e601";
}
.icon-Sun2:before {
  content: "\e604";
}
.icon-Sun1:before {
  content: "\e605";
}
.icon-Snowflake2:before {
  content: "\e606";
}
.icon-Snowflake1:before {
  content: "\e608";
}
.icon-Paintbrush:before {
  content: "\e60a";
}
.icon-Lotus3:before {
  content: "\e60b";
}
.icon-Lotus2:before {
  content: "\e60c";
}
.icon-Lotus1:before {
  content: "\e60d";
}
.icon-Lightbulb:before {
  content: "\e60e";
}
.icon-Leaves9:before {
  content: "\e60f";
}
.icon-Leaves8:before {
  content: "\e610";
}
.icon-Leaves7:before {
  content: "\e611";
}
.icon-Leaves6:before {
  content: "\e620";
}
.icon-Leaves5:before {
  content: "\e621";
}
.icon-Leaves4:before {
  content: "\e622";
}
.icon-Leaves3:before {
  content: "\e623";
}
.icon-Leaves2:before {
  content: "\e624";
}
.icon-Leaves10:before {
  content: "\e625";
}
.icon-Leaves1:before {
  content: "\e626";
}
.icon-Heart1:before {
  content: "\e627";
}
.icon-HappyHeart:before {
  content: "\e628";
}
.icon-Flower2:before {
  content: "\e629";
}
.icon-Flower1:before {
  content: "\e62a";
}
.icon-Dragonfly:before {
  content: "\e62b";
}
.icon-Dandelion2:before {
  content: "\e62c";
}
.icon-Clover2:before {
  content: "\e62d";
}
.icon-Dandelion1:before {
  content: "\e62e";
}
.icon-Clover1:before {
  content: "\e62f";
}
.icon-Checklist:before {
  content: "\e630";
}
.icon-Butterfly:before {
  content: "\e631";
}
.icon-Award:before {
  content: "\e632";
}
.icon-Clouds:before {
  content: "\e633";
}
.icon-Birds:before,
body.errorPage:before {
  content: "\e634";
}
.icon-Bird:before {
  content: "\e635";
}
.icon-Cloud:before {
  content: "\e636";
}
.icon-double-arrow-down:before {
  content: "\e61d";
}
.icon-double-arrow-left:before,
.a-block.a-block--left:before {
  content: "\e61e";
}
.icon-double-arrow-up:before {
  content: "\e61f";
}
.icon-hamburger:before {
  content: "\e61b";
}
.icon-double-arrow:before,
.a-block:after {
  content: "\e617";
}
.icon-facebook:before {
  content: "\e618";
}
.icon-linkedin:before {
  content: "\e619";
}
.icon-twitter:before {
  content: "\e61a";
}
.icon-search:before {
  content: "\e616";
}
.icon-large-arrow-right:before,
.gallery .bx-next:before {
  content: "\e602";
}
.icon-large-arrow-left:before,
.gallery .bx-prev:before {
  content: "\e603";
}
.icon-hearts:before {
  content: "\e637";
}
.icon-checkmark:before {
  content: "\e607";
}
.icon-checkmark-outlined:before {
  content: "\e609";
}
.icon-arrow-right:before {
  content: "\e612";
}
.icon-arrow-up:before,
.siteMobileNav-items a.is-active .icon:before,
.siteMobileNav-secondaryItems a.is-active .icon:before,
.siteNav-menuItem .icon-arrow-down.is-active:before {
  content: "\e613";
}
.icon-arrow-left:before {
  content: "\e614";
}
.icon-arrow-down:before {
  content: "\e615";
}
.icon-check:before,
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  content: "\e61c";
}
/*!!
section: Naming Conventions
description: |
  In general, the conventions used on this site follow the conventions outlined here: [https://gist.github.com/fat/a47b882eb5f84293c4ed](https://gist.github.com/fat/a47b882eb5f84293c4ed).

  In particular, these are the following key concepts:

  - classes should always be used instead of ids
  - hyphens are used to indicate relationsihps in class names. Hyphens should never be used to simply seperate words in a multi-worded class name
  - multi-word stylus variables should use dashes and not camelCase to more closely mimic CSS syntax (ie. border-bottom-color not borderBottomColor)
  - `js-targetName` : The `js-` prefix should be used to indicate javascript hooks. Elements that use the js prefix should never have styling related to the js prefix itself.
  - `u-utilityName` : Utility classes should use the `u-` prefix. Utility classes are usually single property helper classes like `text-align: center` or `width: 100%`.
  - component names are written in camelCase. ex `.infoTile`
  - component children are seperated by a single dash. ex `.infoTile-title`
  - component modifiers are seperated by two dashes. ex `.infoTile--large` and should when possible be applied to the component root and not a child element of the component
  - component states use the `is-` prefix. ex `.infoTile.is-expanded`. The styles assocaited to `.is-expanded` should always be styled as an ajoining class.
*/
/*!!
section: Folder Structure
description: |
  - objects : Most of the code should ideally live within this directory. The various components of the site are each broken down into their own self-contained stylesheet with the name of the component (ex `_buttons.styl`). These files should use plural names when possible instead of singular (`_buttons.styl` not `_button.styl`). Multi-worded objects should use camelCase (ex. `_infoTiles.styl` not `_info-tiles.styl`). One object file should not depend on another object file, meaning the order that objects are loaded should be irrelevant. 
  - initializers : Code that needs to be loaded before the objects should go here. This would include things that objects would need to reference like colour variables, mixins, etc.
  - pages : Page specific overrides go here. Ideally, these should be used as little as possible, as writing extensive page specific overrides leads to code that is not re-usable.
*/
/*!!
section: Variables
title: Sizing
description: |
  All sizing/spacing throughout Homewood is based on a [modular scale](http://modularscale.com/) with a base of 16. Use the `size(value)` function to calculate values as needed. For example `size(3)` will return `36px`.
jade: iframe(src='http://modularscale.com/scale/?px1=16&px2=&ra1=1.5&ra2=0')
*/
/*!!
section: Colours
title: Swatches
swatches: [{name: darkGrey, value: "#cbcbcf"}, {name: mediumGrey, value: "#e0e0e2"}, {name: lightGrey, value: "#f7f7f8"}, {name: mediumEggplant, value: "#50505F"}, {name: lightEggplant, value: "#93939B"}, {name: error, value: "#E54848"}]
 */
/*!!
  section: Colours
  title: Helper
  description: |
    To apply a colour based on a section, use the `primary-color(selector, attr, opacity[optional])` Stylus function. For example, if you want an object named ".foo" to have the theme colour as its background color you would write the follow...
    primary-color('.foo', 'background-color')
    .foo
      [additional foo styles here]
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*!!
section: Grid
description: |
  The grid system used for Homewood is a modified version of the [CSS Wizardry Grid](https://github.com/csswizardry/csswizardry-grids). The following changes have been made:

  - `.grid__item` is now `.gridItem` to follow the Homewood naming convention
  - the gutter is now 20px (30px at larger breakpoints) instead of 24px
  - new breakpoints, see below
  - phoneAndSmaller = max-width 320px
  - landscapePhoneAndSmaller = max-width 480px
  - landscapePhone = min-width 321px and max-width 480px
  - landscapePhoneAndLarger = min-width 321px
  - tabletAndSmaller = max-width 768px
  - tablet = min-width 481px and max-width 768px
  - tabletAndLarger = min-width 481px
  - landscapeTabletAndSmaller = max-width 1024px
  - landscapeTablet = min-width 769px and max-width 1024px
  - landscapeTabletAndLarger = min-width 769px
  - desktopAndSmaller = max-width 1366px
  - desktop = min-width 1025px and max-width 1366px
  - desktopAndLarger = min-width 1025px
  - largerThanDesktop = min-width 1367px

jade: |
  .grid
    .gridItem.one-third.tabletAndSmaller-one-whole
      .guidedog one-third
    .gridItem.one-third.tabletAndSmaller-one-whole
      .guidedog one-third
    .gridItem.one-third.tabletAndSmaller-one-whole
      .guidedog one-third
*/
.grid {
  font-size: 0;
}
.gridItem {
  font-size: 16px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  transition: padding 0.2s ease-in-out;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}
body {
  margin: 0;
  padding: 0;
}
@media (min-width: 1367px) {
  .grid {
    margin-left: -24px;
  }
  .grid .gridItem {
    padding-left: 24px;
  }
  .grid.grid--narrow {
    margin-left: -12px;
  }
  .grid.grid--narrow > .gridItem {
    padding-left: 12px;
  }
  .grid.grid--wide {
    margin-left: -48px;
  }
  .grid.grid--wide > .gridItem {
    padding-left: 48px;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
}
.grid {
  list-style: none /* [1] */;
  margin: 0 /* [2] */;
  padding: 0 /* [2] */;
  margin-left: -16px /* [3] */;
}
.gridItem {
  display: inline-block /* [1] */;
  padding-left: 16px /* [2] */;
  vertical-align: top /* [3] */;
  width: 100% /* [4] */;
  -webkit-box-sizing: border-box /* [5] */;
  -moz-box-sizing: border-box /* [5] */;
  box-sizing: border-box /* [5] */;
  position: relative;
}
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .gridItem {
  direction: ltr;
  text-align: left;
}
.grid--full {
  margin-left: 0;
}
.grid--full > .gridItem {
  padding-left: 0;
}
.grid--right {
  text-align: right;
}
.grid--right > .gridItem {
  text-align: left;
}
.grid--center {
  text-align: center;
}
.grid--center > .gridItem {
  text-align: left;
}
.grid--middle > .gridItem {
  vertical-align: middle;
}
.grid--bottom > .gridItem {
  vertical-align: bottom;
}
.grid--narrow {
  margin-left: -8px;
}
.grid--narrow > .gridItem {
  padding-left: 8px;
}
.grid--wide {
  margin-left: -48px;
}
.grid--wide > .gridItem {
  padding-left: 48px;
}
.one-whole {
  width: 100%;
}
.one-half {
  width: 50%;
}
.one-third {
  width: 33.33333333333333%;
}
.two-thirds {
  width: 66.66666666666666%;
}
.one-quarter {
  width: 25%;
}
.two-quarters {
  width: 50%;
}
.three-quarters {
  width: 75%;
}
.one-fifth {
  width: 20%;
}
.two-fifths {
  width: 40%;
}
.three-fifths {
  width: 60%;
}
.four-fifths {
  width: 80%;
}
.one-sixth {
  width: 16.666666666666664%;
}
.two-sixths {
  width: 33.33333333333333%;
}
.three-sixths {
  width: 50%;
}
.four-sixths {
  width: 66.66666666666666%;
}
.five-sixths {
  width: 83.33333333333334%;
}
.one-eighth {
  width: 12.5%;
}
.two-eighths {
  width: 25%;
}
.three-eighths {
  width: 37.5%;
}
.four-eighths {
  width: 50%;
}
.five-eighths {
  width: 62.5%;
}
.six-eighths {
  width: 75%;
}
.seven-eighths {
  width: 87.5%;
}
.one-tenth {
  width: 10%;
}
.two-tenths {
  width: 20%;
}
.three-tenths {
  width: 30%;
}
.four-tenths {
  width: 40%;
}
.five-tenths {
  width: 50%;
}
.six-tenths {
  width: 60%;
}
.seven-tenths {
  width: 70%;
}
.eight-tenths {
  width: 80%;
}
.nine-tenths {
  width: 90%;
}
.one-twelfth {
  width: 8.333333333333332%;
}
.two-twelfths {
  width: 16.666666666666664%;
}
.three-twelfths {
  width: 25%;
}
.four-twelfths {
  width: 33.33333333333333%;
}
.five-twelfths {
  width: 41.66666666666667%;
}
.six-twelfths {
  width: 50%;
}
.seven-twelfths {
  width: 58.333333333333336%;
}
.eight-twelfths {
  width: 66.66666666666666%;
}
.nine-twelfths {
  width: 75%;
}
.ten-twelfths {
  width: 83.33333333333334%;
}
.eleven-twelfths {
  width: 91.66666666666666%;
}
@media (min-width: 1367px) {
  .largerThanDesktop-one-whole {
    width: 100%;
  }
  .largerThanDesktop-one-half {
    width: 50%;
  }
  .largerThanDesktop-one-third {
    width: 33.33333333333333%;
  }
  .largerThanDesktop-two-thirds {
    width: 66.66666666666666%;
  }
  .largerThanDesktop-one-quarter {
    width: 25%;
  }
  .largerThanDesktop-two-quarters {
    width: 50%;
  }
  .largerThanDesktop-three-quarters {
    width: 75%;
  }
  .largerThanDesktop-one-fifth {
    width: 20%;
  }
  .largerThanDesktop-two-fifths {
    width: 40%;
  }
  .largerThanDesktop-three-fifths {
    width: 60%;
  }
  .largerThanDesktop-four-fifths {
    width: 80%;
  }
  .largerThanDesktop-one-sixth {
    width: 16.666666666666664%;
  }
  .largerThanDesktop-two-sixths {
    width: 33.33333333333333%;
  }
  .largerThanDesktop-three-sixths {
    width: 50%;
  }
  .largerThanDesktop-four-sixths {
    width: 66.66666666666666%;
  }
  .largerThanDesktop-five-sixths {
    width: 83.33333333333334%;
  }
  .largerThanDesktop-one-eighth {
    width: 12.5%;
  }
  .largerThanDesktop-two-eighths {
    width: 25%;
  }
  .largerThanDesktop-three-eighths {
    width: 37.5%;
  }
  .largerThanDesktop-four-eighths {
    width: 50%;
  }
  .largerThanDesktop-five-eighths {
    width: 62.5%;
  }
  .largerThanDesktop-six-eighths {
    width: 75%;
  }
  .largerThanDesktop-seven-eighths {
    width: 87.5%;
  }
  .largerThanDesktop-one-tenth {
    width: 10%;
  }
  .largerThanDesktop-two-tenths {
    width: 20%;
  }
  .largerThanDesktop-three-tenths {
    width: 30%;
  }
  .largerThanDesktop-four-tenths {
    width: 40%;
  }
  .largerThanDesktop-five-tenths {
    width: 50%;
  }
  .largerThanDesktop-six-tenths {
    width: 60%;
  }
  .largerThanDesktop-seven-tenths {
    width: 70%;
  }
  .largerThanDesktop-eight-tenths {
    width: 80%;
  }
  .largerThanDesktop-nine-tenths {
    width: 90%;
  }
  .largerThanDesktop-one-twelfth {
    width: 8.333333333333332%;
  }
  .largerThanDesktop-two-twelfths {
    width: 16.666666666666664%;
  }
  .largerThanDesktop-three-twelfths {
    width: 25%;
  }
  .largerThanDesktop-four-twelfths {
    width: 33.33333333333333%;
  }
  .largerThanDesktop-five-twelfths {
    width: 41.66666666666667%;
  }
  .largerThanDesktop-six-twelfths {
    width: 50%;
  }
  .largerThanDesktop-seven-twelfths {
    width: 58.333333333333336%;
  }
  .largerThanDesktop-eight-twelfths {
    width: 66.66666666666666%;
  }
  .largerThanDesktop-nine-twelfths {
    width: 75%;
  }
  .largerThanDesktop-ten-twelfths {
    width: 83.33333333333334%;
  }
  .largerThanDesktop-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 1025px) {
  .desktopAndLarger-one-whole {
    width: 100%;
  }
  .desktopAndLarger-one-half {
    width: 50%;
  }
  .desktopAndLarger-one-third {
    width: 33.33333333333333%;
  }
  .desktopAndLarger-two-thirds {
    width: 66.66666666666666%;
  }
  .desktopAndLarger-one-quarter {
    width: 25%;
  }
  .desktopAndLarger-two-quarters {
    width: 50%;
  }
  .desktopAndLarger-three-quarters {
    width: 75%;
  }
  .desktopAndLarger-one-fifth {
    width: 20%;
  }
  .desktopAndLarger-two-fifths {
    width: 40%;
  }
  .desktopAndLarger-three-fifths {
    width: 60%;
  }
  .desktopAndLarger-four-fifths {
    width: 80%;
  }
  .desktopAndLarger-one-sixth {
    width: 16.666666666666664%;
  }
  .desktopAndLarger-two-sixths {
    width: 33.33333333333333%;
  }
  .desktopAndLarger-three-sixths {
    width: 50%;
  }
  .desktopAndLarger-four-sixths {
    width: 66.66666666666666%;
  }
  .desktopAndLarger-five-sixths {
    width: 83.33333333333334%;
  }
  .desktopAndLarger-one-eighth {
    width: 12.5%;
  }
  .desktopAndLarger-two-eighths {
    width: 25%;
  }
  .desktopAndLarger-three-eighths {
    width: 37.5%;
  }
  .desktopAndLarger-four-eighths {
    width: 50%;
  }
  .desktopAndLarger-five-eighths {
    width: 62.5%;
  }
  .desktopAndLarger-six-eighths {
    width: 75%;
  }
  .desktopAndLarger-seven-eighths {
    width: 87.5%;
  }
  .desktopAndLarger-one-tenth {
    width: 10%;
  }
  .desktopAndLarger-two-tenths {
    width: 20%;
  }
  .desktopAndLarger-three-tenths {
    width: 30%;
  }
  .desktopAndLarger-four-tenths {
    width: 40%;
  }
  .desktopAndLarger-five-tenths {
    width: 50%;
  }
  .desktopAndLarger-six-tenths {
    width: 60%;
  }
  .desktopAndLarger-seven-tenths {
    width: 70%;
  }
  .desktopAndLarger-eight-tenths {
    width: 80%;
  }
  .desktopAndLarger-nine-tenths {
    width: 90%;
  }
  .desktopAndLarger-one-twelfth {
    width: 8.333333333333332%;
  }
  .desktopAndLarger-two-twelfths {
    width: 16.666666666666664%;
  }
  .desktopAndLarger-three-twelfths {
    width: 25%;
  }
  .desktopAndLarger-four-twelfths {
    width: 33.33333333333333%;
  }
  .desktopAndLarger-five-twelfths {
    width: 41.66666666666667%;
  }
  .desktopAndLarger-six-twelfths {
    width: 50%;
  }
  .desktopAndLarger-seven-twelfths {
    width: 58.333333333333336%;
  }
  .desktopAndLarger-eight-twelfths {
    width: 66.66666666666666%;
  }
  .desktopAndLarger-nine-twelfths {
    width: 75%;
  }
  .desktopAndLarger-ten-twelfths {
    width: 83.33333333333334%;
  }
  .desktopAndLarger-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .desktop-one-whole {
    width: 100%;
  }
  .desktop-one-half {
    width: 50%;
  }
  .desktop-one-third {
    width: 33.33333333333333%;
  }
  .desktop-two-thirds {
    width: 66.66666666666666%;
  }
  .desktop-one-quarter {
    width: 25%;
  }
  .desktop-two-quarters {
    width: 50%;
  }
  .desktop-three-quarters {
    width: 75%;
  }
  .desktop-one-fifth {
    width: 20%;
  }
  .desktop-two-fifths {
    width: 40%;
  }
  .desktop-three-fifths {
    width: 60%;
  }
  .desktop-four-fifths {
    width: 80%;
  }
  .desktop-one-sixth {
    width: 16.666666666666664%;
  }
  .desktop-two-sixths {
    width: 33.33333333333333%;
  }
  .desktop-three-sixths {
    width: 50%;
  }
  .desktop-four-sixths {
    width: 66.66666666666666%;
  }
  .desktop-five-sixths {
    width: 83.33333333333334%;
  }
  .desktop-one-eighth {
    width: 12.5%;
  }
  .desktop-two-eighths {
    width: 25%;
  }
  .desktop-three-eighths {
    width: 37.5%;
  }
  .desktop-four-eighths {
    width: 50%;
  }
  .desktop-five-eighths {
    width: 62.5%;
  }
  .desktop-six-eighths {
    width: 75%;
  }
  .desktop-seven-eighths {
    width: 87.5%;
  }
  .desktop-one-tenth {
    width: 10%;
  }
  .desktop-two-tenths {
    width: 20%;
  }
  .desktop-three-tenths {
    width: 30%;
  }
  .desktop-four-tenths {
    width: 40%;
  }
  .desktop-five-tenths {
    width: 50%;
  }
  .desktop-six-tenths {
    width: 60%;
  }
  .desktop-seven-tenths {
    width: 70%;
  }
  .desktop-eight-tenths {
    width: 80%;
  }
  .desktop-nine-tenths {
    width: 90%;
  }
  .desktop-one-twelfth {
    width: 8.333333333333332%;
  }
  .desktop-two-twelfths {
    width: 16.666666666666664%;
  }
  .desktop-three-twelfths {
    width: 25%;
  }
  .desktop-four-twelfths {
    width: 33.33333333333333%;
  }
  .desktop-five-twelfths {
    width: 41.66666666666667%;
  }
  .desktop-six-twelfths {
    width: 50%;
  }
  .desktop-seven-twelfths {
    width: 58.333333333333336%;
  }
  .desktop-eight-twelfths {
    width: 66.66666666666666%;
  }
  .desktop-nine-twelfths {
    width: 75%;
  }
  .desktop-ten-twelfths {
    width: 83.33333333333334%;
  }
  .desktop-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (max-width: 1366px) {
  .desktopAndSmaller-one-whole {
    width: 100%;
  }
  .desktopAndSmaller-one-half {
    width: 50%;
  }
  .desktopAndSmaller-one-third {
    width: 33.33333333333333%;
  }
  .desktopAndSmaller-two-thirds {
    width: 66.66666666666666%;
  }
  .desktopAndSmaller-one-quarter {
    width: 25%;
  }
  .desktopAndSmaller-two-quarters {
    width: 50%;
  }
  .desktopAndSmaller-three-quarters {
    width: 75%;
  }
  .desktopAndSmaller-one-fifth {
    width: 20%;
  }
  .desktopAndSmaller-two-fifths {
    width: 40%;
  }
  .desktopAndSmaller-three-fifths {
    width: 60%;
  }
  .desktopAndSmaller-four-fifths {
    width: 80%;
  }
  .desktopAndSmaller-one-sixth {
    width: 16.666666666666664%;
  }
  .desktopAndSmaller-two-sixths {
    width: 33.33333333333333%;
  }
  .desktopAndSmaller-three-sixths {
    width: 50%;
  }
  .desktopAndSmaller-four-sixths {
    width: 66.66666666666666%;
  }
  .desktopAndSmaller-five-sixths {
    width: 83.33333333333334%;
  }
  .desktopAndSmaller-one-eighth {
    width: 12.5%;
  }
  .desktopAndSmaller-two-eighths {
    width: 25%;
  }
  .desktopAndSmaller-three-eighths {
    width: 37.5%;
  }
  .desktopAndSmaller-four-eighths {
    width: 50%;
  }
  .desktopAndSmaller-five-eighths {
    width: 62.5%;
  }
  .desktopAndSmaller-six-eighths {
    width: 75%;
  }
  .desktopAndSmaller-seven-eighths {
    width: 87.5%;
  }
  .desktopAndSmaller-one-tenth {
    width: 10%;
  }
  .desktopAndSmaller-two-tenths {
    width: 20%;
  }
  .desktopAndSmaller-three-tenths {
    width: 30%;
  }
  .desktopAndSmaller-four-tenths {
    width: 40%;
  }
  .desktopAndSmaller-five-tenths {
    width: 50%;
  }
  .desktopAndSmaller-six-tenths {
    width: 60%;
  }
  .desktopAndSmaller-seven-tenths {
    width: 70%;
  }
  .desktopAndSmaller-eight-tenths {
    width: 80%;
  }
  .desktopAndSmaller-nine-tenths {
    width: 90%;
  }
  .desktopAndSmaller-one-twelfth {
    width: 8.333333333333332%;
  }
  .desktopAndSmaller-two-twelfths {
    width: 16.666666666666664%;
  }
  .desktopAndSmaller-three-twelfths {
    width: 25%;
  }
  .desktopAndSmaller-four-twelfths {
    width: 33.33333333333333%;
  }
  .desktopAndSmaller-five-twelfths {
    width: 41.66666666666667%;
  }
  .desktopAndSmaller-six-twelfths {
    width: 50%;
  }
  .desktopAndSmaller-seven-twelfths {
    width: 58.333333333333336%;
  }
  .desktopAndSmaller-eight-twelfths {
    width: 66.66666666666666%;
  }
  .desktopAndSmaller-nine-twelfths {
    width: 75%;
  }
  .desktopAndSmaller-ten-twelfths {
    width: 83.33333333333334%;
  }
  .desktopAndSmaller-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 769px) {
  .landscapeTabletAndLarger-one-whole {
    width: 100%;
  }
  .landscapeTabletAndLarger-one-half {
    width: 50%;
  }
  .landscapeTabletAndLarger-one-third {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndLarger-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndLarger-one-quarter {
    width: 25%;
  }
  .landscapeTabletAndLarger-two-quarters {
    width: 50%;
  }
  .landscapeTabletAndLarger-three-quarters {
    width: 75%;
  }
  .landscapeTabletAndLarger-one-fifth {
    width: 20%;
  }
  .landscapeTabletAndLarger-two-fifths {
    width: 40%;
  }
  .landscapeTabletAndLarger-three-fifths {
    width: 60%;
  }
  .landscapeTabletAndLarger-four-fifths {
    width: 80%;
  }
  .landscapeTabletAndLarger-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapeTabletAndLarger-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndLarger-three-sixths {
    width: 50%;
  }
  .landscapeTabletAndLarger-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndLarger-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapeTabletAndLarger-one-eighth {
    width: 12.5%;
  }
  .landscapeTabletAndLarger-two-eighths {
    width: 25%;
  }
  .landscapeTabletAndLarger-three-eighths {
    width: 37.5%;
  }
  .landscapeTabletAndLarger-four-eighths {
    width: 50%;
  }
  .landscapeTabletAndLarger-five-eighths {
    width: 62.5%;
  }
  .landscapeTabletAndLarger-six-eighths {
    width: 75%;
  }
  .landscapeTabletAndLarger-seven-eighths {
    width: 87.5%;
  }
  .landscapeTabletAndLarger-one-tenth {
    width: 10%;
  }
  .landscapeTabletAndLarger-two-tenths {
    width: 20%;
  }
  .landscapeTabletAndLarger-three-tenths {
    width: 30%;
  }
  .landscapeTabletAndLarger-four-tenths {
    width: 40%;
  }
  .landscapeTabletAndLarger-five-tenths {
    width: 50%;
  }
  .landscapeTabletAndLarger-six-tenths {
    width: 60%;
  }
  .landscapeTabletAndLarger-seven-tenths {
    width: 70%;
  }
  .landscapeTabletAndLarger-eight-tenths {
    width: 80%;
  }
  .landscapeTabletAndLarger-nine-tenths {
    width: 90%;
  }
  .landscapeTabletAndLarger-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapeTabletAndLarger-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapeTabletAndLarger-three-twelfths {
    width: 25%;
  }
  .landscapeTabletAndLarger-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndLarger-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapeTabletAndLarger-six-twelfths {
    width: 50%;
  }
  .landscapeTabletAndLarger-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapeTabletAndLarger-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndLarger-nine-twelfths {
    width: 75%;
  }
  .landscapeTabletAndLarger-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapeTabletAndLarger-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .landscapeTablet-one-whole {
    width: 100%;
  }
  .landscapeTablet-one-half {
    width: 50%;
  }
  .landscapeTablet-one-third {
    width: 33.33333333333333%;
  }
  .landscapeTablet-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapeTablet-one-quarter {
    width: 25%;
  }
  .landscapeTablet-two-quarters {
    width: 50%;
  }
  .landscapeTablet-three-quarters {
    width: 75%;
  }
  .landscapeTablet-one-fifth {
    width: 20%;
  }
  .landscapeTablet-two-fifths {
    width: 40%;
  }
  .landscapeTablet-three-fifths {
    width: 60%;
  }
  .landscapeTablet-four-fifths {
    width: 80%;
  }
  .landscapeTablet-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapeTablet-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapeTablet-three-sixths {
    width: 50%;
  }
  .landscapeTablet-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapeTablet-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapeTablet-one-eighth {
    width: 12.5%;
  }
  .landscapeTablet-two-eighths {
    width: 25%;
  }
  .landscapeTablet-three-eighths {
    width: 37.5%;
  }
  .landscapeTablet-four-eighths {
    width: 50%;
  }
  .landscapeTablet-five-eighths {
    width: 62.5%;
  }
  .landscapeTablet-six-eighths {
    width: 75%;
  }
  .landscapeTablet-seven-eighths {
    width: 87.5%;
  }
  .landscapeTablet-one-tenth {
    width: 10%;
  }
  .landscapeTablet-two-tenths {
    width: 20%;
  }
  .landscapeTablet-three-tenths {
    width: 30%;
  }
  .landscapeTablet-four-tenths {
    width: 40%;
  }
  .landscapeTablet-five-tenths {
    width: 50%;
  }
  .landscapeTablet-six-tenths {
    width: 60%;
  }
  .landscapeTablet-seven-tenths {
    width: 70%;
  }
  .landscapeTablet-eight-tenths {
    width: 80%;
  }
  .landscapeTablet-nine-tenths {
    width: 90%;
  }
  .landscapeTablet-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapeTablet-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapeTablet-three-twelfths {
    width: 25%;
  }
  .landscapeTablet-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapeTablet-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapeTablet-six-twelfths {
    width: 50%;
  }
  .landscapeTablet-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapeTablet-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapeTablet-nine-twelfths {
    width: 75%;
  }
  .landscapeTablet-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapeTablet-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (max-width: 1024px) {
  .landscapeTabletAndSmaller-one-whole {
    width: 100%;
  }
  .landscapeTabletAndSmaller-one-half {
    width: 50%;
  }
  .landscapeTabletAndSmaller-one-third {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndSmaller-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndSmaller-one-quarter {
    width: 25%;
  }
  .landscapeTabletAndSmaller-two-quarters {
    width: 50%;
  }
  .landscapeTabletAndSmaller-three-quarters {
    width: 75%;
  }
  .landscapeTabletAndSmaller-one-fifth {
    width: 20%;
  }
  .landscapeTabletAndSmaller-two-fifths {
    width: 40%;
  }
  .landscapeTabletAndSmaller-three-fifths {
    width: 60%;
  }
  .landscapeTabletAndSmaller-four-fifths {
    width: 80%;
  }
  .landscapeTabletAndSmaller-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapeTabletAndSmaller-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndSmaller-three-sixths {
    width: 50%;
  }
  .landscapeTabletAndSmaller-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndSmaller-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapeTabletAndSmaller-one-eighth {
    width: 12.5%;
  }
  .landscapeTabletAndSmaller-two-eighths {
    width: 25%;
  }
  .landscapeTabletAndSmaller-three-eighths {
    width: 37.5%;
  }
  .landscapeTabletAndSmaller-four-eighths {
    width: 50%;
  }
  .landscapeTabletAndSmaller-five-eighths {
    width: 62.5%;
  }
  .landscapeTabletAndSmaller-six-eighths {
    width: 75%;
  }
  .landscapeTabletAndSmaller-seven-eighths {
    width: 87.5%;
  }
  .landscapeTabletAndSmaller-one-tenth {
    width: 10%;
  }
  .landscapeTabletAndSmaller-two-tenths {
    width: 20%;
  }
  .landscapeTabletAndSmaller-three-tenths {
    width: 30%;
  }
  .landscapeTabletAndSmaller-four-tenths {
    width: 40%;
  }
  .landscapeTabletAndSmaller-five-tenths {
    width: 50%;
  }
  .landscapeTabletAndSmaller-six-tenths {
    width: 60%;
  }
  .landscapeTabletAndSmaller-seven-tenths {
    width: 70%;
  }
  .landscapeTabletAndSmaller-eight-tenths {
    width: 80%;
  }
  .landscapeTabletAndSmaller-nine-tenths {
    width: 90%;
  }
  .landscapeTabletAndSmaller-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapeTabletAndSmaller-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapeTabletAndSmaller-three-twelfths {
    width: 25%;
  }
  .landscapeTabletAndSmaller-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapeTabletAndSmaller-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapeTabletAndSmaller-six-twelfths {
    width: 50%;
  }
  .landscapeTabletAndSmaller-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapeTabletAndSmaller-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapeTabletAndSmaller-nine-twelfths {
    width: 75%;
  }
  .landscapeTabletAndSmaller-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapeTabletAndSmaller-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 481px) {
  .tabletAndLarger-one-whole {
    width: 100%;
  }
  .tabletAndLarger-one-half {
    width: 50%;
  }
  .tabletAndLarger-one-third {
    width: 33.33333333333333%;
  }
  .tabletAndLarger-two-thirds {
    width: 66.66666666666666%;
  }
  .tabletAndLarger-one-quarter {
    width: 25%;
  }
  .tabletAndLarger-two-quarters {
    width: 50%;
  }
  .tabletAndLarger-three-quarters {
    width: 75%;
  }
  .tabletAndLarger-one-fifth {
    width: 20%;
  }
  .tabletAndLarger-two-fifths {
    width: 40%;
  }
  .tabletAndLarger-three-fifths {
    width: 60%;
  }
  .tabletAndLarger-four-fifths {
    width: 80%;
  }
  .tabletAndLarger-one-sixth {
    width: 16.666666666666664%;
  }
  .tabletAndLarger-two-sixths {
    width: 33.33333333333333%;
  }
  .tabletAndLarger-three-sixths {
    width: 50%;
  }
  .tabletAndLarger-four-sixths {
    width: 66.66666666666666%;
  }
  .tabletAndLarger-five-sixths {
    width: 83.33333333333334%;
  }
  .tabletAndLarger-one-eighth {
    width: 12.5%;
  }
  .tabletAndLarger-two-eighths {
    width: 25%;
  }
  .tabletAndLarger-three-eighths {
    width: 37.5%;
  }
  .tabletAndLarger-four-eighths {
    width: 50%;
  }
  .tabletAndLarger-five-eighths {
    width: 62.5%;
  }
  .tabletAndLarger-six-eighths {
    width: 75%;
  }
  .tabletAndLarger-seven-eighths {
    width: 87.5%;
  }
  .tabletAndLarger-one-tenth {
    width: 10%;
  }
  .tabletAndLarger-two-tenths {
    width: 20%;
  }
  .tabletAndLarger-three-tenths {
    width: 30%;
  }
  .tabletAndLarger-four-tenths {
    width: 40%;
  }
  .tabletAndLarger-five-tenths {
    width: 50%;
  }
  .tabletAndLarger-six-tenths {
    width: 60%;
  }
  .tabletAndLarger-seven-tenths {
    width: 70%;
  }
  .tabletAndLarger-eight-tenths {
    width: 80%;
  }
  .tabletAndLarger-nine-tenths {
    width: 90%;
  }
  .tabletAndLarger-one-twelfth {
    width: 8.333333333333332%;
  }
  .tabletAndLarger-two-twelfths {
    width: 16.666666666666664%;
  }
  .tabletAndLarger-three-twelfths {
    width: 25%;
  }
  .tabletAndLarger-four-twelfths {
    width: 33.33333333333333%;
  }
  .tabletAndLarger-five-twelfths {
    width: 41.66666666666667%;
  }
  .tabletAndLarger-six-twelfths {
    width: 50%;
  }
  .tabletAndLarger-seven-twelfths {
    width: 58.333333333333336%;
  }
  .tabletAndLarger-eight-twelfths {
    width: 66.66666666666666%;
  }
  .tabletAndLarger-nine-twelfths {
    width: 75%;
  }
  .tabletAndLarger-ten-twelfths {
    width: 83.33333333333334%;
  }
  .tabletAndLarger-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .tablet-one-whole {
    width: 100%;
  }
  .tablet-one-half {
    width: 50%;
  }
  .tablet-one-third {
    width: 33.33333333333333%;
  }
  .tablet-two-thirds {
    width: 66.66666666666666%;
  }
  .tablet-one-quarter {
    width: 25%;
  }
  .tablet-two-quarters {
    width: 50%;
  }
  .tablet-three-quarters {
    width: 75%;
  }
  .tablet-one-fifth {
    width: 20%;
  }
  .tablet-two-fifths {
    width: 40%;
  }
  .tablet-three-fifths {
    width: 60%;
  }
  .tablet-four-fifths {
    width: 80%;
  }
  .tablet-one-sixth {
    width: 16.666666666666664%;
  }
  .tablet-two-sixths {
    width: 33.33333333333333%;
  }
  .tablet-three-sixths {
    width: 50%;
  }
  .tablet-four-sixths {
    width: 66.66666666666666%;
  }
  .tablet-five-sixths {
    width: 83.33333333333334%;
  }
  .tablet-one-eighth {
    width: 12.5%;
  }
  .tablet-two-eighths {
    width: 25%;
  }
  .tablet-three-eighths {
    width: 37.5%;
  }
  .tablet-four-eighths {
    width: 50%;
  }
  .tablet-five-eighths {
    width: 62.5%;
  }
  .tablet-six-eighths {
    width: 75%;
  }
  .tablet-seven-eighths {
    width: 87.5%;
  }
  .tablet-one-tenth {
    width: 10%;
  }
  .tablet-two-tenths {
    width: 20%;
  }
  .tablet-three-tenths {
    width: 30%;
  }
  .tablet-four-tenths {
    width: 40%;
  }
  .tablet-five-tenths {
    width: 50%;
  }
  .tablet-six-tenths {
    width: 60%;
  }
  .tablet-seven-tenths {
    width: 70%;
  }
  .tablet-eight-tenths {
    width: 80%;
  }
  .tablet-nine-tenths {
    width: 90%;
  }
  .tablet-one-twelfth {
    width: 8.333333333333332%;
  }
  .tablet-two-twelfths {
    width: 16.666666666666664%;
  }
  .tablet-three-twelfths {
    width: 25%;
  }
  .tablet-four-twelfths {
    width: 33.33333333333333%;
  }
  .tablet-five-twelfths {
    width: 41.66666666666667%;
  }
  .tablet-six-twelfths {
    width: 50%;
  }
  .tablet-seven-twelfths {
    width: 58.333333333333336%;
  }
  .tablet-eight-twelfths {
    width: 66.66666666666666%;
  }
  .tablet-nine-twelfths {
    width: 75%;
  }
  .tablet-ten-twelfths {
    width: 83.33333333333334%;
  }
  .tablet-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (max-width: 768px) {
  .tabletAndSmaller-one-whole {
    width: 100%;
  }
  .tabletAndSmaller-one-half {
    width: 50%;
  }
  .tabletAndSmaller-one-third {
    width: 33.33333333333333%;
  }
  .tabletAndSmaller-two-thirds {
    width: 66.66666666666666%;
  }
  .tabletAndSmaller-one-quarter {
    width: 25%;
  }
  .tabletAndSmaller-two-quarters {
    width: 50%;
  }
  .tabletAndSmaller-three-quarters {
    width: 75%;
  }
  .tabletAndSmaller-one-fifth {
    width: 20%;
  }
  .tabletAndSmaller-two-fifths {
    width: 40%;
  }
  .tabletAndSmaller-three-fifths {
    width: 60%;
  }
  .tabletAndSmaller-four-fifths {
    width: 80%;
  }
  .tabletAndSmaller-one-sixth {
    width: 16.666666666666664%;
  }
  .tabletAndSmaller-two-sixths {
    width: 33.33333333333333%;
  }
  .tabletAndSmaller-three-sixths {
    width: 50%;
  }
  .tabletAndSmaller-four-sixths {
    width: 66.66666666666666%;
  }
  .tabletAndSmaller-five-sixths {
    width: 83.33333333333334%;
  }
  .tabletAndSmaller-one-eighth {
    width: 12.5%;
  }
  .tabletAndSmaller-two-eighths {
    width: 25%;
  }
  .tabletAndSmaller-three-eighths {
    width: 37.5%;
  }
  .tabletAndSmaller-four-eighths {
    width: 50%;
  }
  .tabletAndSmaller-five-eighths {
    width: 62.5%;
  }
  .tabletAndSmaller-six-eighths {
    width: 75%;
  }
  .tabletAndSmaller-seven-eighths {
    width: 87.5%;
  }
  .tabletAndSmaller-one-tenth {
    width: 10%;
  }
  .tabletAndSmaller-two-tenths {
    width: 20%;
  }
  .tabletAndSmaller-three-tenths {
    width: 30%;
  }
  .tabletAndSmaller-four-tenths {
    width: 40%;
  }
  .tabletAndSmaller-five-tenths {
    width: 50%;
  }
  .tabletAndSmaller-six-tenths {
    width: 60%;
  }
  .tabletAndSmaller-seven-tenths {
    width: 70%;
  }
  .tabletAndSmaller-eight-tenths {
    width: 80%;
  }
  .tabletAndSmaller-nine-tenths {
    width: 90%;
  }
  .tabletAndSmaller-one-twelfth {
    width: 8.333333333333332%;
  }
  .tabletAndSmaller-two-twelfths {
    width: 16.666666666666664%;
  }
  .tabletAndSmaller-three-twelfths {
    width: 25%;
  }
  .tabletAndSmaller-four-twelfths {
    width: 33.33333333333333%;
  }
  .tabletAndSmaller-five-twelfths {
    width: 41.66666666666667%;
  }
  .tabletAndSmaller-six-twelfths {
    width: 50%;
  }
  .tabletAndSmaller-seven-twelfths {
    width: 58.333333333333336%;
  }
  .tabletAndSmaller-eight-twelfths {
    width: 66.66666666666666%;
  }
  .tabletAndSmaller-nine-twelfths {
    width: 75%;
  }
  .tabletAndSmaller-ten-twelfths {
    width: 83.33333333333334%;
  }
  .tabletAndSmaller-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 321px) {
  .landscapePhoneAndLarger-one-whole {
    width: 100%;
  }
  .landscapePhoneAndLarger-one-half {
    width: 50%;
  }
  .landscapePhoneAndLarger-one-third {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndLarger-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndLarger-one-quarter {
    width: 25%;
  }
  .landscapePhoneAndLarger-two-quarters {
    width: 50%;
  }
  .landscapePhoneAndLarger-three-quarters {
    width: 75%;
  }
  .landscapePhoneAndLarger-one-fifth {
    width: 20%;
  }
  .landscapePhoneAndLarger-two-fifths {
    width: 40%;
  }
  .landscapePhoneAndLarger-three-fifths {
    width: 60%;
  }
  .landscapePhoneAndLarger-four-fifths {
    width: 80%;
  }
  .landscapePhoneAndLarger-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapePhoneAndLarger-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndLarger-three-sixths {
    width: 50%;
  }
  .landscapePhoneAndLarger-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndLarger-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapePhoneAndLarger-one-eighth {
    width: 12.5%;
  }
  .landscapePhoneAndLarger-two-eighths {
    width: 25%;
  }
  .landscapePhoneAndLarger-three-eighths {
    width: 37.5%;
  }
  .landscapePhoneAndLarger-four-eighths {
    width: 50%;
  }
  .landscapePhoneAndLarger-five-eighths {
    width: 62.5%;
  }
  .landscapePhoneAndLarger-six-eighths {
    width: 75%;
  }
  .landscapePhoneAndLarger-seven-eighths {
    width: 87.5%;
  }
  .landscapePhoneAndLarger-one-tenth {
    width: 10%;
  }
  .landscapePhoneAndLarger-two-tenths {
    width: 20%;
  }
  .landscapePhoneAndLarger-three-tenths {
    width: 30%;
  }
  .landscapePhoneAndLarger-four-tenths {
    width: 40%;
  }
  .landscapePhoneAndLarger-five-tenths {
    width: 50%;
  }
  .landscapePhoneAndLarger-six-tenths {
    width: 60%;
  }
  .landscapePhoneAndLarger-seven-tenths {
    width: 70%;
  }
  .landscapePhoneAndLarger-eight-tenths {
    width: 80%;
  }
  .landscapePhoneAndLarger-nine-tenths {
    width: 90%;
  }
  .landscapePhoneAndLarger-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapePhoneAndLarger-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapePhoneAndLarger-three-twelfths {
    width: 25%;
  }
  .landscapePhoneAndLarger-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndLarger-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapePhoneAndLarger-six-twelfths {
    width: 50%;
  }
  .landscapePhoneAndLarger-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapePhoneAndLarger-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndLarger-nine-twelfths {
    width: 75%;
  }
  .landscapePhoneAndLarger-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapePhoneAndLarger-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (min-width: 321px) and (max-width: 480px) {
  .landscapePhone-one-whole {
    width: 100%;
  }
  .landscapePhone-one-half {
    width: 50%;
  }
  .landscapePhone-one-third {
    width: 33.33333333333333%;
  }
  .landscapePhone-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapePhone-one-quarter {
    width: 25%;
  }
  .landscapePhone-two-quarters {
    width: 50%;
  }
  .landscapePhone-three-quarters {
    width: 75%;
  }
  .landscapePhone-one-fifth {
    width: 20%;
  }
  .landscapePhone-two-fifths {
    width: 40%;
  }
  .landscapePhone-three-fifths {
    width: 60%;
  }
  .landscapePhone-four-fifths {
    width: 80%;
  }
  .landscapePhone-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapePhone-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapePhone-three-sixths {
    width: 50%;
  }
  .landscapePhone-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapePhone-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapePhone-one-eighth {
    width: 12.5%;
  }
  .landscapePhone-two-eighths {
    width: 25%;
  }
  .landscapePhone-three-eighths {
    width: 37.5%;
  }
  .landscapePhone-four-eighths {
    width: 50%;
  }
  .landscapePhone-five-eighths {
    width: 62.5%;
  }
  .landscapePhone-six-eighths {
    width: 75%;
  }
  .landscapePhone-seven-eighths {
    width: 87.5%;
  }
  .landscapePhone-one-tenth {
    width: 10%;
  }
  .landscapePhone-two-tenths {
    width: 20%;
  }
  .landscapePhone-three-tenths {
    width: 30%;
  }
  .landscapePhone-four-tenths {
    width: 40%;
  }
  .landscapePhone-five-tenths {
    width: 50%;
  }
  .landscapePhone-six-tenths {
    width: 60%;
  }
  .landscapePhone-seven-tenths {
    width: 70%;
  }
  .landscapePhone-eight-tenths {
    width: 80%;
  }
  .landscapePhone-nine-tenths {
    width: 90%;
  }
  .landscapePhone-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapePhone-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapePhone-three-twelfths {
    width: 25%;
  }
  .landscapePhone-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapePhone-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapePhone-six-twelfths {
    width: 50%;
  }
  .landscapePhone-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapePhone-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapePhone-nine-twelfths {
    width: 75%;
  }
  .landscapePhone-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapePhone-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (max-width: 480px) {
  .landscapePhoneAndSmaller-one-whole {
    width: 100%;
  }
  .landscapePhoneAndSmaller-one-half {
    width: 50%;
  }
  .landscapePhoneAndSmaller-one-third {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndSmaller-two-thirds {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndSmaller-one-quarter {
    width: 25%;
  }
  .landscapePhoneAndSmaller-two-quarters {
    width: 50%;
  }
  .landscapePhoneAndSmaller-three-quarters {
    width: 75%;
  }
  .landscapePhoneAndSmaller-one-fifth {
    width: 20%;
  }
  .landscapePhoneAndSmaller-two-fifths {
    width: 40%;
  }
  .landscapePhoneAndSmaller-three-fifths {
    width: 60%;
  }
  .landscapePhoneAndSmaller-four-fifths {
    width: 80%;
  }
  .landscapePhoneAndSmaller-one-sixth {
    width: 16.666666666666664%;
  }
  .landscapePhoneAndSmaller-two-sixths {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndSmaller-three-sixths {
    width: 50%;
  }
  .landscapePhoneAndSmaller-four-sixths {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndSmaller-five-sixths {
    width: 83.33333333333334%;
  }
  .landscapePhoneAndSmaller-one-eighth {
    width: 12.5%;
  }
  .landscapePhoneAndSmaller-two-eighths {
    width: 25%;
  }
  .landscapePhoneAndSmaller-three-eighths {
    width: 37.5%;
  }
  .landscapePhoneAndSmaller-four-eighths {
    width: 50%;
  }
  .landscapePhoneAndSmaller-five-eighths {
    width: 62.5%;
  }
  .landscapePhoneAndSmaller-six-eighths {
    width: 75%;
  }
  .landscapePhoneAndSmaller-seven-eighths {
    width: 87.5%;
  }
  .landscapePhoneAndSmaller-one-tenth {
    width: 10%;
  }
  .landscapePhoneAndSmaller-two-tenths {
    width: 20%;
  }
  .landscapePhoneAndSmaller-three-tenths {
    width: 30%;
  }
  .landscapePhoneAndSmaller-four-tenths {
    width: 40%;
  }
  .landscapePhoneAndSmaller-five-tenths {
    width: 50%;
  }
  .landscapePhoneAndSmaller-six-tenths {
    width: 60%;
  }
  .landscapePhoneAndSmaller-seven-tenths {
    width: 70%;
  }
  .landscapePhoneAndSmaller-eight-tenths {
    width: 80%;
  }
  .landscapePhoneAndSmaller-nine-tenths {
    width: 90%;
  }
  .landscapePhoneAndSmaller-one-twelfth {
    width: 8.333333333333332%;
  }
  .landscapePhoneAndSmaller-two-twelfths {
    width: 16.666666666666664%;
  }
  .landscapePhoneAndSmaller-three-twelfths {
    width: 25%;
  }
  .landscapePhoneAndSmaller-four-twelfths {
    width: 33.33333333333333%;
  }
  .landscapePhoneAndSmaller-five-twelfths {
    width: 41.66666666666667%;
  }
  .landscapePhoneAndSmaller-six-twelfths {
    width: 50%;
  }
  .landscapePhoneAndSmaller-seven-twelfths {
    width: 58.333333333333336%;
  }
  .landscapePhoneAndSmaller-eight-twelfths {
    width: 66.66666666666666%;
  }
  .landscapePhoneAndSmaller-nine-twelfths {
    width: 75%;
  }
  .landscapePhoneAndSmaller-ten-twelfths {
    width: 83.33333333333334%;
  }
  .landscapePhoneAndSmaller-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
@media (max-width: 320px) {
  .phoneAndSmaller-one-whole {
    width: 100%;
  }
  .phoneAndSmaller-one-half {
    width: 50%;
  }
  .phoneAndSmaller-one-third {
    width: 33.33333333333333%;
  }
  .phoneAndSmaller-two-thirds {
    width: 66.66666666666666%;
  }
  .phoneAndSmaller-one-quarter {
    width: 25%;
  }
  .phoneAndSmaller-two-quarters {
    width: 50%;
  }
  .phoneAndSmaller-three-quarters {
    width: 75%;
  }
  .phoneAndSmaller-one-fifth {
    width: 20%;
  }
  .phoneAndSmaller-two-fifths {
    width: 40%;
  }
  .phoneAndSmaller-three-fifths {
    width: 60%;
  }
  .phoneAndSmaller-four-fifths {
    width: 80%;
  }
  .phoneAndSmaller-one-sixth {
    width: 16.666666666666664%;
  }
  .phoneAndSmaller-two-sixths {
    width: 33.33333333333333%;
  }
  .phoneAndSmaller-three-sixths {
    width: 50%;
  }
  .phoneAndSmaller-four-sixths {
    width: 66.66666666666666%;
  }
  .phoneAndSmaller-five-sixths {
    width: 83.33333333333334%;
  }
  .phoneAndSmaller-one-eighth {
    width: 12.5%;
  }
  .phoneAndSmaller-two-eighths {
    width: 25%;
  }
  .phoneAndSmaller-three-eighths {
    width: 37.5%;
  }
  .phoneAndSmaller-four-eighths {
    width: 50%;
  }
  .phoneAndSmaller-five-eighths {
    width: 62.5%;
  }
  .phoneAndSmaller-six-eighths {
    width: 75%;
  }
  .phoneAndSmaller-seven-eighths {
    width: 87.5%;
  }
  .phoneAndSmaller-one-tenth {
    width: 10%;
  }
  .phoneAndSmaller-two-tenths {
    width: 20%;
  }
  .phoneAndSmaller-three-tenths {
    width: 30%;
  }
  .phoneAndSmaller-four-tenths {
    width: 40%;
  }
  .phoneAndSmaller-five-tenths {
    width: 50%;
  }
  .phoneAndSmaller-six-tenths {
    width: 60%;
  }
  .phoneAndSmaller-seven-tenths {
    width: 70%;
  }
  .phoneAndSmaller-eight-tenths {
    width: 80%;
  }
  .phoneAndSmaller-nine-tenths {
    width: 90%;
  }
  .phoneAndSmaller-one-twelfth {
    width: 8.333333333333332%;
  }
  .phoneAndSmaller-two-twelfths {
    width: 16.666666666666664%;
  }
  .phoneAndSmaller-three-twelfths {
    width: 25%;
  }
  .phoneAndSmaller-four-twelfths {
    width: 33.33333333333333%;
  }
  .phoneAndSmaller-five-twelfths {
    width: 41.66666666666667%;
  }
  .phoneAndSmaller-six-twelfths {
    width: 50%;
  }
  .phoneAndSmaller-seven-twelfths {
    width: 58.333333333333336%;
  }
  .phoneAndSmaller-eight-twelfths {
    width: 66.66666666666666%;
  }
  .phoneAndSmaller-nine-twelfths {
    width: 75%;
  }
  .phoneAndSmaller-ten-twelfths {
    width: 83.33333333333334%;
  }
  .phoneAndSmaller-eleven-twelfths {
    width: 91.66666666666666%;
  }
}
/*!!
section: Utilities
title: Spacers
description: When possible all spacing [should go only down](http://csswizardry.com/2012/06/single-direction-margin-declarations/) and not up.
jade: |
  - for(var i=1; i<=5; i++)
    div(class="guidedog u-spacer"+i) u-spacer#{i}
*/
.u-spacerWrap1 {
  margin-bottom: -16px;
}
.u-spacer1 {
  margin-bottom: 16px;
}
.u-spacerWrap2 {
  margin-bottom: -24px;
}
.u-spacer2 {
  margin-bottom: 24px;
}
.u-spacerWrap3 {
  margin-bottom: -36px;
}
.u-spacer3 {
  margin-bottom: 36px;
}
.u-spacerWrap4 {
  margin-bottom: -54px;
}
.u-spacer4 {
  margin-bottom: 54px;
}
.u-spacerWrap5 {
  margin-bottom: -81px;
}
.u-spacer5 {
  margin-bottom: 81px;
}
.u-spacerWrap6 {
  margin-bottom: -121.5px;
}
.u-spacer6 {
  margin-bottom: 121.5px;
}
.u-spacerWrap7 {
  margin-bottom: -182.25px;
}
.u-spacer7 {
  margin-bottom: 182.25px;
}
.u-spacerWrap8 {
  margin-bottom: -273.375px;
}
.u-spacer8 {
  margin-bottom: 273.375px;
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-spacer0 {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-spacer2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .u-landscapeTabletAndSmaller-spacer2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-spacer3 {
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-spacer4 {
    margin-bottom: 54px;
  }
}
.u-spacerTop1 {
  margin-top: 16px;
}
.u-spacerTop2 {
  margin-top: 24px;
}
.u-spacerTop3 {
  margin-top: 36px;
}
.u-spacerTop4 {
  margin-top: 54px;
}
.u-spacerTop5 {
  margin-top: 81px;
}
.u-spacerTop6 {
  margin-top: 121.5px;
}
.u-spacerTop7 {
  margin-top: 182.25px;
}
.u-spacerTop8 {
  margin-top: 273.375px;
}
.u-spacerRight1 {
  margin-right: 16px;
}
/*!!
section: Utilities
title: Section Spacer
description: Used to add spacing below (between) each individual block
*/
.u-blockSpacer {
  margin-bottom: 81px;
}
@media (max-width: 768px) {
  .u-blockSpacer {
    margin-bottom: 36px;
  }
}
.u-blockChildrenSpacer {
  margin-bottom: 54px;
}
.u-blockChildrenWrap {
  margin-bottom: -54px;
}
.u-blockSpacer--full + .u-blockSpacer--full,
.hero + .transition > .u-blockSpacer--full:first-child {
  margin-top: -81px;
}
.transition:last-child > .u-blockSpacer--full:last-child {
  margin-bottom: 0;
}
/*!!
section: Utilities
title: Font style - Italics
description: Use to change font style to italics
jade: p.u-italic lorem2
*/
.u-italic {
  font-style: italic;
}
/*!!
section: Utilities
title: Font style - Bold
description: Use to change font weight to 'bold'
jade: p.u-bold lorem2
*/
.u-bold {
  font-weight: 500;
}
/*!!
section: Utilities
title: Text Align - Left
description: Use to align text to center
jade: |
  .u-alignLeft
  	p lorem2
*/
.u-alignLeft {
  text-align: left;
}
/*!!
section: Utilities
title: Text Align - Center
description: Use to align text to center
jade: |
  .u-alignCenter
  	p lorem2
*/
.u-alignCenter {
  text-align: center;
}
/*!!
section: Utilities
title: Text Align - Right
description: Use to align text to the right
jade: |
  .u-alignRight
  	p lorem2
*/
.u-alignRight {
  text-align: right;
}
/*!!
section: Utilities
title: Text Align - Center (landscapePhoneAndSmaller)
description: Use to align text to the center on landscapePhoneAndSmaller breakpoint
jade: |
  .u-landscapePhoneAndSmaller-alignCenter
    p lorem2
*/
@media (max-width: 480px) {
  .u-landscapePhoneAndSmaller-alignCenter {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .u-landscapeTabletAndSmaller-alignCenter {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-alignCenter {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .u-tabletAndSmaller-alignLeft {
    text-align: left;
  }
}
/*!!
section: Utilities
title: Primary (section) Color
jade: .u-primaryColor Primary Color
*/
body.blue .u-primaryColor {
  color: #78356a;
}
body.green .u-primaryColor {
  color: #4b8033;
}
body.orange .u-primaryColor {
  color: #c24e00;
}
body.purple .u-primaryColor {
  color: #646faa;
}
body.red .u-primaryColor {
  color: #e02900;
}
body.teal .u-primaryColor {
  color: #2c7d7d;
}
/*!!
section: Utilities
title: Text Color - White
jade: |
  .u-colorWhite
  	p lorem2
*/
.u-colorWhite {
  color: #fff;
}
body .u-hoverColorOrange:hover {
  color: #c24e00 !important;
}
body .u-hoverColorPurple:hover {
  color: #646faa !important;
}
body .u-hoverColorRoyalBlue:hover {
  color: !important;
}
body .u-hoverColorYellow:hover {
  color: !important;
}
body .u-hoverColorGreen:hover {
  color: #4b8033 !important;
}
body .u-hoverColorBlue:hover {
  color: #78356a !important;
}
/*!!
section: Utilities
title: Display - block
jade: |
  .u-block
  	span lorem2
*/
.u-block {
  display: block;
}
/*!!
section: Utilities
title: Display - inline-block
jade: |
  .u-inlineBlock
  	span lorem2
*/
.u-inlineBlock {
  display: inline-block;
}
/*!!
section: Utilities
title: Text Color - lightGrey
jade: |
  .u-lightGrey
  	span lorem2
*/
.u-lightGrey {
  color: #f7f7f8;
}
/*!!
section: Utilities
title: Text Color - mediumGrey
jade: |
  .u-mediumGrey
  	span lorem2
*/
.u-mediumGrey {
  color: #e0e0e2;
}
/*!!
section: Utilities
title: Text Color - darkGrey
jade: |
  .u-darkGrey
  	span lorem2
*/
.u-darkGrey {
  color: #cbcbcf;
}
/*!!
section: Utilities
title: Text Color - lightEggplant
jade: |
  .u-lightEggplant
    span lorem2
*/
.u-lightEggplant {
  color: #93939b;
}
/*!!
section: Utilities
title: Text Color - darkEggplant
jade: |
  .u-darkEggplant
    span lorem2
*/
.u-darkEggplant {
  color: #313b41;
}
/*!!
section: Utilities
title: Background color - lightGrey
description: Set background color to lightGrey
jade: |
  .u-backgroundLightGrey
    span lorem2
*/
.u-backgroundLightGrey,
.post-header {
  background-color: #f7f7f8;
}
/*!!
section: Utilities
title: Uppercase
jade: .u-uppercase uppercase
*/
.u-uppercase {
  text-transform: uppercase;
}
.u-sectionPadding,
.transition {
  padding-top: 81px;
}
@media (max-width: 768px) {
  .u-sectionPadding,
  .transition {
    padding-top: 36px;
  }
}
.u-sectionPaddingReverse {
  margin-top: -81px !important;
}
@media (max-width: 768px) {
  .u-sectionPaddingReverse {
    margin-top: -36px !important;
  }
}
/*!!
section: Utilities
title: Callout
description: Add equal padding to all sides
jade: .u-callout callout
*/
.u-callout {
  padding: 24px;
}
/*!!
section: Utilities
title: No Margin
jade: .u-noMargin no margin
*/
.u-noMargin {
  margin: 0;
}
/*!!
section: Utilities
title: No Padding
jade: .u-noMargin no margin
*/
.u-noPadding {
  padding: 0;
}
/*!!
section: Utilities
title: Full Width
jade: .u-fullWidth full width
*/
.u-fullWidth {
  width: 100%;
}
/*!!
section: Utilities
title: Relative
jade: .u-relative relative positioning
*/
.u-relative,
.transition {
  position: relative;
}
@media (max-width: 480px) {
  .u-landscapePhoneAndSmaller-fullWidth {
    width: 100%;
  }
}
/*!!
section: Utilities
title: Action with chevron
description: Provides animation effect for chevrons
jade: |
  a.a-block.actionWithChevron(href="") I'm a link with a chevron
*/
.u-actionWithChevron,
.a-block {
  position: relative;
}
.u-actionWithChevron:hover,
.a-block:hover {
  text-decoration: none;
}
.u-actionWithChevron:hover:after,
.a-block:hover:after {
  transform: translateX(3px);
}
.u-actionWithChevron.u-actionWithChevron--left:hover:before,
.a-block.u-actionWithChevron--left:hover:before,
.a-block.a-block--left:hover:before {
  transform: translateX(-3px);
}
/*!!
section: Utilities
title: Clearfix
description: General clearfix helper.
jade: .u-clearfix Clearfix
*/
.u-clearfix:after,
.transition:after {
  content: "";
  display: table;
  clear: both;
}
/*!!
section: Utilities
title: .u-squareImage
description: Flexible squarish image
jade: ".u-squareImage(style='background-image:url(http://placehold.it/500x500)')"
*/
.u-squareImage,
.u-wideImage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.u-squareImage:before,
.u-wideImage:before {
  content: '';
  display: block;
  padding-top: 100%;
}
/*!!
section: Utilities
title: .u-wideImage
description: Flexible wide image
jade: ".u-wideImage(style='background-image:url(http://placehold.it/500x500)')"
*/
.u-wideImage:before {
  padding-top: 60%;
}
/*!!
section: Icons
description: All of the icons are part of the same generated custom icon font set. The set is generated by [Icomoon](https://icomoon.io/). To update the icon set, open the Icomoon app in your browser, and upload the selection.json file (found in source/icons/selection.json). Add any new icons as SVGs to the source/icons/svgs folder. Modify the icon set as necessary on Icomoon and then download the updated set. Replace the contents of source/icons with the newly updated ones (be sure to leave the svgs folder as this is not provided by Icomoon).
jade: |
  iframe(src='/assets/icons/demo.html')
  i.icon.icon-arrow-down
*/
/*!!
section: Utilities
title: .u-screenReader
description: Hide element from sighted user but be present (via audio) for screen readers.
jade: .u-screenReader Hello
*/
.u-screenReader {
  position: absolute;
  top: -99999px;
  left: -99999px;
  font-size: 0;
  color: #000;
}
.u-flexContainer {
  display: flex;
  justify-content: flex-start;
}
.u-flexItem {
  width: 170px;
  margin: 0 15px;
}
/*!!
section: Combos
title: Combo (default)
jade: |
  .combo
    .combo-first 
      .guidedog Combo First
    .combo-last
      .guidedog Combo Last
*/
.combo {
  display: table;
  width: 100%;
}
.combo > .combo-first {
  width: 0;
  white-space: nowrap;
}
.combo > .combo-first img {
  max-width: none;
}
.combo > .combo-last {
  width: 100%;
}
.combo-first {
  display: table-cell;
  padding-right: 8px;
  vertical-align: top;
}
@media (min-width: 1367px) {
  .combo-first {
    padding-right: 12px;
  }
}
.combo-last {
  display: table-cell;
  padding-left: 8px;
  vertical-align: top;
}
@media (min-width: 1367px) {
  .combo-last {
    padding-left: 12px;
  }
}
/*!!
section: Combos
title: Combo Reversed
jade: |
  .combo.combo--reversed
    .combo-first 
      .guidedog Combo First
    .combo-last
      .guidedog Combo Last
*/
.combo--reversed > .combo-first {
  width: 100%;
  white-space: normal;
}
.combo--reversed > .combo-last {
  width: 0;
  white-space: nowrap;
}
.combo--reversed > .combo-last img {
  max-width: none;
}
.combo--middle > * {
  vertical-align: middle;
}
.combo--bottom > * {
  vertical-align: bottom;
}
.combo--auto {
  width: auto;
}
.combo--auto > .combo-first {
  width: 0;
}
.combo--auto > .combo-last {
  width: auto;
}
.combo--auto.combo--reversed > .combo-first {
  width: auto;
}
.combo--auto.combo--reversed > .combo-last {
  width: 0;
}
/*!!
section: Combos
title: Combo Narrow
jade: |
  .combo.combo--narrow
    .combo-first 
      .guidedog Combo First
    .combo-last
      .guidedog Combo Last
*/
.combo--narrow > .combo-first {
  padding-right: 4px;
}
.combo--narrow > .combo-last {
  padding-left: 4px;
}
@media (min-width: 1367px) {
  .combo--narrow > .combo-first {
    padding-right: 6px;
  }
  .combo--narrow > .combo-last {
    padding-left: 6px;
  }
}
/*!!
section: Combos
title: Combo Wide
jade: |
  .combo.combo--wide
    .combo-first 
      .guidedog Combo First
    .combo-last
      .guidedog Combo Last
*/
.combo--wide > .combo-first {
  padding-right: 16px;
}
.combo--wide > .combo-last {
  padding-left: 16px;
}
@media (min-width: 1367px) {
  .combo--wide > .combo-first {
    padding-right: 24px;
  }
  .combo--wide > .combo-last {
    padding-left: 24px;
  }
}
/*!!
section: Combos
title: Combo Full
jade: |
  .combo.combo--full
    .combo-first 
      .guidedog Combo First
    .combo-last
      .guidedog Combo Last
*/
.combo--full > .combo-first {
  padding-right: 0;
}
.combo--full > .combo-last {
  padding-left: 0;
}
/*!!
section: Typography
title: Body Copy
jade: div lorem5 
*/
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 2;
  color: #313b41;
}
@media (max-width: 480px) {
  body {
    line-height: 1.85;
  }
}
p {
  margin-top: 0;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}
/*!!
section: Typography
title: Large Line Height
jade: p.p--largeLineHeight lorem3
*/
.p--largeLineHeight {
  line-height: 2.4;
}
/*!!
section: Typography
title: Subtitle
jade: p.p--subtitle lorem3
*/
.p--subtitle {
  font-family: "chaparral-pro";
  font-weight: 400;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #313b41;
}
@media (max-width: 1024px) {
  .p--subtitle {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .p--subtitle {
    font-size: 18px;
  }
}
/*!!
section: Typography
title: CTA Subtitle
jade: p.p--CTASubtitle lorem3
*/
.p--CTASubtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0;
}
/*!!
section: Typography
title: Testimonial
jade: p.p--testimonial lorem3
*/
.p--testimonial {
  font-family: "chaparral-pro";
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
}
/*!!
section: Typography
title: Emphasis
jade: p.p--emphasis lorem3
*/
.p--emphasis {
  font-family: "chaparral-pro";
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #313b41;
}
/*!!
section: Typography
title: Meta
jade: p.p--meta lorem3
*/
.p--meta {
  font-family: "chaparral-pro";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.14px;
}
/*!!
section: Typography
title: Detail
jade: p.p--detail lorem3
*/
.p--detail {
  font-weight: 400;
  font-size: 14px;
}
/*!!
section: Typography
title: Typefaces
jade: |
  .font-roboto-light Roboto Light
  .font-roboto-medium Roboto medium
  .font-chaparral-pro-light Chaparral-pro Light
  .font-chaparral-pro-regular Chaparral-pro Regular
 */
.font-roboto-light {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
.font-roboto-regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.font-roboto-medium {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.font-chaparral-pro-light {
  font-family: "chaparral-pro";
  font-weight: 400;
}
.font-chaparral-pro-regular {
  font-family: "chaparral-pro";
  font-weight: 400;
}
/*!!
section: links
jade: |
  a(href="") link
  <br>
  a.a-block(href="") Link Block
*/
body.blue a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.green a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.orange a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.purple a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.red a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.teal a {
  background-image: linear-gradient(#313b41, #313b41);
}
body.blue a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
body.green a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
body.orange a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
body.purple a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
body.red a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
body.teal a:hover {
  background-image: linear-gradient(#313b41, #313b41);
}
a {
  color: #313b41;
  text-decoration: none;
  position: relative;
  background-size: auto 4px;
  background-repeat: repeat no-repeat;
  background-position: bottom center;
  padding-bottom: 3px;
}
a:hover {
  cursor: pointer;
  background-image: linear-gradient(#00f, #00f);
}
body.blue a:not([class]):after {
  border-color: rgba(120,53,106,0.6);
}
body.green a:not([class]):after {
  border-color: rgba(75,128,51,0.6);
}
body.orange a:not([class]):after {
  border-color: rgba(194,78,0,0.6);
}
body.purple a:not([class]):after {
  border-color: rgba(100,111,170,0.6);
}
body.red a:not([class]):after {
  border-color: rgba(224,41,0,0.6);
}
body.teal a:not([class]):after {
  border-color: rgba(44,125,125,0.6);
}
body.blue a:not([class]):hover:after {
  border-color: rgba(85,37,75,0.6);
}
body.green a:not([class]):hover:after {
  border-color: rgba(54,92,36,0.6);
}
body.orange a:not([class]):hover:after {
  border-color: rgba(143,57,0,0.6);
}
body.purple a:not([class]):hover:after {
  border-color: rgba(78,88,141,0.6);
}
body.red a:not([class]):hover:after {
  border-color: rgba(173,32,0,0.6);
}
body.teal a:not([class]):hover:after {
  border-color: rgba(31,87,87,0.6);
}
body.blue .a-block:hover {
  color: #2e063a;
}
body.green .a-block:hover {
  color: #4f783b;
}
body.orange .a-block:hover {
  color: #bc4c29;
}
body.purple .a-block:hover {
  color: #5d679b;
}
body.red .a-block:hover {
  color: #c3443a;
}
body.teal .a-block:hover {
  color: #2f7575;
}
body.blue .a-block {
  color: #78356a;
}
body.green .a-block {
  color: #4b8033;
}
body.orange .a-block {
  color: #c24e00;
}
body.purple .a-block {
  color: #646faa;
}
body.red .a-block {
  color: #e02900;
}
body.teal .a-block {
  color: #2c7d7d;
}
.a-block {
  font-weight: 500;
  text-decoration: none;
  padding-right: 15px;
  position: relative;
  background-image: none !important;
  padding-bottom: 0;
}
.a-block:hover {
  padding-bottom: 0;
}
.a-block:after {
  display: inline-block;
  font-size: 8px;
  position: relative;
  width: auto;
  top: auto;
  left: auto;
  border: 0;
  padding-left: 8px;
  transition: all 0.2s ease-in-out;
  transform: translateX(0);
}
.a-block.a-block--left:before {
  display: inline-block;
  font-size: 8px;
  position: relative;
  width: auto;
  top: auto;
  left: auto;
  border: 0;
  padding-right: 8px;
  transition: all 0.2s ease-in-out;
  transform: translateX(0);
}
.a-block.a-block--left:after {
  display: none;
}
/*!!
section: Headings
jade: |
  h1 h1 Lorem ipsum dolor sit amet
  h2 h2 Lorem ipsum dolor sit amet
  h3 h3 Lorem ipsum dolor sit amet
  h4 h4 Lorem ipsum dolor sit amet
  h5 h5 Lorem ipsum dolor sit amet
  h6 h6 Lorem ipsum dolor sit amet
*/
h1 {
  font-size: 44px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: -0.96px;
  margin-top: 0;
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  font-size: 40px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: -0.6px;
  margin: 0;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 24px;
  }
}
h3 {
  font-size: 36px;
  font-family: "chaparral-pro";
  font-weight: 400;
  letter-spacing: -0.54px;
  color: #313b41;
  margin-bottom: -18px;
  padding-bottom: 36px;
  line-height: 1.2;
  margin-top: -3px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 24px;
  }
}
h4 {
  font-size: 28px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: -0.42px;
  margin: 0;
}
h5 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "chaparral-pro";
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: -8px;
  padding-bottom: 16px;
  color: #313b41;
}
h6 {
  font-size: 20px;
  line-height: 1.5;
  font-family: "chaparral-pro";
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
  }
}
html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.overflowWrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.layoutWrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.layoutHead {
  display: table-row;
  height: 0;
}
.layoutBody {
  display: table-row;
  height: 100%;
}
.layoutBody-wrapper {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.layoutBody-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/*!!
section: Avatars
jade: |
  .avatar(style="background-image: url('http://placehold.it/200x200/&text=cssexy');")
*/
.avatar {
  border-radius: 50%;
  width: 86px;
  display: inline-block;
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-repeat: no-repeat;
  background-position: center center;
}
.avatar.avatar--small {
  width: 48px;
}
.avatar.avatar--ontheside {
  vertical-align: middle;
  margin-right: 16px;
}
.avatar:before {
  content: '';
  display: block;
  padding-top: 100%;
}
/*!!
section: Buttons
title: Primary Button
jade: |
    a.button.button--primary(href="#") Anchor Button
    input.button.button--primary(type="button", value="Input Button")
    input.button.button--primary(type="submit", value="Submit Button")
*/
.button,
input[type='button'],
input[type='submit'] {
  border: 0;
  color: #fff;
  padding: 12px 58px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  transition: background 0.2s ease-in-out;
  text-align: center;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: none !important;
}
.button:hover,
input[type='button']:hover,
input[type='submit']:hover {
  cursor: pointer;
}
.button.button--small,
input[type='button'].button--small,
input[type='submit'].button--small {
  padding: 8px 27px;
}
body.blue .button--primary {
  background-color: #78356a;
}
body.green .button--primary {
  background-color: #4b8033;
}
body.orange .button--primary {
  background-color: #c24e00;
}
body.purple .button--primary {
  background-color: #646faa;
}
body.red .button--primary {
  background-color: #e02900;
}
body.teal .button--primary {
  background-color: #2c7d7d;
}
body.blue .button--primary:hover {
  background-color: #55254b;
}
body.green .button--primary:hover {
  background-color: #365c24;
}
body.orange .button--primary:hover {
  background-color: #8f3900;
}
body.purple .button--primary:hover {
  background-color: #4e588d;
}
body.red .button--primary:hover {
  background-color: #ad2000;
}
body.teal .button--primary:hover {
  background-color: #1f5757;
}
/*!!
section: Buttons
title: Secondary Button
jade: |
    a.button.button--secondary(href="#") Anchor Button
    input.button.button--secondary(type="button", value="Input Button")
    input.button.button--secondary(type="submit", value="Submit Button")
*/
body.blue .button--secondary {
  background-color: #2e063a;
}
body.green .button--secondary {
  background-color: #4f783b;
}
body.orange .button--secondary {
  background-color: #bc4c29;
}
body.purple .button--secondary {
  background-color: #5d679b;
}
body.red .button--secondary {
  background-color: #c3443a;
}
body.teal .button--secondary {
  background-color: #2f7575;
}
body.blue .button--secondary:hover {
  background-color: #09010c;
}
body.green .button--secondary:hover {
  background-color: #38562a;
}
body.orange .button--secondary:hover {
  background-color: #923b20;
}
body.purple .button--secondary:hover {
  background-color: #4a527b;
}
body.red .button--secondary:hover {
  background-color: #9c362e;
}
body.teal .button--secondary:hover {
  background-color: #205151;
}
/*!!
section: Buttons
title: White Buttons
jade: |
  a.button.button--white(href="#") White Button
*/
body.blue .button--white {
  color: #78356a;
}
body.green .button--white {
  color: #4b8033;
}
body.orange .button--white {
  color: #c24e00;
}
body.purple .button--white {
  color: #646faa;
}
body.red .button--white {
  color: #e02900;
}
body.teal .button--white {
  color: #2c7d7d;
}
.button--white {
  background: #fff;
}
.button--white:hover {
  background: rgba(255,255,255,0.8);
}
/*!!
section: Buttons
title: Gray Buttons
jade: |
  a.button.button--gray(href="#") Gray Button
*/
.button--gray {
  background: #e0e0e2;
  color: #fff;
}
.button--gray:hover {
  background: #cbcbcf;
}
body.blue .skipButton {
  background-color: #55254b;
}
body.green .skipButton {
  background-color: #365c24;
}
body.orange .skipButton {
  background-color: #8f3900;
}
body.purple .skipButton {
  background-color: #4e588d;
}
body.red .skipButton {
  background-color: #ad2000;
}
body.teal .skipButton {
  background-color: #1f5757;
}
.skipButton {
  position: absolute;
  top: -99999px;
  left: -99999px;
  background: #00f;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  display: inline-block;
}
.skipButton:focus,
.skipButton:active {
  position: static;
  top: auto;
  left: auto;
  margin: 10px;
}
/*!!
section: Contact Card
jade: |
  .container
    .grid.grid--wide
      - for (var i = 0; i < 3; ++i)
        .gridItem.landscapeTabletAndLarger-one-third
          .contactCard.u-spacer3
            .contactCard-headshot.u-spacer2(style="background-image: url('http://placehold.it/500x900/&text=cssexy');")
            h5 John A.Smith
            span.u-block.u-spacer1 Some Title Here
            a.u-inlineBlock(href="tel:") 905-881-9793
            br
            a.u-inlineBlock(href="mailto:") sales@homewoodhealth.com 

*/
body.blue .contactCard a:after {
  border-color: rgba(120,53,106,0.6);
}
body.green .contactCard a:after {
  border-color: rgba(75,128,51,0.6);
}
body.orange .contactCard a:after {
  border-color: rgba(194,78,0,0.6);
}
body.purple .contactCard a:after {
  border-color: rgba(100,111,170,0.6);
}
body.red .contactCard a:after {
  border-color: rgba(224,41,0,0.6);
}
body.teal .contactCard a:after {
  border-color: rgba(44,125,125,0.6);
}
.contactCard h5 {
  padding-bottom: 0;
}
.contactCard-headshot {
  position: relative;
  display: block;
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-repeat: no-repeat;
  background-position: center center;
}
.contactCard-headshot:before {
  content: '';
  display: block;
  padding-top: 118%;
}
/*!!
section: Factoids
jade: |
  .factoids(style="background-image: url('/assets/img/factoids-bg.jpg')")
    .container
      .grid.grid--wide
        - for(var i=1; i<=2; i++)
          .gridItem.one-half.landscapeTabletAndSmaller-one-whole
            .factoid
              .grid.grid--center
                .gridItem.desktopAndLarger-one-whole.landscapeTablet-one-third.tablet-three-fifths.landscapePhone-two-thirds.phoneAndSmaller-four-fifths
                  .u-alignCenter
                    span.factoid-heading.u-colorWhite 1883
                    p.p--subtitle.factoid-info Homewood was founded in Guelph Ontario over 130 years ago
*/
body.blue .factoids:before {
  background-color: rgba(120,53,106,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D878356A,endColorstr=#D878356A);
}
body.green .factoids:before {
  background-color: rgba(75,128,51,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D84B8033,endColorstr=#D84B8033);
}
body.orange .factoids:before {
  background-color: rgba(194,78,0,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D8C24E00,endColorstr=#D8C24E00);
}
body.purple .factoids:before {
  background-color: rgba(100,111,170,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D8646FAA,endColorstr=#D8646FAA);
}
body.red .factoids:before {
  background-color: rgba(224,41,0,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D8E02900,endColorstr=#D8E02900);
}
body.teal .factoids:before {
  background-color: rgba(44,125,125,0.85);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D82C7D7D,endColorstr=#D82C7D7D);
}
.factoids {
  position: relative;
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 121.5px 0;
}
.factoids a {
  color: #fff;
  background: none !important;
  text-decoration: underline;
}
.factoids a:hover {
  text-decoration: none;
}
.factoids:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.factoids .factoid-info {
  color: #fff;
  font-family: "chaparral-pro";
  font-size: 20px;
}
@media (max-width: 768px) {
  .factoids {
    padding: 24px 0 81px;
  }
}
@media (max-width: 480px) {
  .factoids {
    padding-top: 70px;
    padding-bottom: 105px;
  }
}
.factoid-heading {
  font-size: 81px;
}
@media (max-width: 480px) {
  .factoid-heading {
    font-size: 54px;
  }
}
@media (max-width: 320px) {
  .factoid-heading {
    font-size: 54px;
  }
}
.factoids--single .factoid-heading {
  font-size: 54px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .factoids--single .factoid-heading {
    line-height: 1.25;
    font-size: 36px;
  }
}
.siteFooter {
  position: relative;
  overflow: hidden;
}
.siteFooter .button {
  white-space: nowrap;
}
body.blue .siteFooter-contact {
  background-color: #78356a;
}
body.green .siteFooter-contact {
  background-color: #4b8033;
}
body.orange .siteFooter-contact {
  background-color: #c24e00;
}
body.purple .siteFooter-contact {
  background-color: #646faa;
}
body.red .siteFooter-contact {
  background-color: #e02900;
}
body.teal .siteFooter-contact {
  background-color: #2c7d7d;
}
.siteFooter-contact {
  padding: 54px 0;
  transition: padding 0.25s ease-in-out;
}
.siteFooter-contact h2 {
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .siteFooter-contact {
    padding: 54px inherit;
  }
  .siteFooter-contact h2 {
    font-size: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .siteFooter-contact {
    padding: 24px inherit;
  }
  .siteFooter-contact h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .siteFooter-contact {
    padding: 60px 24px;
  }
}
.siteFooter-bottom {
  padding: 36px 0 0;
  background-color: #fff;
}
@media (max-width: 320px) {
  .siteFooter-bottom {
    padding-top: 16px;
    padding-bottom: 121.5px;
  }
}
.siteFooter-madeBy {
  padding: 0 0 24px;
  background-color: #fff;
}
@media (max-width: 320px) {
  .siteFooter-madeBy {
    padding-bottom: 121.5px;
  }
}
.siteFooter-madeBy--topSpacing {
  padding-top: 36px;
}
@media (max-width: 320px) {
  .siteFooter-madeBy--topSpacing {
    padding-top: 16px;
  }
}
.siteFooter-slogan {
  font-size: 24px;
  color: #313b41;
  display: block;
}
@media (max-width: 480px) {
  .siteFooter-slogan {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.siteFooter-copyright {
  font-size: 16px;
  color: #000;
  position: relative;
  display: inline-block;
}
@media (max-width: 480px) {
  .siteFooter-copyright {
    font-size: 14px;
  }
}
.siteFooter-background {
  position: absolute;
  right: 100%;
  bottom: 0;
  margin-right: 60px;
  margin-bottom: -128px;
  font-size: 212px;
  color: #e0e0e2;
}
@media (min-width: 481px) and (max-width: 768px) {
  .siteFooter-background {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .siteFooter-background {
    margin-right: 0px;
    bottom: -40px;
  }
}
@media (max-width: 320px) {
  .siteFooter-background {
    right: 50%;
    transform: scale(0.7) translateX(50%);
    bottom: auto;
    top: 280%;
  }
}
.siteFooter-ul {
  padding: 0;
  margin-bottom: 0;
}
.siteFooter-li {
  margin: 0;
}
.siteFooter-span--borderLeft {
  display: inline-block;
  border-left: 2px solid #e0e0e2;
  padding: 0 10px;
  color: #000;
}
@media (max-width: 480px) {
  .siteFooter-span--borderLeft {
    border-left: none;
  }
}
.siteFooter-li:first-child .siteFooter-span--borderLeft {
  border-left: none;
}
body.blue .siteFooter-link--subtle:hover {
  color: #78356a;
}
body.green .siteFooter-link--subtle:hover {
  color: #4b8033;
}
body.orange .siteFooter-link--subtle:hover {
  color: #c24e00;
}
body.purple .siteFooter-link--subtle:hover {
  color: #646faa;
}
body.red .siteFooter-link--subtle:hover {
  color: #e02900;
}
body.teal .siteFooter-link--subtle:hover {
  color: #2c7d7d;
}
.siteFooter-link--subtle {
  background-image: none !important;
  color: #cbcbcf;
  line-height: 1em;
  padding: 10px 0;
}
.siteFooter-link--subtle:hover {
  background-image: none !important;
}
.formGroup {
  margin-bottom: 16px;
  position: relative;
}
/*!!
section: Forms
title: Required Text Field
jade: |
  .formGroup.formGroup--required
    label(for="first-name") Full Name
    input(type="text", id="first-name", placeholder="Jane Smith")
*/
body.blue input[type='email']:focus,
body.blue input[type='text']:focus,
body.blue input[type='password']:focus,
body.blue textarea:focus,
body.blue select:focus {
  border-color: #78356a;
}
body.green input[type='email']:focus,
body.green input[type='text']:focus,
body.green input[type='password']:focus,
body.green textarea:focus,
body.green select:focus {
  border-color: #4b8033;
}
body.orange input[type='email']:focus,
body.orange input[type='text']:focus,
body.orange input[type='password']:focus,
body.orange textarea:focus,
body.orange select:focus {
  border-color: #c24e00;
}
body.purple input[type='email']:focus,
body.purple input[type='text']:focus,
body.purple input[type='password']:focus,
body.purple textarea:focus,
body.purple select:focus {
  border-color: #646faa;
}
body.red input[type='email']:focus,
body.red input[type='text']:focus,
body.red input[type='password']:focus,
body.red textarea:focus,
body.red select:focus {
  border-color: #e02900;
}
body.teal input[type='email']:focus,
body.teal input[type='text']:focus,
body.teal input[type='password']:focus,
body.teal textarea:focus,
body.teal select:focus {
  border-color: #2c7d7d;
}
input[type='email'],
input[type='text'],
input[type='password'],
textarea,
select {
  color: #50505f;
  background-color: #f7f7f8;
  outline: none;
  border: 2px solid #e0e0e2;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 9px;
  display: block;
  width: 100%;
  transition: border-color 0.2s ease-in-out;
}
.formGroup--narrow input[type='email'],
.formGroup--narrow input[type='text'],
.formGroup--narrow input[type='password'],
.formGroup--narrow textarea,
.formGroup--narrow select {
  max-width: 100px;
}
.formGroup--required label:after {
  content: '*';
  margin-left: 3px;
  color: #e54848;
}
/*!!
section: Forms
title: Textarea
jade: |
  .formGroup
    label(for="comments") Additional Comments
    textarea(id="comments")
*/
textarea {
  min-height: 100px;
}
fieldset {
  border: 0;
  border-bottom: 1px solid #e0e0e2;
  padding: 36px 0;
  padding-bottom: 20px;
}
fieldset:first-of-type {
  padding-top: 0;
}
fieldset:last-child {
  border-bottom: 0;
}
legend {
  text-transform: uppercase;
  font-weight: 400;
  color: #313b41;
}
@media (max-width: 768px) {
  legend {
    margin-bottom: 16px;
  }
}
label {
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}
/*!!
section: Forms
title: Select Element
jade: | 
  .formGroup
    label(for="province") Province
    select(id="province")
      option British Columbia
      option Ontario
      option Quebec
*/
select {
  padding-right: 25px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-image: url("/assets/img/select-arrow.png");
}
body.browserFirefox select,
body.browserIE select {
  background-image: none;
  padding-right: 9px;
}
/*!!
section: Forms
title: Checkbox
jade: |
  .formGroup
    input(id="agree", type="checkbox")
    label(for="agree") I agree to all the things!
*/
body.blue input[type="checkbox"] + label:before {
  color: #78356a;
}
body.green input[type="checkbox"] + label:before {
  color: #4b8033;
}
body.orange input[type="checkbox"] + label:before {
  color: #c24e00;
}
body.purple input[type="checkbox"] + label:before {
  color: #646faa;
}
body.red input[type="checkbox"] + label:before {
  color: #e02900;
}
body.teal input[type="checkbox"] + label:before {
  color: #2c7d7d;
}
body.blue input[type="checkbox"] + label:hover:after {
  border-color: #78356a;
}
body.green input[type="checkbox"] + label:hover:after {
  border-color: #4b8033;
}
body.orange input[type="checkbox"] + label:hover:after {
  border-color: #c24e00;
}
body.purple input[type="checkbox"] + label:hover:after {
  border-color: #646faa;
}
body.red input[type="checkbox"] + label:hover:after {
  border-color: #e02900;
}
body.teal input[type="checkbox"] + label:hover:after {
  border-color: #2c7d7d;
}
body.blue input[type="checkbox"]:focus + label:after {
  border-color: #78356a;
}
body.green input[type="checkbox"]:focus + label:after {
  border-color: #4b8033;
}
body.orange input[type="checkbox"]:focus + label:after {
  border-color: #c24e00;
}
body.purple input[type="checkbox"]:focus + label:after {
  border-color: #646faa;
}
body.red input[type="checkbox"]:focus + label:after {
  border-color: #e02900;
}
body.teal input[type="checkbox"]:focus + label:after {
  border-color: #2c7d7d;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  padding-top: 7px;
  padding-left: 50px;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before,
input[type="checkbox"] + label:after,
input[type="radio"] + label:after {
  display: block;
  position: absolute;
}
input[type="checkbox"] + label:after,
input[type="radio"] + label:after {
  left: 0;
  top: 0;
  content: '';
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e2;
  border-radius: 5px;
  z-index: 1;
  transition: border-color 0.2s ease-in-out;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  font-size: 34px;
  left: 3px;
  top: 3px;
  z-index: 2;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  transform: scale(1);
  opacity: 1;
}
body.browserIE input[type="checkbox"],
body.browserIE input[type="radio"] {
  display: inline;
}
body.browserIE input[type="checkbox"] + label,
body.browserIE input[type="radio"] + label {
  padding: 0;
  margin: 0;
  display: inline;
  width: auto;
}
body.browserIE input[type="checkbox"] + label:before,
body.browserIE input[type="radio"] + label:before,
body.browserIE input[type="checkbox"] + label:after,
body.browserIE input[type="radio"] + label:after {
  display: none;
}
/*!!
section: Forms
title: Radio Buttons
jade: |
  .formGroup.formGroup--inline
    label(for="province") Plan Size
    input(type="radio", name="size", id="small", checked="checked") 
    label(for="small") Small
    input(type="radio", name="size", id="medium") 
    label(for="medium") Medium
    input(type="radio", name="size", id="large") 
    label(for="large") Large
*/
body.blue input[type="radio"] + label:hover:after {
  border-color: #78356a;
}
body.green input[type="radio"] + label:hover:after {
  border-color: #4b8033;
}
body.orange input[type="radio"] + label:hover:after {
  border-color: #c24e00;
}
body.purple input[type="radio"] + label:hover:after {
  border-color: #646faa;
}
body.red input[type="radio"] + label:hover:after {
  border-color: #e02900;
}
body.teal input[type="radio"] + label:hover:after {
  border-color: #2c7d7d;
}
body.blue input[type="radio"] + label:before {
  background: #78356a;
}
body.green input[type="radio"] + label:before {
  background: #4b8033;
}
body.orange input[type="radio"] + label:before {
  background: #c24e00;
}
body.purple input[type="radio"] + label:before {
  background: #646faa;
}
body.red input[type="radio"] + label:before {
  background: #e02900;
}
body.teal input[type="radio"] + label:before {
  background: #2c7d7d;
}
input[type="radio"] + label:after {
  background: #fff;
  border-radius: 100%;
}
input[type="radio"] + label:before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 100%;
  left: 7px;
  top: 7px;
}
.formGroup--inline input + label {
  display: inline-block;
  width: auto;
  margin-right: 24px;
}
@media (max-width: 768px) {
  .formGroup--inline input + label {
    margin-right: 0;
    width: 100%;
    display: block;
    margin-bottom: 24px;
  }
}
/*!!
section: Forms
title: Errors
jade: |
  .formGroup.formGroup--narrow.formGroup--error
    label(for="email") Email
    input(type="email", id="email", placeholder="jane@homewood.com")
    .formGroup-error Oops, looks like this isn't a valid email address
*/
.formGroup-error {
  color: #e54848;
  font-size: 14px;
  position: absolute;
  top: 100%;
  left: 0;
}
.formGroup--error label {
  color: #e54848;
}
.formGroup--error input[type='email'],
.formGroup--error input[type='text'],
.formGroup--error input[type='password'],
.formGroup--error textarea,
.formGroup--error select {
  border-color: #e54848;
}
/*!!
section: Funnel Nav
jade: |
  .container
    nav.funnelNav
      ul.js-funnelNav
        - for(var i=1; i<=4; i++)
          li
            - if(i == 2)
              a.is-active(href="#") Nav Item
            - else
              a(href="#") Nav Item
*/
body.blue .funnelNav a.is-active {
  color: #78356a;
}
body.green .funnelNav a.is-active {
  color: #4b8033;
}
body.orange .funnelNav a.is-active {
  color: #c24e00;
}
body.purple .funnelNav a.is-active {
  color: #646faa;
}
body.red .funnelNav a.is-active {
  color: #e02900;
}
body.teal .funnelNav a.is-active {
  color: #2c7d7d;
}
body.blue .funnelNav a:hover {
  color: #78356a;
}
body.green .funnelNav a:hover {
  color: #4b8033;
}
body.orange .funnelNav a:hover {
  color: #c24e00;
}
body.purple .funnelNav a:hover {
  color: #646faa;
}
body.red .funnelNav a:hover {
  color: #e02900;
}
body.teal .funnelNav a:hover {
  color: #2c7d7d;
}
.funnelNav {
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  border-bottom: 1px solid #e0e0e2;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  position: relative;
  max-height: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .funnelNav {
    display: none;
  }
}
.funnelNav.is-active {
  max-height: 150px;
}
.funnelNav ul {
  font-size: 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.funnelNav li {
  display: inline-block;
}
.funnelNav a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 35px 25px;
  color: #313b41;
  background-image: none !important;
  transition: all 0.15s ease-in-out;
}
.funnelNav a img {
  display: block;
  margin: 0 auto 10px;
  opacity: 1;
  transition: all 0.15s ease-in-out;
}
.funnelNav a:not(.is-active):hover,
.funnelNav a:not(.is-active):focus,
.funnelNav a:not(.is-active):active {
  background-color: #f7f7f8;
  color: #313b41 !important;
}
.funnelNav a:not(.is-active):hover img,
.funnelNav a:not(.is-active):focus img,
.funnelNav a:not(.is-active):active img {
  opacity: 1;
}
.funnelNav a:not(.is-active):hover img,
.funnelNav a:not(.is-active):focus img,
.funnelNav a:not(.is-active):active img {
  opacity: 1;
}
body.blue .gallery .bx-pager-link.active:before {
  border-color: #78356a;
}
body.green .gallery .bx-pager-link.active:before {
  border-color: #4b8033;
}
body.orange .gallery .bx-pager-link.active:before {
  border-color: #c24e00;
}
body.purple .gallery .bx-pager-link.active:before {
  border-color: #646faa;
}
body.red .gallery .bx-pager-link.active:before {
  border-color: #e02900;
}
body.teal .gallery .bx-pager-link.active:before {
  border-color: #2c7d7d;
}
.gallery {
  position: relative;
}
.gallery .bx-viewport > ul {
  margin: 0;
  padding: 0;
}
.gallery .bx-viewport > ul > li {
  overflow: hidden;
}
.gallery .bx-pager {
  margin-top: 36px;
}
.gallery .bx-pager-item {
  display: inline-block;
  margin-right: 16px;
}
.gallery .bx-pager-item > a {
  display: block;
}
.gallery .bx-pager-link {
  font-size: 0;
  background-image: none;
}
.gallery .bx-pager-link:hover {
  background-image: none;
}
.gallery .bx-pager-link:before {
  transition: all 0.2s ease-in-out;
  border: 3px solid #e0e0e2;
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  cursor: pointer;
  background: #e0e0e2;
  border-radius: 100%;
}
.gallery .bx-pager-link:hover:before {
  border-color: #93939b;
}
.gallery .bx-pager-link.active:before {
  cursor: default;
  background: #fff;
}
.gallery .bx-prev,
.gallery .bx-next {
  position: absolute;
  top: 50%;
  margin-top: -46px;
  font-size: 0;
  text-decoration: none;
  color: #e0e0e2;
  background-image: none;
}
.gallery .bx-prev:hover,
.gallery .bx-next:hover {
  background-image: none;
}
.gallery .bx-prev:before,
.gallery .bx-next:before {
  font-size: 72px;
  transition: all 0.2s ease-in-out;
}
.gallery .bx-prev:hover:before,
.gallery .bx-next:hover:before {
  color: #93939b;
  background-image: none;
}
.gallery .bx-prev.disabled:before,
.gallery .bx-next.disabled:before {
  color: #e0e0e2 !important;
  opacity: 0.25;
  cursor: default;
}
.gallery .bx-prev {
  right: 100%;
  margin-right: 36px;
}
.gallery .bx-next {
  left: 100%;
  margin-left: 36px;
}
@media (max-width: 768px) {
  .gallery {
    display: none;
  }
}
@media (max-width: 1024px) {
  .gallery {
    margin-left: 100px;
    margin-right: 100px;
  }
}
.gallery--mobile {
  display: none;
}
@media (max-width: 768px) {
  .gallery--mobile {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .gallery--mobile .bx-pager {
    text-align: center;
  }
  .gallery--mobile .bx-prev,
  .gallery--mobile .bx-next {
    display: none;
  }
}
.gallery-caption {
  max-width: 780px;
  font-family: "chaparral-pro";
  font-weight: 300;
  font-style: italic;
  font-size: 21px;
  color: #313b41;
  padding: 24px 16px;
}
.gallery-image {
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-position: center center;
  background-repeat: no-repeat;
}
.gallery-image:before {
  content: '';
  display: block;
}
.gallery--square:before {
  padding-top: 100%;
}
.gallery--wide:before {
  padding-top: 65%;
}
.hero {
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-position: center center;
}
.hero--primary {
  height: 570px;
}
.hero--primary .hero-title {
  font-size: 28px;
  line-height: 1.3;
}
.hero--primary .hero-title p {
  margin-bottom: 0;
}
.hero--primary .hero-subtitle {
  font-size: 16px;
  line-height: 28px;
}
.hero--primary .hero-subtitle p {
  margin-bottom: 0;
}
.hero--primary .hero-inner {
  padding: 54px 0 0 0;
}
@media (max-width: 1024px) {
  .hero--primary {
    position: relative;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 130%;
    height: auto;
    padding-top: 40%;
  }
  .hero--primary .hero-inner {
    padding-top: 36px;
  }
  .hero--primary .container {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero--primary .container {
    width: 100%;
  }
}
.hero-inner {
  padding: 54px 0 273.375px 0;
}
@media (max-width: 1024px) {
  .hero-inner {
    padding: 54px 0 182.25px 0;
  }
}
.hero-custom {
  padding: 615.09375px 0 0 0;
  position: relative;
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 50% 100%;
}
.hero-title {
  color: #313b41;
}
.hero-subtitle {
  color: #313b41;
}
body.blue .hero--secondary .hero-inner {
  background: #78356a;
}
body.green .hero--secondary .hero-inner {
  background: #4b8033;
}
body.orange .hero--secondary .hero-inner {
  background: #c24e00;
}
body.purple .hero--secondary .hero-inner {
  background: #646faa;
}
body.red .hero--secondary .hero-inner {
  background: #e02900;
}
body.teal .hero--secondary .hero-inner {
  background: #2c7d7d;
}
.hero--secondary {
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero--secondary .container {
    padding: 0;
  }
}
.hero--secondary .hero-inner {
  margin-top: 273.375px;
  padding: 24px;
  max-width: 768px;
  overflow: hidden;
}
.hero--secondary .hero-inner h1,
.hero--secondary .hero-inner h2,
.hero--secondary .hero-inner h3,
.hero--secondary .hero-inner h4,
.hero--secondary .hero-inner h5,
.hero--secondary .hero-inner h6 {
  color: #fff;
  margin-top: -15px;
  margin-bottom: -14px !important;
}
@media (max-width: 1024px) {
  .hero--secondary .hero-inner h1,
  .hero--secondary .hero-inner h2,
  .hero--secondary .hero-inner h3,
  .hero--secondary .hero-inner h4,
  .hero--secondary .hero-inner h5,
  .hero--secondary .hero-inner h6 {
    margin-top: -10px;
    margin-bottom: -11px !important;
  }
}
@media (max-width: 480px) {
  .hero--secondary .hero-inner {
    margin-top: 121.5px;
  }
}
/*!!
section: Horizontal Breaks
jade: |
  p lorem3
  hr
  p lorem3
*/
hr {
  border-top: 1px solid #e0e0e2;
  border-bottom: none;
}
/*!!
section: Info Blocks
jade: |
  .infoBlock
    .infoBlock-icon.u-spacer3
      i.icon.icon-checkmark-outlined
    .infoBlock-heading
      h5 Clinical Excellence
    .infoBlock-content.u-spacer1
      p Dr. Phil R. Jones is a Post doctoral Scholar of Internal Medicine at the UC Davis Medical Center.
    .infoBlock-link
      a.a-block(href="") Learn More
*/
.infoBlock-icon {
  font-size: 80px;
  color: #cbcbcf;
  text-align: center;
}
.infoBlock-icon i {
  display: block;
}
/*!!
section: InfoCards
title: Info Cards (default)
jade: |
  .grid
    .gridItem.desktopAndLarger-one-third.landscapeTabletAndSmaller-one-half.landscapePhoneAndSmaller-one-whole
      .infoCard.u-spacer3
        h5 The Journal of Behavioural Health Services and Research
        .infoCard-date 14 Aug 2014 - By Hendry Ton
        p lorem3
        a.a-block.infoCard-link(href="") Read More
    .gridItem.desktopAndLarger-one-third.landscapeTabletAndSmaller-one-half.landscapePhoneAndSmaller-one-whole
      .infoCard.u-spacer3
        h5 The Journal of Foo
        .infoCard-date 14 Aug 2014 - By Hendry Ton
        p lorem2
        a.a-block.infoCard-link(href="") Read More
    .gridItem.desktopAndLarger-one-third.landscapeTabletAndSmaller-one-half.landscapePhoneAndSmaller-one-whole
      .infoCard.u-spacer3
        h5 Stuff
        .infoCard-date 14 Aug 2014 - By Hendry Ton
        p lorem1
        a.a-block.infoCard-link(href="") Read More
*/
body.blue .infoCard {
  border-top-color: #78356a;
}
body.green .infoCard {
  border-top-color: #4b8033;
}
body.orange .infoCard {
  border-top-color: #c24e00;
}
body.purple .infoCard {
  border-top-color: #646faa;
}
body.red .infoCard {
  border-top-color: #e02900;
}
body.teal .infoCard {
  border-top-color: #2c7d7d;
}
.infoCard {
  position: relative;
  background: #fff;
  border-top-style: solid;
  border-top-width: 6px;
  padding: 35px 20px 50px 20px;
  min-height: 325px;
}
@media (max-width: 480px) {
  .infoCard {
    min-height: 0;
  }
}
.infoCard-date {
  padding-bottom: 16px;
  font-family: "chaparral-pro";
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  color: #313b41;
}
.infoCard-link {
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 20px;
  padding-bottom: 0;
  background-image: none;
}
/*!!
section: InfoCards
title: Info Cards Search
jade: |
  .infoCard-searchWrapper
    - for(var i=1; i<=6; i++)
      .infoCard.infoCard--search
        h4.infoCard-type News
        h5 The Journal of Behavioural Health Services and Research
        .infoCard-date 14 Aug 2014 - By Hendry Ton
        p Dr. Lina R. Jones is a Postdoctoral Scholar of Internal Medicine at the UC Davis Medical Center, at the... Center for Reducing Health Disparities...
        a.a-block.infoCard-link(href="") Read More
*/
.infoCard-searchWrapper {
  margin-bottom: -36px;
}
.infoCard--search {
  border-top-width: 1px;
  margin-left: 0;
  border-top-color: #e0e0e2 !important;
  background: transparent;
  margin-bottom: 36px;
  padding: 24px 0 0 0;
  min-height: 0;
}
.infoCard--search:first-child {
  padding-top: 0;
  border-top: 0;
}
.infoCard--search .infoCard-type {
  font-size: 13px;
  font-weight: 500;
  color: #313b41;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.infoCard--search .infoCard-date {
  padding-bottom: 10px;
}
.infoCard--search .infoCard-link {
  left: auto;
  bottom: auto;
  position: relative;
}
.interstitialImage {
  display: block;
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -10%;
}
.interstitialImage:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.legend {
  padding-right: 35px;
}
@media (max-width: 768px) {
  .legend {
    padding-right: 0;
  }
}
body.blue .legend-title,
body.blue .legend-value {
  color: #78356a;
}
body.green .legend-title,
body.green .legend-value {
  color: #4b8033;
}
body.orange .legend-title,
body.orange .legend-value {
  color: #c24e00;
}
body.purple .legend-title,
body.purple .legend-value {
  color: #646faa;
}
body.red .legend-title,
body.red .legend-value {
  color: #e02900;
}
body.teal .legend-title,
body.teal .legend-value {
  color: #2c7d7d;
}
.legend-title {
  padding-left: 5px;
  padding-bottom: 5px;
}
.legend-item {
  cursor: pointer;
  padding: 5px;
  color: #313b41;
  font-size: 14px;
}
.legend-item.active,
.legend-item:hover {
  background-color: #f7f7f8;
}
.legend-footer {
  color: #cbcbcf;
  padding-left: 5px;
  margin-top: 16px;
  font-size: 14px;
}
.legend-footer a {
  text-decoration: none;
}
.list-item {
  border-top: 1px solid #cbcbcf;
  padding: 20px 0;
  color: #cbcbcf;
  font-weight: bold;
}
.list-item:last-child {
  border-bottom: 1px solid #cbcbcf;
}
/*!!
section: Maps
jade: | 
  .map.js-map(data-lat="44.5403", data-lon="-78.5463") map
  .map-info.js-mapInfo
    h5.map-title Head Office
    div 150 Delhi Street, 
    .u-spacer1 Guelph ON, N1E 6K9, Canada
    div 905-455-2454
    .u-spacer1 Open 8am - 6pm Everyday
    a.a-block(href="#") Get Directions
*/
.map {
  height: 375px;
}
.map img {
  max-width: none;
}
.map .gm-style .gm-style-iw {
  left: 28px !important;
  top: 0 !important;
  overflow: visible !important;
  padding: 20px;
  padding-bottom: 5px;
  font-size: 16px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.map .gm-style .gm-style-iw:before,
.map .gm-style .gm-style-iw:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-left: 8px solid #93939b;
  border-bottom: 8px solid transparent;
  z-index: 1;
}
.map .gm-style .gm-style-iw:after {
  z-index: 2;
  border-left-color: #fff;
  margin-left: -1px;
}
body.blue .map-title {
  color: #78356a;
}
body.green .map-title {
  color: #4b8033;
}
body.orange .map-title {
  color: #c24e00;
}
body.purple .map-title {
  color: #646faa;
}
body.red .map-title {
  color: #e02900;
}
body.teal .map-title {
  color: #2c7d7d;
}
.map-title {
  padding-bottom: 16px;
}
.map-info {
  display: none;
}
/*!!
section: Modal
jade: |
  a.js-modalTrigger Open Modal
  .modal
    .modal-card
      .modal-exit
        a.js-closeModal
      h3.u-spacer1 lorem1
      .combo.combo--middle.u-spacer3
        .combo-first
          .avatar.avatar--small(style="background-image: url('http://placehold.it/200x200/&text=cssexy');")
        .combo-last
          h6.u-italic.u-noMargin.u-lightEggplant By Henry Ton - 14 Aug 2014
      hr.u-spacer
      - for(var i=1; i<=5; i++)
        p.p--largeLineHeight.u-spacer3 lorem3
*/
.modal {
  display: none;
  background-color: rgba(0,0,0,0.4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  z-index: 15;
  padding: 36px;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
}
.modal-card {
  padding: 81px;
  display: block;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  max-width: 900px;
  margin: 0 auto;
  z-index: 4;
  position: relative;
}
@media (max-width: 768px) {
  .modal-card {
    padding: 36px;
  }
}
.modal-exit {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}
.modal-exit a {
  display: block;
  line-height: 1.5;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #313b41;
  background-image: none !important;
}
.modal-exit a:hover {
  color: rgba(49,59,65,0.7);
}
/*!!
section: Parallax
jade: |
  .parallax.u-spacer5
    .container
      .grid.grid--wide
        .gridItem.landscapeTabletAndLarger-one-half
          .parallax-effect(data-top-bottom="transform: translateY(60px);", data-bottom-top="transform: translateY(-60px);")
            img(src="http://placehold.it/800x600/&text=cssexy", alt="placehold.it")
        .gridItem.landscapeTabletAndLarger-one-half
          .parallax-effect(data-top-bottom="transform: translateY(-60px);", data-bottom-top="transform: translateY(60px);")
            h3 Our continuum of services can meet all of your needs
            p.p--subtitle.u-spacer2 lorem1
            a.a-block(href="#") Learn more about our services
*/
.parallax-effect[style] {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 768px) {
  .parallax-effect[style] {
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
  }
}
.parallax-effect {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
@media (max-width: 480px) {
  .parallax .p--emphasis {
    margin-bottom: 40px;
  }
}
.post-header {
  border-top: 1px solid #e0e0e2;
  margin-top: -1px;
  padding: 121.5px 0 121.5px 0;
}
@media (max-width: 768px) {
  .post-header {
    padding: 24px 0 16px 0;
  }
}
.post-header .combo {
  display: inline-block;
  width: auto;
}
.post-header .combo-last {
  width: auto;
}
.post-content p,
.post-content img {
  margin-bottom: 36px;
}
@media (min-width: 769px) {
  .post-content img {
    max-width: none;
    width: 200%;
    margin-left: -50%;
  }
}
/*!!
section: Secondary Nav
jade: |
  .container
    nav.secondaryNav
      ul.js-secondaryNav
        - for(var i=1; i<=4; i++)
          li
            - if(i == 2)
              a.is-active(href="#") Nav Item
            - else
              a(href="#") Nav Item
*/
body.blue .secondaryNav a.is-active {
  color: #78356a;
}
body.green .secondaryNav a.is-active {
  color: #4b8033;
}
body.orange .secondaryNav a.is-active {
  color: #c24e00;
}
body.purple .secondaryNav a.is-active {
  color: #646faa;
}
body.red .secondaryNav a.is-active {
  color: #e02900;
}
body.teal .secondaryNav a.is-active {
  color: #2c7d7d;
}
body.blue .secondaryNav a:hover {
  color: #78356a;
}
body.green .secondaryNav a:hover {
  color: #4b8033;
}
body.orange .secondaryNav a:hover {
  color: #c24e00;
}
body.purple .secondaryNav a:hover {
  color: #646faa;
}
body.red .secondaryNav a:hover {
  color: #e02900;
}
body.teal .secondaryNav a:hover {
  color: #2c7d7d;
}
.secondaryNav {
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  border-bottom: 1px solid #313b41;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.secondaryNav ul {
  font-size: 0;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.secondaryNav li {
  display: inline-block;
}
.secondaryNav a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 35px 25px;
  color: #313b41;
  background-image: none !important;
  transition: all 0.15s ease-in-out;
}
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
  body.is-offCanvas .siteMobileNav {
    margin-left: 0;
  }
  body.is-offCanvas .layoutWrapper {
    margin-left: 250px;
  }
  body.is-offCanvas .layoutWrapper:after {
    opacity: 0.5;
    pointer-events: auto;
    cursor: pointer;
  }
}
.siteMobileNav {
  display: none;
  position: fixed;
}
@media (max-width: 1024px) {
  .siteMobileNav {
    background: #f7f7f8;
    display: block;
    width: 250px;
    height: 100%;
    overflow-y: auto;
    position: fixed;
    transition: margin-left 0.2s ease-in-out;
    -webkit-overflow-scrolling: touch;
    top: 0;
    margin-left: -250px;
    z-index: 10;
  }
}
.secondary {
  height: 100%;
  position: absolute;
  overflow-y: scroll;
  top: 0;
  left: 250px;
  transition: left 0.2s ease-in-out;
  background-color: #fff;
  z-index: 10;
  width: 250px;
}
.secondary.selected {
  left: 0;
}
.secondary-nav li .secondary-nav-link {
  color: #424242;
  font-weight: 500;
}
.tertiary-nav li .tertiary-nav-link {
  padding-left: 35px;
}
.backButton p {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .layoutWrapper {
    transition: margin-left 0.2s ease-in-out;
    position: absolute;
    top: 0;
    margin-left: 0;
    width: 100%;
  }
  .layoutWrapper:after {
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    content: '';
    background: #000;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
  }
}
body.browserIE .layoutWrapper:after {
  display: none;
}
body.blue .siteMobileNav-header {
  background: #78356a;
}
body.green .siteMobileNav-header {
  background: #4b8033;
}
body.orange .siteMobileNav-header {
  background: #c24e00;
}
body.purple .siteMobileNav-header {
  background: #646faa;
}
body.red .siteMobileNav-header {
  background: #e02900;
}
body.teal .siteMobileNav-header {
  background: #2c7d7d;
}
.siteMobileNav-header {
  padding: 20px 15px;
  color: #fff;
  height: 77px;
}
.siteMobileNav-logo {
  max-width: 37px !important;
}
.siteMobileNav-wordmark {
  max-width: 115px !important;
  display: block;
}
.siteMobileNav-section {
  font-size: 13px;
}
body.blue .siteMobileNav-search input:focus + label .icon {
  color: #78356a;
}
body.green .siteMobileNav-search input:focus + label .icon {
  color: #4b8033;
}
body.orange .siteMobileNav-search input:focus + label .icon {
  color: #c24e00;
}
body.purple .siteMobileNav-search input:focus + label .icon {
  color: #646faa;
}
body.red .siteMobileNav-search input:focus + label .icon {
  color: #e02900;
}
body.teal .siteMobileNav-search input:focus + label .icon {
  color: #2c7d7d;
}
.siteMobileNav-search {
  position: relative;
}
.siteMobileNav-search .icon {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 15px;
  color: #313b41;
  transition: color 0.2s ease-in-out;
}
.siteMobileNav-search label {
  position: absolute;
  top: 20%;
  left: 0;
}
.siteMobileNav-search input {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background: #f7f7f8;
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: 0;
  padding: 17px 15px;
  padding-left: 40px;
  font-size: 14px;
}
.siteMobileNav-searchLabel {
  font-size: 0;
}
body.blue .siteMobileNav-items a:hover {
  color: #78356a;
}
body.green .siteMobileNav-items a:hover {
  color: #4b8033;
}
body.orange .siteMobileNav-items a:hover {
  color: #c24e00;
}
body.purple .siteMobileNav-items a:hover {
  color: #646faa;
}
body.red .siteMobileNav-items a:hover {
  color: #e02900;
}
body.teal .siteMobileNav-items a:hover {
  color: #2c7d7d;
}
body.blue .siteMobileNav-secondaryItems a:hover {
  color: #78356a;
}
body.green .siteMobileNav-secondaryItems a:hover {
  color: #4b8033;
}
body.orange .siteMobileNav-secondaryItems a:hover {
  color: #c24e00;
}
body.purple .siteMobileNav-secondaryItems a:hover {
  color: #646faa;
}
body.red .siteMobileNav-secondaryItems a:hover {
  color: #e02900;
}
body.teal .siteMobileNav-secondaryItems a:hover {
  color: #2c7d7d;
}
body.blue .siteMobileNav-secondaryItems a.is-active {
  color: #78356a;
}
body.green .siteMobileNav-secondaryItems a.is-active {
  color: #4b8033;
}
body.orange .siteMobileNav-secondaryItems a.is-active {
  color: #c24e00;
}
body.purple .siteMobileNav-secondaryItems a.is-active {
  color: #646faa;
}
body.red .siteMobileNav-secondaryItems a.is-active {
  color: #e02900;
}
body.teal .siteMobileNav-secondaryItems a.is-active {
  color: #2c7d7d;
}
.siteMobileNav-items,
.siteMobileNav-secondaryItems {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.siteMobileNav-items ul,
.siteMobileNav-secondaryItems ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.siteMobileNav-items a,
.siteMobileNav-secondaryItems a {
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #e0e0e2;
  font-size: 16px;
  background-image: none !important;
}
.siteMobileNav-items .backButton .icon,
.siteMobileNav-secondaryItems .backButton .icon {
  font-size: 12px;
}
.siteMobileNav-items .backButton p,
.siteMobileNav-secondaryItems .backButton p {
  font-size: 18px;
  padding-left: 5px;
}
.siteMobileNav-items .icon,
.siteMobileNav-secondaryItems .icon {
  font-size: 10px;
  margin-left: 5px;
}
.siteMobileNav-items a {
  background: #fff;
  color: #313b41;
}
.siteMobileNav-secondaryItems a {
  color: #313b41;
}
body.blue .siteMobileNav-lang:hover {
  color: #78356a;
}
body.green .siteMobileNav-lang:hover {
  color: #4b8033;
}
body.orange .siteMobileNav-lang:hover {
  color: #c24e00;
}
body.purple .siteMobileNav-lang:hover {
  color: #646faa;
}
body.red .siteMobileNav-lang:hover {
  color: #e02900;
}
body.teal .siteMobileNav-lang:hover {
  color: #2c7d7d;
}
.siteMobileNav-lang {
  display: block;
  text-align: center;
  background: transparent !important;
  text-decoration: underline;
  padding: 30px 15px;
  font-size: 14px;
}
body.blue .siteNav {
  background: #78356a;
}
body.green .siteNav {
  background: #4b8033;
}
body.orange .siteNav {
  background: #c24e00;
}
body.purple .siteNav {
  background: #646faa;
}
body.red .siteNav {
  background: #e02900;
}
body.teal .siteNav {
  background: #2c7d7d;
}
.siteNav {
  position: relative;
  z-index: 14;
  transition: all 0.2s ease-in-out;
  padding: 24px 0;
}
.siteNav.is-small {
  padding: 12px 0;
}
.siteNav.is-small .siteNav-subnav {
  top: 111%;
}
@media (max-width: 1024px) {
  .siteNav {
    padding: 12px 0;
  }
}
.siteNav img {
  border: 0;
}
.siteNav a {
  background-image: none !important;
  padding-bottom: 0;
}
.siteNav-inner {
  display: table;
  width: 100%;
}
.siteNav-left {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.siteNav-right {
  display: table-cell;
  width: 0;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .siteNav-right .siteNav-menuItem {
    display: none;
  }
  .siteNav-right .siteNav-menuItemLogin {
    display: inline-block;
  }
}
.siteNav-logo {
  max-width: 39px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: -5px;
}
@media (max-width: 1024px) {
  .siteNav-logo {
    display: none;
  }
}
.siteNav-mobileTrigger {
  display: none;
}
@media (max-width: 1024px) {
  .siteNav-mobileTrigger {
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.5s ease-in-out;
  }
}
body.is-offCanvas .siteNav-mobileTrigger {
  transform: rotate(90deg);
}
.siteNav-wordmark {
  max-width: 167px;
  display: inline-block;
  margin-right: 6px;
}
.siteNav-funnel {
  display: inline-block;
}
@media (max-width: 1024px) {
  .siteNav-funnel {
    display: none;
  }
}
.siteNav-language {
  text-transform: uppercase;
  padding: 0 5px;
  border-width: 2px;
  border-style: solid;
  border-radius: 5px;
  font-size: 13px;
}
.siteNav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: #fff;
}
.siteNav-menuItem {
  font-size: 16px;
  display: inline-block;
  position: relative;
  margin: 0 16px;
}
.siteNav-menuItem > a,
.siteNav-menuItem > .js-modalTrigger > a {
  transition: all 0.2s ease-in-out;
  display: block;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.siteNav-menuItem:hover > a,
.siteNav-menuItem:hover > .js-modalTrigger > a {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.siteNav-menuItem:first-child {
  margin-left: 0;
}
.siteNav-menuItem:last-child {
  margin-right: 0;
}
.siteNav-menuItem .icon-arrow-down {
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .siteNav-menuItem .icon-arrow-down {
    display: none;
  }
}
.siteNav-menuItem:hover .siteNav-subnav {
  max-height: 2000px;
  opacity: 1;
  margin-top: 0;
  transform: scale(1);
}
.siteNav-menuItem:hover .siteNav-subnav--center {
  transform: translateX(-50%) scale(1);
}
.siteNav-menuItem > a:focus + .siteNav-subnav,
.siteNav-menuItem > a:active + .siteNav-subnav {
  max-height: 2000px;
  opacity: 1;
  margin-top: 0;
  transform: scale(1);
}
.siteNav-menuItem > a:focus + .siteNav-subnav--center,
.siteNav-menuItem > a:active + .siteNav-subnav--center {
  transform: translateX(-50%) scale(1);
}
.siteNav-menuItem .siteNav-subnav.is-active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 0;
  transform: scale(1);
}
.siteNav-menuItem .siteNav-subnav--center.is-active {
  transform: translateX(-50%) scale(1);
}
body.browserIE .siteNav-menuItem > a,
body.browserIE .siteNav-menuItem > .js-modalTrigger > a {
  color: #ccc;
}
body.browserIE .siteNav-menuItem:hover > a,
body.browserIE .siteNav-menuItem:hover > .js-modalTrigger > a {
  color: #fff;
}
body.blue .siteNav-subnav a:hover {
  color: #78356a;
}
body.green .siteNav-subnav a:hover {
  color: #4b8033;
}
body.orange .siteNav-subnav a:hover {
  color: #c24e00;
}
body.purple .siteNav-subnav a:hover {
  color: #646faa;
}
body.red .siteNav-subnav a:hover {
  color: #e02900;
}
body.teal .siteNav-subnav a:hover {
  color: #2c7d7d;
}
.siteNav-subnav {
  position: absolute;
  top: 150%;
  transition: all 0.1s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0.1;
  margin-top: -5px;
  transform: scale(0.95);
  text-align: center;
}
@media (max-width: 1024px) {
  .siteNav-subnav {
    display: none;
  }
}
.siteNav-subnav ul {
  line-height: normal;
  position: relative;
  list-style-type: none;
  padding: 30px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  margin: 4px;
  margin-top: 8px;
}
.siteNav-subnav ul:before,
.siteNav-subnav ul:after {
  content: '';
  position: absolute;
  bottom: 100%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e0e0e2;
}
.siteNav-subnav ul:after {
  border-bottom-color: #fff;
  margin-bottom: -1px;
}
.siteNav-subnav li {
  display: block;
}
.siteNav-subnav li:first-child a {
  padding: 5.333333333333333px 0;
}
.siteNav-subnav li:last-child a {
  padding: 5.333333333333333px 0;
}
.siteNav-subnav a {
  transition: color 0.2s ease-in-out;
  display: block;
  padding: 5.333333333333333px 0;
}
.secondaryNavLayout {
  text-align: left;
  white-space: normal;
}
.secondary-nav-link-desktop {
  font-weight: 400;
}
.tertiary-nav-link-desktop {
  font-weight: 300;
}
body.blue .secondaryNavLayout .secondary-nav-link-desktop {
  color: #78356a;
}
body.green .secondaryNavLayout .secondary-nav-link-desktop {
  color: #4b8033;
}
body.orange .secondaryNavLayout .secondary-nav-link-desktop {
  color: #c24e00;
}
body.purple .secondaryNavLayout .secondary-nav-link-desktop {
  color: #646faa;
}
body.red .secondaryNavLayout .secondary-nav-link-desktop {
  color: #e02900;
}
body.teal .secondaryNavLayout .secondary-nav-link-desktop {
  color: #2c7d7d;
}
.siteNav-subnav--left {
  left: -16px;
}
.siteNav-subnav--left ul:before,
.siteNav-subnav--left ul:after {
  left: 10px;
}
.siteNav-subnav--center {
  left: 50%;
  transform: translateX(-50%);
}
.siteNav-subnav--center ul:before,
.siteNav-subnav--center ul:after {
  left: 50%;
  margin-left: -8px;
}
.siteNav-subnav--right {
  right: -16px;
}
.siteNav-subnav--right ul:before,
.siteNav-subnav--right ul:after {
  right: 10px;
}
.siteNav-branding {
  outline: none !important;
}
.hasSubMenu i {
  float: right;
  padding-top: 12px;
}
.siteSearch {
  height: 0;
  background: #fff;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}
.siteSearch form {
  position: relative;
}
.siteSearch-input[type='text'] {
  font-weight: 100;
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 30px;
  border-radius: 0;
  height: 0;
  padding: 0 30px 0 40px;
  transition: all 0.2s ease-in-out;
  color: #000;
}
.siteSearch-icon {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  margin-top: -25px;
  font-size: 28px;
}
.siteSearch-labelText {
  font-size: 0;
  color: #000;
}
body.is-searching .siteSearch {
  height: 100px;
}
body.is-searching .siteSearch-input[type='text'] {
  height: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #000;
}
@media (min-width: 1025px) {
  .ui-carousel {
    margin-bottom: 0 !important;
  }
}
.carousel-dots {
  z-index: 1000;
  bottom: 5% !important;
}
.carousel-dots li button:before {
  font-size: xx-large;
  color: #fff !important;
}
.carousel-dots li.carousel-active button:before {
  opacity: 0.75;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  bottom: 50%;
  z-index: 1000;
}
.carousel-prev button,
.carousel-next button {
  background: transparent;
  border: 0;
  outline: none;
  font-family: ui-carousel;
  font-size: xx-large;
  color: #fff !important;
  opacity: 0.75;
}
.carousel-prev button:hover,
.carousel-next button:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .carousel-prev,
  .carousel-next {
    bottom: 10%;
  }
}
.carousel-prev {
  left: 16px;
}
.carousel-next {
  right: 16px;
}
.carousel-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}
@media (max-width: 1024px) {
  .carousel-overlay {
    padding-bottom: 54px;
  }
}
@media (max-width: 1024px) {
  .hero--primary {
    padding-top: 0;
    background-size: cover;
    height: 575px;
  }
}
.carousel-item {
  color: #fff;
}
.carousel-text {
  padding: 54px 0 24px 0;
  font-size: 36px;
}
@media (max-width: 1024px) {
  .carousel-text {
    padding: 24px 0 24px 0;
    font-size: 24px;
  }
}
.carousel-link,
.carousel-link a {
  font-weight: 500;
  font-family: "chaparral-pro";
  font-size: 24px;
  font-style: italic;
  margin-bottom: 0;
  color: #add8e6;
  background: none !important;
}
.carousel-link:hover,
.carousel-link a:hover {
  color: #87cefa;
}
.social {
  list-style-type: none;
  padding: 0;
  margin-top: 25px;
}
.social li {
  margin-right: 8px;
}
.social li:last-child {
  margin-right: 0;
}
.social a {
  color: #e0e0e2;
  text-decoration: none;
  height: 31px;
  width: 31px;
  border: 2px solid #e0e0e2;
  border-radius: 50%;
  font-size: 10px;
  line-height: 29px;
  transition: all 0.2s ease-in-out;
  padding-bottom: 0;
  background-image: none !important;
}
body.blue .social a:hover {
  color: #78356a;
}
body.green .social a:hover {
  color: #4b8033;
}
body.orange .social a:hover {
  color: #c24e00;
}
body.purple .social a:hover {
  color: #646faa;
}
body.red .social a:hover {
  color: #e02900;
}
body.teal .social a:hover {
  color: #2c7d7d;
}
body.blue .social a:hover {
  border-color: #78356a;
}
body.green .social a:hover {
  border-color: #4b8033;
}
body.orange .social a:hover {
  border-color: #c24e00;
}
body.purple .social a:hover {
  border-color: #646faa;
}
body.red .social a:hover {
  border-color: #e02900;
}
body.teal .social a:hover {
  border-color: #2c7d7d;
}
/*!!
section: Testimonials
title: Single testimonial
jade: |
  .testimonial
    .container
      .grid.grid--center
        .gridItem.landscapeTabletAndLarger-eight-twelfths
          .u-alignCenter
            p.p--testimonial.u-spacer2 "lorem1"
            .testimonial-author.u-spacer1
              span.u-bold.testimonial-authorName - Kristina Sandoval,
              | Former patient
            .avatar(style="background-image: url('http://placehold.it/200x200/&text=cssexy');")
*/
/*!!
section: Testimonials
title: Multiple testimonial
jade: |
  .testimonial
    .container
      .grid.grid--center
        - for(var i = 1; i<=2; i++)
          .gridItem.landscapeTabletAndLarger-one-half
            .u-spacer2
              p.p--testimonial.u-spacer2 "lorem1"
              .testimonial-author.u-spacer2
                span.u-bold.testimonial-authorName - Kristina Sandoval,
                | Former patient
              .avatar(style="background-image: url('http://placehold.it/200x200/&text=cssexy');")
*/
body.blue .testimonial-block {
  background-color: rgba(120,53,106,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#9978356A,endColorstr=#9978356A);
}
body.green .testimonial-block {
  background-color: rgba(75,128,51,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#994B8033,endColorstr=#994B8033);
}
body.orange .testimonial-block {
  background-color: rgba(194,78,0,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99C24E00,endColorstr=#99C24E00);
}
body.purple .testimonial-block {
  background-color: rgba(100,111,170,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99646FAA,endColorstr=#99646FAA);
}
body.red .testimonial-block {
  background-color: rgba(224,41,0,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99E02900,endColorstr=#99E02900);
}
body.teal .testimonial-block {
  background-color: rgba(44,125,125,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#992C7D7D,endColorstr=#992C7D7D);
}
.testimonial {
  position: relative;
  background-size: cover;
  -ms-behavior: url("/assets/js/backgroundsize.min.htc");
  background-repeat: no-repeat;
  background-position: center center;
  padding: 54px 0;
}
@media (max-width: 768px) {
  .testimonial {
    padding: 36px 0;
  }
}
@media (max-width: 480px) {
  .testimonial {
    padding: 24px 0;
  }
}
.testimonial-authorName {
  margin-right: 5px;
}
.testimonial--columns {
  padding: 0;
}
/*!!
section: Testimonials
title: Block testimonial
jade: |
  .testimonial(style="background-image: url('http://placehold.it/1920x600/&text=cssexy');")
    .container
      .grid.grid--center
        .gridItem.landscapeTabletAndLarger-two-fifths.tablet-three-fifths
          .testimonial-block
            p.p--testimonial.u-colorWhite.u-spacer2 "lorem1"
            span.testimonial-author.u-colorWhite
              span.u-bold.testimonial-authorName - Jane Doe,
              | PHD Researcher
*/
.testimonial-block {
  padding: 25px;
}
/*!!
section: Transitions
description: Transition blocks are used to add large swatches of background colour to a section of a page (either white or grey). In addition, icons can also be passed to transition to appear as stylistic background elements. Icons can be positioned using the following transition modifiers - .transition--top, .transition--middle, .transition--bottom for vertical positioning and .transition--left, and .transition-right for horizontal positioning.
*/
.transition:before {
  font-size: 250px;
  color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=05)";
  opacity: 0.05;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .transition:before {
    opacity: 0.02;
  }
}
.transition.u-backgroundLightGrey {
  z-index: 2;
}
.transition--top:before {
  top: 50px;
}
.transition--middle:before {
  top: 50%;
  margin-top: -125px;
}
.transition--bottom:before {
  bottom: 50px;
  top: auto;
}
.transition--left:before {
  left: 50px;
}
.transition--right:before {
  right: 50px;
  left: auto;
}
body.errorPage {
  border-top: 10px solid #78356a;
  overflow: visible;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/assets/img/error-background.jpg");
  padding: 0 16px;
}
body.errorPage:after {
  z-index: 1;
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120,53,106,0.7);
}
body.errorPage:before {
  position: absolute;
  top: 54px;
  right: 121.5px;
  font-size: 200px;
  color: #fff;
  z-index: 2;
}
@media (max-width: 1024px) {
  body.errorPage:before {
    display: none;
  }
}
body.errorPage h1 {
  font-size: 220px;
  margin: -80px 0;
  padding: 0;
  color: #fff;
}
@media (max-width: 768px) {
  body.errorPage h1 {
    font-size: 120px;
  }
}
body.errorPage h1:before {
  content: '';
  padding-top: 30%;
  display: block;
}
@media (max-width: 768px) {
  body.errorPage h1:before {
    padding-top: 15%;
  }
}
body.errorPage p {
  margin: 0;
  margin-top: 54px;
  font-size: 33px;
  line-height: 40px;
  font-family: "chaparral-pro";
  font-weight: 400;
  letter-spacing: -0.54px;
  color: #fff;
}
body.errorPage .button {
  margin-top: 36px;
  background: rgba(255,255,255,0.9);
  color: #78356a;
}
body.errorPage .button:hover {
  background: #fff;
}
.errorPage-inner {
  text-align: center;
  max-width: 530px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
