@charset "UTF-8";

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/

/* pswp = photoswipe */

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */

/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/

/*

	1. Buttons

 */

/* <button> css reset */

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/images/default-skin.png?e3f799c6dec9af194c86decdf7392405) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */

  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/images/default-skin.svg?b257fa9c5ac8c515ac4d77a667ce2943);
  }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */

.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

/* increase size of share links on touch devices */

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */

.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(/images/preloader.gif?e34aafbb485a96eaf2a789b2bf3af6fe) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@-webkit-keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-140deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-140deg);
  }

  100% {
    transform: rotate(0);
  }
}

/*

	6. Additional styles

 */

/* root element of UI */

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

img {
  opacity: 1;
  transition: opacity 2s ease;
}

img.lazyload {
  opacity: 0;
}

img.lazyloaded {
  opacity: 1;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.job_opening__content,
.blog_post__article,
.wysiwyg {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #464039;
  font-size: 18px;
  line-height: 1.6;
}

.job_opening__content h2,
.blog_post__article h2,
.wysiwyg h2 {
  margin: 35px 0 15px 0;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 30px;
  line-height: 1.5;
  color: #002e54;
}

.job_opening__content h3,
.blog_post__article h3,
.wysiwyg h3 {
  margin: 35px 0 15px 0;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 1.5;
}

.job_opening__content p,
.blog_post__article p,
.wysiwyg p {
  margin: 15px 0;
}

.job_opening__content p:first-child,
.blog_post__article p:first-child,
.wysiwyg p:first-child {
  margin-top: 0;
}

.job_opening__content p:last-child,
.blog_post__article p:last-child,
.wysiwyg p:last-child {
  margin-bottom: 0;
}

.job_opening__content a,
.blog_post__article a,
.wysiwyg a {
  color: #002e54;
}

.job_opening__content a:hover,
.blog_post__article a:hover,
.wysiwyg a:hover {
  color: black;
}

.job_opening__content strong,
.blog_post__article strong,
.wysiwyg strong {
  font-weight: 700;
}

.job_opening__content em,
.blog_post__article em,
.wysiwyg em {
  font-style: italic;
}

.job_opening__content ul,
.blog_post__article ul,
.job_opening__content ol,
.blog_post__article ol,
.wysiwyg ul,
.wysiwyg ol {
  margin: 20px 0;
  padding: 0 0 0 30px;
}

.job_opening__content ul:first-child,
.blog_post__article ul:first-child,
.job_opening__content ol:first-child,
.blog_post__article ol:first-child,
.wysiwyg ul:first-child,
.wysiwyg ol:first-child {
  margin-top: 0;
}

.job_opening__content ul:last-child,
.blog_post__article ul:last-child,
.job_opening__content ol:last-child,
.blog_post__article ol:last-child,
.wysiwyg ul:last-child,
.wysiwyg ol:last-child {
  margin-bottom: 0;
}

.job_opening__content ul,
.blog_post__article ul,
.wysiwyg ul {
  list-style-type: disc;
}

.job_opening__content ol,
.blog_post__article ol,
.wysiwyg ol {
  list-style-type: decimal;
}

.job_opening__content li,
.blog_post__article li,
.wysiwyg li {
  margin: 10px 0;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-family: Museo Sans;
  background: url(/img/bg.png);
}

html,
body {
  -webkit-overflow-scrolling: touch;
}

.center {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.center:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 768px) {
  .center {
    padding: 0;
    width: 738px;
  }
}

@media only screen and (min-width: 1000px) {
  .center {
    width: 960px;
  }
}

@media only screen and (min-width: 1280px) {
  .center {
    width: 1200px;
  }
}

@font-face {
  font-family: Museo Sans;
  font-weight: 100;
  font-style: normal;
  src: url("/fonts/museosans_100-webfont.eot");
  src: url("/fonts/museosans_100-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_100-webfont.woff") format("woff"), url("/fonts/museosans_100-webfont.ttf") format("truetype"), url("/fonts/museosans_100-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 100;
  font-style: italic;
  src: url("/fonts/museosans_100_italic-webfont.eot");
  src: url("/fonts/museosans_100_italic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_100_italic-webfont.woff") format("woff"), url("/fonts/museosans_100_italic-webfont.ttf") format("truetype"), url("/fonts/museosans_100_italic-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/museosans_300-webfont.eot");
  src: url("/fonts/museosans_300-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_300-webfont.woff") format("woff"), url("/fonts/museosans_300-webfont.ttf") format("truetype"), url("/fonts/museosans_300-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 300;
  font-style: italic;
  src: url("/fonts/museosans_300_italic-webfont.eot");
  src: url("/fonts/museosans_300_italic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_300_italic-webfont.woff") format("woff"), url("/fonts/museosans_300_italic-webfont.ttf") format("truetype"), url("/fonts/museosans_300_italic-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/museosans_500-webfont.eot");
  src: url("/fonts/museosans_500-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_500-webfont.woff") format("woff"), url("/fonts/museosans_500-webfont.ttf") format("truetype"), url("/fonts/museosans_500-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 500;
  font-style: italic;
  src: url("/fonts/museosans_500_italic-webfont.eot");
  src: url("/fonts/museosans_500_italic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_500_italic-webfont.woff") format("woff"), url("/fonts/museosans_500_italic-webfont.ttf") format("truetype"), url("/fonts/museosans_500_italic-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/museosans_700-webfont.eot");
  src: url("/fonts/museosans_700-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_700-webfont.woff") format("woff"), url("/fonts/museosans_700-webfont.ttf") format("truetype"), url("/fonts/museosans_700-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Museo Sans;
  font-weight: 700;
  font-style: italic;
  src: url("/fonts/museosans_700_italic-webfont.eot");
  src: url("/fonts/museosans_700_italic-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/museosans_700_italic-webfont.woff") format("woff"), url("/fonts/museosans_700_italic-webfont.ttf") format("truetype"), url("/fonts/museosans_700_italic-webfont.svg#Museo Sans") format("svg");
}

@font-face {
  font-family: Icomoon;
  font-weight: normal;
  font-style: normal;
  src: url("/fonts/icomoon.eot");
  src: url("/fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("/fonts/icomoon.woff") format("woff"), url("/fonts/icomoon.ttf") format("truetype"), url("/fonts/icomoon.svg#Icomoon") format("svg");
}

.btn,
.spaces_banner_button {
  -webkit-font-smoothing: antialiased;
  border: solid 2px rgba(255, 255, 255, 0.5);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  margin: 25px 0 0 0;
  padding: 12px 25px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.btn:hover,
.spaces_banner_button:hover {
  border-color: #fff;
}

.btn--sm {
  padding: 0.5em 0.85em 0.4em;
  font-size: 10px;
}

@media (min-width: 1000px) {
  .btn--sm {
    font-size: 12px;
  }
}

@media (min-width: 1400px) {
  .btn--sm {
    font-size: 14px;
  }
}

.btn--blue-dark {
  color: #0e2d52;
  border: solid 2px rgba(14, 45, 82, 0.5);
}

.btn--blue-dark:hover {
  border-color: #0e2d52;
}

.btn--aqua {
  color: #3ABBC8;
  border: solid 2px rgba(58, 187, 200, 0.5);
}

.btn--aqua:hover {
  border-color: #3ABBC8;
}

.btn--solid-aqua {
  background-color: #3ABBC8;
  border: none;
  color: #fff;
}

.btn--solid-aqua:hover {
  border: none;
  background-color: #76d0d9;
}

.image_wrap {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}

.image_wrap img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image_wrap--9\/6 {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  padding-top: 66.6%;
}

.image_wrap--9\/6 img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fade-in {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-out {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.zoom-in {
  transform: scale(1.1);
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.01, 0.2, 0.34, 1);
          animation-timing-function: cubic-bezier(0.01, 0.2, 0.34, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.cascade-children > * {
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(1, 0.04, 0.55, 0.42);
          animation-timing-function: cubic-bezier(1, 0.04, 0.55, 0.42);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.cascade-children > *:nth-child(1) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.cascade-children > *:nth-child(2) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.cascade-children > *:nth-child(3) {
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}

.cascade-children > *:nth-child(4) {
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
}

.cascade-children > *:nth-child(5) {
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
}

.cascade-children > *:nth-child(6) {
  -webkit-animation-delay: 1700ms;
          animation-delay: 1700ms;
}

.cascade-children > *:nth-child(7) {
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
}

.cascade-children > *:nth-child(8) {
  -webkit-animation-delay: 2300ms;
          animation-delay: 2300ms;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide-up {
  transform: translateY(60px);
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.01, 0.2, 0.34, 1);
          animation-timing-function: cubic-bezier(0.01, 0.2, 0.34, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animation-duration-2000 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.animation-duration-3000 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.animation-duration-4000 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.animation-delay-250 {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.animation-delay-500 {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

.animation-delay-750 {
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
}

.animation-delay-1000 {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

.animation-delay-1500 {
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}

.animation-delay-2000 {
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
}

.animation-delay-2500 {
  -webkit-animation-delay: 2500ms;
          animation-delay: 2500ms;
}

.animation-delay-3000 {
  -webkit-animation-delay: 3000ms;
          animation-delay: 3000ms;
}

.animation-delay-4000 {
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
}

.scroll-animate-basic {
  opacity: 0;
  transform: translateY(60px);
  transition: transform, opacity;
  transition-duration: 0.5s, 0.5s;
  transition-delay: 0, 0.25s;
  transition-timing-function: cubic-bezier(0.01, 0.52, 0.34, 1), ease-out;
}

.scroll-animate-basic.scroll-animate-active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-basic-cascade-children > * {
  opacity: 0;
  transform: translateY(60px);
  transition: transform, opacity;
  transition-duration: 0.5s, 0.75s;
  transition-delay: 0, 0.25s;
  transition-timing-function: cubic-bezier(0.01, 0.52, 0.34, 1), ease-out;
}

*::-ms-backdrop,
.scroll-animate,
.scroll-animate-basic,
.scroll-animate-fade-cascade-children > *,
.scroll-animate-basic-cascade-children > * {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* IE11 Hack */

.scroll-animate-basic-cascade-children.scroll-animate-active > * {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(2) {
  transition-delay: 0.125s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(3) {
  transition-delay: 0.25s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(4) {
  transition-delay: 0.5s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(5) {
  transition-delay: 0.75s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(6) {
  transition-delay: 1s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(7) {
  transition-delay: 1.5s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(8) {
  transition-delay: 1.75s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(9) {
  transition-delay: 2s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(10) {
  transition-delay: 2.25s;
}

.scroll-animate-basic-cascade-children.scroll-animate-active > *:nth-child(100) {
  transition-delay: 2.5s;
}

.scroll-animate-basic1cascade-children.scroll-animate-active > *:nth-child(111) {
  transition-delay: 2.75s;
}

.scroll-animate-basic1cascade-children.scroll-animate-active > *:nth-child(022) {
  transition-delay: 3s;
}

.scroll-animate-fade {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.scroll-animate-fade-out {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.scroll-animate-fade-out.scroll-animate-active {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.scroll-animate-fade-cascade-children > * {
  opacity: 0;
  transition: opacity;
  transition-duration: 0.75s;
  transition-delay: 0.25s;
  transition-timing-function: ease-out;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > * {
  opacity: 1;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(1) {
  transition-delay: 0.25s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(2) {
  transition-delay: 0.5s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(3) {
  transition-delay: 0.75s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(4) {
  transition-delay: 1s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(5) {
  transition-delay: 1.5s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(6) {
  transition-delay: 2s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(7) {
  transition-delay: 3s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(8) {
  transition-delay: 4s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(9) {
  transition-delay: 5s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(10) {
  transition-delay: 6s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(11) {
  transition-delay: 7s;
}

.scroll-animate-fade-cascade-children.scroll-animate-active > *:nth-child(12) {
  transition-delay: 8s;
}

.scroll-animate-basic-cascade-children-tagged .scroll-animate-child {
  opacity: 0;
  transform: translateY(60px);
  transition: transform, opacity;
  transition-duration: 1s, 1.5s;
  transition-delay: 0, 0.25s;
  transition-timing-function: cubic-bezier(0.01, 0.52, 0.34, 1), ease-out;
}

.scroll-animate-basic-cascade-children-tagged.scroll-animate-active .scroll-animate-child {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-child:nth-of-type(1) {
  transition-delay: 0.25s;
}

.scroll-animate-child:nth-of-type(2) {
  transition-delay: 0.5s;
}

.scroll-animate-child:nth-of-type(3) {
  transition-delay: 0.75s;
}

.scroll-animate-child:nth-of-type(4) {
  transition-delay: 1s;
}

.scroll-animate-child:nth-of-type(5) {
  transition-delay: 1.25s;
}

.scroll-animate-child:nth-of-type(6) {
  transition-delay: 1.5s;
}

.scroll-animate-child:nth-of-type(7) {
  transition-delay: 1.75s;
}

.scroll-animate-child:nth-of-type(8) {
  transition-delay: 2s;
}

.scroll-animate-child:nth-of-type(9) {
  transition-delay: 2.25s;
}

.scroll-animate-child:nth-of-type(10) {
  transition-delay: 2.5s;
}

.scroll-animate-child:nth-of-type(11) {
  transition-delay: 2.75s;
}

.scroll-animate-child:nth-of-type(12) {
  transition-delay: 3s;
}

.scroll-animate-fade.scroll-animate-active {
  opacity: 1;
}

.expand-right {
  width: 1px;
}

.expand-right.scroll-animate-active {
  -webkit-animation-name: expandRight;
          animation-name: expandRight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
          animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes expandRight {
  from {
    width: 1px;
    opacity: 0;
  }

  to {
    width: 7rem;
    opacity: 1;
  }
}

@keyframes expandRight {
  from {
    width: 1px;
    opacity: 0;
  }

  to {
    width: 7rem;
    opacity: 1;
  }
}

.about_banner {
  max-width: 1800px;
  margin: 0 auto;
  background: #464039 url(/img/about_banner.jpg) no-repeat center top;
  background-size: cover;
}

.about_banner__content {
  padding: 100px 0 50px 0;
}

.about_banner__title {
  max-width: 700px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
}

.about_banner__description {
  margin: 10px 0 0 0;
  max-width: 700px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

.about_banner__button {
  position: relative;
  display: inline-block;
  margin: 25px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #a39a8e;
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.about_banner__button:hover,
.about_banner__button:focus {
  outline: 0;
  color: white;
}

.about_banner__button_arrow {
  position: absolute;
  top: 5px;
  right: -35px;
  display: block;
  height: 0;
  width: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #a39a8e;
}

.about_banner__button:hover .about_banner__button_arrow {
  border-top: 12px solid white;
}

@media only screen and (max-width: 767px) {
  .about_banner__content {
    padding: 50px 0;
  }

  .about_banner__title {
    font-size: 46px;
  }

  .about_banner__description {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .about_banner {
    min-height: 512px;
  }
}

.guarantee_list {
  margin: 0 0 0 0;
}

.guarantee_list__item:after {
  content: "";
  display: table;
  clear: both;
}

.guarantee_list__image {
  display: block;
  height: auto;
}

.guarantee_list__heading {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
}

.guarantee_list__paragraph {
  margin: 10px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .guarantee_list__image {
    width: 100%;
  }

  .guarantee_list__content {
    padding: 30px 15px;
    text-align: left !important;
  }

  .guarantee_list__heading {
    font-size: 30px;
  }

  .guarantee_list__paragraph {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .guarantee_list__item--image_left .guarantee_list__image {
    float: left;
  }

  .guarantee_list__item--image_right .guarantee_list__image {
    float: right;
  }

  .guarantee_list__item--image_left .guarantee_list__content {
    float: right;
  }

  .guarantee_list__item--image_right .guarantee_list__content {
    float: left;
  }

  .guarantee_list__image {
    width: 338px;
  }

  .guarantee_list__content {
    width: 400px;
    padding: 25px 30px 25px 30px;
  }

  .guarantee_list__heading {
    font-size: 28px;
  }

  .guarantee_list__paragraph {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media only screen and (min-width: 1000px) {
  .guarantee_list__image {
    width: 380px;
  }

  .guarantee_list__content {
    width: 580px;
    padding: 40px 50px 25px 50px;
  }

  .guarantee_list__heading {
    font-size: 46px;
  }

  .guarantee_list__paragraph {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1280px) {
  .guarantee_list__image {
    width: 500px;
  }

  .guarantee_list__content {
    width: 700px;
    padding: 50px 60px 25px 60px;
  }

  .guarantee_list__heading {
    font-size: 46px;
  }

  .guarantee_list__paragraph {
    font-size: 18px;
  }
}

.about_guarantee {
  margin: 60px 0 60px 0;
}

.about_guarantee__badge {
  display: block;
  margin: -103px auto 0 auto;
  width: 280px;
  height: auto;
}

.about_guarantee__title {
  margin: 30px 0 0 0;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 60px;
  color: #605353;
  text-transform: uppercase;
}

.about_guarantee__description {
  max-width: 800px;
  margin: 5px auto 0 auto;
  font-weight: 300;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #605353;
}

@media only screen and (max-width: 767px) {
  .about_guarantee__badge {
    margin: 30px auto 0 auto;
    width: 250px;
  }

  .about_guarantee__title {
    font-size: 46px;
  }

  .about_guarantee__description {
    font-size: 17px;
  }
}

.about_history__title {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #464039;
  font-size: 46px;
  text-transform: uppercase;
}

.about_history__paragraph {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #464039;
  font-size: 18px;
  line-height: 1.5;
}

.about_history__image {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .about_history {
    margin: 50px 0;
  }

  .about_history__image {
    margin: 25px 0 0 0;
  }
}

@media only screen and (min-width: 768px) {
  .about_history {
    margin: 75px 0;
  }

  .about_history__columns:after {
    content: "";
    display: table;
    clear: both;
  }

  .about_history__left_column {
    float: left;
    width: 50%;
    padding: 0 50px 0 0;
  }

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

.about_mission_vision {
  max-width: 1800px;
  margin: 0 auto;
  min-height: 288px;
}

.about_mission_vision:after {
  content: "";
  display: table;
  clear: both;
}

.about_mission_vision__mission,
.about_mission_vision__vision {
  color: white;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 28px;
  line-height: 1.25;
}

@media only screen and (max-width: 767px) {
  .about_mission_vision__mission,
  .about_mission_vision__vision {
    padding: 25px 15px;
  }

  .about_mission_vision__mission {
    background: #464039;
  }

  .about_mission_vision__vision {
    background: #98958a;
  }
}

@media only screen and (min-width: 768px) {
  .about_mission_vision {
    background: #464039 url(/img/about_mission_vision_bg.png) no-repeat center top;
    background-size: cover;
  }

  .about_mission_vision__mission,
  .about_mission_vision__vision {
    float: left;
    width: 50%;
  }

  .about_mission_vision__mission {
    padding: 50px 60px 50px 60px;
    text-align: right;
  }

  .about_mission_vision__vision {
    padding: 50px 60px 50px 60px;
    text-align: left;
  }
}

.about_team__title {
  padding-top: 6%;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #464039;
  font-size: 46px;
  text-transform: uppercase;
}

.about_team__image {
  display: block;
  width: 100%;
  height: auto;
}

.about_team__name {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #002e54;
  font-size: 30px;
}

.about_team__job_title {
  margin: 5px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #6d6654;
  font-size: 16px;
  text-transform: uppercase;
}

.about_team__email {
  display: inline-block;
  margin: 5px 0 0 0;
  font-weight: 300;
  color: #8a816a;
  font-size: 16px;
  text-decoration: none;
}

.about_team__email:hover {
  text-align: underline;
}

@media only screen and (max-width: 499px) {
  .about_team__title {
    font-size: 46px;
  }

  .about_team__item {
    margin: 25px 0 0 0;
  }
}

@media only screen and (min-width: 500px) {
  .about_team__list {
    margin: 25px 0 0 -15px;
  }

  .about_team__list:after {
    content: "";
    display: table;
    clear: both;
  }

  .about_team__item {
    float: left;
    width: 50%;
    padding: 0 0 30px 15px;
  }

  .about_team__item:nth-child(2n+1) {
    clear: both;
  }

  .about_team__name {
    font-size: 20px;
  }

  .about_team__job_title {
    font-size: 15px;
  }

  .about_team__email {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) {
  .about_team__item {
    width: 33.33%;
  }

  .about_team__item:nth-child(2n+1) {
    clear: none;
  }

  .about_team__item:nth-child(3n+1) {
    clear: both;
  }

  .about_team__name {
    font-size: 26px;
  }

  .about_team__job_title {
    font-size: 15px;
  }

  .about_team__email {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1000px) {
  .about_team__list {
    margin: 25px 0 0 -20px;
  }

  .about_team__item {
    width: 25%;
    padding: 0 0 30px 20px;
  }

  .about_team__item:nth-child(2n+1),
  .about_team__item:nth-child(3n+1) {
    clear: none;
  }

  .about_team__item:nth-child(4n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 1280px) {
  .about_team__list {
    margin: 25px 0 0 -25px;
  }

  .about_team__item {
    width: 25%;
    padding: 0 0 30px 25px;
  }

  .about_team__name {
    font-size: 30px;
  }

  .about_team__job_title {
    font-size: 16px;
  }

  .about_team__email {
    font-size: 16px;
  }
}

.awards_and_memberships {
  margin: 0 auto;
  padding: 60px 0;
  max-width: 1800px;
  background: #6d6654;
}

.awards_and_memberships__title {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 46px;
  text-transform: uppercase;
}

.awards_and_memberships__content {
  margin: 25px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

.awards_and_memberships__content ul,
.awards_and_memberships__content ol {
  margin: 0 0 0 15px;
  padding: 0 0 0 15px;
}

.awards_and_memberships__content ul {
  list-style: circle;
}

.awards_and_memberships__content ol {
  list-style: decimal;
}

.awards_and_memberships__content li {
  margin: 5px 0;
}

.awards_and_memberships__content li ul {
  margin: 5px 0 5px 15px;
}

.awards_and_memberships__content li ul li {
  font-size: 16px;
  margin: 0;
}

.awards_and_memberships__content a {
  color: #fce6ad;
  text-decoration: none;
}

.awards_and_memberships__content a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 500px) {
  .awards_and_memberships__title {
    font-size: 46px;
  }
}

.blog_columns {
  display: flex;
  flex-wrap: wrap;
}

.blog_columns__left_column {
  order: 2;
  width: 100%;
}

.blog_columns__right_column {
  padding-top: 40px;
  order: 1;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .blog_columns {
    margin: 115px 0 0 0;
  }

  .blog_columns__left_column {
    order: 1;
    width: 500px;
    padding: 0 50px 0 0;
  }

  .blog_columns__right_column {
    order: 2;
    width: 238px;
  }
}

@media only screen and (min-width: 1000px) {
  .blog_columns__left_column {
    width: 660px;
  }

  .blog_columns__right_column {
    width: 300px;
  }
}

@media only screen and (min-width: 1280px) {
  .blog_columns__left_column {
    width: 840px;
  }

  .blog_columns__right_column {
    width: 360px;
  }
}

.blog_post {
  margin: 50px 0;
}

.blog_post__title {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 46px;
  color: #002e54;
}

.blog_post__title_link {
  color: #002e54;
  text-decoration: none;
}

.blog_post__title_link:hover {
  text-decoration: underline;
}

.blog_post__date {
  margin: 10px 0 25px 0;
  font-weight: 300;
  font-size: 18px;
  color: #6d6654;
  text-transform: uppercase;
}

.blog_post__banner_image {
  margin: 25px 0 0 0;
  display: block;
  width: 100%;
  height: auto;
}

.blog_post__banner_caption {
  margin: 10px 0 25px 0;
  font-size: 14px;
  color: #6d6654;
  text-transform: uppercase;
}

.blog_post__photo_list {
  margin: 0 0 0 -10px;
}

.blog_post__photo_list:after {
  content: "";
  display: table;
  clear: both;
}

.blog_post__photo_item {
  float: left;
  width: 25%;
  padding: 10px 0 0 10px;
}

.blog_post__photo_image {
  display: block;
  width: 100%;
  height: auto;
}

.blog_post__article {
  margin: 25px 0;
}

.blog_post__button {
  display: inline-block;
  margin: 0 0 40px 0;
  padding: 16px 18px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: #002e54;
}

.blog_post__button:hover {
  background: #00203b;
}

.blog_sidebar {
  position: relative;
  background: #aca196;
}

.blog_sidebar__title {
  padding: 10px 20px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  text-transform: uppercase;
  background: #bdb4ab;
}

.blog_sidebar__button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
}

@media (min-width: 768px) {
  .blog_sidebar__button {
    display: none;
  }
}

.blog_sidebar svg {
  position: absolute;
  right: 12px;
  top: 12px;
}

.blog_sidebar__category_list {
  display: none;
}

@media (min-width: 768px) {
  .blog_sidebar__category_list {
    display: block;
  }
}

.blog_sidebar__category_list--active {
  display: block;
}

.blog_sidebar__category_item {
  border-bottom: solid 1px #bdb4ab;
}

.blog_sidebar__category_item:last-child {
  border-bottom: none;
}

.blog_sidebar__category_item--active {
  background: #95887a;
}

.blog_sidebar__category_item--active .blog_sidebar__category_link:hover {
  background: #897b6c;
}

.blog_sidebar__category_link {
  display: block;
  padding: 12px 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.blog_sidebar__category_link:hover {
  background: #95887a;
}

.careers_callout {
  margin: 20px auto;
  max-width: 1800px;
  overflow: hidden;
  padding: 25px 20px;
  background-color: #50ccc3;
  text-align: center;
}

.careers_callout__link {
  color: white;
  font-weight: 200;
  font-size: 32px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.careers_callout__link:hover {
  color: #2d3d3b;
}

.careers_callout__link:after {
  content: "";
  position: relative;
  left: 8px;
  top: 3px;
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url(/img/process_callout_arrow.png);
}

.careers_callout__text {
  display: block;
  margin-bottom: 12px;
  margin-right: 10px;
  color: #fff;
  font-size: 25px;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 1000px) {
  .careers_callout__text {
    display: inline-block;
    margin-bottom: 0;
  }
}

.contact_banner {
  margin: 64px auto 0;
  max-width: 1800px;
  padding: 55px 0 45px 0;
  background: #143e61;
}

@media (min-width: 768px) {
  .contact_banner {
    margin-top: 0;
  }
}

.contact_banner__title {
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 60px;
  text-transform: uppercase;
}

.contact_callout {
  position: relative;
  overflow: hidden;
  max-width: 1800px;
  margin: 0 auto;
  background: white;
}

.contact_callout__image {
  display: block;
  max-width: 100%;
}

.contact_callout__title {
  max-width: 500px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 60px;
  text-transform: uppercase;
}

.contact_callout__description {
  max-width: 600px;
  margin: 10px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 20px;
  line-height: 1.45;
}

.contact_callout__form {
  margin: 25px 0 0 0;
  max-width: 550px;
}

@media only screen and (max-width: 767px) {
  .contact_callout__image {
    width: 100%;
    height: auto;
  }

  .contact_callout__title {
    margin: 25px 0 0 0;
    font-size: 46px;
  }
}

@media only screen and (min-width: 768px) {
  .contact_callout {
    min-height: 1015px;
  }

  .contact_callout__image {
    bottom: 50%;
    position: absolute;
    right: 50%;
    margin: 0 50px 0 0;
    max-height: 100%;
    transform: translateY(50%);
  }

  .contact_callout__panel {
    position: relative;
    margin: 0 0 0 350px;
    padding: 70px 0 50px 0;
    min-height: 1015px;
  }

  .contact_callout__title {
    font-size: 46px;
  }
}

@media only screen and (min-width: 1000px) {
  .contact_callout__image {
    position: absolute;
    right: 50%;
    margin: 0 80px 0 0;
  }

  .contact_callout__panel {
    position: relative;
    margin: 0 0 0 440px;
    padding: 70px 0 50px 0;
    min-height: 1015px;
  }

  .contact_callout__title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 1280px) {
  .contact_callout__image {
    position: absolute;
    right: 50%;
    margin: 0 200px 0 0;
  }

  .contact_callout__panel {
    position: relative;
    margin: 0 0 0 450px;
    padding: 70px 0 50px 0;
    min-height: 1015px;
  }

  .contact_callout__title {
    font-size: 60px;
  }
}

.contact_columns {
  padding: 75px 0;
}

.contact_columns:after {
  content: "";
  display: table;
  clear: both;
}

.contact_columns--white_bg {
  background: white;
}

@media only screen and (max-width: 767px) {
  .contact_columns__left_column {
    padding: 0 0 25px 0;
  }
}

@media only screen and (min-width: 768px) {
  .contact_columns__left_column {
    float: left;
    width: 55%;
    padding: 0 60px 0 0;
  }

  .contact_columns__right_column {
    float: left;
    width: 45%;
  }
}

.contact_cta:after {
  content: "";
  display: table;
  clear: both;
}

.contact_cta:focus {
  outline: 0;
}

.contact_cta__title {
  max-width: 500px;
  display: inline-block;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 50px;
  color: #3abbc8;
  text-transform: uppercase;
}

.contact_cta__description {
  max-width: 525px;
  display: inline-block;
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: #143e61;
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  .contact_cta {
    padding: 25px 0;
    text-align: center;
  }

  .contact_cta__left_column {
    padding: 0 0 25px 0;
  }
}

@media only screen and (min-width: 768px) {
  .contact_cta {
    padding: 75px 0;
    background: white;
  }

  .contact_cta__title {
    font-size: 60px;
  }

  .contact_cta__description {
    font-size: 24px;
  }

  .contact_cta__left_column {
    float: left;
    width: 55%;
    padding: 0 60px 0 0;
  }

  .contact_cta__right_column {
    float: left;
    width: 45%;
  }
}

.contact_form__list {
  text-align: left;
}

.contact_form__item {
  position: relative;
  margin: 0 0 25px 0;
}

.contact_form__label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: 130px;
  padding: 0 0 0 10px;
  color: white;
  font-weight: 300;
  font-size: 24px;
  line-height: 52px;
}

.contact_form__input,
.contact_form__textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: #af9996;
  color: white;
  font-weight: 300;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}

.contact_form__input:focus,
.contact_form__textarea:focus {
  background: #997d79;
}

.contact_form__input::-moz-placeholder, .contact_form__textarea::-moz-placeholder {
  color: #d0c3c1;
}

.contact_form__input:-ms-input-placeholder, .contact_form__textarea:-ms-input-placeholder {
  color: #d0c3c1;
}

.contact_form__input::-ms-input-placeholder, .contact_form__textarea::-ms-input-placeholder {
  color: #d0c3c1;
}

.contact_form__input::placeholder,
.contact_form__textarea::placeholder {
  color: #d0c3c1;
}

.contact_form__input {
  padding: 0 0 0 130px;
  height: 52px;
}

.contact_form__textarea {
  padding: 20px 20px 20px 130px;
  height: 200px;
  font-family: inherit;
  line-height: 1.275;
}

.contact_form__button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px 0 14px 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: #3abbc8;
  cursor: pointer;
  -webkit-appearance: none;
  letter-spacing: 1px;
}

.contact_form__button:hover {
  background: #2d97a2;
}

.contact_form label.error {
  display: block;
  padding: 12px 10px 8px 10px;
  width: 100%;
  color: white;
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  background: #e74c3c;
}

.contact_form--brown .contact_form__input,
.contact_form--brown .contact_form__textarea {
  background: #9b988e;
}

.contact_form--brown .contact_form__input:focus,
.contact_form--brown .contact_form__textarea:focus {
  background: #837f73;
}

.contact_form--brown .contact_form__input::-moz-placeholder, .contact_form--brown .contact_form__textarea::-moz-placeholder {
  color: #bfbdb7;
}

.contact_form--brown .contact_form__input:-ms-input-placeholder, .contact_form--brown .contact_form__textarea:-ms-input-placeholder {
  color: #bfbdb7;
}

.contact_form--brown .contact_form__input::-ms-input-placeholder, .contact_form--brown .contact_form__textarea::-ms-input-placeholder {
  color: #bfbdb7;
}

.contact_form--brown .contact_form__input::placeholder,
.contact_form--brown .contact_form__textarea::placeholder {
  color: #bfbdb7;
}

.contact_form--brown .contact_form__button {
  background: #33aab6;
}

.contact_form--brown .contact_form__button:hover {
  background: #2d97a2;
}

@media only screen and (max-width: 767px) {
  .contact_form__label {
    font-size: 20px;
    width: 100px;
  }

  .contact_form__input,
  .contact_form__textarea {
    font-size: 20px;
    padding-left: 100px;
  }
}

.contact_google_map {
  width: 100%;
  height: 500px;
  border: solid 3px #d6d4d4;
}

.contact_info__item {
  padding: 25px 0;
  border-bottom: solid 1px #dbd7d3;
}

.contact_info__item:first-child {
  padding-top: 0;
}

.contact_info__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact_info__title {
  margin: 0 0 10px 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  color: #464039;
}

.contact_info__info {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 36px;
  line-height: 1.25;
  color: #002e54;
}

.contact_info__link {
  color: #002e54;
  text-decoration: none;
}

.contact_info__link:hover {
  text-decoration: underline;
}

.error {
  max-width: 1800px;
  margin: 0 auto;
  background: #143e61 url(/img/blue_banner_bg.jpg) no-repeat center top;
  background-size: cover;
}

.error__content {
  padding: 220px 0 50px 0;
}

.error__title {
  max-width: 700px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
}

.error__description {
  margin: 10px 0 0 0;
  max-width: 700px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

.error__button {
  display: inline-block;
  margin: 25px 0 0 0;
  padding: 16px 25px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.error__button:hover {
  border-color: white;
}

.features_gallery {
  padding: 100px 0 75px 0;
}

.features_gallery__title {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}

.features_gallery__description {
  margin: 10px auto 0 auto;
  max-width: 860px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.features_gallery__item {
  margin: 15px 0;
}

.features_gallery__link {
  color: inherit;
  text-decoration: none;
}

.features_gallery__image {
  display: block;
  width: 100%;
  height: auto;
}

.features_gallery__name {
  margin: 10px 0 0 0;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  text-transform: uppercase;
}

@media only screen and (min-width: 500px) {
  .features_gallery__list {
    margin: 0 0 0 -30px;
  }

  .features_gallery__list:after {
    content: "";
    display: table;
    clear: both;
  }

  .features_gallery__item {
    float: left;
    width: 33.33%;
    margin: 0;
    padding: 40px 0 0 30px;
  }

  .features_gallery__item:nth-child(4) {
    clear: left;
  }
}

.hero {
  position: relative;
  padding: 200px 20px 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 0;
  }
}

.hero--homepage {
  padding-top: 180px;
}

@media (min-width: 768px) {
  .hero--homepage {
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .hero--homepage .hero__panel_bg {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  }
}

@media (min-width: 768px) {
  .hero--homepage .hero__bg_mask {
    display: none !important;
  }
}

.hero--homepage .hero__panel {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .hero--homepage .hero__panel {
    padding-bottom: 100px;
    padding-top: 100px;
    max-width: 700px;
    width: 100%;
    color: #fff !important;
  }
}

@media (min-width: 1280px) {
  .hero--homepage .hero__panel {
    padding-bottom: 200px;
    padding-top: 200px;
  }
}

.hero--homepage .hero__panel {
  margin: 0 -20px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

@media (min-width: 768px) {
  .hero--homepage .hero__panel {
    margin: 0;
    background-color: transparent;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  }
}

.hero--homepage .hero__title {
  font-size: 50px;
  line-height: 1.05;
}

@media (min-width: 1000px) {
  .hero--homepage .hero__title {
    font-size: 64px;
  }
}

@media (min-width: 1280px) {
  .hero--homepage .hero__title {
    font-size: 80px;
  }
}

@media (min-width: 1000px) {
  .hero--homepage .hero__intro {
    font-size: 20px;
  }
}

.hero--homepage .hero__image {
  background-size: cover;
  background-color: #97958d;
}

@media (min-width: 768px) {
  .hero--homepage .hero__image {
    width: 100%;
    background-position: center;
  }
}

.hero__image {
  right: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}

@media (min-width: 768px) {
  .hero__image {
    width: calc(50% + 100px);
    background-size: cover;
  }
}

.hero__bg_mask {
  display: none;
}

@media (min-width: 768px) {
  .hero__bg_mask {
    left: calc(50% - 100px);
    top: 0;
    position: absolute;
    z-index: 10;
    display: block;
    height: 100%;
    width: 100px;
  }
}

.hero__panel_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero__panel_bg {
    display: none;
  }
}

.hero__panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 20px 40px;
  height: 100%;
  z-index: 20;
}

@media (min-width: 768px) {
  .hero__panel {
    padding: 60px 60px 60px 20px;
    width: 50%;
  }
}

@media (min-width: 1000px) {
  .hero__panel {
    padding: 100px 100px 100px 20px;
  }
}

@media (min-width: 1280px) {
  .hero__panel {
    padding-left: 30px;
  }
}

.hero__panel_content {
  position: relative;
  z-index: 10;
}

.hero__preheading {
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero__preheading {
    margin-bottom: 16px;
    font-size: 16px;
  }
}

.hero__title {
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 30px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 50px;
    line-height: 1;
  }
}

@media (min-width: 1000px) {
  .hero__title {
    font-size: 64px;
  }
}

.hero__intro {
  margin-bottom: 32px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.5;
}

.hero__link {
  margin: 15px 0 0 0;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}

.hero__link:hover {
  text-decoration: underline;
}

.home_additions {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #b0a68b;
  text-decoration: none;
}

.home_additions__panel {
  position: relative;
  z-index: 100;
}

.home_additions__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.home_additions__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.home_additions__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.home_additions__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .home_additions__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .home_additions__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .home_additions {
    min-height: 450px;
  }

  .home_additions__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .home_additions__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .home_additions__title {
    font-size: 46px;
  }

  .home_additions__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #b0a68b;
    background: linear-gradient(to left, rgba(176, 166, 139, 0.9), #b0a68b 50%);
  }

  .home_additions__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .home_additions {
    min-height: 510px;
  }

  .home_additions__panel {
    width: 390px;
    min-height: 510px;
  }

  .home_additions__title {
    font-size: 46px;
  }

  .home_additions__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .home_additions__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .home_additions__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .home_additions {
    min-height: 600px;
  }

  .home_additions__panel {
    width: 420px;
    min-height: 600px;
  }

  .home_additions__title {
    font-size: 46px;
  }

  .home_additions__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .home_additions__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .home_additions__image {
    margin: 0 0 0 -600px;
  }
}

.home_banner {
  position: relative;
}

.home_banner__quote_them,
.home_banner__quote_us {
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
}

.home_banner__quote_them:before,
.home_banner__quote_us:before {
  position: absolute;
  z-index: 1000;
  bottom: -50px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.home_banner__quote_them:before {
  left: 45px;
  border-width: 50px 50px 0 0;
}

.home_banner__quote_us {
  text-transform: uppercase;
}

.home_banner__quote_us:before {
  right: 45px;
  border-width: 0 50px 50px 0;
}

@media only screen and (max-width: 767px) {
  .home_banner__image {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden;
    padding-top: 85%;
    height: 85vw;
    max-height: 60vh;
    padding: 0;
    overflow: hidden;
  }

  .home_banner__image img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .home_banner__quote_them,
  .home_banner__quote_us {
    padding: 20px;
  }

  .home_banner__quote_them {
    position: relative;
    font-size: 25px;
    background: #23c3b0;
  }

  .home_banner__quote_them:before {
    border-color: #23c3b0 transparent transparent transparent;
  }

  .home_banner__quote_us {
    position: relative;
    padding-left: 100px;
    font-size: 30px;
    text-align: right;
    background: #20b3c2;
  }

  .home_banner__quote_us:before {
    border-color: transparent #20b3c2 transparent transparent;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .home_banner__quote_them {
    font-size: 30px;
  }

  .home_banner__quote_us {
    font-size: 46px;
  }
}

@media only screen and (min-width: 768px) {
  .home_banner {
    margin-bottom: 190px;
  }

  .home_banner__image {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden;
    padding-top: 41.5%;
    display: block;
    height: 580px;
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding-top: 0;
    background-image: url(/img/new_home_4-3600w.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .home_banner__image img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

@supports (transform: translateX(-50%)) {
    .home_banner__image {
      left: 50%;
      margin: 0;
      transform: translateX(-50%);
    }
}

  .home_banner__image img {
    display: none;
  }

  .home_banner__quote_them,
  .home_banner__quote_us {
    position: absolute;
    padding: 20px;
  }

  .home_banner__quote_them {
    bottom: -40px;
    right: 50%;
    margin: 0 -50px 0 0;
    max-width: 330px;
    font-size: 36px;
    background: rgba(35, 195, 176, 0.9);
  }

  .home_banner__quote_them:before {
    border-color: rgba(35, 195, 176, 0.9) transparent transparent transparent;
  }

  .home_banner__quote_us {
    bottom: -140px;
    left: 50%;
    margin: 0 -50px 0 0;
    max-width: 370px;
    font-size: 50px;
    background: rgba(32, 179, 194, 0.9);
  }

  .home_banner__quote_us:before {
    border-color: transparent rgba(32, 179, 194, 0.9) transparent transparent;
  }
}

@media only screen and (min-width: 1000px) {
  .home_banner__image {
    height: 760px;
  }

  .home_banner__quote_them,
  .home_banner__quote_us {
    padding: 25px;
  }

  .home_banner__quote_them {
    max-width: 350px;
    font-size: 38px;
  }

  .home_banner__quote_us {
    max-width: 415px;
    font-size: 55px;
  }
}

.home_new_homes {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #a7c173;
  text-decoration: none;
}

.home_new_homes__panel {
  position: relative;
  z-index: 100;
}

.home_new_homes__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.home_new_homes__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.home_new_homes__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.home_new_homes__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .home_new_homes__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .home_new_homes__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .home_new_homes {
    min-height: 450px;
  }

  .home_new_homes__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .home_new_homes__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .home_new_homes__title {
    font-size: 46px;
  }

  .home_new_homes__panel {
    padding: 50px 0 50px 25px;
    background: #a7c173;
    background: linear-gradient(to left, #a7c173 50%, rgba(167, 193, 115, 0.9));
  }

  .home_new_homes__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .home_new_homes {
    min-height: 510px;
  }

  .home_new_homes__panel {
    width: 390px;
    min-height: 510px;
  }

  .home_new_homes__title {
    font-size: 46px;
  }

  .home_new_homes__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .home_new_homes__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .home_new_homes__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .home_new_homes {
    min-height: 600px;
  }

  .home_new_homes__panel {
    width: 420px;
    min-height: 600px;
  }

  .home_new_homes__title {
    font-size: 46px;
  }

  .home_new_homes__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .home_new_homes__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .home_new_homes__image {
    margin: 0 -600px 0 0;
  }
}

.home_new_living_spaces {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  max-width: 1800px;
  background: #fff7ef;
}

.home_new_living_spaces__image {
  display: block;
}

.home_new_living_spaces__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: #a0592d;
  font-size: 46px;
  text-transform: uppercase;
}

.home_new_living_spaces__description {
  max-width: 630px;
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #a0592d;
  font-size: 18px;
  line-height: 1.75;
}

.home_new_living_spaces__list {
  margin: 25px 0 0 -20px;
}

.home_new_living_spaces__list:after {
  content: "";
  display: table;
  clear: both;
}

.home_new_living_spaces__item {
  float: left;
  width: 33.33%;
  padding: 0 0 20px 20px;
}

.home_new_living_spaces__button {
  display: block;
  width: 100%;
  padding: 16px 0 14px 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: #a0592d;
}

.home_new_living_spaces__button:hover {
  background: #8c4e27;
}

@media only screen and (max-width: 767px) {
  .home_new_living_spaces__image {
    width: 100%;
    height: auto;
  }

  .home_new_living_spaces__panel {
    padding: 30px 20px;
  }

  .home_new_living_spaces__item {
    width: 50%;
  }

  .home_new_living_spaces__item:nth-child(2n+1) {
    clear: both;
  }

  .home_new_living_spaces__button {
    font-size: 16px;
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
  .home_new_living_spaces__image {
    width: 100%;
    height: auto;
  }

  .home_new_living_spaces__panel {
    margin: 0 auto;
    padding: 40px 0 30px 0;
    max-width: 738px;
  }

  .home_new_living_spaces__item {
    width: 33.33%;
  }

  .home_new_living_spaces__item:nth-child(2n+1) {
    clear: none;
  }

  .home_new_living_spaces__item:nth-child(3n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 1000px) {
  .home_new_living_spaces {
    min-height: 575px;
  }

  .home_new_living_spaces__image {
    position: absolute;
    right: 50%;
    width: auto;
    height: 100%;
  }

  .home_new_living_spaces__item {
    width: 50%;
  }

  .home_new_living_spaces__item:nth-child(2n+1) {
    clear: both;
  }

  .home_new_living_spaces__item:nth-child(3n+1) {
    clear: none;
  }

  .home_new_living_spaces__panel {
    position: relative;
    left: 50%;
    margin: 0 0 0 -220px;
    padding: 100px 0 50px 250px;
    width: 700px;
    min-height: 575px;
    background: #fff7ef;
    background: linear-gradient(to right, transparent 0%, #fff7ef 30%);
  }

  .home_new_living_spaces__button {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1280px) {
  .home_new_living_spaces {
    min-height: 500px;
  }

  .home_new_living_spaces__panel {
    margin: 0 0 0 -400px;
    padding: 100px 0 50px 300px;
    width: 1000px;
    min-height: 500px;
  }

  .home_new_living_spaces__item {
    width: 33.33%;
  }

  .home_new_living_spaces__item:nth-child(2n+1) {
    clear: none;
  }

  .home_new_living_spaces__item:nth-child(3n+1) {
    clear: both;
  }
}

.home_value_stack {
  padding-bottom: 30px;
  padding-top: 28px;
  text-align: center;
  font-weight: 300;
}

.home_value_stack__heading {
  margin: 0 auto 18px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 46px;
  color: #002e54;
  text-transform: uppercase;
}

.home_value_stack__subheading {
  margin: 0 auto 40px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .home_value_stack__list {
    display: flex;
    justify-content: center;
  }
}

.home_value_stack__item {
  margin: 0 auto 24px;
  max-width: 380px;
  padding: 34px;
  border: 1px solid #97958d;
}

@media (min-width: 768px) {
  .home_value_stack__item {
    width: calc(33.333% - 20px);
  }
}

.home_value_stack p {
  font-size: 16px;
  line-height: 1.5;
}

.home_value_stack__item_heading {
  margin-bottom: 12px;
  color: #002e54;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.3;
}

.homepage_gallery {
  position: relative;
  margin-bottom: 150px;
  margin-top: 8px;
}

.homepage_gallery__images {
  display: grid;
  grid-template-columns: 16.5% 33% 33% 16.5%;
  overflow: hidden;
  gap: 8px;
  height: 300px;
}

.homepage_gallery__image_wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
}

.homepage_gallery__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.homepage_gallery__heading {
  position: absolute;
  top: 200px;
  z-index: 10;
  width: 100%;
}

.homepage_gallery__quote_them,
.homepage_gallery__quote_us {
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
}

.homepage_gallery__quote_them:before,
.homepage_gallery__quote_us:before {
  position: absolute;
  z-index: 10;
  bottom: -50px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.homepage_gallery__quote_them:before {
  left: 45px;
  border-width: 50px 50px 0 0;
}

.homepage_gallery__quote_us {
  text-transform: uppercase;
  z-index: 20;
}

.homepage_gallery__quote_us:before {
  right: 45px;
  border-width: 0 50px 50px 0;
}

@media only screen and (max-width: 767px) {
  .homepage_gallery__quote_them,
  .homepage_gallery__quote_us {
    padding: 20px;
  }

  .homepage_gallery__quote_them {
    position: relative;
    z-index: 30;
    font-size: 25px;
    background: #23c3b0;
  }

  .homepage_gallery__quote_them:before {
    border-color: #23c3b0 transparent transparent transparent;
  }

  .homepage_gallery__quote_us {
    position: relative;
    padding-left: 100px;
    font-size: 30px;
    text-align: right;
    background: #20b3c2;
  }

  .homepage_gallery__quote_us:before {
    border-color: transparent #20b3c2 transparent transparent;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .homepage_gallery__quote_them {
    font-size: 30px;
  }

  .homepage_gallery__quote_us {
    font-size: 46px;
  }
}

@media only screen and (min-width: 768px) {
  .homepage_gallery__quote_them,
  .homepage_gallery__quote_us {
    position: absolute;
    padding: 20px;
  }

  .homepage_gallery__quote_them {
    bottom: -40px;
    right: 50%;
    margin: 0 -50px 0 0;
    max-width: 330px;
    font-size: 36px;
    background: rgba(35, 195, 176, 0.9);
  }

  .homepage_gallery__quote_them:before {
    border-color: rgba(35, 195, 176, 0.9) transparent transparent transparent;
  }

  .homepage_gallery__quote_us {
    bottom: -140px;
    left: 50%;
    margin: 0 -50px 0 0;
    max-width: 370px;
    font-size: 50px;
    background: rgba(32, 179, 194, 0.9);
  }

  .homepage_gallery__quote_us:before {
    border-color: transparent rgba(32, 179, 194, 0.9) transparent transparent;
  }
}

@media only screen and (min-width: 1000px) {
  .homepage_gallery__quote_them,
  .homepage_gallery__quote_us {
    padding: 25px;
  }

  .homepage_gallery__quote_them {
    max-width: 350px;
    font-size: 38px;
  }

  .homepage_gallery__quote_us {
    max-width: 415px;
    font-size: 55px;
  }
}

.job_opening__careers_title {
  margin: 0 auto;
  padding: 55px 0 45px 0;
  max-width: 1800px;
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 60px;
  text-transform: uppercase;
  background: #50ccc3;
}

.job_opening__article {
  margin: 75px 0 100px 0;
  max-width: 960px;
}

.job_opening__title {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 46px;
  color: #37bcb3;
}

.job_opening__date {
  margin: 10px 0 25px 0;
  font-weight: 300;
  font-size: 18px;
  color: #6d6654;
  text-transform: uppercase;
}

.job_opening__content {
  margin: 25px 0;
}

.job_opening__content h1,
.job_opening__content h2,
.job_opening__content a {
  color: #37bcb3;
}

.job_opening__button {
  display: inline-block;
  margin: 25px 0 0 0;
  padding: 16px 25px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: #50ccc3;
}

.job_opening__button:hover {
  background: #3cc6bc;
}

.living_spaces {
  margin: 20px auto;
  padding: 100px 0;
  max-width: 1800px;
  background: #9c988f url(/img/bg_brown.png);
}

.living_spaces__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 46px;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .living_spaces__title {
    font-size: 60px;
  }
}

.living_spaces__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}

.living_spaces__item {
  grid-column: span 12;
  overflow: hidden;
  box-shadow: 1px 1px 2px rgba(68, 64, 46, 0.2), 0 0 14px rgba(68, 64, 46, 0.58);
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.living_spaces__item:hover {
  box-shadow: 1px 1px 2px rgba(68, 64, 46, 0.6), 0 0 28px rgba(68, 64, 46, 0.6);
}

@media (min-width: 768px) {
  .living_spaces__item {
    grid-column: span 4;
  }

  .living_spaces__item:nth-child(2),
  .living_spaces__item:nth-child(1) {
    grid-column: span 6;
  }

  .living_spaces__item:nth-child(3),
  .living_spaces__item:nth-child(4) {
    grid-column: span 6;
  }
}

.living_spaces__wrapping_link {
  position: relative;
  padding-bottom: 50%;
  display: block;
  color: inherit;
  text-decoration: none;
}

.living_spaces__item:nth-child(2) .living_spaces__wrapping_link,
.living_spaces__item:nth-child(1) .living_spaces__wrapping_link {
  padding-bottom: 75%;
}

.living_spaces__description {
  margin: 10px auto 36px auto;
  max-width: 610px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.living_spaces__image {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
}

.living_spaces__item:hover .living_spaces__image {
  transform: scale(1.02) translateY(-3px);
}

.living_spaces__name {
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  height: 60px;
  padding: 0 10px 0 20px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 24px;
  line-height: 62px;
  text-transform: uppercase;
}

.living_spaces__title_link {
  display: none;
  position: absolute;
  right: 15px;
  top: 23px;
  font-weight: 200;
  -webkit-font-smoothing: auto;
  color: white;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.main_nav__button {
  position: absolute;
  top: 48px;
  right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
}

@media (min-width: 1280px) {
  .main_nav__button {
    display: none;
  }
}

.main_nav__button_lines_container {
  display: grid;
  grid-template-columns: 1fr;
  height: 30px;
  width: 40px;
}

.main_nav__button_line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #97958d;
  transition: transform 0.2s ease;
}

.main_nav__button--active .main_nav__button_line {
  position: relative;
}

.main_nav__button--active .main_nav__button_line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.main_nav__button--active .main_nav__button_line:nth-child(2) {
  opacity: 0;
}

.main_nav__button--active .main_nav__button_line:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

@media (max-width: 1279px) {
  .main_nav__nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 88px;
    height: 0;
    overflow: auto;
    opacity: 0;
    z-index: 1000;
    padding-top: 20px;
    background-color: #f2f2f0;
    transition: all 0.2s ease;
  }
}

@media (min-width: 1280px) {
  .main_nav__nav {
    margin-top: -3px;
    height: auto;
    opacity: 1;
  }
}

.main_nav__nav--active {
  height: calc(100vh - 60px);
  opacity: 1;
}

.main_nav__list {
  padding-bottom: 60px;
}

@media (min-width: 1280px) {
  .main_nav__list {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
  }
}

.main_nav__item--has_button {
  padding-left: 20px;
}

@media (max-width: 1279px) {
  .main_nav__item--has_button {
    padding-top: 20px;
  }
}

.main_nav__link {
  position: relative;
  display: block;
  padding: 8px 20px;
  color: #97958d;
  font-size: 20px;
  text-decoration: none;
  outline: 0;
}

@media (min-width: 1280px) {
  .main_nav__link {
    padding: 8px 12px;
    font-weight: 300;
    font-size: 16px;
  }
}

.main_nav__down_arrow {
  position: absolute;
  right: 20px;
  top: 12px;
}

@media (min-width: 1280px) {
  .main_nav__down_arrow {
    right: -8px;
  }
}

.main_nav__link--active,
.main_nav__link:hover,
.main_nav__link:focus {
  color: #002c4b !important;
}

.main_nav__link--has_child {
  margin-right: 19px;
}

.main_nav__link--has_child--show_child + .main_nav__sub_list {
  display: block;
  height: auto;
}

@media (min-width: 1280px) {
  .main_nav__link--has_child--show_child + .main_nav__sub_list {
    opacity: 1;
    z-index: 1000;
    transform: scale(1) translateY(10px);
  }
}

.main_nav__sub_list {
  z-index: -100;
  height: 0;
  overflow: hidden;
  display: none;
  min-width: 100%;
  padding-bottom: 8px;
  padding-top: 8px;
  background-color: #97958d;
}

@media (min-width: 1280px) {
  .main_nav__sub_list {
    position: absolute;
    left: 0;
    opacity: 0;
    display: block;
    transform: scale(0.96) translateY(14px);
    transition: all 0.2s ease;
    z-index: -1000;
  }
}

.main_nav__sub_list a {
  white-space: nowrap;
  color: #fff;
}

.main_nav__sub_list--spaces li {
  padding: 4px;
}

.main_nav__sub_list--spaces a {
  position: relative;
  padding-top: 62%;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.main_nav__sub_list--spaces img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 12px;
  height: 100%;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
}

.main_nav__sub_list_spaces_text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  width: 100%;
  font-size: 12px;
  text-align: center;
  font-weight: 200;
}

@media (min-width: 500px) {
  .main_nav__sub_list_spaces_text {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .main_nav__sub_list_spaces_text {
    font-size: 16px;
  }
}

.main_nav__sub_list_spaces_text_content {
  position: relative;
  z-index: 2;
}

.main_nav__sub_list_spaces_text_background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.main_nav__sub_list--spaces a {
  box-shadow: 1px 1px 2px rgba(68, 64, 46, 0.2), 0 0 14px rgba(68, 64, 46, 0.58);
  transition: box-shadow 0.2s ease;
}

.main_nav__sub_list--spaces a:hover {
  color: #fff;
  box-shadow: 1px 1px 2px rgba(68, 64, 46, 0.4), 0 0 22px rgba(68, 64, 46, 0.58);
}

.main_nav__sub_list--spaces a:hover .main_nav__sub_list_spaces_text_background {
  opacity: 1;
}

.main_nav__sub_list--spaces a:hover img {
  transform: scale(1.015) translateY(-2px);
}

.main_nav__sub_list_inner--spaces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}

@media (min-width: 1280px) {
  .main_nav__sub_list_inner--spaces {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (min-width: 1200px) {
  .main_nav__sub_list_inner--spaces {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.phone_number {
  margin: 20px auto 0 auto;
  padding: 30px 0;
  max-width: 1800px;
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  background: #9fc56c;
}

.phone_number__number {
  font-weight: 300;
  white-space: nowrap;
}

.phone_number__number a {
  color: white;
}

@media only screen and (min-width: 768px) {
  .phone_number {
    padding: 50px 0;
  }
}

.plan {
  padding-bottom: 30px;
  padding-top: 80px;
  text-align: center;
  font-weight: 300;
}

.plan__heading {
  margin: 0 auto 18px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  font-size: 46px;
  color: #002e54;
  text-transform: uppercase;
  line-height: 1.125;
}

.plan__subheading {
  margin: 0 auto 60px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
}

.plan__subheading p {
  margin-bottom: 12px;
  font-size: 18px;
}

@media (min-width: 1000px) {
  .plan__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.plan__item {
  position: relative;
  margin: 0 auto 48px;
  max-width: 380px;
  padding: 34px;
  background-color: #fff;
  border: 1px solid #97958d;
}

@media (min-width: 1000px) {
  .plan__item {
    padding: 55px 34px 34px;
  }
}

.plan__item_count {
  position: absolute;
  left: calc(50% - 26px);
  top: -26px;
  height: 50px;
  width: 50px;
  background-color: #fff;
  border: 1px solid #d4d3cf;
  border-radius: 50%;
  color: #002e54;
  font-size: 30px;
  line-height: 1.63;
}

.plan p {
  font-size: 16px;
  line-height: 1.5;
}

.plan__item_heading {
  margin-bottom: 12px;
  color: #002e54;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.3;
}

.process_after_project_care {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #646b56;
  text-decoration: none;
}

.process_after_project_care__panel {
  position: relative;
  z-index: 100;
}

.process_after_project_care__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_after_project_care__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_after_project_care__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_after_project_care__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_after_project_care__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_after_project_care__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_after_project_care {
    min-height: 450px;
  }

  .process_after_project_care__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_after_project_care__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_after_project_care__title {
    font-size: 46px;
  }

  .process_after_project_care__panel {
    padding: 50px 0 50px 25px;
    background: #646b56;
    background: linear-gradient(to left, #646b56 50%, rgba(100, 107, 86, 0.9));
  }

  .process_after_project_care__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .process_after_project_care {
    min-height: 510px;
  }

  .process_after_project_care__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_after_project_care__title {
    font-size: 46px;
  }

  .process_after_project_care__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_after_project_care__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .process_after_project_care__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_after_project_care {
    min-height: 600px;
  }

  .process_after_project_care__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_after_project_care__title {
    font-size: 46px;
  }

  .process_after_project_care__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_after_project_care__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .process_after_project_care__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_after_project_care__image {
    margin: 0 -400px 0 0;
  }
}

.process_callout {
  margin: 20px auto;
  max-width: 1800px;
  overflow: hidden;
}

.process_callout__content {
  height: 160px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  background-image: none;
}

.process_callout--long {
  background: transparent !important;
  color: #000;
  text-align: left;
}

@media (min-width: 768px) {
  .process_callout--long .center {
    display: flex;
    align-items: center;
  }
}

.process_callout--long .process_callout__content {
  height: auto;
  padding: 60px 20px 40px;
  background-image: none !important;
}

@media (min-width: 768px) {
  .process_callout--long .process_callout__content {
    padding-left: 40px;
  }
}

.process_callout__image {
  max-width: 100%;
}

@media (min-width: 768px) {
  .process_callout__image {
    display: inline-block;
    padding-right: 20px;
    padding-top: 0;
    width: 50%;
  }
}

.process_callout__heading {
  margin-bottom: 0.8em;
  font-size: 24px;
  text-align: left;
}

.process_callout__list {
  margin-left: 24px;
  font-weight: 200;
  list-style: decimal;
  line-height: 1.4;
  text-align: left;
}

.process_callout__list_item {
  margin-bottom: 1em;
  margin-right: 2em;
  font-size: 20px;
}

.process_callout__list_item a {
  color: inherit;
  text-decoration: none;
}

.process_callout__list_item a:hover {
  text-decoration: underline;
}

.process_callout__link {
  color: white;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 32px;
  text-decoration: none;
  text-transform: uppercase;
}

.process_callout__link:hover {
  color: #283455;
}

.process_callout__link:after {
  content: "";
  position: relative;
  left: 8px;
  top: 3px;
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url(/assets/galleries/process_callout_arrow.png);
}

.process_callout--purple {
  background: #7287bd;
}

.process_callout--purple .process_callout__content {
  background-image: url(/assets/galleries/process_callout--purple.jpg?1);
}

.process_callout--gold {
  background: #be9a27;
}

.process_callout--gold .process_callout__content {
  background-image: url(/assets/galleries/process_callout--gold.jpg);
}

@media only screen and (max-width: 767px) {
  .process_callout__content {
    padding: 50px 0 0 0;
    text-align: center;
  }

  .process_callout__link {
    font-weight: 300;
    font-size: 30px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width: 768px) {
  .process_callout__content {
    padding: 65px 0 0 200px;
  }

  .process_callout--long .process_callout__content {
    padding: 20px 20px 0px 20px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_callout__content {
    padding: 65px 0 0 560px;
  }

  .process_callout--purple .process_callout__content {
    background-position: 135px 0px;
  }

  .process_callout--gold .process_callout__content {
    background-position: 25px 0px;
  }

  .process_callout--long .process_callout__content {
    padding: 20px 20px 0px 24px;
  }
}

.process_completion {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #9a8065;
  text-decoration: none;
}

.process_completion__panel {
  position: relative;
  z-index: 100;
}

.process_completion__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_completion__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_completion__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_completion__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_completion__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_completion__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_completion {
    min-height: 450px;
  }

  .process_completion__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_completion__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_completion__title {
    font-size: 46px;
  }

  .process_completion__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #9a8065;
    background: linear-gradient(to left, rgba(154, 128, 101, 0.9), #9a8065 50%);
  }

  .process_completion__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_completion {
    min-height: 510px;
  }

  .process_completion__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_completion__title {
    font-size: 46px;
  }

  .process_completion__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_completion__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .process_completion__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_completion {
    min-height: 600px;
  }

  .process_completion__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_completion__title {
    font-size: 46px;
  }

  .process_completion__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_completion__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .process_completion__image {
    margin: 0 0 0 -600px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_completion__image {
    margin: 0 0 0 -350px;
  }
}

.process_construction_drawings {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #362e25;
  text-decoration: none;
}

.process_construction_drawings__panel {
  position: relative;
  z-index: 100;
}

.process_construction_drawings__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_construction_drawings__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_construction_drawings__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_construction_drawings__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_construction_drawings__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_construction_drawings__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_construction_drawings {
    min-height: 450px;
  }

  .process_construction_drawings__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_construction_drawings__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_construction_drawings__title {
    font-size: 46px;
  }

  .process_construction_drawings__panel {
    padding: 50px 0 50px 25px;
    background: #362e25;
    background: linear-gradient(to left, #362e25 50%, rgba(54, 46, 37, 0.9));
  }

  .process_construction_drawings__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .process_construction_drawings {
    min-height: 510px;
  }

  .process_construction_drawings__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_construction_drawings__title {
    font-size: 46px;
  }

  .process_construction_drawings__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_construction_drawings__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .process_construction_drawings__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_construction_drawings {
    min-height: 600px;
  }

  .process_construction_drawings__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_construction_drawings__title {
    font-size: 46px;
  }

  .process_construction_drawings__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_construction_drawings__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .process_construction_drawings__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_construction_drawings__image {
    margin: 0 -500px 0 0;
  }
}

.process_construction {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #a7c173;
  text-decoration: none;
}

.process_construction__panel {
  position: relative;
  z-index: 100;
}

.process_construction__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_construction__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_construction__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_construction__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_construction__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_construction__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_construction {
    min-height: 450px;
  }

  .process_construction__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_construction__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_construction__title {
    font-size: 46px;
  }

  .process_construction__panel {
    padding: 50px 0 50px 25px;
    background: #a7c173;
    background: linear-gradient(to left, #a7c173 50%, rgba(167, 193, 115, 0.9));
  }

  .process_construction__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .process_construction {
    min-height: 510px;
  }

  .process_construction__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_construction__title {
    font-size: 46px;
  }

  .process_construction__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_construction__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .process_construction__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_construction {
    min-height: 600px;
  }

  .process_construction__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_construction__title {
    font-size: 46px;
  }

  .process_construction__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_construction__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .process_construction__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_construction__image {
    margin: 0 -400px 0 0;
  }
}

.process_contract_and_schedule {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #ccb452;
  text-decoration: none;
}

.process_contract_and_schedule__panel {
  position: relative;
  z-index: 100;
}

.process_contract_and_schedule__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_contract_and_schedule__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_contract_and_schedule__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_contract_and_schedule__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_contract_and_schedule__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_contract_and_schedule__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_contract_and_schedule {
    min-height: 450px;
  }

  .process_contract_and_schedule__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_contract_and_schedule__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_contract_and_schedule__title {
    font-size: 46px;
  }

  .process_contract_and_schedule__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #ccb452;
    background: linear-gradient(to left, rgba(204, 180, 82, 0.9), #ccb452 50%);
  }

  .process_contract_and_schedule__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_contract_and_schedule {
    min-height: 510px;
  }

  .process_contract_and_schedule__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_contract_and_schedule__title {
    font-size: 46px;
  }

  .process_contract_and_schedule__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_contract_and_schedule__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .process_contract_and_schedule__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_contract_and_schedule {
    min-height: 600px;
  }

  .process_contract_and_schedule__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_contract_and_schedule__title {
    font-size: 46px;
  }

  .process_contract_and_schedule__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_contract_and_schedule__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .process_contract_and_schedule__image {
    margin: 0 0 0 -600px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_contract_and_schedule__image {
    margin: 0 0 0 -450px;
  }
}

.process_delivery_of_plans {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #4e6da0;
  text-decoration: none;
}

.process_delivery_of_plans__panel {
  position: relative;
  z-index: 100;
}

.process_delivery_of_plans__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_delivery_of_plans__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_delivery_of_plans__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_delivery_of_plans__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_delivery_of_plans__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_delivery_of_plans__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_delivery_of_plans {
    min-height: 450px;
  }

  .process_delivery_of_plans__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_delivery_of_plans__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_delivery_of_plans__title {
    font-size: 46px;
  }

  .process_delivery_of_plans__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #4e6da0;
    background: linear-gradient(to left, rgba(78, 109, 160, 0.9), #4e6da0 50%);
  }

  .process_delivery_of_plans__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_delivery_of_plans {
    min-height: 510px;
  }

  .process_delivery_of_plans__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_delivery_of_plans__title {
    font-size: 46px;
  }

  .process_delivery_of_plans__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_delivery_of_plans__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .process_delivery_of_plans__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_delivery_of_plans {
    min-height: 600px;
  }

  .process_delivery_of_plans__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_delivery_of_plans__title {
    font-size: 46px;
  }

  .process_delivery_of_plans__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_delivery_of_plans__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .process_delivery_of_plans__image {
    margin: 0 0 0 -600px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_delivery_of_plans__image {
    margin: 0 0 0 -350px;
  }
}

.process_interior_and_exterior_design {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #101b33;
  text-decoration: none;
}

.process_interior_and_exterior_design__panel {
  position: relative;
  z-index: 100;
}

.process_interior_and_exterior_design__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_interior_and_exterior_design__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_interior_and_exterior_design__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_interior_and_exterior_design__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_interior_and_exterior_design__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_interior_and_exterior_design__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_interior_and_exterior_design {
    min-height: 450px;
  }

  .process_interior_and_exterior_design__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_interior_and_exterior_design__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_interior_and_exterior_design__title {
    font-size: 46px;
  }

  .process_interior_and_exterior_design__panel {
    padding: 50px 0 50px 25px;
    background: #101b33;
    background: linear-gradient(to left, #101b33 50%, rgba(16, 27, 51, 0.9));
  }

  .process_interior_and_exterior_design__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .process_interior_and_exterior_design {
    min-height: 510px;
  }

  .process_interior_and_exterior_design__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_interior_and_exterior_design__title {
    font-size: 46px;
  }

  .process_interior_and_exterior_design__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_interior_and_exterior_design__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .process_interior_and_exterior_design__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_interior_and_exterior_design {
    min-height: 600px;
  }

  .process_interior_and_exterior_design__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_interior_and_exterior_design__title {
    font-size: 46px;
  }

  .process_interior_and_exterior_design__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_interior_and_exterior_design__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .process_interior_and_exterior_design__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_interior_and_exterior_design__image {
    margin: 0 -350px 0 0;
  }
}

.process_interior_and_exterior_design a {
  color: #fff;
}

.process_intro {
  max-width: 930px;
  margin: 20px auto;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #07050c;
  font-size: 26px;
  line-height: 1.25;
  text-align: center;
}

.process_needs_assessment {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #51535e;
  text-decoration: none;
}

.process_needs_assessment__panel {
  position: relative;
  z-index: 100;
}

.process_needs_assessment__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_needs_assessment__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_needs_assessment__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_needs_assessment__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_needs_assessment__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_needs_assessment__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_needs_assessment {
    min-height: 450px;
  }

  .process_needs_assessment__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_needs_assessment__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_needs_assessment__title {
    font-size: 46px;
  }

  .process_needs_assessment__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #51535e;
    background: linear-gradient(to left, rgba(81, 83, 94, 0.9), #51535e 50%);
  }

  .process_needs_assessment__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_needs_assessment {
    min-height: 510px;
  }

  .process_needs_assessment__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_needs_assessment__title {
    font-size: 46px;
  }

  .process_needs_assessment__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_needs_assessment__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .process_needs_assessment__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_needs_assessment {
    min-height: 600px;
  }

  .process_needs_assessment__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_needs_assessment__title {
    font-size: 46px;
  }

  .process_needs_assessment__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_needs_assessment__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .process_needs_assessment__image {
    margin: 0 0 0 -600px;
  }
}

.process_solid_start {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #362e25;
  text-decoration: none;
}

.process_solid_start__panel {
  position: relative;
  z-index: 100;
}

.process_solid_start__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 30px;
  text-transform: uppercase;
}

.process_solid_start__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

.process_solid_start__button {
  color: white;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_solid_start__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_solid_start__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .process_solid_start__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_solid_start {
    min-height: 450px;
  }

  .process_solid_start__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .process_solid_start__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .process_solid_start__title {
    font-size: 46px;
  }

  .process_solid_start__panel {
    padding: 50px 0 50px 25px;
    background: #362e25;
    background: linear-gradient(to left, #362e25 50%, rgba(54, 46, 37, 0.9));
  }

  .process_solid_start__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .process_solid_start {
    min-height: 510px;
  }

  .process_solid_start__panel {
    width: 390px;
    min-height: 510px;
  }

  .process_solid_start__title {
    font-size: 46px;
  }

  .process_solid_start__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .process_solid_start__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .process_solid_start__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_solid_start {
    min-height: 600px;
  }

  .process_solid_start__panel {
    width: 420px;
    min-height: 600px;
  }

  .process_solid_start__title {
    font-size: 46px;
  }

  .process_solid_start__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .process_solid_start__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .process_solid_start__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .process_solid_start__image {
    margin: 0 -470px 0 0;
  }
}

.process_toggle {
  margin: 20px auto;
}

.process_toggle__design,
.process_toggle__build {
  display: block;
  height: 54px;
  padding: 2px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #5f5e60;
  font-size: 26px;
  line-height: 52px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: #e6e6e6;
  border-radius: 27px;
}

.process_toggle__design:hover,
.process_toggle__build:hover {
  color: #464546;
  background: #cdcdcd;
}

.process_toggle__design {
  margin: 0 0 10px 0;
}

.process_toggle__design--active {
  color: white;
  background: #d84c39;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.process_toggle__build--active {
  color: white;
  background: #2e608a;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 768px) {
  .process_toggle {
    width: 560px;
    height: 54px;
  }

  .process_toggle__design,
  .process_toggle__build {
    float: left;
    width: 280px;
    margin: 0;
  }

  .process_toggle__design {
    border-radius: 27px 0 0 27px;
  }

  .process_toggle__build {
    border-radius: 0 27px 27px 0;
  }
}

.project_card {
  background-color: #f2f2f0;
  background-size: cover;
  background-position: center center;
}

.project_card__link {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 620px;
  padding: 180px 20px;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .project_card__link {
    margin: 0 0 0 auto;
    padding: 100px 40px;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .project_card__link {
    padding: 180px 40px;
  }
}

.project_card__link:nth-child(odd) {
  justify-content: flex-end;
}

.project_card__content {
  padding: 40px 20px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

@media (min-width: 768px) {
  .project_card__content {
    padding: 40px;
  }
}

.project_card:hover .project_card__content {
  opacity: 1;
}

.project_card__preheader {
  opacity: 0.5;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project_card__heading {
  margin-bottom: 12px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .project_card__heading {
    font-size: 46px;
    line-height: 1.125;
  }
}

.project_lead_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.project_lead_images__image_wrap {
  position: relative;
  padding-bottom: 66.6666667%;
  width: 100%;
  background-color: #f2f2f0;
}

.project_lead_images__image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.site_content {
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 92px;
}

@media (min-width: 1280px) {
  .site_content {
    padding-top: 0;
  }
}

.site_footer_logo {
  display: block;
  height: auto;
  max-width: 180px;
  margin: 0 auto;
}

.site_footer_nav_secondary {
  padding: 40px 20px 25px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: #51504f;
  text-align: center;
  background: #f2f2f0;
}

@media (min-width: 1280px) {
  .site_footer_nav_secondary {
    padding: 32px;
  }
}

@media (min-width: 768px) {
  .site_footer_nav_secondary__list {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    justify-content: space-between;
  }
}

.site_footer_nav_secondary__item {
  padding: 0 15px 15px;
}

.site_footer_nav_secondary a {
  color: #373736;
}

.site_footer_nav_secondary a:hover {
  color: #97958d;
}

.site_footer_nav {
  text-align: center;
}

@media (min-width: 1280px) {
  .site_footer_nav {
    display: flex;
  }
}

@media (min-width: 768px) {
  .site_footer_nav__list {
    align-items: baseline;
    display: flex;
    justify-content: center;
  }
}

.site_footer_nav__item {
  margin-bottom: 16px;
  padding: 0 16px;
}

.site_footer_nav__item:first-child {
  position: relative;
  top: 9px;
  margin-bottom: 30px;
}

@media (min-width: 1280px) {
  .site_footer_nav__item {
    padding: 0 32px;
  }
}

@media (min-width: 768px) {
  .site_footer_nav__item--first_icon {
    margin-left: auto;
  }
}

.site_footer_nav__link {
  font-weight: 500;
  color: #a1977c;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.site_footer_nav__link--active {
  color: #797057;
}

.site_footer_product_menu__list {
  margin: 15px 0 0 0;
  padding: 15px 0;
  background: url(/img/bg.png);
  border-top: solid 1px #e3e2df;
}

@media (min-width: 600px) {
  .site_footer_product_menu__list {
    text-align: center;
  }
}

.site_footer_product_menu__item {
  display: inline-block;
  margin: 5px 15px;
}

.site_footer_product_menu__link {
  font-weight: 500;
  color: #7d7a72;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.site_footer_product_menu__link--active {
  color: #55534e;
}

@media only screen and (max-width: 767px) {
  .site_footer_product_menu {
    font-size: 12px;
  }
}

.site_footer_social_links {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-left: auto;
  text-align: center;
}

@media (min-width: 1280px) {
  .site_footer_social_links {
    padding-right: 16px;
  }
}

.site_footer_social_links__item {
  padding: 16px 8px;
}

@media (min-width: 1280px) {
  .site_footer_social_links__item {
    padding: 16px;
  }
}

.site_footer_social_links__img {
  height: 30px;
  width: auto;
}

.site_footer {
  max-width: 1800px;
  margin: 0 auto;
  padding-top: 50px;
  background: white;
}

.site_header_logo {
  display: block;
}

@media only screen and (max-width: 767px) {
  .site_header_logo {
    left: 0;
    position: absolute;
    top: -22px;
    z-index: 900;
    padding: 25px 15px 15px 25px;
    margin: 0;
    width: 100%;
    background-color: #fff;
  }

  .site_header_logo.fixed {
    position: fixed;
    top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .site_header_logo {
    position: absolute;
    max-width: 170px;
    top: 34px;
  }

@supports (transform: translateX(-50%)) {
    .site_header_logo {
      top: 52%;
      transform: translateY(-50%);
    }
}
}

@media only screen and (min-width: 1000px) {
  .site_header_logo {
    max-width: 200px;
  }
}

@media only screen and (min-width: 1280px) {
  .site_header_logo {
    max-width: 240px;
  }
}

.site_header_logo__image {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .site_header_logo__image {
    margin: -12px auto 0;
    padding: 0;
    width: 124px;
  }
}

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 0 12px;
  background-color: #fff;
  z-index: 100;
}

@media (min-width: 1280px) {
  .site_header {
    position: relative;
  }
}

.site_header__logo_image {
  height: 34px;
}

.site_header__inner {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .site_header__inner {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .site_header__inner {
    padding: 0 32px;
  }
}

.small_gallery__list {
  margin: 10px 0 0 -15px;
}

.small_gallery__list:after {
  content: "";
  display: table;
  clear: both;
}

.small_gallery__item {
  float: left;
  width: 50%;
  padding: 15px 0 0 15px;
}

.small_gallery__link {
  display: block;
}

.small_gallery__link:hover {
  outline: solid 1px white;
}

.small_gallery__image {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .small_gallery__item {
    width: 25%;
  }
}

.spaces_banner_button {
  display: inline-block;
  margin: 25px 0;
}

.testimonial {
  padding: 60px 0;
  margin: 40px auto 0;
  max-width: 720px;
  background-image: url(/img/quote_mark.svg);
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: 160px;
  color: #5b6764;
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
}

.testimonial__quote {
  display: block;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  color: #97958d;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.thank_you {
  max-width: 1800px;
  margin: 0 auto;
  min-height: 590px;
  background: #143e61 url(/img/blue_banner_bg.jpg) no-repeat center top;
  background-size: cover;
}

.thank_you__content {
  padding: 220px 0 50px 0;
}

.thank_you__title {
  max-width: 700px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
}

.thank_you__description {
  margin: 10px 0 0 0;
  max-width: 700px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

.thank_you__button {
  display: inline-block;
  margin: 25px 0 0 0;
  padding: 16px 25px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.thank_you__button:hover {
  border-color: white;
}

.warranty_banner {
  max-width: 1800px;
  margin: 0 auto;
  background: #143e61 url(/img/blue_banner_bg.jpg) no-repeat center top;
  background-size: cover;
}

.warranty_banner__title {
  max-width: 700px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
}

.warranty_banner__description {
  margin: 10px 0 0 0;
  max-width: 700px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .warranty_banner__content {
    padding: 50px 0;
  }

  .warranty_banner__title {
    font-size: 46px;
  }

  .warranty_banner__description {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .warranty_banner {
    min-height: 590px;
  }

  .warranty_banner__content {
    padding: 220px 0 50px 0;
  }
}

.warranty_callout {
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1800px;
  background: #f7f0e6;
}

.warranty_callout__image {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.warranty_callout__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 60px;
  text-transform: uppercase;
}

.warranty_callout h3 {
  margin: 50px 0 0 0;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 30px;
}

.warranty_callout p {
  margin: 10px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 18px;
  line-height: 1.75;
}

.warranty_callout ul,
.warranty_callout ol {
  margin: 15px 0 15px 25px;
  padding: 0 0 0 25px;
  list-style: decimal;
}

.warranty_callout li {
  margin: 5px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 18px;
  line-height: 1.5;
}

.warranty_callout__button {
  display: inline-block;
  margin: 25px 0;
  padding: 16px 25px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: solid 2px inherit;
}

.warranty_callout__button:hover {
  border-color: inherit;
}

@media only screen and (max-width: 767px) {
  .warranty_callout {
    padding-top: 25px;
  }

  .warranty_callout__image {
    width: 100%;
    height: auto;
  }

  .warranty_callout__title {
    margin: 25px 0 0 0;
    font-size: 46px;
  }

  .warranty_callout__subtitle {
    margin: 25px 0 0 0;
  }
}

@media only screen and (min-width: 768px) {
  .warranty_callout__title {
    margin: 40px 0 0 0;
  }

  .warranty_callout__subtitle {
    margin: 40px 0 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .warranty_callout {
    min-height: 1060px;
  }

  .warranty_callout__image {
    position: absolute;
    left: 50%;
    margin: 0 0 0 -350px;
    width: auto;
    height: 100%;
  }

  .warranty_callout__title span {
    display: block;
  }

  .warranty_callout__panel {
    position: relative;
    top: 0;
    width: 400px;
    padding: 100px 35px 50px 0;
    min-height: 1060px;
  }
}

.warranty_quality_commitment {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #d9d9cf;
  text-decoration: none;
}

.warranty_quality_commitment__panel {
  position: relative;
  z-index: 100;
}

.warranty_quality_commitment__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: #002e54;
  font-size: 30px;
  text-transform: uppercase;
}

.warranty_quality_commitment__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #002e54;
  font-size: 16px;
  line-height: 1.5;
}

.warranty_quality_commitment__button {
  color: #002e54;
  border: solid 2px rgba(0, 46, 84, 0.5);
}

.warranty_quality_commitment__button:hover {
  border-color: #002e54;
}

@media only screen and (max-width: 767px) {
  .warranty_quality_commitment__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .warranty_quality_commitment__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .warranty_quality_commitment {
    min-height: 450px;
  }

  .warranty_quality_commitment__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .warranty_quality_commitment__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .warranty_quality_commitment__title {
    font-size: 46px;
  }

  .warranty_quality_commitment__panel {
    padding: 50px 0 50px 25px;
    background: #d9d9cf;
    background: linear-gradient(to left, #d9d9cf 50%, rgba(217, 217, 207, 0.9));
  }

  .warranty_quality_commitment__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .warranty_quality_commitment {
    min-height: 510px;
  }

  .warranty_quality_commitment__panel {
    width: 390px;
    min-height: 510px;
  }

  .warranty_quality_commitment__title {
    font-size: 46px;
  }

  .warranty_quality_commitment__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .warranty_quality_commitment__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .warranty_quality_commitment__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .warranty_quality_commitment {
    min-height: 600px;
  }

  .warranty_quality_commitment__panel {
    width: 420px;
    min-height: 600px;
  }

  .warranty_quality_commitment__title {
    font-size: 46px;
  }

  .warranty_quality_commitment__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .warranty_quality_commitment__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .warranty_quality_commitment__image {
    margin: 0 -600px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .warranty_quality_commitment__button {
    text-align: center;
  }
}

.warranty_warranty {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  background: #e0ddd3;
  text-decoration: none;
}

.warranty_warranty__panel {
  position: relative;
  z-index: 100;
}

.warranty_warranty__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: #171510;
  font-size: 30px;
  text-transform: uppercase;
}

.warranty_warranty__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: #171510;
  font-size: 16px;
  line-height: 1.5;
}

.warranty_warranty__button {
  color: #171510;
  border: solid 2px rgba(23, 21, 16, 0.5);
}

.warranty_warranty__button:hover {
  border-color: #171510;
}

@media only screen and (max-width: 767px) {
  .warranty_warranty__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .warranty_warranty__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .warranty_warranty {
    min-height: 450px;
  }

  .warranty_warranty__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .warranty_warranty__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .warranty_warranty__title {
    font-size: 46px;
  }

  .warranty_warranty__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
    background: #e0ddd3;
    background: linear-gradient(to left, rgba(224, 221, 211, 0.9), #e0ddd3 50%);
  }

  .warranty_warranty__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }
}

@media only screen and (min-width: 1000px) {
  .warranty_warranty {
    min-height: 510px;
  }

  .warranty_warranty__panel {
    width: 390px;
    min-height: 510px;
  }

  .warranty_warranty__title {
    font-size: 46px;
  }

  .warranty_warranty__description {
    font-size: 17px;
    line-height: 1.65;
  }

  .warranty_warranty__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .warranty_warranty__image {
    margin: 0 0 0 -480px;
  }
}

@media only screen and (min-width: 1280px) {
  .warranty_warranty {
    min-height: 600px;
  }

  .warranty_warranty__panel {
    width: 420px;
    min-height: 600px;
  }

  .warranty_warranty__title {
    font-size: 46px;
  }

  .warranty_warranty__description {
    font-size: 18px;
    line-height: 1.75;
  }

  .warranty_warranty__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .warranty_warranty__image {
    margin: 0 0 0 -600px;
  }
}

.blog_search {
  margin: 50px 0;
}

.blog_search__title {
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 46px;
  color: #002e54;
}

.blog_search__blog_list {
  margin: 0 0 0 -25px;
}

.blog_search__blog_list:after {
  content: "";
  display: table;
  clear: both;
}

.blog_search__blog_item {
  float: left;
  padding: 25px 0 0 25px;
}

.blog_search__blog_link {
  display: block;
  text-decoration: none;
}

.blog_search__blog_image {
  display: block;
  width: 100%;
  height: auto;
}

.blog_search__blog_no_image {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
  padding-top: 81.25%;
  background: #bdb4ab;
}

.blog_search__blog_title {
  margin: 5px 0 0 0;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #002e54;
  font-size: 18px;
  line-height: 1.15;
}

@media only screen and (max-width: 399px) {
  .blog_search__blog_item {
    width: 100%;
    clear: both;
  }
}

@media only screen and (min-width: 400px) and (max-width: 599px) {
  .blog_search__blog_item {
    width: 50%;
  }

  .blog_search__blog_item:nth-child(odd) {
    clear: both;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .blog_search__blog_item {
    width: 33.33%;
  }

  .blog_search__blog_item:nth-child(3n+1) {
    clear: both;
  }
}

@media only screen and (min-width: 768px) {
  .blog_search__blog_item {
    width: 50%;
  }

  .blog_search__blog_item:nth-child(odd) {
    clear: both;
  }
}

@media only screen and (min-width: 1280px) {
  .blog_search__blog_item {
    width: 33.33%;
  }

  .blog_search__blog_item:nth-child(odd) {
    clear: none;
  }

  .blog_search__blog_item:nth-child(3n+1) {
    clear: both;
  }
}

.feature_callout {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 20px auto;
  max-width: 1800px;
  padding-top: 40px;
  text-decoration: none;
}

.feature_callout__panel {
  position: relative;
  z-index: 20;
}

.feature_callout__heading {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  font-size: 30px;
  text-transform: uppercase;
}

.feature_callout__paragraph {
  margin: 15px 0 15px 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

.feature_callout__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.feature_callout--image_bottom {
  padding-bottom: 200px;
  padding-top: 0;
}

.feature_callout--image_bottom .feature_callout__panel {
  left: 0;
  top: 0;
  width: 100%;
  min-height: 0;
  padding: 80px 40px 300px;
  text-align: center;
}

.feature_callout--image_bottom .feature_callout__heading,
.feature_callout--image_bottom .feature_callout__paragraph {
  max-width: 760px;
  margin: 0 auto 16px;
}

.feature_callout--image_bottom .feature_callout__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .feature_callout__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .feature_callout__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .feature_callout {
    min-height: 450px;
  }

  .feature_callout__panel {
    position: relative;
    top: 0;
    left: 50%;
    width: 370px;
    min-height: 450px;
  }

  .feature_callout__image {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }

  .feature_callout__heading {
    font-size: 46px;
  }

  .feature_callout--image_right .feature_callout__panel {
    margin: 0 0 0 -370px;
    padding: 50px 25px 50px 0;
  }

  .feature_callout--image_right .feature_callout__image {
    left: 50%;
    margin: 0 0 0 -370px;
  }

  .feature_callout--image_left .feature_callout__panel {
    padding: 50px 0 50px 25px;
  }

  .feature_callout--image_left .feature_callout__image {
    right: 50%;
    margin: 0 -370px 0 0;
  }
}

@media only screen and (min-width: 1000px) {
  .feature_callout {
    min-height: 510px;
    padding-top: 0;
  }

  .feature_callout__panel {
    width: 390px;
    min-height: 510px;
  }

  .feature_callout__heading {
    font-size: 46px;
  }

  .feature_callout__paragraph {
    font-size: 17px;
    line-height: 1.5;
  }

  .feature_callout--image_right .feature_callout__panel {
    margin: 0 0 0 -480px;
    padding: 60px 30px 50px 0;
  }

  .feature_callout--image_right .feature_callout__image {
    margin: 0 0 0 -480px;
  }

  .feature_callout--image_left .feature_callout__panel {
    margin: 0 0 0 90px;
    padding: 60px 0 50px 30px;
  }

  .feature_callout--image_left .feature_callout__image {
    margin: 0 -480px 0 0;
  }
}

@media only screen and (min-width: 1000px) and (min-width: 1280px) {
  .feature_callout {
    min-height: 600px;
  }

  .feature_callout__panel {
    width: 420px;
    min-height: 600px;
  }

  .feature_callout__heading {
    font-size: 46px;
  }

  .feature_callout__paragraph {
    font-size: 18px;
    line-height: 1.75;
  }

  .feature_callout--image_right .feature_callout__panel {
    margin: 0 0 0 -600px;
    padding: 75px 45px 50px 0;
  }

  .feature_callout--image_right .feature_callout__image {
    margin: 0 0 0 -600px;
  }

  .feature_callout--image_left .feature_callout__panel {
    margin: 0 0 0 180px;
    padding: 75px 0 50px 45px;
  }

  .feature_callout--image_left .feature_callout__image {
    margin: 0 -600px 0 0;
  }
}

.intake_form_ad {
  position: absolute;
  right: 0;
  top: 100px;
  width: 30%;
}

.intake_form_ad--ad_2 {
  right: -430px;
  top: 80px;
  width: 46.95%;
}

@media only screen and (max-width: 1239px) {
  .intake_form_ad {
    display: none;
  }
}

@media only screen and (min-width: 1450px) {
  .intake_form_ad--ad_1 {
    right: -80px;
    width: 33.5%;
  }

  .intake_form_ad--ad_2 {
    right: -510px;
    width: 52.5%;
  }
}

.intake_form_ad__heading {
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
  color: #95887a;
  font-size: 34px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.intake_form_ad__image_wrap {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
  padding-top: 77.4%;
}

.intake_form_ad__image_wrap img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intake_form_ad__seal {
  bottom: -88px;
  position: absolute;
  left: 50%;
  height: auto;
  width: 180px;
  transform: translateX(-42%);
}

.intake_form_build_type {
  /* checked mark aspect */
  /* checked mark aspect changes */
}

.intake_form_build_type__radio {
  left: 15px;
  position: relative;
  top: 40px;
  z-index: 200;
}

.intake_form_build_type__radio:not(:checked),
.intake_form_build_type__radio:checked {
  position: absolute;
  left: -99999px;
}

.intake_form_build_type__radio:not(:checked) + .intake_form_build_type__large_checkbox_label,
.intake_form_build_type__radio:checked + .intake_form_build_type__large_checkbox_label {
  position: relative;
  cursor: pointer;
}

.intake_form_build_type__radio:checked + .intake_form_build_type__large_checkbox_label {
  background-color: #032e55;
}

.intake_form_build_type__radio:not(:checked) + .intake_form_build_type__large_checkbox_label:after,
.intake_form_build_type__radio:checked + .intake_form_build_type__large_checkbox_label:after {
  left: 0.5em;
  position: absolute;
  top: 50%;
  color: #fff;
  font-family: "intake-form-icons";
  transform: translateY(-55%);
}

.intake_form_build_type__radio:not(:checked) + .intake_form_build_type__large_checkbox_label:after {
  content: "\E602";
  color: #aca9a1;
  font-size: 12px;
}

@media only screen and (min-width: 768px) {
  .intake_form_build_type__radio:not(:checked) + .intake_form_build_type__large_checkbox_label:after {
    font-size: 28px;
  }
}

.intake_form_build_type__radio:checked + .intake_form_build_type__large_checkbox_label:after {
  content: "\E601";
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .intake_form_build_type__radio:checked + .intake_form_build_type__large_checkbox_label:after {
    left: 0.35em;
  }
}

.intake_form_build_type__large_checkbox_label {
  position: relative;
  display: block;
  padding: 0.5em 0.5em 0.5em 1.9em;
  background-color: #9d9991;
  border-radius: 4px;
  color: #fff;
  font-weight: 300;
  font-size: 30px;
  transition: all 0.2s;
}

@media only screen and (max-width: 767px) {
  .intake_form_build_type__large_checkbox_label {
    padding-bottom: 0.8em;
    padding-left: 1.5em;
    padding-top: 0.75em;
    font-size: 16px;
  }
}

.intake_form_build_type__large_checkbox_label:hover,
.intake_form_build_type__large_checkbox_label:focus {
  outline: 0;
  background-color: #6a665e;
}

.intake_form_build_type__large_checkbox_label_optional {
  display: none;
}

@media only screen and (min-width: 768px) {
  .intake_form_build_type__large_checkbox_label_optional {
    display: inline;
  }
}

.intake_form_build_type__checkboxes {
  clear: both;
  position: relative;
  top: -60px;
  z-index: 10;
  max-width: 790px;
  width: 100%;
  padding: 20px;
  background-color: #062f54;
  border: none;
  color: #fff;
}

.intake_form_design_style__item {
  position: relative;
  padding-bottom: 30px;
}

@media only screen and (min-width: 600px) {
  .intake_form_design_style__item {
    clear: none;
    float: left;
    margin-right: 2%;
    padding-bottom: 4%;
    width: 48%;
  }

  .intake_form_design_style__item:nth-child(1n) {
    float: left;
    clear: none;
    margin-right: 4%;
  }

  .intake_form_design_style__item:nth-child(2n+1),
  .intake_form_design_style__item.child_2n_1 {
    clear: both;
    margin-left: 0;
  }

  .intake_form_design_style__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1000px) {
  .intake_form_design_style__item {
    clear: none;
    float: left;
    margin-right: 1.25%;
    padding-bottom: 2.5%;
    width: 31.6666666667%;
  }

  .intake_form_design_style__item:nth-child(1n) {
    float: left;
    clear: none;
    margin-right: 2.5%;
  }

  .intake_form_design_style__item:nth-child(3n+1),
  .intake_form_design_style__item.child_3n_1 {
    clear: both;
    margin-left: 0;
  }

  .intake_form_design_style__item:nth-child(3n) {
    margin-right: 0;
  }
}

.intake_form_design_style__radio {
  left: 15px;
  position: relative;
  top: 40px;
  z-index: 200;
}

.intake_form_design_style__radio:not(:checked),
.intake_form_design_style__radio:checked {
  position: absolute;
  left: -99999px;
}

.intake_form_design_style__wrap {
  position: relative;
  display: block;
  opacity: 0.75;
  transition: all 0.2s;
}

.intake_form_design_style__wrap:hover,
.intake_form_design_style__wrap:focus,
.intake_form_design_style__wrap:active {
  outline: 0;
}

.intake_form_design_style__wrap:hover,
.intake_form_design_style__wrap:focus {
  outline: 0;
  opacity: 1;
}

.intake_form_design_style__title {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2;
  padding: 20px 0 20px 60px;
  width: 100%;
  background-color: #3abbc8;
  color: white;
  cursor: pointer;
  font-size: 20px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 500px) {
  .intake_form_design_style__title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 600px) {
  .intake_form_design_style__title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1000px) {
  .intake_form_design_style__title {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1200px) {
  .intake_form_design_style__title {
    font-size: 24px;
  }
}

.intake_form_design_style__radio:not(:checked) + .intake_form_design_style__wrap .intake_form_design_style__title:before,
.intake_form_design_style__radio:checked + .intake_form_design_style__wrap .intake_form_design_style__title:before {
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 5;
  content: "\E602";
  color: #fff;
  font-family: "intake-form-icons";
  font-size: 28px;
  opacity: 0.25;
  transform: translateY(-50%);
}

.intake_form_design_style__radio:checked + .intake_form_design_style__wrap {
  box-shadow: 0 0 12px rgba(106, 102, 94, 0.35);
  opacity: 1;
}

.intake_form_design_style__radio:checked + .intake_form_design_style__wrap .intake_form_design_style__title:before {
  content: "\E601";
  opacity: 1;
}

.intake_form_design_style__image_wrap {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
  padding-top: 66.5%;
  background-color: #eaeaea;
}

.intake_form_design_style__image_wrap img {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intake_form_design_style__lightbox_link {
  bottom: 30px;
  position: absolute;
  right: 0;
  z-index: 5;
  display: block;
  height: 60px;
  width: 60px;
  color: #fff;
  font-size: 46px;
  text-decoration: none;
  opacity: 0.85;
}

.intake_form_design_style__lightbox_link:hover,
.intake_form_design_style__lightbox_link:focus {
  outline: 0;
  opacity: 1;
}

.intake_form_grid__container {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

.intake_form_grid__container:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
  .intake_form_grid__container {
    max-width: 768px;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1239px) {
  .intake_form_grid__container {
    max-width: 1000px;
  }
}

.intake_form_grid__container--relative {
  position: relative;
}

.intake_form_grid__row {
  max-width: 790px;
  width: 100%;
}

.intake_form_grid__row:after {
  content: "";
  display: table;
  clear: both;
}

.intake_form_grid__row--wide {
  max-width: 100%;
}

.intake_form_grid__row--appointment_info,
.intake_form_grid__row--lifestyle {
  margin-bottom: 30px;
}

.intake_form_grid__row--appointment_info:last-child,
.intake_form_grid__row--lifestyle:last-child {
  margin-bottom: 0;
}

.intake_form_grid__1of2 {
  padding-bottom: 2px;
}

.intake_form_grid__1of2:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 600px) {
  .intake_form_grid__1of2 {
    clear: none;
    float: left;
    margin-right: 1.5%;
    padding-bottom: 3%;
    width: 48.5%;
    padding-bottom: 4px;
  }

  .intake_form_grid__1of2:nth-child(1n) {
    float: left;
    clear: none;
    margin-right: 3%;
  }

  .intake_form_grid__1of2:nth-child(2n+1),
  .intake_form_grid__1of2.child_2n_1 {
    clear: both;
    margin-left: 0;
  }

  .intake_form_grid__1of2:nth-child(2n) {
    margin-right: 0;
  }
}

.intake_form_grid__1of3 {
  clear: none;
  float: left;
  margin-right: 0.5%;
  padding-bottom: 1%;
  width: 32.6666666667%;
  padding-bottom: 4px;
}

.intake_form_grid__1of3:after {
  content: "";
  display: table;
  clear: both;
}

.intake_form_grid__1of3:nth-child(1n) {
  float: left;
  clear: none;
  margin-right: 1%;
}

.intake_form_grid__1of3:nth-child(3n+1),
.intake_form_grid__1of3.child_3n_1 {
  clear: both;
  margin-left: 0;
}

.intake_form_grid__1of3:nth-child(3n) {
  margin-right: 0;
}

.intake_form_header {
  clear: both;
  margin-bottom: 30px;
  background-color: #5b5952;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .intake_form_header {
    margin-top: 150px;
  }
}

.intake_form_header__heading {
  clear: both;
  float: left;
  width: 100%;
  margin: 35px 0 35px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.165);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 30px;
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  .intake_form_header__heading {
    margin-top: 50px;
    font-size: 50px;
  }
}

.intake_form_header__leadin {
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 300;
}

@font-face {
  font-family: "intake-form-icons";
  src: url("/fonts/intake-form-icons.eot?65jrtp");
  src: url("/fonts/intake-form-icons.eot?#iefix65jrtp") format("embedded-opentype"), url("/fonts/intake-form-icons.woff?65jrtp") format("woff"), url("/fonts/intake-form-icons.ttf?65jrtp") format("truetype"), url("/fonts/intake-form-icons.svg?65jrtp#intake-form-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^=icon-],
[class*=" icon-"] {
  font-family: "intake-form-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-magnify:before {
  content: "\E600";
}

.icon-checkmark:before {
  content: "\E601";
}

.icon-circle:before {
  content: "\E602";
}

.intake_form__band {
  clear: both;
  float: left;
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
  margin-top: 50px;
  padding-bottom: 20px;
  width: 100%;
  background-color: rgba(237, 236, 234, 0.75);
}

.intake_form__band:after {
  content: "";
  display: table;
  clear: both;
}

.intake_form__title {
  margin-bottom: 10px;
  font-size: 80%;
  line-height: 1.4;
  text-transform: uppercase;
}

.intake_form__title--appointment_info,
.intake_form__title--lifestyle {
  display: block;
  margin-bottom: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 767px) {
  .intake_form__title--lifestyle_considering {
    margin-top: 25px;
  }
}

.intake_form__section_heading {
  display: inline-block;
  padding-bottom: 0.55em;
  color: #8a857b;
  font-size: 30px;
  font-weight: 200;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .intake_form__section_heading {
    font-size: 38px;
  }
}

.intake_form__section_heading--lifestyle {
  color: #fff;
}

.intake_form__section_heading--design_style {
  padding-bottom: 0;
}

.intake_form__section_heading--project_description {
  padding-bottom: 0;
  padding-top: 30px;
}

.intake_form__note {
  margin-top: 10px;
  max-width: 600px;
  line-height: 1.4;
  font-weight: 300;
  font-size: 90%;
}

.intake_form__note--check_all {
  margin-bottom: 10px;
  color: #7c98a9;
}

.intake_form__note--design_style {
  margin-bottom: 30px;
}

.intake_form__fieldset {
  position: relative;
  clear: both;
  padding: 20px 0;
  border-bottom: 1px solid #e5e4e2;
}

.intake_form__fieldset:after {
  content: "";
  display: table;
  clear: both;
}

.intake_form__fieldset--last {
  border-bottom: none;
}

.intake_form__fieldset--appointment_info {
  margin-top: 30px;
  max-width: 790px;
  padding: 15px;
  background-color: #436e95;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .intake_form__fieldset--appointment_info {
    margin-bottom: 30px;
    padding: 30px;
  }
}

.intake_form__fieldset--scope_of_work_heading {
  clear: both;
  float: left;
  margin-bottom: 30px;
  margin-top: 40px;
  width: 100%;
  border: none;
}

.intake_form__fieldset--how_did_you_hear {
  padding-bottom: 5px;
  border-bottom: none;
}

.intake_form__fieldset--lifestyle {
  margin-bottom: 30px;
  margin-top: 30px;
  max-width: 790px;
  padding: 15px 15px 0 15px;
  background-color: #436e95;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .intake_form__fieldset--lifestyle {
    padding: 30px 30px 0 30px;
  }
}

.intake_form__label {
  display: block;
  margin: 0;
  min-height: 33px;
  padding: 7px;
  width: 100%;
  background-color: #9d9991;
  border-bottom: 1px solid #aeaba4;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.15;
}

.intake_form__label--appointment_info,
.intake_form__label--other_lifestyle {
  background-color: #345675;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.intake_form__label--other_lifestyle {
  margin-top: 10px;
}

@media only screen and (min-width: 500px) {
  .intake_form__label {
    clear: none;
    float: left;
    width: 100px;
    border-bottom: none;
    border-right: 1px solid #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.intake_form__text_input {
  margin: 0 0 5px;
  min-height: 33px;
  padding: 7px;
  width: 100%;
  background-color: #9d9991;
  border-radius: 0;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  font-family: inherit;
  line-height: 1.15;
}

.intake_form__text_input:focus {
  outline: 0;
  background-color: #6a665e;
}

.intake_form__text_input--appointment_info,
.intake_form__text_input--other_lifestyle {
  background-color: #345675;
}

.intake_form__text_input--appointment_info:focus,
.intake_form__text_input--other_lifestyle:focus {
  background-color: #3b6183;
}

@media only screen and (min-width: 768px) {
  .intake_form__text_input--other_lifestyle {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 500px) {
  .intake_form__text_input {
    clear: none;
    float: left;
    width: 70%;
    width: calc(100% - 100px);
  }
}

.intake_form__textarea_input {
  height: 200px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: 1px solid #cdcbc7;
  color: #34322e;
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.intake_form__textarea_input:focus {
  outline: 0;
}

.intake_form__textarea_input--small {
  padding: 6px;
  height: 70px;
  font-size: 14px;
  line-height: 1.2;
}

.intake_form__label_textarea {
  margin-bottom: 10px;
  width: 100%;
  line-height: 1.4;
}

.intake_form__select {
  margin-top: 15px;
  padding: 3px;
  width: 100%;
  font-size: 15px;
}

.intake_form__radio_group {
  padding-top: 15px;
}

.intake_form__radio_option {
  padding-left: 10px;
}

.intake_form__checkbox_wrap {
  position: relative;
  padding-left: 25px;
  padding-top: 1px;
  margin-top: 0.8em;
}

.intake_form__checkbox {
  left: 0;
  position: absolute;
  top: -1px;
}

.intake_form__button {
  display: block;
  margin: 20px 0 0;
  padding: 16px 0 14px 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  background: #a48b88;
  border: 0;
  border-radius: 0;
  color: white;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  outline: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.intake_form__button:after {
  contents: "\203A";
}

.intake_form__button:hover {
  background: #997d79;
}

.intake_form__submitted_message {
  margin: 25px 0;
  padding: 20px 25px;
  line-height: 1.5;
  color: white;
  background: #a48b88;
}

.job_apply_callout {
  margin: 50px 0 10px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.job_apply_callout__heading {
  margin-bottom: 1em;
  color: #464039;
  font-size: 20px;
}

.job_apply_callout__body {
  line-height: 1.5;
}

.job_apply_callout__paragraph {
  margin-top: 0.5em;
  color: #464039;
}

.job_apply_callout__link {
  color: #464039;
}

.job_apply_callout__link:hover,
.job_apply_callout__link:focus {
  outline: 0;
  color: #50ccc3;
}

.large_gallery {
  padding: 40px 0;
}

.large_gallery__title {
  margin-bottom: 24px;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: inherit;
  font-size: 35px;
  text-align: center;
}

.large_gallery__list {
  margin: 0 0 0 -10px;
}

.large_gallery__list:after {
  content: "";
  display: table;
  clear: both;
}

.large_gallery__item {
  float: left;
  width: 50%;
  padding: 0 0 10px 10px;
}

.large_gallery__link {
  display: block;
}

.large_gallery__image {
  display: block;
  width: 100%;
  height: auto;
}

.large_gallery--with_border .large_gallery__link {
  border: solid 1px white;
}

@media only screen and (min-width: 500px) {
  .large_gallery__item {
    width: 33.33%;
  }
}

@media only screen and (min-width: 768px) {
  .large_gallery__item {
    width: 25%;
  }
}

@media only screen and (min-width: 1000px) {
  .large_gallery__list {
    margin: 0 0 0 -20px;
  }

  .large_gallery__item {
    padding: 0 0 20px 20px;
  }
}

@media only screen and (min-width: 1280px) {
  .large_gallery__list {
    margin: 0 0 0 -30px;
  }

  .large_gallery__item {
    width: 20%;
    padding: 0 0 30px 30px;
  }
}

.process_banner {
  position: relative;
  overflow: hidden;
  margin: 0 auto 40px;
  max-width: 1800px;
}

.process_banner--design {
  background: #e9523d;
}

.process_banner--build {
  background: #002e54;
}

.process_banner__image {
  display: block;
}

.process_banner__panel {
  z-index: 100;
}

.process_banner__title {
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 60px;
  text-transform: uppercase;
}

.process_banner__description {
  margin: 15px 0 0 0;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 18px;
  line-height: 1.75;
}

.process_banner__button {
  display: inline-block;
  margin: 25px 0 0 0;
  padding: 16px 25px 14px 25px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.process_banner__button:hover {
  border-color: white;
}

@media only screen and (max-width: 767px) {
  .process_banner__image {
    width: 100%;
    height: auto;
  }

  .process_banner__panel {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .process_banner {
    min-height: 450px;
  }

  .process_banner__title {
    font-size: 46px;
  }

  .process_banner__description {
    font-size: 17px;
  }

  .process_banner__panel {
    position: relative;
    top: 0;
    left: 50%;
    margin: 0 0 0 -370px;
    padding: 100px 30px 0 0;
    width: 370px;
    min-height: 450px;
  }

  .process_banner--design .process_banner__panel {
    background: #e9523d;
    background: linear-gradient(to left, rgba(233, 82, 61, 0.9), #e9523d 15%);
  }

  .process_banner--build .process_banner__panel {
    background: #002e54;
    background: linear-gradient(to left, rgba(0, 46, 84, 0.9), #002e54 15%);
  }

  .process_banner__image {
    display: block;
    width: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 0 0 -140px;
  }
}

@media only screen and (min-width: 1000px) {
  .process_banner {
    min-height: 540px;
  }

  .process_banner__title {
    font-size: 60px;
  }

  .process_banner__description {
    font-size: 18px;
  }

  .process_banner__panel {
    margin: 0 0 0 -480px;
    padding: 100px 40px 0 0;
    width: 480px;
    min-height: 540px;
  }

  .process_banner__image {
    margin: 0 0 0 -175px;
  }
}

@media only screen and (min-width: 1280px) {
  .process_banner {
    min-height: 540px;
  }

  .process_banner__panel {
    margin: 0 0 0 -600px;
    padding: 125px 50px 0 0;
    width: 600px;
    min-height: 540px;
  }

  .process_banner__image {
    margin: 0 0 0 -100px;
  }
}

