/* style.scss */
/**
 * em()
 * -------------
 * Calculate em value from pixels factoring in base font size (16px)
 */
/**
 * strip-unit()
 * Strip a value that has units to be just the integer.
 */
/**
 * calculate-rem()
 * Calcualte the rem value using base 16px font sizing.
 */
/** 
 * VERTICAL ALIGN
 */
/** 
 * UL-BLANK
 */
/** 
 * INLINE-BLOCK
 */
/** 
 * BG-SHORTHAND
 */
/** 
 * MP0
 */
/** 
 * HIDE TEXT
 */
/** 
 * FLEXBOX (fauxflex)
 */
/** 
 * TABLE / TABLE CELL
 */
@import url(../components/icomoon/icomoon.css);
@import url(../components/normalize.css/normalize.css);
@import url(../components/animate.css/animate.min.css);
@import url(../components/font-awesome/css/font-awesome.min.css);
.table {
  display: table;
  text-align: center;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

/** 
 * EMPTY-BUTTON
 */
/** 
 * KEYFRAMES
 */
/** 
 * ANIMATION EX:-webkit-animation: name 1s infinite;
 */
/**
 * FONTAWESOME
 */
/* _config.scss */
/**
 * Grid Settings
 * Width settings for media queries in pixels
 * REQUIRED: All
 */
/**
 * Colors
 * Colors of various elements as per style guide
 * REQUIRED: $colorPrimary<>, $colorSecondary<>, $colorTextDefault
 */
/**
 * Font Sizes
 * Headings, Paragraphs and other common elements
 */
/**
 * Z Indexes
 */
.photo-interstitial .photo-interstitial__content, #hero .hero-content, #hero .hero-footer, #nav-icons, #nav-icons-clean {
  z-index: 100;
}

#inject--wrap {
  z-index: 200;
}

#header {
  z-index: 300;
}

/**
 * Compass Settings
 * Flags for compass
 */
/**
 * Font Settings
 * Shortened variable names for font families for degradation convenience
 */
/* MEDIA
================================================== */
/* CONTAINER(S)
================================================== */
@media only screen and (min-width: 980px) {
  min-width: 980px;
}
.container {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 980px;
}
.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 480px;
  }
}

.container-thin {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 980px;
  max-width: 980px;
}
.container-thin:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .container-thin {
    max-width: 480px;
  }
}

.container-full {
  width: 100%;
}
.container-full:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.container-max {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 980px;
  padding-left: 30px;
  padding-right: 30px;
}
.container-max:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .container-max {
    max-width: 480px;
  }
}
@media only screen and (max-width: 767px) {
  .container-max {
    min-width: 300px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* OMEGA
================================================== */
/* SPANS (1-12)
================================================== */
.span1 {
  width: 8.333333333333332%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span1 {
    width: 100%;
  }
}

.span2 {
  width: 16.666666666666664%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span2 {
    width: 100%;
  }
}

.span3, .one-fourth {
  width: 25%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span3, .one-fourth {
    width: 100%;
  }
}

.span4, .one-third {
  width: 33.33333333333333%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span4, .one-third {
    width: 100%;
  }
}

.span5 {
  width: 41.66666666666667%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span5 {
    width: 100%;
  }
}

.span6, .one-half {
  width: 50%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span6, .one-half {
    width: 100%;
  }
}

.span7 {
  width: 58.333333333333336%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span7 {
    width: 100%;
  }
}

.span8, .two-thirds {
  width: 66.66666666666666%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span8, .two-thirds {
    width: 100%;
  }
}

.span9, .three-fourths {
  width: 75%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span9, .three-fourths {
    width: 100%;
  }
}

.span10 {
  width: 83.33333333333334%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span10 {
    width: 100%;
  }
}

.span11 {
  width: 91.66666666666666%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span11 {
    width: 100%;
  }
}

.span12 {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .span12 {
    width: 100%;
  }
}

.span-gutters {
  margin-left: 10px;
  margin-right: 10px;
}

.center, .span-center {
  float: none !important;
  margin: 0 auto;
}

.halves:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.half {
  width: 50%;
  float: left;
}

.thirds:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.third {
  width: 33.33333337%;
  float: left;
}

.fourths:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.fourth {
  width: 25%;
  float: left;
}

.fifths:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.fifth {
  width: 20%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .fifth {
    width: 100%;
  }
}

/* ROW(S)
================================================== */
.row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.row:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* _body.scss */
html {
  font-size: 100%;
  /* ~10px */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  font-family: "TisaPro", "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  /* ~10px */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  overflow-x: hidden;
  color: #444444;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 1000ms;
  -o-transition: all 1000ms;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}
body.show {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

*, *:before, *:after {
  /* BORDER BOX */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* BACKFACE VISIBILITY */
  /* BG PROPERTIES */
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  /* TRANSITION */
  -moz-transition: color 150ms, background 150ms;
  -o-transition: color 150ms, background 150ms;
  -webkit-transition: color 150ms, background 150ms;
  transition: color 150ms, background 150ms;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.45;
  margin: 1rem 0;
}

h1 {
  font-size: 2.625em;
  font-weight: normal;
}
h1.alt {
  font-size: 3.4375em;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

h2 {
  font-size: 2.375em;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.1;
}
h2.huge {
  font-size: 6.5625em;
  color: white;
  text-shadow: 0 1px 3px rgba(30, 42, 52, 0.4);
}
h2.alt {
  font-size: 1.625em;
  font-weight: normal;
}

h3 {
  font-size: 2.125em;
  font-weight: normal;
}
h3.alt {
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

h4 {
  font-size: 1.625em;
  font-weight: 600;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
}
h4.alt {
  color: #fff8bb;
  font-style: italic;
  font-family: "TisaPro", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  text-shadow: 0 1px 3px rgba(30, 42, 52, 0.4);
}
h4.yellow {
  color: #fed943 !important;
}

h5 {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.4;
}
h5.small {
  font-size: 21px;
}
h5.alt {
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

h6 {
  font-size: 1.125em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
}
h6.alt {
  font-size: 1.1875em;
  line-height: 1.1;
}
h6.lc {
  text-transform: none;
}

p {
  font-size: 1.125em;
  font-weight: normal;
  font-family: "TisaPro", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
}
p.small {
  font-size: 1em;
}
p.large {
  font-size: 1.3125em;
}
p.alt {
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
}

cite {
  font-size: 1.1875em;
  font-style: normal;
}
cite.alt {
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
cite.small {
  font-size: 0.9375em;
}

small {
  font-size: 0.9375em;
}

.italic {
  font-style: italic;
}

.bolditalic {
  font-style: italic;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.alignleft {
  float: left;
  margin: 0 50px 50px 0;
}

.alignright {
  float: right;
  margin: 0 0 50px 50px;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.list-icons .icon, .list-icons .fa {
  padding-right: 4px;
}

.list-blank {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.125em;
}
.list-blank li {
  margin-bottom: 7px;
}

.list-table {
  display: table;
  width: 100%;
}
.list-table > li {
  display: table-cell;
  vertical-align: middle;
}

.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.rel {
  position: relative;
}

/**
 * Text Colors 
 */
.white {
  color: white;
}

.whiteblue {
  color: #ccddf2;
}

.primary {
  color: #4f89d0;
}

.primary-light-warm {
  color: #ccddf2;
}

.primary-bright {
  color: #0b79d9;
}

.secondary {
  color: #444444;
}

.secondary-lighter {
  color: #c2c3c4;
}

.gray-warm {
  color: #868e97;
}

.gray-alt {
  color: #676767;
}

/**
 * BG Colors
 */
.bg-primary {
  background-color: #4f89d0;
}

.bg-primarybright {
  background-color: #0b79d9;
}

.bg-primarylight {
  background-color: #f5f8fb;
}

.bg-secondary {
  background-color: #444444;
}

.bg-graylight {
  background-color: #f4f4f4;
}

.bg-bluesky {
  background-color: #dff0ff;
}

.bg-bluedark {
  background-color: #064073;
}

/**
 * Font Weights
 */
.bold {
  font-weight: bold;
}

.semibold {
  font-weight: 600;
}

.light {
  font-weight: 300;
}

.caps {
  text-transform: uppercase;
}

/**
 * Margins / Padding
 */
.mp0 {
  margin: 0;
  padding: 0;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.p60 {
  padding: 60px !important;
}

.p70 {
  padding: 70px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.z0 {
  z-index: 0 !important;
}

.z1 {
  z-index: 1 !important;
}

.z10 {
  z-index: 10 !important;
}

.z100 {
  z-index: 100 !important;
}

.z1000 {
  z-index: 1000;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.baseline {
  line-height: 1;
  margin: 0;
}

.lh1 {
  line-height: 1;
}

.list-blank {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.list-inline {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-inline li {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 10px;
}
.list-inline li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .mobile-only {
    display: inline-block !important;
  }
}

.invis {
  height: 0;
  width: 0;
  visibility: hidden;
  opacity: 0;
}

/**
 * Transforms
 */
.transform--center_v {
  top: 50%;
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.transform--center_h {
  left: 50%;
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

img {
  max-width: 100%;
}

.img--rounded {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.svg-icon-obj {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.svg-icon-obj svg {
  /* TRANSITION */
  -moz-transition: fill 150ms;
  -o-transition: fill 150ms;
  -webkit-transition: fill 150ms;
  transition: fill 150ms;
}

.svg-icon {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /* TRANSITION */
  -moz-transition: fill 150ms;
  -o-transition: fill 150ms;
  -webkit-transition: fill 150ms;
  transition: fill 150ms;
}

/* _fonts.scss */
@font-face {
  font-family: MarianinaFY;
  src: url("../fonts/MarianinaFY/MarianinaFY-Regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/MarianinaFY/MarianinaFY-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/MarianinaFY/MarianinaFY-Regular.woff") format("woff"), url("../fonts/MarianinaFY/MarianinaFY-Regular.ttf") format("truetype"), url("../fonts/MarianinaFY/MarianinaFY-Regular.svg#MarianinaFY") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: MarianinaFY;
  src: url("../fonts/MarianinaFY/MarianinaFY-Medium.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/MarianinaFY/MarianinaFY-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/MarianinaFY/MarianinaFY-Medium.woff") format("woff"), url("../fonts/MarianinaFY/MarianinaFY-Medium.ttf") format("truetype"), url("../fonts/MarianinaFY/MarianinaFY-Medium.svg#MarianinaFY") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: MarianinaFY;
  src: url("../fonts/MarianinaFY/MarianinaFY-Bold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/MarianinaFY/MarianinaFY-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/MarianinaFY/MarianinaFY-Bold.woff") format("woff"), url("../fonts/MarianinaFY/MarianinaFY-Bold.ttf") format("truetype"), url("../fonts/MarianinaFY/MarianinaFY-Bold.svg#MarianinaFY") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: TisaPro;
  src: url("../fonts/TisaPro/TisaPro-Regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TisaPro/TisaPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/TisaPro/TisaPro-Regular.woff") format("woff"), url("../fonts/TisaPro/TisaPro-Regular.ttf") format("truetype"), url("../fonts/TisaPro/TisaPro-Regular.svg#TisaPro") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: TisaPro;
  src: url("../fonts/TisaPro/TisaPro-Ita.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TisaPro/TisaPro-Ita.eot?#iefix") format("embedded-opentype"), url("../fonts/TisaPro/TisaPro-Ita.woff") format("woff"), url("../fonts/TisaPro/TisaPro-Ita.ttf") format("truetype"), url("../fonts/TisaPro/TisaPro-Ita.svg#TisaPro") format("svg");
  /* Legacy iOS */
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: TisaPro;
  src: url("../fonts/TisaPro/TisaPro-BoldIta.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TisaPro/TisaPro-BoldIta.eot?#iefix") format("embedded-opentype"), url("../fonts/TisaPro/TisaPro-BoldIta.woff") format("woff"), url("../fonts/TisaPro/TisaPro-BoldIta.ttf") format("truetype"), url("../fonts/TisaPro/TisaPro-BoldIta.svg#TisaPro") format("svg");
  /* Legacy iOS */
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: TisaPro;
  src: url("../fonts/TisaPro/TisaPro-Bold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TisaPro/TisaPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/TisaPro/TisaPro-Bold.woff") format("woff"), url("../fonts/TisaPro/TisaPro-Bold.ttf") format("truetype"), url("../fonts/TisaPro/TisaPro-Bold.svg#TisaPro") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: bold;
}
/**
 * Chrome v33 "invisible text" fix
 */
body {
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0.1s;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.sprite {
  background-repeat: no-repeat;
  background-size: auto auto;
}

.sprite-members {
  background-image: url("../images/sprite-members.jpg");
  height: 82px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.sprite-members.sprite-members__bankofamerica {
  background-position: 0 0;
  width: 146px;
}
.sprite-members.sprite-members__aceparking {
  background-position: -210px 0;
  width: 70px;
}
.sprite-members.sprite-members__hpinvestors {
  background-position: -320px 0;
  width: 190px;
}
.sprite-members.sprite-members__reprohaus {
  background-position: -565px 0;
  width: 185px;
}

/* -----------------------------------
  INPUTS (TEXT)
----------------------------------- */
input, select, textarea {
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125em;
  text-transform: uppercase;
  color: #4f89d0;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
}

.inline-form {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
}
.inline-form:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.inline-form.inline-form--full {
  width: 100%;
}
.inline-form .inline-input {
  width: 100%;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #fff;
  padding: 10px 60px 5px 22px;
}
.inline-form .inline-submit {
  outline: 0;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #4f89d1;
  color: #fff;
  text-align: center;
  line-height: 50px;
  -moz-transition: background 150ms;
  -o-transition: background 150ms;
  -webkit-transition: background 150ms;
  transition: background 150ms;
}
.inline-form .inline-submit:active, .inline-form .inline-submit:hover {
  outline: 0;
  border: 0;
  background-color: #3b7ccb;
}
.inline-form .inline-input--as_label {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  width: 100%;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #fff;
  padding: 10px 60px 5px 22px;
}
.inline-form .inline-select {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  padding-left: 22px;
  z-index: 2;
}
.inline-form .inline-select:focus {
  outline: none;
}

.gform--stay-informed form {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  width: 240px;
}
.gform--stay-informed form:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.gform--stay-informed form .gform_body {
  display: inline-block;
  width: 100%;
  height: 50px;
  margin: 0;
}
.gform--stay-informed form .gform_footer {
  display: inline-block;
  margin: 0;
  outline: 0;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #4f89d1;
  color: #fff;
  text-align: center;
  line-height: 50px;
  -moz-transition: background 150ms;
  -o-transition: background 150ms;
  -webkit-transition: background 150ms;
  transition: background 150ms;
}
.gform--stay-informed form .gform_footer:active, .gform--stay-informed form .gform_footer:hover {
  outline: 0;
  border: 0;
  background-color: #3b7ccb;
}
.gform--stay-informed form .gform_footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '\f0e0';
  font-family: "fontawesome";
  text-align: center;
  line-height: 50px;
  color: white;
}
.gform--stay-informed form .gform_footer input {
  opacity: 0;
}
.gform--stay-informed form .gform_fields {
  position: relative;
  width: 100%;
}
.gform--stay-informed form .gform_fields .gfield {
  position: relative;
  width: 100%;
}
.gform--stay-informed form .gform_fields .gfield .gfield_label {
  display: none;
}
.gform--stay-informed form .gform_fields .gfield .ginput_container {
  position: relative;
  width: 100%;
}
.gform--stay-informed form .gform_fields .gfield .ginput_container input {
  height: 50px;
  text-transform: uppercase;
}
.gform--stay-informed form .validation_error {
  display: none;
}
.gform--stay-informed form .gform_confirmation_message {
  color: #444444;
}

/**
 * Input Icon
 */
.input-icon {
  position: relative;
  width: 100%;
  height: 44px;
  border: 1px solid #e1e1e1;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: white;
}
.input-icon input, .input-icon select {
  width: 100%;
  height: 44px;
  padding: 15px 20px 15px 55px;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  background: transparent;
  background-color: transparent;
  font-family: "Open Sans", Helvetica, "Helvetica Neue", Arial, sans-serif;
  color: #4f4f4f;
  text-transform: none;
  font-weight: normal;
}
.input-icon .fa {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  padding-left: 5px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  color: #4f4f4f;
  font-size: 14px;
}

.input-inline_label label {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 44px;
  line-height: 44px;
  width: 200px;
  left: -100%;
}

.gform_wrapper#gform_wrapper_13 {
  padding: 20px 50px;
}
.gform_wrapper#gform_wrapper_13 label {
  display: none;
}
.gform_wrapper#gform_wrapper_13 .gform_footer {
  text-align: center;
}

#gforms_confirmation_message {
  padding: 20px 50px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.gform_wrapper#gform_wrapper_17 {
  color: #fff;
  margin: 30px;
}
.gform_wrapper#gform_wrapper_17 label.gfield_label {
  position: relative;
  left: 10px;
}
.gform_wrapper#gform_wrapper_17 .gfield_checkbox li {
  float: left;
  margin-right: 30px;
  list-style: none;
}
.gform_wrapper#gform_wrapper_17 .gfield_checkbox li input {
  width: auto;
  float: left;
}
.gform_wrapper#gform_wrapper_17 .gfield_checkbox li label {
  line-height: 2.5em;
  margin-left: 8px;
}

/**
 * Placeholder colors
 */
.btn {
  margin-top: 5px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 16px 26px 12px 26px;
  -moz-border-radius: 26px;
  -webkit-border-radius: 26px;
  border-radius: 26px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  color: #4f89d0;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.125em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  /**
   * Button White
   */
  /**
   * Button BlueLight
   */
  /**
   * Button yellow
   */
  /**
   * Button Yellow
   */
  /**
   * Button White Yellow
   */
  /**
   * Button Icon
   * Use sub-inheritance classes for positioning of nested fa icons
   */
}
.btn.btn-white {
  border: 1px solid #e3e7ed;
  background-color: #fff;
}
.btn.btn-white:hover {
  background-color: #dff0ff;
}
.btn.btn-white.btn-white--hover_alt:hover {
  background-color: #0b79d9;
  color: #fff;
}
.btn.btn-bluelight, .btn.btn-blue {
  border: 1px solid #e3e7ed;
  background-color: #dff0ff;
}
.btn.btn-bluelight:hover, .btn.btn-blue:hover {
  background-color: #0b79d9;
  border-color: #0b79d9;
  color: #ffffff;
}
.btn.btn-yellow {
  border: 1px solid #dec037;
  background-color: #dec037;
  color: white;
}
.btn.btn-yellow:hover {
  background-color: #d8b724;
  color: #ffffff;
}
.btn.btn-yellow.btn-icon .fa {
  color: #fff;
}
.btn.btn-bluedark {
  border: 1px solid #064073;
  background-color: #064073;
  color: #dff0ff;
}
.btn.btn-bluedark:hover {
  background-color: #064073;
  border-color: #064073;
  color: #ffffff;
}
.btn.btn-bluedark.btn-icon .fa {
  color: #fff;
}
.btn.btn-white-yellow {
  border: 1px solid #f5edb3;
  background-color: #fff;
  color: #c3b116;
}
.btn.btn-white-yellow.btn-icon .fa {
  color: #d0c260;
}
.btn.btn-white-yellow:hover {
  background-color: #fffdef;
}
.btn.btn-padded {
  padding: 16px 40px 12px 40px;
}
.btn.btn-icon .fa {
  top: 1px;
  font-size: 18px;
  padding: 0 12px 0 6px;
}
.btn.btn-icon span {
  position: relative;
}

/**
 * Animate CSS
 * Supplement classes for duration
 */
.animated-500 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-250 {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -moz-animation: rotating 1.5s linear infinite;
  -ms-animation: rotating 1.5s linear infinite;
  -webkit-animation: rotating 1.5s linear infinite;
  animation: rotating 1.5s linear infinite;
}

@-webkit-keyframes shakeFast {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  30%, 60%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  15%, 45%, 75% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shakeFast {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  30%, 60%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  15%, 45%, 75% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shakeFast {
  -webkit-animation-name: shakeFast;
  animation-name: shakeFast;
}

/**
 * Headroom.js
 */
.headroom {
  -moz-transition: -moz-transform 200ms linear;
  -o-transition: -o-transform 200ms linear;
  -webkit-transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
}

.headroom--fixed {
  position: fixed;
  z-index: 100;
}

.headroom--pinned {
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.headroom--unpinned {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.headroom--unpinned .navigation-loggedin .menu-main-loggedin li.current a:before {
  display: none;
}

/**
 * Font Awesome
 */
.fa-l {
  padding-right: 5px;
}

.fa-r {
  padding-left: 5px;
}

/**
 * LazyLoad
 */
.lazyload {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  /* TRANSITION */
  -moz-transition: opacity 150ms, visibility 150ms;
  -o-transition: opacity 150ms, visibility 150ms;
  -webkit-transition: opacity 150ms, visibility 150ms;
  transition: opacity 150ms, visibility 150ms;
}
.lazyload.show {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}

/**
 * FacetWP
 */
.facetwp-type-dropdown {
  position: relative;
  width: 100%;
  height: 50px;
  width: 100%;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #fff;
  padding: 8px 0 5px 22px;
}
.facetwp-type-dropdown:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-family: "fontawesome";
  content: '\f107';
  text-align: center;
  font-size: 1.125em;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #4f89d1;
  color: #fff;
  text-align: center;
  line-height: 50px;
  -moz-transition: background 150ms;
  -o-transition: background 150ms;
  -webkit-transition: background 150ms;
  transition: background 150ms;
}
.facetwp-type-dropdown:hover:after {
  background-color: #3b7ccb;
}
.facetwp-type-dropdown select {
  position: relative;
  z-index: 2;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-size: 18px;
  height: 100%;
  max-width: 100%;
  width: 100%;
}

.facetwp-type-search {
  position: relative;
  width: 100%;
  height: 50px;
  width: 100%;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #fff;
  padding: 8px 0 5px 22px;
}
.facetwp-type-search:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-family: "fontawesome";
  content: '\f002';
  text-align: center;
  font-size: 1.125em;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #4f89d1;
  color: #fff;
  text-align: center;
  line-height: 50px;
  -moz-transition: background 150ms;
  -o-transition: background 150ms;
  -webkit-transition: background 150ms;
  transition: background 150ms;
}
.facetwp-type-search input {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-size: 18px;
  height: 100%;
  max-width: 100%;
  padding-right: 60px;
  width: 100%;
}

.facetwp-page {
  padding: 0 !important;
  margin: 0 !important;
}

/**
 * Gravity Forms
 */
.gform_wrapper {
  /**
   * Alternate Colors
   */
}
.gform_wrapper .gform_fields {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gform_wrapper .gfield {
  position: relative;
  width: 100%;
  clear: both;
}
.gform_wrapper .gfield .gfield_time_hour, .gform_wrapper .gfield .gfield_time_minute {
  float: left;
  margin-right: 5px;
}
.gform_wrapper .gfield .gfield_time_hour label, .gform_wrapper .gfield .gfield_time_minute label {
  display: none;
}
.gform_wrapper .gfield .gfield_time_ampm {
  width: 13%;
  float: left;
}
.gform_wrapper .gfield .gfield_date_dropdown_month, .gform_wrapper .gfield .gfield_date_dropdown_day, .gform_wrapper .gfield .gfield_date_dropdown_year {
  width: 15%;
  float: left;
  margin-right: 5px;
}
.gform_wrapper .gfield_label {
  position: absolute;
  top: 0;
  left: -15%;
  width: 15%;
  height: 44px;
  line-height: 44px;
  text-align: right;
  padding-right: 25px;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  color: #a1a1a1;
  text-transform: uppercase;
}
.gform_wrapper .ginput_complex > span {
  position: relative;
}
.gform_wrapper .ginput_complex label {
  display: none;
}
.gform_wrapper .ginput_container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.gform_wrapper .ginput_container .ginput_left {
  display: block;
  width: 50%;
  float: left;
}
.gform_wrapper .ginput_container .ginput_left input, .gform_wrapper .ginput_container .ginput_left select, .gform_wrapper .ginput_container .ginput_left select + label {
  -moz-border-radius: 22px 0 0 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px 0 0 22px;
  border-right: none;
}
.gform_wrapper .ginput_container .ginput_right {
  display: block;
  width: 50%;
  float: left;
}
.gform_wrapper .ginput_container .ginput_right input, .gform_wrapper .ginput_container .ginput_right select, .gform_wrapper .ginput_container .ginput_right select + label {
  -moz-border-radius: 0 22px 22px 0;
  -webkit-border-radius: 0;
  border-radius: 0 22px 22px 0;
}
.gform_wrapper input {
  width: 100%;
  height: 44px;
  outline: 0;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  border: 1px solid #dfdfdf;
  text-transform: none;
  font-weight: normal;
  color: #a1a1a1;
  padding-left: 25px;
  margin-bottom: 15px;
}
.gform_wrapper input#input_14_3_1 {
  width: auto;
}
.gform_wrapper select {
  position: relative;
  width: 100%;
  height: 44px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  margin-bottom: 15px;
  padding-left: 15px;
}
.gform_wrapper select + label {
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 44px;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  text-transform: none;
  font-weight: normal;
  color: #a1a1a1;
  font-size: 1.125em;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  padding-left: 20px;
  line-height: 44px;
  outline: 0;
  margin-bottom: 15px;
}
.gform_wrapper textarea {
  display: block;
  padding: 15px 25px;
  width: 100%;
  outline: 0;
  font-weight: normal;
  text-transform: none;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  border: 1px solid #dfdfdf;
  margin-bottom: 15px;
}
.gform_wrapper input[type="submit"] {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  outline: 0;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  max-width: 240px;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #0b79d9;
  color: #fff;
  padding: 0;
}
.gform_wrapper .gform_footer {
  text-align: left;
  margin: 25px 0;
}
.gform_wrapper .gfield_icon {
  position: relative;
}
.gform_wrapper .gfield_icon .ginput_container:first-of-type {
  position: relative;
}
.gform_wrapper .gfield_icon .ginput_container:first-of-type:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 44px;
  line-height: 44px;
  font-family: "fontawesome";
  text-align: center;
  z-index: 2;
}
.gform_wrapper .gfield_icon .ginput_container > input,
.gform_wrapper .gfield_icon .ginput_container > span:first-of-type > input {
  padding-left: 52px;
}
.gform_wrapper .gfield_icon.gfield_icon--name .ginput_container:first-of-type:before {
  content: '\f007';
}
.gform_wrapper .gfield_icon.gfield_icon--email .ginput_container:first-of-type:before {
  content: '\f0e0';
}
.gform_wrapper .gfield_icon.gfield_icon--phone .ginput_container:first-of-type:before {
  content: '\f095';
}
.gform_wrapper .gfield_icon.gfield_icon--address .ginput_container:first-of-type:before {
  content: '\f041';
}
.gform_wrapper.gform--alternate_colors_wrapper .gfield_label {
  color: #434343;
}
.gform_wrapper.gform--alternate_colors_wrapper input[type="submit"] {
  border: 1px solid #e3e7ed;
  background-color: #fff;
  color: #4f89d0;
}
.gform_wrapper.gform--alternate_colors_wrapper input[type="submit"]:hover {
  background-color: #dff0ff;
}

.gform_wrapper.gform--contact_form {
  display: none;
  margin-top: 50px;
}

/**
 * Spacer
 */
.spacer {
  width: 100%;
  height: auto;
  margin: 40px auto;
}

/**
 * Separator
 */
hr, .separator {
  width: 100%;
  height: 4px;
  background-color: #e3e7ed;
  margin: 50px auto;
  border: none;
}
hr.separator--white, .separator.separator--white {
  background-color: #fff;
}

.separator--thick {
  width: 100%;
  height: 8px;
  margin: 50px auto;
  background-color: #f3f3f3;
}

/**
 * Inline Separator
 */
.inline-separator {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding-left: 10px;
  padding-right: 10px;
}

/**
 * Text Image
 * Images with text too complicated for normal rendering. Keep in this wrapper
 */
.text-image {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/**
 * SD Skyline
 */
.skyline {
  clear: both;
  width: 100%;
  height: 335px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url("../images/content/sandiego-skyline-on-white.jpg");
  background-position: 50% 50%;
}

/**
 * Become A Member
 */
.become-a-member {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-become-a-member.png");
  background-position: 100% 100%;
  background-size: auto 100%;
  background-color: #fffdeb;
  border: 1px solid #fed943;
  padding: 30px 40px;
  min-height: 490px;
}
.become-a-member.become-a-member--no_arrow:before {
  display: none;
}
.become-a-member:before {
  position: absolute;
  content: '';
  top: -16px;
  left: 50%;
  margin-left: -18px;
  width: 36px;
  height: 17px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAARCAYAAAC1tw6GAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGNjNDNjdFNjMxQzkxMUU0QThDQkY2QUI2OTkyMzE1NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGNjNDNjdFNzMxQzkxMUU0QThDQkY2QUI2OTkyMzE1NSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY2M0M2N0U0MzFDOTExRTRBOENCRjZBQjY5OTIzMTU1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY2M0M2N0U1MzFDOTExRTRBOENCRjZBQjY5OTIzMTU1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+fEGJrAAAAQdJREFUeNrM1c0KAVEUAOA7x7iasVDKz3LIVlHKq3iF8TzKM9h7B2kKWVjYsPRTJP/D4ByUyE9zdYdTt3vub19nc5SjM2aisZrVCziZOHLXLQtHWQ/lK6J/KiIghKQJ4vOHTT+PM/AFz/sHZ8F29oA5u2kZlyWEdaSDEEPVsLhmMJXHnt7Z20Nmr/uUZhHVcvM/iGGSLzEUdMa1BKVNfJORArrHRD7eV3lUCAUyMN+gQBZGFAUyMSIokI1xiwIvMG5Q4BXmBSr7FiQb8wTVeESB15hPKPgF5h1KWU6q1CjbXmPue98Ie1+P0jRVyLw0yt9gbpUyKC0qm3ntGNBT7B9iu+qykwADAISTkqPwAdhWAAAAAElFTkSuQmCC");
}

/**
 * Cite Occupation
 */
.cite-occupation {
  display: block;
  color: #beb576;
  font-style: italic;
}
.cite-occupation.cite-occupation--blockquote {
  color: #dec037;
}

/**
 * Post Previews
 * extends `span<#>`
 */
.post-previews {
  margin-left: -6px;
  margin-right: -6px;
}

.post-preview {
  display: block;
  float: left;
  width: 24%;
  position: relative;
  max-height: 400px;
  margin: 0 0.5% 1.0% 0.5%;
  cursor: pointer;
  overflow: hidden;
}
.post-preview:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.post-preview:hover .post-preview__image {
  -moz-transform: scale3d(1.1, 1.1, 1);
  -ms-transform: scale3d(1.1, 1.1, 1);
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.post-preview:hover .post-preview__overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  opacity: 0.65;
}
.post-preview .post-preview__inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.post-preview .post-preview__inner > span {
  display: table;
  width: 100%;
  height: 100%;
}
.post-preview .post-preview__inner > span > span {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
.post-preview .post-preview__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.post-preview .post-preview__info {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.post-preview .post-preview__info h4 {
  line-height: 1.2;
  font-size: 1.875em;
}
.post-preview .post-preview__overlay {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d5383;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  /* transition */
  -moz-transition: opacity 150ms;
  -o-transition: opacity 150ms;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}
.post-preview .post-preview__title {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.65em;
}
.post-preview .post-preview__subtitle {
  color: #fff;
  font-size: 1.5em;
  bottom: 10px;
  position: absolute;
}

/**
 * Pane
 */
.pane {
  background-color: #dff0ff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-height: 210px;
  padding: 20px;
  text-align: center;
  display: table;
}
.pane:last-child {
  border-right: 0;
}
.pane.pane--block {
  height: 330px;
  display: block;
}

.pane__title {
  min-height: 55px;
}

.pane__body {
  height: 80%;
}

.pane__footer {
  height: 20%;
}

/**
 * Big Quote
 */
.quote--large {
  width: 100%;
}
.quote--large:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.quote--large .quote--large__left {
  width: 30%;
  padding: 25px;
  min-width: 200px;
  text-align: center;
  float: left;
}
.quote--large .quote--large__photo {
  margin: 0 auto;
}
.quote--large .quote--large__right {
  width: 70%;
  float: left;
  padding: 25px 85px 25px 0;
}

/**
 * Pagination
 */
.pagination {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0 auto;
  position: relative;
  height: 50px;
  line-height: 50px;
  padding: 0 100px;
  text-align: center;
  border: 1px solid #dff0ff;
  background-color: #fff;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}
.pagination .pagination__prev,
.pagination .pagination__next {
  display: block;
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #e3e7ed;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #0b79d9;
  color: #fff;
}
.pagination .pagination__prev {
  left: 0;
}
.pagination .pagination__next {
  right: 0;
}
.pagination .pagination__pages {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  height: 100%;
  list-style-type: none;
  font-size: 1.125em;
}
.pagination .pagination__pages a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 0 7px;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  color: #6abaff;
}
.pagination .pagination__pages a:hover, .pagination .pagination__pages a.pagination__page--active {
  color: #0b79d9;
}

/**
 * Contact Clean & Safe
 */
#contact {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
}
.photo-interstitial {
  position: relative;
  width: 100%;
  height: 520px;
  background-color: #4f89d1;
}
.photo-interstitial .photo-interstitial__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
}
.photo-interstitial .photo-interstitial__wrap {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.photo-interstitial .photo-interstitial__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: table;
  color: #fff;
}
.photo-interstitial .photo-interstitial__content .container {
  vertical-align: middle;
  display: table-cell;
}

/**
 * Stat Columns
 */
.stat-columns .stat-column {
  margin-top: 30px;
}
.stat-columns .stat-column .stat-column__stat-icon {
  color: #0b79d9;
  margin: 0 0 10px 0;
  font-size: 2em;
}
.stat-columns .stat-column .stat-column__stat-name {
  color: #0b79d9;
  margin: 0;
}
.stat-columns .stat-column .stat-column__stat-figure {
  font-size: 2.125em;
  margin: 0;
}

.cox-footer {
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: center;
  padding: 25px 0 0 0;
}

svg.heart {
  height: 34px;
  margin-bottom: 7px;
}

svg.heart path {
  fill:#a0acba;
}

li.active svg.heart path, li:hover svg.heart path {
  fill: #444444;
}

/**
 * Header
 */
#header {
  height: 110px;
  width: 100%;
  background-color: rgba(3, 29, 52, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  -moz-transition: padding 500ms, background 150ms;
  -o-transition: padding 500ms, background 150ms;
  -webkit-transition: padding 500ms, background 150ms;
  transition: padding 500ms, background 150ms;
  -moz-transition-delay: 300ms, 0ms;
  -o-transition-delay: 300ms, 0ms;
  -webkit-transition-delay: 300ms, 0ms;
  transition-delay: 300ms, 0ms;
  /**
   * Logo
   */
  /**
   * Nav (main)
   */
  /**
   * Menu (main)
   */
}
#header.opaque {
  background-color: #031d34;
}
#header .header-left {
  float: left;
  width: 50%;
  height: 110px;
  padding-left: 30px;
}
#header .header-right {
  float: left;
  width: 50%;
  height: 110px;
  padding-right: 30px;
  padding-top: 40px;
}
#header .logo {
  height: 110px;
  width: 390px;
}
#header .logo .brand {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 220px;
  height: 100%;
  background-image:url('../images/dsdp-logo-white.png');
  background-size: 145px auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#header .logo .sponsor {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 102px;
  height: 100%;
  background-image: url("../images/cox-white.png");
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}
#header .logo-separator {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  height: 70px;
  background-color: #053f73;
  width: 1px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 25px;
  vertical-align: top;
}
#header nav.nav-main {
  height: 110px;
  margin: 0;
  padding: 0;
}
#header .menu-main {
  height: 100%;
  margin: 0;
  padding: 0;
}

/**
 * Hero
 * Hero unit with various page-specific inheritors
 */
#hero {
  position: relative;
  width: 100%;
  height: 670px;
  background-color: #4f89d1;
}
#hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 600ms;
  -o-transition: all 600ms;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
#hero .hero-image.show {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#hero .hero-image.crossfade {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#hero .hero-image.hide {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#hero .hero-image-clone {
  z-index: 0;
}
#hero .hero-title-wrap {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#hero .hero-title-wrap .hero-title-top {
  padding-left: 10px;
  text-align: left;
}
#hero .hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 110px;
  display: table;
}
#hero .hero-content.hero-content--no_padding {
  padding-top: 0;
}
#hero .hero-content .container {
  vertical-align: middle;
  display: table-cell;
}
#hero .hero-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 30px 50px 30px;
  background-color: rgba(11, 121, 217, 0.9);
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  color: #fff;
}
#hero .hero-footer__btn--intersect {
  position: absolute;
  bottom: -25px;
  height: 50px;
}

/* _navigation.scss */
#nav-toggle__text {
  display: block;
  float: right;
  padding-top: 2px;
  font-size: 1.625em;
  font-weight: normal;
  color: #fff;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  padding-right: 100px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 50ms ease-in-out;
  -o-transition: all 50ms ease-in-out;
  -webkit-transition: all 50ms ease-in-out;
  transition: all 50ms ease-in-out;
  -moz-transition-delay: 0;
  -o-transition-delay: 0;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
#nav-toggle__text.nav--open {
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  -moz-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/**
 * Nav Toggle
 */
#nav-toggle {
  position: relative;
  display: block;
  float: right;
  width: 80px;
  height: 28px;
  cursor: pointer;
  /**
   * Toggle Class(es)
   */
}
#nav-toggle:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#nav-toggle .nav-text {
  position: relative;
  display: block;
  float: left;
  width: 50px;
  height: 28px;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.4375em;
  line-height: 1.4;
  text-align: left;
  font-weight: 600;
  color: #4f89d0;
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon {
  position: relative;
  display: block;
  float: left;
  top: 2px;
  width: 30px;
  height: 28px;
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__lines {
  position: absolute;
  height: 4px;
  background-color: #4f89d0;
  border-top: 1px solid #2f4663;
  width: 20px;
  top: 10px;
  left: 0;
  z-index: 1;
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__lines:before {
  position: absolute;
  content: '';
  height: 4px;
  width: 16px;
  background-color: #4f89d0;
  border-top: 1px solid #2f4663;
  top: -8px;
  left: 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__lines:after {
  position: absolute;
  content: '';
  height: 4px;
  width: 16px;
  background-color: #4f89d0;
  border-top: 1px solid #2f4663;
  top: 6px;
  left: 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__l {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  height: 28px;
  z-index: 2;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__l:before {
  position: absolute;
  top: 0;
  right: 10px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  content: '';
  width: 4px;
  height: 16px;
  background-color: #fff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__l:after {
  position: absolute;
  bottom: 3px;
  right: 10px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  content: '';
  width: 4px;
  height: 16px;
  background-color: #fff;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__r {
  position: absolute;
  top: 0;
  right: 10px;
  height: 30px;
  height: 28px;
  z-index: 2;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__r:before {
  position: absolute;
  top: 0;
  right: 10px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  content: '';
  width: 4px;
  height: 16px;
  background-color: #fff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  height: 0;
}
#nav-toggle .nav-toggle-icon .nav-toggle-icon__r:after {
  position: absolute;
  bottom: 3px;
  right: 10px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  content: '';
  width: 4px;
  height: 16px;
  background-color: #fff;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  /* transition */
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  height: 0;
}
#nav-toggle.nav-toggle--open .nav-text {
  -moz-transform: translate3d(-10%, 0, 0);
  -webkit-transform: translate3d(-10%, 0, 0);
  transform: translate3d(-10%, 0, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__lines {
  width: 0;
  left: 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__lines:before {
  width: 0;
  left: 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__lines:after {
  width: 0;
  left: 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__l:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__l:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__r:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  height: 16px;
}
#nav-toggle.nav-toggle--open .nav-toggle-icon__r:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  height: 16px;
}

/**
 * Nav
 */
#nav {
  position: absolute;
  top: 0px;
  right: 0;
  width: 420px;
  height: 100%;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#F2031D34', endColorstr='#F2031D34');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAzMWQzNCIgc3RvcC1vcGFjaXR5PSIwLjk1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDMxZDM0IiBzdG9wLW9wYWNpdHk9IjAuOTUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(3, 29, 52, 0.95)), color-stop(100%, rgba(3, 29, 52, 0.95)));
  background-image: -moz-linear-gradient(top, rgba(3, 29, 52, 0.95) 0%, rgba(3, 29, 52, 0.95) 100%);
  background-image: -webkit-linear-gradient(top, rgba(3, 29, 52, 0.95) 0%, rgba(3, 29, 52, 0.95) 100%);
  background-image: linear-gradient(to bottom, rgba(3, 29, 52, 0.95) 0%, rgba(3, 29, 52, 0.95) 100%);
  z-index: 2;
  /* transition */
}
#nav .nav__header {
  height: 110px;
  padding: 30px;
  width: 100%;
  color: #fff;
  z-index: 900;
}
#nav .nav__body {
  position: fixed;
  margin-top: 110px;
  width: 420px;
  overflow-y: scroll;
  top: 0;
  bottom: 0;
  margin-bottom: 100px;
}
#nav .nav__body .menu-social {
  padding-left: 25px;
}
#nav .nav__body-inner {
  padding: 25px 50px 30px 25px;
}
@media only screen and (max-width: 420px) {
  #nav {
    overflow: hidden;
    width: 100%;
  }
}

/**
 * Menu Main
 */
.menu-main {
  position: relative;
  margin: 0;
  padding: 0 0 30px 0;
  list-style-type: none;
}
.menu-main:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #4f89d1;
  width: 40px;
}
.menu-main li {
  font-size: 1.3125em;
  color: #fff;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  width: 100%;
}
.menu-main li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
}
.menu-main li a:hover {
  color: #158bf3;
}
.menu-main li .fa {
  padding-left: 5px;
  font-weight: 700;
}

/**
 * Menu Secondary
 */
.menu-secondary {
  margin: 0;
  padding: 30px 0 0 0;
  list-style-type: none;
}
.menu-secondary:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30;
  height: 1px;
  width: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #4f89d1;
  width: 40px;
  padding-top: 20px;
}
.menu-secondary li {
  font-size: 1.3125em;
  color: #0b79d9;
  font-style: italic;
  width: 100%;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
}
.menu-secondary li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 0;
  font-weight: 600;
}
.menu-secondary li a:hover {
  color: #158bf3;
}
.menu-secondary li .fa {
  color: #fff;
  padding-left: 5px;
}
.menu-secondary li ul.sub-menu {
  list-style: none;
  padding: 5px 10px;
}
.menu-secondary li ul.sub-menu li {
  font-size: .9em;
  line-height: 1em;
}
.menu-secondary li ul.sub-menu li a {
  text-transform: uppercase;
  color: #0b5698;
  font-weight: 400;
}

/**
 * Menu Tertiary
 */
.menu-tertiary {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.menu-tertiary li {
  width: 100%;
}
.menu-tertiary li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 30px 30px 30px;
}
.menu-tertiary li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  height: 1px;
  width: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  background-color: #fee78b;
  width: 40px;
}
.menu-tertiary li a span {
  display: block;
  font-size: 1.3125em;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.menu-tertiary li a span:hover {
  color: #fee78b;
}
.menu-tertiary li a small {
  display: block;
  font-size: 0.9375em;
  color: #fee78b;
  font-style: italic;
}
.menu-tertiary li .fa {
  padding-left: 5px;
  color: #fee78b;
}

/**
 * Nav Icons
 */
.nav-icons-wrap {
  position: relative;
  overflow: hidden;
  height: 10px;
  width: 100%;
  height: auto;
  margin-top: -10px;
}

#nav-icons {
  position: relative;
  width: 85.715%;
  height: 100%;
  padding-top: 10px;
  float: left;
  /**
   * NO PJAX
   */
  /**
   * CLEAN AND SAFE
   */
}
#nav-icons:before, #nav-icons:after {
  position: absolute;
  top: 0;
  content: '';
  height: 10px;
  background-color: #fff;
}
#nav-icons:before {
  width: 1000%;
  left: -1000%;
}
#nav-icons:after {
  width: 1000%;
  right: -1000%;
}
#nav-icons.nav-icons--clean_and_safe {
  padding-top: 15px;
}
#nav-icons.nav-icons--clean_and_safe .fa {
  font-size: 2em;
  margin-bottom: 5px;
  height: 40px;
}
#nav-icons.nav-icons--clean_and_safe .nav-icons__menu li {
  color: #d1d1d1;
}
#nav-icons.nav-icons--clean_and_safe .nav-icons__menu li.active {
  color: #4f89d0;
}

/**
 * Nav Icons Menu
 */
#nav-icons-clean {
  position: relative;
  width: 14.285%;
  height: 100%;
  padding-top: 10px;
  border-left: 2px solid #a0acba;
  margin: 0 auto;
  float: left;
}

.nav-icons__menu-clean {
  list-style-type: none;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.nav-icons__menu-clean:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.nav-icons__menu-clean li {
  display: block;
  float: left;
  width: 100%;
  height: 100px;
  padding-top: 16px;
  color: #a0acba;
}
.nav-icons__menu-clean li:hover, .nav-icons__menu-clean li.active {
  color: #444444;
}
.nav-icons__menu-clean li .icon {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  font-size: 1.875em;
  height: 34px;
  margin-bottom: 7px;
  line-height: 1;
}
.nav-icons__menu-clean li h2 {
  display: block;
  margin: 0;
  font-size: 1.1875em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.nav-icons__menu {
  list-style-type: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.nav-icons__menu:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.nav-icons__menu li {
  display: block;
  float: left;
  width: 16.666666666666666667%;
  height: 100px;
  padding-top: 16px;
  color: #a0acba;
}
.nav-icons__menu li.nav-icons__menu--clean {
  width: 25%;
}
.nav-icons__menu li:hover, .nav-icons__menu li.active {
  color: #444444;
}
.nav-icons__menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.nav-icons__menu li .icon {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  font-size: 1.875em;
  height: 34px;
  margin-bottom: 7px;
  line-height: 1;
}
.nav-icons__menu li h2 {
  display: block;
  margin: 0;
  font-size: 1.1875em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

/**
* Nav Icons Indicator
*/
#nav-icons__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
}
#nav-icons__indicator:before, #nav-icons__indicator:after {
  position: absolute;
  top: 0;
  content: '';
  height: 10px;
  /* TRANSITION */
  -moz-transition: width 150ms linear;
  -o-transition: width 150ms linear;
  -webkit-transition: width 150ms linear;
  transition: width 150ms linear;
}
#nav-icons__indicator:before {
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  width: 50%;
  left: 0;
}
#nav-icons__indicator:after {
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  width: 50%;
  right: 0;
}
#nav-icons__indicator.nav-icons__indicator--1:before {
  width: 8.33333%;
}
#nav-icons__indicator.nav-icons__indicator--1:after {
  width: 91.66667%;
}
#nav-icons__indicator.nav-icons__indicator--2:before {
  width: 25%;
}
#nav-icons__indicator.nav-icons__indicator--2:after {
  width: 75%;
}
#nav-icons__indicator.nav-icons__indicator--3:before {
  width: 41.66667%;
}
#nav-icons__indicator.nav-icons__indicator--3:after {
  width: 58.33333%;
}
#nav-icons__indicator.nav-icons__indicator--4:before {
  width: 58.33333%;
}
#nav-icons__indicator.nav-icons__indicator--4:after {
  width: 41.66667%;
}
#nav-icons__indicator.nav-icons__indicator--5:before {
  width: 75%;
}
#nav-icons__indicator.nav-icons__indicator--5:after {
  width: 25%;
}
#nav-icons__indicator.nav-icons__indicator--6:before {
  width: 91.66667%;
}
#nav-icons__indicator.nav-icons__indicator--6:after {
  width: 8.33333%;
}

.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--1:before {
  width: 12.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--1:after {
  width: 87.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--2:before {
  width: 37.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--2:after {
  width: 62.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--3:before {
  width: 62.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--3:after {
  width: 37.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--4:before {
  width: 87.5%;
}
.nav-icons--clean_and_safe #nav-icons__indicator.nav-icons__indicator--4:after {
  width: 12.5%;
}

#modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#D9F1F0E8', endColorstr='#D9F1F0E8');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjBlOCIgc3RvcC1vcGFjaXR5PSIwLjg1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjFmMGU4IiBzdG9wLW9wYWNpdHk9IjAuODUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(241, 240, 232, 0.85)), color-stop(100%, rgba(241, 240, 232, 0.85)));
  background-image: -moz-linear-gradient(top, rgba(241, 240, 232, 0.85) 0%, rgba(241, 240, 232, 0.85) 100%);
  background-image: -webkit-linear-gradient(top, rgba(241, 240, 232, 0.85) 0%, rgba(241, 240, 232, 0.85) 100%);
  background-image: linear-gradient(to bottom, rgba(241, 240, 232, 0.85) 0%, rgba(241, 240, 232, 0.85) 100%);
  /* TRANSITION */
  -moz-transition: opacity 250ms;
  -o-transition: opacity 250ms;
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  z-index: -1;
}
#modals.show {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  z-index: 10000;
}

.modal {
  position: absolute;
  left: 10%;
  width: 80%;
  margin: 0 auto;
  min-height: 300px;
  padding: 100px 60px;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#F2F1F0E8', endColorstr='#F2F1F0E8');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjBlOCIgc3RvcC1vcGFjaXR5PSIwLjk1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjFmMGU4IiBzdG9wLW9wYWNpdHk9IjAuOTUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(241, 240, 232, 0.95)), color-stop(100%, rgba(241, 240, 232, 0.95)));
  background-image: -moz-linear-gradient(top, rgba(241, 240, 232, 0.95) 0%, rgba(241, 240, 232, 0.95) 100%);
  background-image: -webkit-linear-gradient(top, rgba(241, 240, 232, 0.95) 0%, rgba(241, 240, 232, 0.95) 100%);
  background-image: linear-gradient(to bottom, rgba(241, 240, 232, 0.95) 0%, rgba(241, 240, 232, 0.95) 100%);
  border: 2px solid #cfcbc3;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-box-shadow: 0 0 84px 14px #f1efe7;
  -webkit-box-shadow: 0 0 84px 14px #f1efe7;
  box-shadow: 0 0 84px 14px #f1efe7;
  /* TRANSITION */
  visibility: hidden;
  top: -110%;
}
.modal.show {
  visibility: visible;
  top: 11%;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #a19b94;
  font-size: 2em;
  cursor: pointer;
}

.modal-content {
  text-align: center;
}
.modal-content h3 {
  color: #a19b94;
}

/**
 * Flexslider defaults
 * @TODO move to _plugins.scss
 */
/**
 * Flex Control Nav <ol>
 */
.flex-control-nav {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 10px 0;
  width: 100%;
  list-style-type: none;
  text-align: center;
}
.flex-control-nav li {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  cursor: pointer;
  margin-right: 7px;
}
.flex-control-nav li:last-child {
  margin-right: 0;
}
.flex-control-nav li a {
  display: block;
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-color: #d9d5c5;
}
.flex-control-nav li a:hover {
  background-color: #cdc8b3;
}

/**
 * Flex Direction Nav <ul>
 */
.flex-direction-nav {
  position: absolute;
  width: 100%;
}

/**
 * Nav Icon Slider
 */
#nav-icons--slides {
  width: 100%;
  min-height: 600px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
#nav-icons--slides li {
  display: none;
  float: left;
  width: 100%;
  min-height: 600px;
  height: 100%;
}
#nav-icons--slides li.active {
  display: block;
}

.menu-social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #4f89d0;
}
.menu-social li {
  font-size: 2.125em;
  line-height: 1;
}
.menu-social li a {
  color: inherit;
  line-height: inherit;
}
.menu-social label {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 15px;
  position: relative;
  top: -3px;
}
.menu-social.menu-horizontal li {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 15px;
}
.menu-social.menu-horizontal li:last-child {
  margin-right: 0;
}
.menu-social.menu-social--small {
  position: relative;
  padding: 10px 0 30px 0;
}
.menu-social.menu-social--small li {
  font-size: 1.3125em;
}

.map-wrap {
  position: relative;
  height: 710px;
  width: 100%;
}

.map {
  position: relative;
  height: 710px;
  width: 100%;
  background-color: #e7e5df;
}
.map .map-border {
  height: 9px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 2;
}
.map .map-border--top {
  top: 0;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#1A000000', endColorstr='#00000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjM2JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(36%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
}
.map .map-border--bottom {
  bottom: 0;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#1A000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjM2JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(36%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.1) 100%);
}
.map.clone {
  height: 710px;
  width: 960px;
  position: fixed;
  right: -100%;
  bottom: 0;
  -moz-transform: scale3d(0.25, 0.25, 1) translate3d(150%, 150%, 0);
  -ms-transform: scale3d(0.25, 0.25, 1) translate3d(150%, 150%, 0);
  -webkit-transform: scale3d(0.25, 0.25, 1) translate3d(150%, 150%, 0);
  transform: scale3d(0.25, 0.25, 1) translate3d(150%, 150%, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  opacity: 0.65;
  z-index: 10;
  -moz-transition: right 150ms, opacity 150ms;
  -o-transition: right 150ms, opacity 150ms;
  -webkit-transition: right 150ms, opacity 150ms;
  transition: right 150ms, opacity 150ms;
}
.map.clone.show {
  right: 0;
}
.map.clone:hover {
  -moz-transform: scale3d(0.5, 0.5, 1) translate3d(50%, 50%, 0);
  -ms-transform: scale3d(0.5, 0.5, 1) translate3d(50%, 50%, 0);
  -webkit-transform: scale3d(0.5, 0.5, 1) translate3d(50%, 50%, 0);
  transform: scale3d(0.5, 0.5, 1) translate3d(50%, 50%, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.map .map-inner {
  position: relative;
  width: 960px;
  height: 710px;
  margin: 0 auto;
  background-image: url("../images/bg-map.jpg");
  background-position: 50% 50%;
}
.map .map-inner:hover .map-area {
  z-index: 1;
}

.map-area {
  position: absolute;
  cursor: pointer;
}
.map-area#map-area--civic_core {
  left: 444px;
  top: 339px;
}
.map-area#map-area--civic_core .map-area--location_name {
  top: 31px;
  left: 13px;
}
.map-area#map-area--columbia {
  left: 335px;
  top: 339px;
}
.map-area#map-area--columbia .map-area--location_name {
  top: 42px;
  left: 20px;
}
.map-area#map-area--cortez {
  left: 455px;
  top: 288px;
}
.map-area#map-area--cortez .map-area--location_name {
  top: 29px;
  left: 39px;
}
.map-area#map-area--east_village {
  left: 528px;
  top: 277px;
}
.map-area#map-area--east_village .map-area--location_name {
  top: 168px;
  left: 42px;
}
.map-area#map-area--gaslamp {
  left: 444px;
  top: 407px;
}
.map-area#map-area--gaslamp .map-area--location_name {
  top: 17px;
  left: 11px;
}
.map-area#map-area--little_italy {
  left: 278px;
  top: 178px;
}
.map-area#map-area--little_italy .map-area--location_name {
  top: 89px;
  left: 84px;
}
.map-area#map-area--marina {
  left: 335px;
  top: 438px;
}
.map-area#map-area--marina .map-area--location_name {
  top: 62px;
  left: 73px;
}
.map-area svg {
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
.map-area svg * {
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
.map-area:hover {
  z-index: 5 !important;
}
.map-area:hover svg path {
  fill-opacity: 0.9;
  stroke: #444444;
  fill: #444444;
}

.map-area--location_name {
  position: absolute;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.3125em;
  text-transform: uppercase;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.1;
}

/**
 * Wrapper
 * Main wrapper element for hiding overflow etc
 */
#wrap {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  -moz-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  -moz-transition: padding 500ms;
  -o-transition: padding 500ms;
  -webkit-transition: padding 500ms;
  transition: padding 500ms;
}

/**
 * Inject / Inject Wrap
 */
#inject--wrap {
  position: relative;
  min-height: 100%;
  background-color: #fff;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
#inject--wrap.nav--open {
  -moz-transform: translate3d(-420px, 0, 0);
  -ms-transform: translate3d(-420px, 0, 0);
  -webkit-transform: translate3d(-420px, 0, 0);
  transform: translate3d(-420px, 0, 0);
}
#inject--wrap.nav--open:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999999;
  -moz-box-shadow: -75px 0px 90px -65px rgba(0, 0, 0, 0.3) inset;
  -webkit-box-shadow: -75px 0px 90px -65px rgba(0, 0, 0, 0.3) inset;
  box-shadow: -75px 0px 90px -65px rgba(0, 0, 0, 0.3) inset;
}

#inject {
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
#inject.nav--open .inject__overlay {
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 999999999;
}

.inject__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}

/**
 * Content
 * Main content container, after header/hero and before footer
 */
#content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 600ms;
  -o-transition: all 600ms;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  background-position: 50% 100px;
}
#content.show {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#content.content--no_hero {
  padding-top: 200px;
}
#content.content--404 {
  padding-top: 300px;
}
#content.content--loading {
  background-image: url("../images/ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: 50% 100px;
  background-size: auto auto;
}
#content img {
  max-width: 100%;
  height: auto;
}

/**
 * Section
 */
/**
 * Section Sizes
 */
.section {
  padding: 50px 0;
}

.section-xlarge {
  padding: 100px 0;
}

.section-large {
  padding: 80px 0;
}

.section-medium {
  padding: 60px 0;
}

.section-small {
  padding: 40px 0;
}

.section-xsmall {
  padding: 20px 0;
}

/**
 * Section colors
 */
.section-lightblue {
  background-color: #f5f8fb;
  border-top: 1px solid #e4e8ed;
  border-bottom: 1px solid #e4e8ed;
}

/**
 * Section Header
 */
.section-header--large {
  padding: 20px 0;
}

/**
 * Section Footer
 */
.section-footer .btn {
  margin-right: 15px;
}
.section-footer .btn:last-of-type {
  margin-right: 0;
}

/**
 * Article
 * Article styling for pages/posts
 */
article:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.footer-actions a {
  color: #4f89d0;
}
.footer-actions:hover {
  color: #275792;
}

#footer {
  position: relative;
  background-color: white;
  width: 100%;
  z-index: 2;
}
#footer .menu-footer {
  padding: 35px 0;
}
#footer .menu-footer li {
  text-align: center;
}
#footer .menu-footer li a {
  font-size: 1.3125em;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  color: #4f89d0;
  text-transform: uppercase;
  line-height: 1;
}
#footer .menu-footer li a:hover {
  color: #275792;
}

.back-to-top {
  background: none;
  margin: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  z-index: 99999;
  display: none;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(79, 137, 208, 0.5);
}
.back-to-top i {
  font-size: 60px;
}

.member-logo {
  display: block;
  width: 100%;
  height: 90px;
  background-size: auto auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.neighborhood-preview {
  position: relative;
  width: 100%;
  height: 386px;
  border-bottom: 1px solid #e4e8ed;
}
.neighborhood-preview:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.neighborhood-preview:nth-child(2n+1) .neighborhood-preview__content {
  padding: 40px 400px 40px 80px;
}
.neighborhood-preview:nth-child(2n+1) .neighborhood-preview__thumb {
  right: 0;
  left: auto;
}
.neighborhood-preview .neighborhood-preview__thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 320px;
  height: 385px;
  background-size: cover;
  background-position: 50% 50%;
}
.neighborhood-preview .neighborhood-preview__content {
  width: 100%;
  padding: 40px 80px 40px 400px;
}

.members-filters {
  width: 100%;
  background-color: #dff0ff;
}

.members-filters__header {
  padding: 15px 0 10px 0;
  text-align: center;
}

.members-filters__content {
  width: 100%;
  padding: 50px 0;
  border-top: 1px solid #ffffff;
}

.members-filters__form {
  padding-right: 40px;
  width: 30%;
  float: left;
}
.members-filters__form:last-of-type {
  width: 40%;
  padding-right: 0;
}

/**
 * Member Grid
 */
.member-row {
  border-bottom: 1px solid #dfefff;
}
.member-row:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Member Tile
 * .span3 normal, .span6 featured
 */
.member-tile {
  position: relative;
  background-color: #fff;
  border-right: 1px solid #dfefff;
  height: 365px;
  text-align: center;
  cursor: pointer;
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  -webkit-transition: all 150ms;
  transition: all 150ms;
}
.member-tile:nth-child(4n) {
  border-right: none;
}
.member-tile:after {
  content: '';
  display: none;
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -16px;
  border-top: 16px solid #dff0ff;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}
/* .member-tile.member-tile--tier_2 .member-tile__footer .member-tile-btn__info {
  display: none;
} */
.member-tile.member-tile--tier_1 .member-tile__logo {
  /* visibility: hidden; */
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  /* opacity: 0; */
}
/* .member-tile.member-tile--tier_1 .member-tile__footer .btn {
  display: none;
} */
.member-tile.member-tile--active {
  background-color: #dff0ff;
}
.member-tile.member-tile--active .btn {
  background-color: #fff;
}
.member-tile.member-tile--active .btn:hover {
  background-color: #0b79d9;
}
.member-tile.member-tile--active:after {
  display: block !important;
}

.member-tile__body {
  width: 100%;
  height: 75%;
  padding: 50px 40px;
}

.member-tile__logo {
  display: block;
  width: 100%;
  height: 65px;
  text-align: center;
}
.member-tile__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.member-tile__member--name {
  margin: 0;
  line-height: baseline;
}

.member-tile__member--type {
  margin: 0;
  line-height: baseline;
  color: #0b79d9;
  font-style: italic;
}

.member-tile__member--industry {
  margin: 0;
  line-height: baseline;
  font-weight: normal;
  font-size: 1em;
  color: #868e97;
  text-transform: none;
}

.member-tile__footer {
  width: 100%;
  height: 25%;
}
.member-tile__footer .btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  text-align: center;
}

/**
 * Member Description
 */
.member-tile__description {
  display: none;
}

/**
 * Member Expander
 */
#member-expander {
  display: none;
  width: 100%;
  background-color: #0b79d9;
  padding: 65px;
}
#member-expander .member-expander__inner {
  color: #fff;
}

.event-sponsors {
  margin-bottom: 0;
  border-bottom: 1px solid #e1f1ff;
  border-top: 1px solid #e1f1ff;
}

.event-sponsor {
  text-align: center;
  display: table;
  border-right: 1px solid #e1f1ff;
  height: 260px;
}
.event-sponsor:nth-child(4n) {
  border-right: none;
}
.event-sponsor .event-sponsor__logo {
  height: 55px;
  max-width: 100%;
  margin-bottom: 10px;
}
.event-sponsor .event-sponsor__type {
  color: #4f89d0;
}

.event-form {
  background-color: #dff0ff;
  width: 100%;
}
.event-form .event-form__header {
  margin-bottom: 40px;
}

/**
 * Team Member Previews
 */
.team-member-previews {
  width: 100%;
  background-color: #f4f4f4;
}

.team-member-previews__header,
.team-member-previews__footer {
  text-align: center;
  padding: 40px 0;
  width: 100%;
}

.team-member-previews__header {
  border-bottom: 1px solid #ffffff;
}

.team-member-previews__footer {
  border-top: 1px solid #ffffff;
}

.team-member-previews__content--row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-flow: row wrap;
}

.team-member-previews__content--row:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.team-member-preview {
  border-right: 1px solid #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 25%;
  min-width: 250px;
  width: auto;
  float: none;
}

.team-member-preview:last-child {
  border-right: none;
}

#content .team-member-preview .team-member-preview__photo img {
  margin: 0 auto 30px auto;
  border-radius: 50%;
  height: 148px;
  width: 148px;
  object-fit: cover;
  object-position: center center;
  max-width: none;
  max-height: none;
}

.team-member-preview .team-member-preview__body {
  text-align: center;
}

/**
 * Hero
 */
.cas-hero-title {
  line-height: 0.75;
}

.cas-hero-subtitle {
  text-align: right;
}

/**
 * Contact Bar
 */
.cas-contact-bar-wrap {
  position: relative;
  z-index: 100;
  margin-top: -120px;
}

.cas-contact-bar {
  width: 100%;
  min-height: 120px;
  height: auto;
}
.cas-contact-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(3, 29, 51, 0.8) 0%, #031d33 100%);
  background-size: 100% 120px;
}
.cas-contact-bar.cas-contact-bar--open {
  height: auto;
}
.cas-contact-bar.cas-contact-bar--open .cas-contact-bar__inner {
  display: block;
  height: auto;
}
.cas-contact-bar .cas-contact-bar__header {
  position: relative;
  width: 100%;
  padding: 16px 30px;
  height: 100px;
  color: white;
}
.cas-contact-bar .cas-contact-bar__title {
  font-size: 26px;
  font-weight: bold;
  font-style: italic;
  margin: 0;
  padding: 0;
  font-family: "TisaPro", "Helvetica Neue", Helvetica, sans-serif;
}
.cas-contact-bar .cas-contact-bar__subtitle {
  color: #fed943;
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-style: italic;
  font-family: "TisaPro", "Helvetica Neue", Helvetica, sans-serif;
}
.cas-contact-bar .cas-contact-bar__actions {
  padding-top: 15px;
}
.cas-contact-bar .cas-contact-bar__inner {
  display: none;
  height: 0;
  position: relative;
  width: 100%;
  padding: 20px 30px;
  background-color: #031d33;
}

/**
 * Nav Bar
 */
.cas-nav {
  width: 100%;
  background-color: #dff0ff;
  height: 70px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .cas-nav {
    height: auto;
  }
  .cas-nav .cas-nav__menu {
    height: auto;
  }
  .cas-nav .cas-nav__menu li {
    display: block;
    width: 100%;
  }
}

.cas-nav__menu {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 70px;
  text-align: center;
  color: #7d95b4;
}
.cas-nav__menu li {
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  font-family: "MarianinaFY", "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 19px;
}
.cas-nav__menu li.current-menu-item {
  background-color: #d3e4f2;
}
.cas-nav__menu li.current-menu-item:after {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -10px;
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid #d3e4f2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.cas-nav__menu li.current-menu-item a {
  font-weight: bold;
  color: #434343;
}
.cas-nav__menu li a {
  padding: 0 30px;
  float: left;
  line-height: 70px;
  height: 70px;
  display: block;
}
.cas-nav__menu li a:hover {
  background-color: #d3e4f2;
}

/**
 * Neighborhoods PReview
 */
.cas-neighborhoods-preview {
  width: 100%;
  height: 520px;
  border-bottom: 2px solid #f4f4f4;
}
.cas-neighborhoods-preview:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.cas-neighborhoods-preview .cas-neighborhoods-inner {
  background-image: url("../images/content/bg-neighborhoods.png");
  background-position: 95% 50%;
  background-size: auto auto;
  background-repeat: no-repeat;
  height: 100%;
  display: table;
}
.cas-neighborhoods-preview .cas-neighborhoods-inner__left {
  padding-left: 40px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 55%;
}
.cas-neighborhoods-preview .cas-neighborhoods-inner__right {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .cas-neighborhoods-preview .cas-neighborhoods-inner {
    display: block;
  }
  .cas-neighborhoods-preview .cas-neighborhoods-inner__left {
    padding-left: 10px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .cas-neighborhoods-preview .cas-neighborhoods-inner__right {
    display: block;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .cas-contact-bar-wrap {
    margin-top: -200px;
  }

  .cas-contact-bar {
    min-height: 200px;
  }
  .cas-contact-bar:before {
    height: 200px;
    background-size: 100% 200px;
  }
  .cas-contact-bar .cas-contact-bar__header {
    text-align: center;
    height: 200px;
  }
  .cas-contact-bar .cas-contact-bar__actions {
    text-align: center;
  }

  .cas-nav {
    height: auto;
  }
  .cas-nav .container {
    padding: 0;
  }

  .cas-nav__menu {
    height: auto;
    display: block;
  }
  .cas-nav__menu:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .cas-nav__menu li {
    float: left;
    width: 33.333333333337%;
    display: block;
    text-align: center;
  }
  .cas-nav__menu li:after {
    display: none !important;
  }
  .cas-nav__menu li a {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .cas-neighborhoods-preview .cas-neighborhoods-inner {
    padding-left: 10px;
    padding-top: 0;
    background-position: 85% 100%;
  }
  .cas-neighborhoods-preview .cas-neighborhoods-inner .span6 {
    position: relative;
    top: -40px;
  }
}
@media only screen and (max-width: 767px) {
  img {
    max-width: 100% !important;
  }

  /**
   * Header
   */
  #header .logo .brand {
    background-size: 68%;
  }
  #header .logo .logo-separator {
    display: none;
  }
  #header .logo .sponsor {
    display: none;
  }

  /**
   * Nav
   */
  #nav-toggle__text {
    display: none !important;
  }

  #nav .nav__body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #nav .nav__body .nav__body-inner {
    overflow-y: scroll;
  }

  /**
   * Nav Icons
   */
  .nav-icons-wrap {
    display: none;
  }
  .nav-icons-wrap.clean {
    display: block;
  }

  /**
   * Event Feed
   */
  .post-preview {
    width: 100%;
  }

  /**
   * Hero
   */
  #hero {
    height: 450px;
  }
  #hero h2.huge {
    font-size: 4em;
  }
  #hero .hero-footer__btn--intersect {
    width: 75%;
  }
  #hero.clean-safe__height {
    height: 700px;
  }

  /**
   * Section Sizes
   */
  .section {
    padding: 25px 0;
  }

  .section-xlarge {
    padding: 60px 0;
  }

  .section-large {
    padding: 40px 0;
  }

  .section-small {
    padding: 20px 0;
  }

  /**
   * Panes
   */
  .pane.pane--block {
    height: 100%;
  }

  /**
   * Component - Become A Member
   */
  .become-a-member {
    background-image: none;
  }
  .become-a-member .btn.btn-white-yellow {
    text-align: center;
  }

  /**
   * Component - Quote Large
   */
  .quote--large .quote--large__left {
    width: 100%;
    float: none;
  }
  .quote--large .quote--large__right {
    width: 100%;
    padding: 20px;
  }

  /**
   * Members
   */
  .members-filters .members-filters__form {
    width: 100%;
    padding-right: 0;
  }
  .members-filters .members-filters__form:last-of-type {
    width: 100%;
  }

  .photo-interstitial {
    height: 350px;
  }

  /* NEIGHBORHOODS */
  .neighborhood-preview {
    border-bottom: none;
    height: auto;
  }
  .neighborhood-preview .neighborhood-preview__thumb {
    position: relative;
    left: 0;
    width: 100%;
  }
  .neighborhood-preview:nth-child(2n+1) .neighborhood-preview__content {
    padding: 40px 20px 40px 20px;
  }
  .neighborhood-preview .neighborhood-preview__content {
    padding: 40px 20px 40px 20px;
  }

  /**
   * Map
   */
  .map.clone {
    display: none;
  }

  .map-wrap {
    height: 455px;
    -moz-transform: scale3d(0.65, 0.65, 1) translate3d(-100%, -27%, 0);
    -ms-transform: scale3d(0.65, 0.65, 1) translate3d(-100%, -27%, 0);
    -webkit-transform: scale3d(0.65, 0.65, 1) translate3d(-100%, -27%, 0);
    transform: scale3d(0.65, 0.65, 1) translate3d(-100%, -27%, 0);
  }

  /**
   * Inject
   */
  #inject--wrap.nav--open {
    -moz-transform: scale3d(1, 1, 1) translate3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1) translate3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1) translate3d(1, 1, 1);
    transform: scale3d(1, 1, 1) translate3d(1, 1, 1);
  }
  #inject--wrap.nav--open .map-wrap {
    -moz-transform: scale3d(0.65, 0.65, 0) translate3d(-46%, -27%, 0);
    -ms-transform: scale3d(0.65, 0.65, 0) translate3d(-46%, -27%, 0);
    -webkit-transform: scale3d(0.65, 0.65, 0) translate3d(-46%, -27%, 0);
    transform: scale3d(0.65, 0.65, 0) translate3d(-46%, -27%, 0);
  }

  /**
   * Footer
   */
  footer .list-table > li {
    display: inherit;
  }
  footer .menu-footer li {
    width: 100%;
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #EEF3F7;
    padding: 7px 0;
    line-height: 1;
  }
  footer .menu-footer li:last-child {
    border-bottom: none;
  }
}

/** 
 * Custom Code - Not included in any SASS files 
 */

 /* Membership Directory Page - /membership/directory */

.contact-list-simple-list-some-icons img {
  width: 30px;
}

.contact-list-simple-list-col-phone {
  min-width: 110px;
}

.page-id-23524 .section .container {
  max-width: 1800px;
}

.contact-list-simple-list-some-icons {
  white-space: break-spaces !important;
}

.contact-list-simple-list-some-icons a {
  margin-bottom: 5px !important;
}