@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?lda58w");
  src: url("../fonts/icomoon.eot?#iefixlda58w") format("embedded-opentype"), url("../fonts/icomoon.ttf?lda58w") format("truetype"), url("../fonts/icomoon.woff?lda58w") format("woff"), url("../fonts/icomoon.svg?lda58w#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #000;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   IMPREV CUSTOM STYLES BEGIN HERE
   ========================================================================== */
/**
 * Border box is better, especially for UIs, so literally sets everything
 * to border box sizing.
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "europa", sans-serif, Helvetica, Arial, sans-serif;
  background: #ffffff;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/**
 * More base settings that I find better for UIs.
 */
h1, h2, h3, h4, h5, h6, ol, ul, li, p {
  margin: 0;
  padding: 0;
}

/* ------------------
        Buttons
------------------  */
.button {
  -webkit-appearance: none;
  background: #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin: 0;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: normal;
  text-transform: uppercase;
}

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

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */
.button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * UI states
 */
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
}

.button:disabled,
.button.is-disabled {
  cursor: default;
  opacity: 0.6;
}

/* ------------------
        Icons
------------------  */
[class^=icon-], [class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1.5;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  color: inherit;
}

.icon-email:before {
  content: "\e076";
  margin-right: 5px;
  font-size: 16px;
}

.icon-facebook:before {
  content: "\e093";
  margin-right: 10px;
  font-size: 16px;
}

.icon-twitter:before {
  content: "\e094";
  margin-right: 10px;
  font-size: 16px;
}

.icon-linkedin:before {
  content: "\e09d";
  margin-right: 10px;
  font-size: 16px;
}

.icon-website:before {
  content: "\e0e3";
  margin-right: 10px;
  font-size: 16px;
}

/* ------------------
        Forms & Input
------------------  */
.input-text, .input-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 2px solid #ccc;
  background-color: #fff;
  padding: 0.5em 0.6em;
  border-radius: 2px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
}

.input-textarea {
  margin-bottom: 10px;
}

form .button {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .input-text {
    margin-bottom: 20px !important;
  }
  .input-textarea {
    margin-bottom: 20px !important;
  }
}
form .error {
  color: red;
}

form label.error {
  float: right;
  color: red;
}

/* ------------------
       Wrapper Stuff
       Use the wrapper whenever full width content won't work/isn't appropriate.
------------------  */
.wrapper {
  max-width: 1100px;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 auto;
}

/* ------------------
       Glance
       http://cl.ly/image/0u2I3c2m1z0c
------------------  */
.glance {
  /**
  * Set component level styles here.
  * Best used for sizing and positioning component as a whole.
  */
  overflow: hidden;
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.glance__photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #919191;
  height: 320px;
  position: relative;
  color: #fff;
  text-align: center; /* Redundant, Flexbox does this already. (But it's an okay fallback and not hurting anything to keep it.) */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.glance__photo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(145, 145, 145, 0.5);
}

.glance__photo_nophotos {
  background-image: none;
  background-color: inherit;
  height: inherit;
}

.ie .glance__photo, .no-cssfilters .glance__photo {
  height: 400px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ie .glance__photo:after, .no-cssfilters .glance__photo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(145, 145, 145, 0.5);
}

.glance__blur {
  height: 205px;
  padding-top: 10px;
  position: relative;
  top: -30px;
  margin-bottom: -205px; /* Essentially removes the blurred background section from the normal document flow. More performant than `position: absolute` and allows for `overflow: hidden` on the entire glance component. */
  width: 100%;
  overflow: hidden;
  /* Mirrored and blurred effect is created using a pseudo element with CSS transforms and filters. */
}
.glance__blur .glance__blur-image {
  color: #fff;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  width: 110%; /* Blurring elements makes their edges transparent. This stretches the element to be bigger than its parent as a workaround. The position property (`left`) adjusts for this to keeps the element centered.*/
  left: -5%;
  height: 205px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.glance__blur:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(145, 145, 145, 0.5);
}

.glance__header {
  position: relative;
  z-index: 100;
  top: 20px;
  line-height: 1;
  font-size: 12px;
  color: #ffffff;
}
.glance__header h1 {
  font-size: 3.5em;
  font-weight: 700;
  margin-top: 20px;
}
.glance__header h2 {
  font-size: 2.25555em;
  font-weight: 300;
  line-height: 1.5;
}
.glance__header h3 {
  font-size: 2.25555em;
  font-weight: 300;
}

.adl-logo {
  margin: 0 auto 20px;
  width: 300px;
  height: 55px;
}

@media only screen and (min-width: 768px) {
  .adl-logo {
    width: 380px;
    height: 70px;
  }
}
.buy-sell-footer {
  margin: 20px 10px;
  width: 300px;
  height: 95px;
}

.ie .glance__header, .no-cssfilters .glance__header {
  top: 0;
}

.no-flexbox.no-flexwrap .glance__header {
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.glance__info {
  margin-top: 50px;
  position: relative;
  background-color: rgba(0, 56, 108, 0.8);
  color: #ffffff;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.glance__info li { /* Blocks inside the info section are list items. The descriptors -- "bedroom, bathrooms, etc" -- are wrapped in spans inside the list items. */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; /* Redundant, Flexbox does this already. */
  font-size: 14px;
  vertical-align: baseline;
  font-weight: 700;
  line-height: 1.1;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.glance__info li span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 2px;
}

.ie .glance__info, .no-cssfilters .glance__info {
  overflow: hidden;
  margin-top: -140px;
}
.ie .glance__info li, .no-cssfilters .glance__info li {
  display: block;
  float: left;
  padding-top: 20px;
}
.ie .glance__info span, .no-cssfilters .glance__info span {
  display: block;
}

.ie .glance__blur, .no-cssfilters .glance__blur {
  display: none;
}

@media only screen and (min-width: 768px) {
  .glance__photo {
    height: 640px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* Easy parallax effect */
    background-attachment: fixed;
  }
  .glance__photo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(145, 145, 145, 0.5);
  }
  /* Disable parallax effect on iPads */
  /* Ditto for iPad Pro */
}
@media only screen and (min-width: 768px) and (min-device-width: 768px) and (max-device-width: 1024px) {
  .glance__photo {
    background-attachment: scroll;
  }
}
@media only screen and (min-width: 768px) and (min-device-width: 1024px) and (max-device-width: 1366px) {
  .glance__photo {
    background-attachment: scroll;
  }
}
@media only screen and (min-width: 768px) {
  .ie .glance__photo, .no-cssfilters .glance__photo {
    height: 640px;
  }
  .glance__header {
    margin: 0;
    top: auto;
    font-size: 20px;
  }
  .glance__blur {
    display: none;
  }
  .glance__info {
    border: none;
    margin-top: -70px;
    background-color: rgba(0, 56, 108, 0.8);
  }
  .glance__info li {
    border: none;
    width: 25%;
    height: 70px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .ie .glance__info, .no-cssfilters .glance__info {
    margin-top: -70px;
  }
}
/* ------------------
       Photo Grid
------------------  */
.photo-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #333;
  overflow: hidden;
  border-bottom: 2px solid #e6e6e6;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.photo-grid li {
  width: 33.3333%;
  height: 33.3333vw;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-grid img:hover {
  opacity: 0.8;
}

.no-objectfit .photo-grid li {
  height: 33vw;
  overflow: hidden;
  position: relative;
  background-color: #f2f2f2;
}

.no-objectfit .photo-grid img {
  height: 100%;
  width: auto;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) {
  .glance__info li {
    font-size: 17px;
  }
  .glance__info li span {
    font-size: 16px;
  }
  .photo-grid {
    background-color: transparent;
    padding: 0;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 60px;
  }
  .photo-grid li {
    padding: 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .photo-grid {
    padding: 0;
    border: none;
  }
  .photo-grid li {
    padding: 10px;
    height: 366.6666666667px;
  }
  .no-objectfit .photo-grid li {
    height: 366.6666666667px;
    overflow: hidden;
  }
}
.no-flexbox.no-flexwrap .photo-grid {
  overflow: hidden;
}

.no-flexbox.no-flexwrap .photo-grid li {
  display: block;
  float: left;
}

/* Hide fullscreen photo slider arrows */
.lg-prev, .lg-next {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .lg-prev, .lg-next {
    display: block !important;
    padding: 16px 20px 18px !important;
  }
}
/* ------------------
       Text/Property Description
------------------  */
.text {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.5;
  font-weight: 400;
}
.text h2 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.text h3 {
  font-size: 1.428571429em;
  margin-bottom: 10px;
  font-weight: 300;
}

.description {
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media only screen and (min-width: 768px) {
  .description {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .description h2 {
    display: none;
  }
  .description__content::first-line {
    display: block;
    font-size: 1.428571429em;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .text {
    padding: 0;
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    text-align: center;
  }
}
/* ------------------
       Map
------------------  */
.map {
  width: 100%;
  height: 180px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media only screen and (min-width: 768px) {
  .map {
    margin-top: 60px;
    margin-left: 30px;
    margin-right: 30px;
    height: 366.6666666667px;
    border: none;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .map iframe {
    pointer-events: none; /* Overridden by JS when clicked. */
  }
}
.js-map-on {
  pointer-events: auto !important;
}

/* Just used for gens */
.map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-flexbox.no-flexwrap .map {
  margin-left: auto;
  margin-right: auto;
}

.no-objectfit .map {
  overflow: hidden;
  position: relative;
}

.no-objectfit .map img {
  height: auto;
  width: 100%;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ------------------
       Side By Side
       Puts two modules next to each other.

       Stats & Tour
       These are bunlded together for wide screen styling.
------------------  */
.side-by-side {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.side-by-side .btn-block {
  margin-top: 40px;
}

.vertically-centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.stats-and-tour {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.profiles {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

/* ------------------
       Stats
------------------  */
.stat-table {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  font-size: 14px;
  color: #00386c;
  font-weight: 400;
}

.stat-table tr {
  line-height: 40px;
}

.stat-table tr:nth-child(odd) {
  background-color: #efefef;
}

.stat-table__name {
  text-align: left;
  padding-left: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.stat-table__value {
  color: #5e96d0;
  text-align: right;
  padding-right: 20px;
}

@media only screen and (min-width: 768px) {
  .stat-table {
    width: 49%;
    margin: 0;
    margin-top: 60px;
  }
  .stat-table_novideo {
    width: 100%;
    margin: 0;
    margin-top: 60px;
  }
}
.no-flexbox.no-flexwrap .stat-table {
  width: 100%;
}

/* ------------------
3D Showcase
------------------  */
.showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 480px;
  margin-bottom: 30px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 0 10px 60px;
}
.showcase h1 {
  font-size: 2em;
  font-weight: 300;
  margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
  .showcase {
    margin-top: 60px;
    padding-bottom: 30px;
    height: 619px;
  }
}
/* Just used for gens */
.showcase img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.no-flexbox.no-flexwrap .showcase {
  margin-left: auto;
  margin-right: auto;
}

.no-objectfit .showcase {
  overflow: hidden;
  position: relative;
}

.no-objectfit .showcase img {
  height: auto;
  width: 100%;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ------------------
       Video
------------------  */
.tour {
  width: 100%;
  height: 180px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 600px) {
  .tour {
    height: 320px;
  }
}
@media only screen and (min-width: 768px) {
  .tour {
    width: 49%;
    height: auto;
    background-color: #000;
    border: none;
    margin-top: 60px;
    margin-left: 2%;
  }
  .tour iframe {
    height: 320px;
  }
}
.no-flexbox.no-flexwrap .tour {
  margin-left: auto;
  margin-right: auto;
}

/* ------------------
       Profile
------------------  */
.profile {
  width: 100%;
  margin-top: 30px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.428571429;
  color: #00386c;
}
.profile h2 {
  font-size: 20px;
  font-weight: 700;
}
.profile p {
  font-size: 14px;
}

.profile__card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile__avatar {
  display: block;
  width: 33.333333%;
  height: auto;
  border-radius: 50%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.profile__info {
  width: 66.666666%;
  padding-left: 20px;
  padding-right: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.profile__logo {
  height: 12px;
  vertical-align: baseline;
}

.profile__brokerage {
  width: 100%;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 1.666666667;
}

.profile-only {
  margin: 60px auto;
}

@media only screen and (min-width: 768px) {
  .profile {
    margin-top: 60px;
    width: 49%;
  }
  .profile:nth-child(2) {
    margin-left: 2%;
  }
  .profile__info {
    padding-left: 40px;
    text-align: left;
  }
}
.no-flexbox.no-flexwrap .profile {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.no-flexbox.no-flexwrap .profile {
  position: relative;
  display: table;
}
.no-flexbox.no-flexwrap .profile .profile__avatar {
  display: table-cell;
  vertical-align: middle;
  width: 200px;
}
.no-flexbox.no-flexwrap .profile .profile__info {
  display: table-cell;
  vertical-align: middle;
}

/* ------------------
       Contact Button
------------------  */
/*
 * Gives the Contact Button space at the end of the page to prevent it from obscuring content elements.
 */
body {
  padding-bottom: 70px;
}

body.body_unbranded {
  padding-bottom: 0;
}

.button--contact {
  background: #00386c;
  width: 100%;
  display: block;
  line-height: 70px;
  font-size: 20px;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
}
.button--contact:hover {
  background: #5e96d0;
  color: #ffffff;
}

.button--download {
  background: #909090;
  color: #ffffff;
  width: 100%;
  display: block;
  line-height: 38px;
  font-size: 22px;
  font-weight: lighter;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 15px;
  padding: 10px 20px;
}

.button--profile {
  display: none;
}

.button--send {
  background: #00386c;
  width: 100%;
  display: block;
  line-height: 50px;
  font-size: 16px;
  font-weight: 700;
}
.button--send:hover {
  background: #5e96d0;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  body {
    padding: 0;
  }
  .button--contact {
    margin-top: 30px;
    width: 320px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .button--download {
    margin-top: 1px;
    width: 420px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .button--profile {
    display: block;
  }
}
@media only screen and (min-width: 300px) {
  body {
    padding: 0;
  }
  .button--contact {
    margin-top: 30px;
    width: 320px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .button--profile {
    display: block;
  }
}
/* ------------------
       Contact Form
------------------  */
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}

.modal-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: 100%;
  height: auto;
  z-index: 2000;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.7);
          transform: translateX(-50%) translateY(-50%) scale(0.7);
  visibility: hidden;
  opacity: 0;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
          transform: translateX(-50%) translateY(-50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00386c;
  color: #ffffff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.modal__close:hover {
  background-color: #5e96d0;
  color: #ffffff;
}

.modal-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-form {
  font-size: 14px;
  text-align: left;
  height: auto;
  background-color: #fafafa;
  padding: 35px;
  padding-top: 70px;
  border-radius: 2px;
}

@media only screen and (min-width: 768px) {
  .contact-form {
    font-size: 16px;
  }
}
.contact-form .alert {
  padding-top: 30px;
  padding-bottom: 50px;
  text-align: center;
}

/* ------------------
       Footer
------------------  */
.footer {
  margin-top: 30px;
  text-align: center;
  background: #ffffff;
  color: #00386c;
  min-height: 270px;
  font-weight: 300;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
.footer h4 {
  margin-bottom: 10px;
}
.footer h4 a {
  color: #00386c;
  font-weight: 400;
  font-size: 20px;
  max-width: 90%;
}
.footer p {
  font-size: 10px;
}
.footer .creds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding: 0 10px;
}
.footer .creds .copyright, .footer .creds .disclaimer {
  color: black;
}
.footer .creds img.eho-logo {
  width: 25px;
  height: 24px;
  margin-bottom: 5px;
}

.footer.footer_unbranded {
  min-height: 0px;
  padding-top: 0;
}

.company-logo {
  width: 300px;
  height: 55px;
  margin: 10px 10px;
}

.added-logo {
  width: 215px;
  height: auto;
  margin: 35px 10px 0px 10px;
}

@media only screen and (min-width: 768px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer p {
    max-width: 780px;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
* Center Using Transforms
* Good for items of unknown width/height that must be vertically and horizontally centered.
* Removes item from page flow.
* http://css-tricks.com/centering-percentage-widthheight-elements/
*/
.center-transform {
  position: absolute; /* Parent must have position: relative */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*
 * Hide visually and from screen readers:
 */
.hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
   http://www.sanbeiji.com/archives/953 */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}