.basicLightbox{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.8);opacity:.01;-webkit-transition:opacity .4s ease;transition:opacity .4s ease;z-index:1000;will-change:opacity}.basicLightbox--visible{opacity:1}.basicLightbox__placeholder{max-width:100%;-webkit-transform:scale(.9);transform:scale(.9);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease, -webkit-transform .4s ease;z-index:1;will-change:transform}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:95%;max-height:95%}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{pointer-events:auto}.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{width:auto;height:auto}.basicLightbox--iframe .basicLightbox__placeholder,.basicLightbox--img .basicLightbox__placeholder,.basicLightbox--video .basicLightbox__placeholder{width:100%;height:100%;pointer-events:none}.basicLightbox--visible .basicLightbox__placeholder{-webkit-transform:scale(1);transform:scale(1)}@charset "UTF-8";
/* ============================================================================
   MAIN STYLES
   ========================================================================= */
/**
 * Main styles.
 *
 * The structure is based on ITCSS and modified:
 * https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/
 *
 * This helps the CSS specificity:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
 *
 * Author: Steven Teskey <steven@truemarket.ca>
 * Structure Stolen From: Ryan Yu <hey@ryanyu.com>
 */
/**
 * Settings.
 *
 * Design tokens for UI.
 */
@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins.woff2") format("woff2"), url("../fonts/Poppins.woff") format("woff"), url("../fonts/Poppins.svg#Poppins") format("svg");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.svg#Poppins-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'hollandregular';
  src: url("../fonts/holland-webfont.woff2") format("woff2"), url("../fonts/holland-webfont.woff") format("woff"), url("../fonts/holland-webfont.svg#hollandregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
 * Breakpoints (SASS-MQ)
 *
 * Keep inline with tailwind.config.js
 * Use:
 * @include mq($until: xl) {
 *  ...
 * }
 *
 * $until: Tells preprocessor to include `max-width` query
 *
 */
/**
 * Tools.
 *
 * Globally used functions, placeholders and mixins.
 *
 * NOTE: it is important not to output any CSS in the first 2 layers.
 */
/**
 * Vendors.
 tem*
 * 3rd party vendors including normalize/reset.
 * This is the first layer which generates actual CSS.
 */
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #FFF;
  font-size: 3rem;
}

.sl-wrapper .sl-close:focus {
  outline: none;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #FFF;
  font-size: 1rem;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #FFF;
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button:focus {
  outline: none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #FFF;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -webkit-transform ease 200ms;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

/**
 * Objects.
 *
 * Class-based selectors which define undecorated design patterns,
 * for example, utilities, media object and container.
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 56.24em) {
  html,
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}

html {
  scroll-behavior: smooth;
}

.o-page {
  width: 100vw;
  font-weight: 300;
}

.o-grid {
  width: 100%;
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(11, 1fr [column]);
}

@media (max-width: 56.24em) {
  .o-grid {
    grid-template-columns: 2rem auto auto 2rem;
  }
}

.o-grid-9 {
  grid-template-columns: repeat(9, 1fr [column]);
}

@media (max-width: 68.75em) {
  .o-grid-9 {
    grid-template-columns: 2rem auto auto 2rem;
  }
}

.o-header-row {
  grid-template-rows: calc(3rem + 58px + 3rem) auto;
}

@media (max-width: 56.24em) {
  .o-header-row {
    grid-template-rows: calc(2rem + 58px + 2rem) auto;
  }
}

.o-column {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  padding: 0 1em;
}

/**
 * Elements.
 *
 * Styling for bare HTML elements, e.g., H1, a, etc.
 * These come with default styling from the browser so we can redefine them here.
 */
body {
  margin: 0;
}

.basic_lightbox.basic_lightbox--iframe.basic_lightbox--visible iframe:not(.instagram-media),
iframe:not(.instagram-media) {
  width: 50vw;
  height: 50vh;
}

@media (max-width: 56.24em) {
  .basic_lightbox.basic_lightbox--iframe.basic_lightbox--visible iframe:not(.instagram-media),
  iframe:not(.instagram-media) {
    width: 80vw;
    height: 60vh;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.e-image {
  max-width: 100%;
}

.e-image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.e-image--cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.e-image--top, .e-image--center {
  -o-object-position: top center;
     object-position: top center;
}

.e-image--left {
  -o-object-position: top left;
     object-position: top left;
}

.e-image--right {
  -o-object-position: top right;
     object-position: top right;
}

.e-image--bottom {
  -o-object-position: bottom center;
     object-position: bottom center;
}

.e-image--bottom-left {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.e-image--bottom-right {
  -o-object-position: bottom right;
     object-position: bottom right;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  line-height: 1.1;
}

h1, h2, h3, h4, h5, h6,
p {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

p {
  line-height: 2.25;
}

p + p {
  margin-top: 1.5rem;
}

blockquote {
  margin: 0;
}

strong {
  font-weight: 500;
  font-style: normal;
}

em {
  font-style: italic;
}

u {
  color: #ea1c24;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

ol ul,
ul ul {
  margin-top: 0.5rem;
}

a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  color: #333333;
}

a:hover, a:active, a:focus {
  color: #ea1c24;
}

.e-link--invisible {
  color: inherit;
}

.e-link--invisible:hover, .e-link--invisible:active {
  color: #333333;
}

.e-link--light {
  color: #888888;
}

.e-link--inverse:link, .p-article--single p a:link, .p-article--single .c-content strong a:link,
.p-article--single button:link,
.p-article--single .button:link, .e-link--inverse:visited, .p-article--single p a:visited, .p-article--single .c-content strong a:visited,
.p-article--single button:visited,
.p-article--single .button:visited {
  color: #ea1c24;
}

.e-link--inverse:hover, .p-article--single p a:hover, .p-article--single .c-content strong a:hover,
.p-article--single button:hover,
.p-article--single .button:hover, .e-link--inverse:active, .p-article--single p a:active, .p-article--single .c-content strong a:active,
.p-article--single button:active,
.p-article--single .button:active, .e-link--inverse:focus, .p-article--single p a:focus, .p-article--single .c-content strong a:focus,
.p-article--single button:focus,
.p-article--single .button:focus {
  color: #333333;
}

.e-link--regular:link, .e-link--regular:visited {
  color: #333333;
}

.e-link--regular:hover, .e-link--regular:active, .e-link--regular:focus {
  color: #ea1c24;
}

.e-link__line, .p-article--single .c-content strong a,
.p-article--single button,
.p-article--single .button {
  display: inline-block;
  position: relative;
}

.e-link__line:before, .p-article--single .c-content strong a:before,
.p-article--single button:before,
.p-article--single .button:before, .e-link__line:after, .p-article--single .c-content strong a:after,
.p-article--single button:after,
.p-article--single .button:after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 3px;
  margin: 0 1rem 7px 0;
  background: #e1e4e5;
}

@media (max-width: 56.24em) {
  .e-link__line:before, .p-article--single .c-content strong a:before,
  .p-article--single button:before,
  .p-article--single .button:before, .e-link__line:after, .p-article--single .c-content strong a:after,
  .p-article--single button:after,
  .p-article--single .button:after {
    width: 1.25rem;
    height: 2px;
    margin: 0 0.25rem 4px;
  }
}

.e-link__line:after, .p-article--single .c-content strong a:after,
.p-article--single button:after,
.p-article--single .button:after {
  display: none;
}

@media (max-width: 56.24em) {
  .e-link__line:after, .p-article--single .c-content strong a:after,
  .p-article--single button:after,
  .p-article--single .button:after {
    display: inline-block;
  }
}

.e-link__line--long:before, .p-article--single .c-content strong a:before,
.p-article--single button:before,
.p-article--single .button:before, .e-link__line--long:after, .p-article--single .c-content strong a:after,
.p-article--single button:after,
.p-article--single .button:after {
  width: 10rem;
}

@media (max-width: 56.24em) {
  .e-link__line--long:before, .p-article--single .c-content strong a:before,
  .p-article--single button:before,
  .p-article--single .button:before, .e-link__line--long:after, .p-article--single .c-content strong a:after,
  .p-article--single button:after,
  .p-article--single .button:after {
    width: 1.25rem;
  }
}

.e-link__line--greydark:before, .e-link__line--greydark:after {
  background: #888888;
}

.e-link__line--black:before, .e-link__line--black:after {
  background: #333333;
}

.e-link__line--red:before {
  height: 2px;
  margin: 0 1rem 4px 0;
  background: #ea1c24;
}

.e-counter, .p-article--single {
  counter-reset: list;
}

.e-counter blockquote::before, .p-article--single blockquote::before,
.e-counter li::before,
.p-article--single li::before {
  counter-increment: list;
  content: counter(list, decimal-leading-zero);
  line-height: 1;
  font-weight: 500 !important;
  display: inline-block !important;
  color: #000 !important;
  background: none !important;
  position: relative !important;
  width: auto !important;
  height: 1em !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.e-counter--script blockquote::before, .p-article--single ol blockquote::before,
.e-counter--script li::before,
.p-article--single ol li::before {
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
}

.e-counter--medium blockquote::before,
.e-counter--medium li::before {
  font-size: 1rem;
}

.e-counter--large blockquote::before, .p-article--single ol blockquote::before,
.e-counter--large li::before,
.p-article--single ol li::before {
  font-size: 5rem;
}

.e-cite, .p-article--single cite {
  display: block;
}

.e-cite--askew, .p-article--single cite {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

/**
 * Components
 *
 * UI Components
 */
.c-logo {
  grid-column: 1 / span 4;
  grid-row: 1;
}

@media (max-width: 56.24em) {
  .c-logo {
    background: #FFFFFF;
  }
}

.c-logo__title {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 3rem 3.5rem;
  width: 228px;
  height: 58px;
  text-align: right;
  background-color: #FFFFFF;
  pointer-events: auto;
  -webkit-clip-path: inset(0 194px 0 0);
          clip-path: inset(0 194px 0 0);
  -webkit-transition: padding 0.25s ease, -webkit-clip-path 0.5s ease-out;
  transition: padding 0.25s ease, -webkit-clip-path 0.5s ease-out;
  transition: clip-path 0.5s ease-out, padding 0.25s ease;
  transition: clip-path 0.5s ease-out, padding 0.25s ease, -webkit-clip-path 0.5s ease-out;
}

@media (max-width: 56.24em) {
  .c-logo__title {
    padding: 2rem 2.5rem;
  }
}

.c-logo__link {
  position: relative;
  display: block;
  height: 58px;
  max-height: 100%;
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

.c-logo__link > * {
  position: absolute;
  top: 0;
}

.c-logo__link img:nth-child(1),
.c-logo__link img:nth-child(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.c-logo__link img:nth-child(1) {
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out, opacity 0.4s ease-out;
  transition: transform 0.5s ease-out, opacity 0.4s ease-out, -webkit-transform 0.5s ease-out;
}

@media (max-width: 35.99em) {
  .c-logo__link img:nth-child(1) {
    left: 0;
    max-width: 60%;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}

.c-logo__link img:nth-child(2) {
  left: 34px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease-out 0.3s, -webkit-transform 0.2s ease-out 0.3s;
  transition: opacity 0.25s ease-out 0.3s, -webkit-transform 0.2s ease-out 0.3s;
  transition: transform 0.2s ease-out 0.3s, opacity 0.25s ease-out 0.3s;
  transition: transform 0.2s ease-out 0.3s, opacity 0.25s ease-out 0.3s, -webkit-transform 0.2s ease-out 0.3s;
}

.c-logo.is-large .c-logo__title {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.c-logo.is-large .c-logo__link img:nth-child(1),
.c-logo.is-large .c-logo__link img:nth-child(2) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-logo.is-large .c-logo__link img:nth-child(1) {
  opacity: 1;
}

@media (max-width: 35.99em) {
  .c-logo.is-large .c-logo__link img:nth-child(1) {
    left: 0;
    max-width: 60%;
    -webkit-transform: translateY(40%);
            transform: translateY(40%);
  }
}

.c-logo.is-large .c-logo__link img:nth-child(2) {
  opacity: 0;
}

.c-logo--menu {
  max-height: calc(3rem + 58px + 3rem);
  grid-column: 1 / span 3;
  grid-row: 1 / span 1;
  justify-self: start;
  padding-left: 1rem;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  -webkit-transition: opacity 0.5s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, transform 1s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, transform 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
}

@media (max-width: 81.24em) {
  .c-logo--menu {
    max-height: none;
  }
}

.c-logo--menu img {
  padding: 3rem 0;
}

@media (max-width: 81.24em) {
  .c-logo--menu {
    grid-column: 1 / span 3;
  }
}

.c-logo,
.c-menu {
  height: calc(3rem + 58px + 3rem);
  max-height: calc(3rem + 58px + 3rem);
  overflow: hidden;
  padding: 3em auto;
  -webkit-transition: height 0.25s ease;
  transition: height 0.25s ease;
}

@media (max-width: 56.24em) {
  .c-logo,
  .c-menu {
    position: relative;
    height: calc(2rem + 58px + 2rem);
    z-index: 300;
  }
}

.c-main-navigation {
  grid-column: 1 / span 10;
  grid-row: 1 / span 2;
  pointer-events: none;
  background: #FFFFFF;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: 300;
}

.c-main-navigation::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out 0.4s;
  transition: opacity 0.5s ease-out 0.4s;
  z-index: 200;
}

@media (max-width: 56.24em) {
  .c-main-navigation {
    grid-column: 1 / span 4;
    grid-row: 2 / span 2;
    background: #FFFFFF;
    z-index: 200;
  }
}

.c-main-navigation__list {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  grid-column: 3 / span 9;
  grid-row: 1 / span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  padding-top: 3rem;
  font-size: 1.563rem;
  list-style: none;
  z-index: 300;
  /*&:hover {
      .c-main-navigation__sublist {
        opacity: 1;
        transform: translateY(0);
        @include mq($until: md) {

        }
      }
    }
    &:not(:hover) {
      .c-main-navigation__sublist {
        transition: all 0.25s;
      }
    }*/
}

@media (max-width: 81.24em) {
  .c-main-navigation__list {
    height: auto !important;
  }
}

@media (max-width: 93.74em) {
  .c-main-navigation__list {
    font-size: 1.125rem;
  }
}

@media (max-width: 81.24em) {
  .c-main-navigation__list {
    grid-column: 4 / span 8;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.563rem;
  }
}

@media (max-width: 56.24em) {
  .c-main-navigation__list {
    grid-column: 2 / span 2;
    grid-row: 3 / span 1;
    padding: 1rem 0 1rem;
  }
}

.c-main-navigation__item {
  padding: 0 1rem 3rem;
  font-size: 1.25rem;
  -webkit-transition: opacity 0.5s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.3s;
  transition: opacity 0.5s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.3s;
  transition: transform 0.35s ease-in-out 0.3s, opacity 0.5s ease-out 0.25s;
  transition: transform 0.35s ease-in-out 0.3s, opacity 0.5s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.3s;
  -webkit-transition: opacity 0.25s ease-out 0.2s, -webkit-transform 0.125s ease-in-out 0.2s;
  transition: opacity 0.25s ease-out 0.2s, -webkit-transform 0.125s ease-in-out 0.2s;
  transition: transform 0.125s ease-in-out 0.2s, opacity 0.25s ease-out 0.2s;
  transition: transform 0.125s ease-in-out 0.2s, opacity 0.25s ease-out 0.2s, -webkit-transform 0.125s ease-in-out 0.2s;
  /*&:hover .c-main-navigation__sublist {
      opacity: 1;
      transform: translateY(0);
    }*/
}

@media (max-width: 93.74em) {
  .c-main-navigation__item {
    margin-bottom: 0;
    font-size: 1.125rem;
  }
}

@media (max-width: 81.24em) {
  .c-main-navigation__item {
    font-size: 1rem;
    padding-bottom: 1rem;
  }
  .c-main-navigation__item:last-child {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 56.24em) {
  .c-main-navigation__item {
    padding: 0 0 1rem;
  }
  .c-main-navigation__item:last-child {
    padding: 0 0 1.5rem;
  }
}

.c-main-navigation .has-sublist {
  display: none;
  font-family: Arial;
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.5rem;
  -webkit-transform: translate(0, -50%) !important;
          transform: translate(0, -50%) !important;
}

.c-main-navigation .has-sublist img {
  width: 1rem;
  height: 1rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 81.24em) {
  .c-main-navigation .has-sublist {
    display: inline-block;
  }
  .c-main-navigation .has-sublist.is-open {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}

.c-main-navigation__link, .c-main-navigation__sublink {
  text-decoration: none;
}

.c-main-navigation__link {
  color: #333333;
}

.c-main-navigation__sublist {
  font-size: 1.125rem;
  -webkit-transition: opacity 0.35s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.25s;
  transition: opacity 0.35s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.25s;
  transition: transform 0.35s ease-in-out 0.25s, opacity 0.35s ease-out 0.25s;
  transition: transform 0.35s ease-in-out 0.25s, opacity 0.35s ease-out 0.25s, -webkit-transform 0.35s ease-in-out 0.25s;
}

@media (max-width: 93.74em) {
  .c-main-navigation__sublist {
    font-size: 1rem;
  }
}

@media (max-width: 81.24em) {
  .c-main-navigation__sublist {
    position: relative;
    font-size: 0.875rem;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: max-height 0.6s ease-out;
    transition: max-height 0.6s ease-out;
  }
  .c-main-navigation__sublist.is-open {
    max-height: 20em;
    -webkit-transition: max-height 0.8s ease-out;
    transition: max-height 0.8s ease-out;
  }
}

.c-main-navigation__subitem:first-child {
  margin-top: 0.75rem;
}

.c-main-navigation__sublink {
  color: #888888;
  line-height: 1.5rem;
}

.c-main-navigation__menu {
  grid-column: column 9 / span 2;
  grid-row: 1;
  -ms-flex-item-align: center;
      align-self: center;
  z-index: 10;
}

@media (max-width: 56.24em) {
  .c-main-navigation__menu {
    grid-column: 3 / span 2;
    justify-self: end;
    z-index: 300;
    position: relative;
  }
}

.c-main-navigation.is-open {
  pointer-events: auto;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  z-index: 300;
}

@media (max-width: 56.24em) {
  .c-main-navigation.is-open {
    z-index: 200;
    max-height: 100vh;
    overflow: auto !important;
  }
  .c-main-navigation.is-open__list {
    z-index: 200;
  }
}

.c-main-navigation.is-open::after {
  opacity: 1;
}

.c-main-navigation.is-open .c-logo--menu,
.c-main-navigation.is-open .c-main-navigation__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 56.24em) {
  .c-main-navigation.is-open .c-main-navigation__item a:not(.has-sublist) {
    display: inline-block;
    overflow: hidden;
    padding: 8px 0;
  }
}

@media (max-width: 81.24em) {
  .c-main-navigation.is-open .c-main-navigation__sublist {
    opacity: 1;
  }
}

.c-main-navigation.is-open .c-logo--menu {
  -webkit-transition: opacity 0.2s ease 0.3s, -webkit-transform 0.5s ease 0.4s;
  transition: opacity 0.2s ease 0.3s, -webkit-transform 0.5s ease 0.4s;
  transition: opacity 0.2s ease 0.3s, transform 0.5s ease 0.4s;
  transition: opacity 0.2s ease 0.3s, transform 0.5s ease 0.4s, -webkit-transform 0.5s ease 0.4s;
}

.c-menu {
  -ms-flex-item-align: center;
      align-self: center;
}

.c-menu__link {
  overflow: hidden;
  position: relative;
  margin-left: 1rem;
}

.c-menu__link .c-menu__close {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-menu__link.is-open .c-menu__menu {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.c-menu__link.is-open .c-menu__close {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-menu__menu, .c-menu__close {
  position: absolute;
  top: 0;
  left: 2px;
  -webkit-transition: opacity 0.6s ease 0.25s, -webkit-transform 0.25s ease 0.25s;
  transition: opacity 0.6s ease 0.25s, -webkit-transform 0.25s ease 0.25s;
  transition: transform 0.25s ease 0.25s, opacity 0.6s ease 0.25s;
  transition: transform 0.25s ease 0.25s, opacity 0.6s ease 0.25s, -webkit-transform 0.25s ease 0.25s;
}

@media (max-width: 93.74em) {
  .c-menu__menu, .c-menu__close {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
  }
}

.c-menu__icon {
  position: relative;
  width: 36px;
  height: 27px;
  margin-left: 60px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

@media (max-width: 93.74em) {
  .c-menu__icon {
    margin-left: 0;
  }
}

.c-menu__icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #ea1c24;
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: all 0.25s ease-in-out 0.1s;
  transition: all 0.25s ease-in-out 0.1s;
}

.c-menu__icon span:nth-child(1) {
  top: 0;
}

.c-menu__icon span:nth-child(2) {
  top: 12px;
}

.c-menu__icon span:nth-child(3) {
  top: 24px;
}

.c-menu__icon.is-clicked span:nth-child(1) {
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
}

.c-menu__icon.is-clicked span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.c-menu__icon.is-clicked span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-menu__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50%;
  height: 100%;
  text-transform: lowercase;
  background: #e1e4e5;
  pointer-events: auto;
}

@media (max-width: 56.24em) {
  .c-menu__hamburger {
    padding: 0 2rem 0 1rem;
  }
}

.c-landing {
  overflow-y: hidden;
}

.c-landing__background {
  grid-column: 1 / span 10;
  grid-row: 1 / span 3;
  min-height: 737px;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 93.74em) {
  .c-landing__background {
    min-height: 70vh;
  }
}

@media (max-width: 56.24em) {
  .c-landing__background {
    grid-column: 1 / span 4;
    grid-row: 2 / span 2;
    min-height: 50vh;
  }
}

.c-landing__content {
  grid-column: 1 / span 10;
  grid-row: 2 / span 2;
  -ms-flex-item-align: end;
      align-self: end;
  padding: 0 4rem 4rem;
  font-size: 1.25rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 93.74em) {
  .c-landing__content {
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 56.24em) {
  .c-landing__content {
    grid-column: 2 / span 2;
    grid-row: 3 / span 1;
    padding: 0 0 2rem;
  }
}

.c-landing__title {
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-size: 3.815rem;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 35.99em) {
  .c-landing__title {
    margin-top: 1rem;
    font-size: 3.052rem;
  }
}

.c-landing__text {
  color: #FFFFFF;
  max-width: 900px;
}

@media (max-width: 35.99em) {
  .c-landing__text.c-content {
    line-height: 1.5;
  }
}

.c-landing__social {
  grid-column: 11 / span 1;
  grid-row: 2 / span 2;
  -ms-flex-item-align: start;
      align-self: start;
  justify-self: center;
  z-index: 300;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.c-landing__social li {
  padding: 1rem 0;
}

@media (max-width: 93.74em) {
  .c-landing__social li {
    padding: 0 0 1rem;
  }
}

.c-landing__play {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-left: 0.625rem;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  background: transparent url(../images/icons/icon-arrow-play.svg) 0.875rem center no-repeat;
  background-size: 1.25rem 1.25rem;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1) translateX(0) translateY(0.75rem);
          transform: scale(1) translateX(0) translateY(0.75rem);
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.c-landing__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-landing__logo-link.link--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 56.24em) {
  .c-landing__logo-link.link--right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-landing__logo {
  width: auto;
  max-height: 180px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 56.24em) {
  .c-landing__logo {
    max-height: 140px;
  }
}

@media (max-width: 35.99em) {
  .c-landing__logo {
    max-height: 100px;
  }
}

.c-landing__cta .c-landing__link.e-link, .c-landing__cta .p-article--single p a.c-landing__link, .p-article--single p .c-landing__cta a.c-landing__link, .c-landing__cta .p-article--single .c-content strong a.c-landing__link, .p-article--single .c-content strong .c-landing__cta a.c-landing__link,
.c-landing__cta .p-article--single button.c-landing__link, .p-article--single .c-landing__cta button.c-landing__link,
.c-landing__cta .p-article--single .c-landing__link.button, .p-article--single .c-landing__cta .c-landing__link.button {
  color: #FFFFFF;
  font-size: 1.563em;
  text-transform: uppercase;
}

.c-landing__cta .c-landing__link.e-link:hover, .c-landing__cta .p-article--single p a.c-landing__link:hover, .p-article--single p .c-landing__cta a.c-landing__link:hover, .c-landing__cta .p-article--single .c-content strong a.c-landing__link:hover, .p-article--single .c-content strong .c-landing__cta a.c-landing__link:hover,
.c-landing__cta .p-article--single button.c-landing__link:hover, .p-article--single .c-landing__cta button.c-landing__link:hover,
.c-landing__cta .p-article--single .c-landing__link.button:hover, .p-article--single .c-landing__cta .c-landing__link.button:hover,
.c-landing__cta .c-landing__link.e-link:active,
.c-landing__cta .p-article--single p a.c-landing__link:active,
.p-article--single p .c-landing__cta a.c-landing__link:active,
.c-landing__cta .p-article--single .c-content strong a.c-landing__link:active,
.p-article--single .c-content strong .c-landing__cta a.c-landing__link:active,
.c-landing__cta .p-article--single button.c-landing__link:active,
.p-article--single .c-landing__cta button.c-landing__link:active,
.c-landing__cta .p-article--single .c-landing__link.button:active,
.p-article--single .c-landing__cta .c-landing__link.button:active {
  color: white;
  -webkit-transform: scale(1) translateX(0.5rem);
          transform: scale(1) translateX(0.5rem);
}

.c-landing__cta .c-landing__link.e-link:hover .c-landing__play, .c-landing__cta .p-article--single p a.c-landing__link:hover .c-landing__play, .p-article--single p .c-landing__cta a.c-landing__link:hover .c-landing__play, .c-landing__cta .p-article--single .c-content strong a.c-landing__link:hover .c-landing__play, .p-article--single .c-content strong .c-landing__cta a.c-landing__link:hover .c-landing__play, .c-landing__cta .p-article--single button.c-landing__link:hover .c-landing__play, .p-article--single .c-landing__cta button.c-landing__link:hover .c-landing__play, .c-landing__cta .p-article--single .c-landing__link.button:hover .c-landing__play, .p-article--single .c-landing__cta .c-landing__link.button:hover .c-landing__play,
.c-landing__cta .c-landing__link.e-link:active .c-landing__play,
.c-landing__cta .p-article--single p a.c-landing__link:active .c-landing__play,
.p-article--single p .c-landing__cta a.c-landing__link:active .c-landing__play,
.c-landing__cta .p-article--single .c-content strong a.c-landing__link:active .c-landing__play,
.p-article--single .c-content strong .c-landing__cta a.c-landing__link:active .c-landing__play,
.c-landing__cta .p-article--single button.c-landing__link:active .c-landing__play,
.p-article--single .c-landing__cta button.c-landing__link:active .c-landing__play,
.c-landing__cta .p-article--single .c-landing__link.button:active .c-landing__play,
.p-article--single .c-landing__cta .c-landing__link.button:active .c-landing__play {
  fill: #ea1c24;
  -webkit-transform: scale(1.2) translateX(0) translateY(0.75rem);
          transform: scale(1.2) translateX(0) translateY(0.75rem);
}

.c-landing__cta .c-landing__link.e-link:before, .c-landing__cta .p-article--single p a.c-landing__link:before, .p-article--single p .c-landing__cta a.c-landing__link:before, .c-landing__cta .p-article--single .c-content strong a.c-landing__link:before, .p-article--single .c-content strong .c-landing__cta a.c-landing__link:before,
.c-landing__cta .p-article--single button.c-landing__link:before, .p-article--single .c-landing__cta button.c-landing__link:before,
.c-landing__cta .p-article--single .c-landing__link.button:before, .p-article--single .c-landing__cta .c-landing__link.button:before {
  -webkit-animation: ctaPlayBefore 0.5s ease-out 0.5s both;
          animation: ctaPlayBefore 0.5s ease-out 0.5s both;
}

.c-landing__cta .c-landing__link.e-link .c-landing__play, .c-landing__cta .p-article--single p a.c-landing__link .c-landing__play, .p-article--single p .c-landing__cta a.c-landing__link .c-landing__play, .c-landing__cta .p-article--single .c-content strong a.c-landing__link .c-landing__play, .p-article--single .c-content strong .c-landing__cta a.c-landing__link .c-landing__play, .c-landing__cta .p-article--single button.c-landing__link .c-landing__play, .p-article--single .c-landing__cta button.c-landing__link .c-landing__play, .c-landing__cta .p-article--single .c-landing__link.button .c-landing__play, .p-article--single .c-landing__cta .c-landing__link.button .c-landing__play {
  -webkit-animation: ctaPlayPlay 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1.5s;
          animation: ctaPlayPlay 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1.5s;
}

@-webkit-keyframes ctaPlayBefore {
  0% {
    width: 0rem;
  }
  100% {
    width: 10rem;
  }
}

@keyframes ctaPlayBefore {
  0% {
    width: 0rem;
  }
  100% {
    width: 10rem;
  }
}

@-webkit-keyframes ctaPlayPlay {
  0%, 100% {
    -webkit-transform: scale(1) translateX(0) translateY(0.75rem);
            transform: scale(1) translateX(0) translateY(0.75rem);
  }
  10%, 90% {
    -webkit-transform: scale(1) translateX(-1px) translateY(0.75rem);
            transform: scale(1) translateX(-1px) translateY(0.75rem);
  }
  30%, 70% {
    -webkit-transform: scale(1) translateX(2px) translateY(0.75rem);
            transform: scale(1) translateX(2px) translateY(0.75rem);
  }
  50% {
    -webkit-transform: scale(1) translateX(-2px) translateY(0.75rem);
            transform: scale(1) translateX(-2px) translateY(0.75rem);
  }
}

@keyframes ctaPlayPlay {
  0%, 100% {
    -webkit-transform: scale(1) translateX(0) translateY(0.75rem);
            transform: scale(1) translateX(0) translateY(0.75rem);
  }
  10%, 90% {
    -webkit-transform: scale(1) translateX(-1px) translateY(0.75rem);
            transform: scale(1) translateX(-1px) translateY(0.75rem);
  }
  30%, 70% {
    -webkit-transform: scale(1) translateX(2px) translateY(0.75rem);
            transform: scale(1) translateX(2px) translateY(0.75rem);
  }
  50% {
    -webkit-transform: scale(1) translateX(-2px) translateY(0.75rem);
            transform: scale(1) translateX(-2px) translateY(0.75rem);
  }
}

.c-social-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}

.c-social-links__item {
  padding: 0 1em;
  margin: 0;
}

.c-social-links__link {
  text-decoration: none;
  color: #888888;
}

.c-social-links--icons {
  -ms-flex-item-align: center;
      align-self: center;
}

.c-social-links--icons .c-social-links__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-social-links--icons .c-social-links__item {
  padding-bottom: 3rem;
}

.c-social-links--icons .c-social-links__item:last-child {
  padding-bottom: 0;
}

@media (max-width: 56.24em) {
  .c-social-links--icons {
    margin-top: 2rem;
  }
  .c-social-links--icons .c-social-links__item {
    padding-bottom: 0;
  }
  .c-social-links--icons .c-social-links__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-features {
  grid-column: 7 / span 4;
  grid-row: 3 / span 2;
  -ms-flex-item-align: end;
      align-self: end;
  padding: 3rem;
  background: #e1e4e5;
}

.c-features__item {
  margin-bottom: 1rem;
}

.c-features__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 93.74em) {
  .c-features__item {
    margin-bottom: 0;
  }
}

@media (max-width: 56.24em) {
  .c-features {
    grid-column: 1 / span 4;
    grid-row: 4 / span 1;
    margin-bottom: 4rem;
    line-height: 1.3;
  }
}

.c-media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 300;
}

.c-media-object--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-media-object--left .c-media-object__accent {
  right: -5vw;
}

.c-media-object--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-media-object--right .c-media-object__accent {
  left: -5vw;
}

.c-media-object--top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 4rem;
}

.c-media-object--top:last-child {
  margin-right: 0;
}

.c-media-object--bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.c-media-object--vcenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-media-object--phone {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-media-object__media {
  position: relative;
  margin: 0;
}

.c-media-object__media,
.c-media-object__media .c-media-object__wrapper,
.c-media-object__media .c-media-object__wrapper img {
  width: 35vw;
  height: 35vw;
  background: #333333;
}

.c-media-object__media img,
.c-media-object__media .c-media-object__wrapper img,
.c-media-object__media .c-media-object__wrapper img img {
  width: 100%;
  height: 100%;
}

.c-media-object__media .c-media-object__wrapper {
  overflow: hidden;
}

.c-media-object__media .c-media-object__wrapper img {
  display: block;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background: #333333;
}

.c-media-object__media--wide,
.c-media-object__media--wide .c-media-object__wrapper,
.c-media-object__media--wide .c-media-object__wrapper img {
  width: 45vw;
  height: 40vw;
}

.c-media-object__media--wide img,
.c-media-object__media--wide .c-media-object__wrapper img,
.c-media-object__media--wide .c-media-object__wrapper img img {
  width: 100%;
  height: 100%;
}

.c-media-object__accent {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 45vw;
  height: 12rem;
  background: #e1e4e5;
  -webkit-transform: translateY(6rem) translateZ(-1px);
          transform: translateY(6rem) translateZ(-1px);
  z-index: -1;
}

.c-media-object__accent--wide {
  width: 55vw;
}

.c-media-object__controls {
  margin-top: 1.5rem;
  font-size: 1.563em;
  text-transform: uppercase;
}

.c-media-object__controls li:after {
  content: "/";
  display: inline-block;
  padding: 0 0.5rem;
  color: #888888;
}

.c-media-object__controls li:last-child:after {
  display: none;
}

.c-media-object__controls .e-link--light.is-active {
  color: #333333;
}

.c-media-object__content {
  width: 40vw;
  margin: 0 auto;
  color: #333333;
}

.c-media-object__content h3 {
  margin-bottom: 2rem;
}

.c-media-object__content .e-link.e-link__line, .c-media-object__content .p-article--single p a.e-link__line, .p-article--single p .c-media-object__content a.e-link__line, .c-media-object__content .p-article--single .c-content strong a, .p-article--single .c-content strong .c-media-object__content a,
.c-media-object__content .p-article--single button, .p-article--single .c-media-object__content button,
.c-media-object__content .p-article--single .button, .p-article--single .c-media-object__content .button {
  margin-top: 2rem;
}

.c-media-object__content--narrow {
  width: 30vw;
  margin: 0 8rem;
}

.c-media-object img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 93.74em) {
  .c-media-object--left .c-media-object__accent {
    right: -5vw;
  }
  .c-media-object--right .c-media-object__accent {
    left: -5vw;
  }
}

@media (max-width: 56.24em) {
  .c-media-object--left, .c-media-object--right, .c-media-object--top, .c-media-object--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-media-object--left .c-media-object__accent {
    right: -10vw;
  }
  .c-media-object--right .c-media-object__accent {
    left: -10vw;
  }
  .c-media-object__media, .c-media-object__media--wide,
  .c-media-object__media .c-media-object__wrapper,
  .c-media-object__media--wide .c-media-object__wrapper {
    width: calc(100vw - 4rem);
    height: 50vh;
  }
  .c-media-object__media img, .c-media-object__media--wide img,
  .c-media-object__media .c-media-object__wrapper img,
  .c-media-object__media--wide .c-media-object__wrapper img {
    width: 100%;
    height: 100%;
  }
  .c-media-object__accent, .c-media-object__accent--wide {
    width: 120vw;
    height: 12rem;
    -webkit-transform: translateY(6rem) translateX(-2rem);
            transform: translateY(6rem) translateX(-2rem);
  }
  .c-media-object__controls .c-list.c-list--end {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem auto;
  }
  .c-media-object__content, .c-media-object__content--narrow {
    width: calc(100vw - 4rem);
    margin: 10rem 2rem 0;
  }
}

@media (max-width: 35.99em) {
  .c-media-object__content, .c-media-object__content--narrow {
    margin: 10rem 0 0;
  }
  .c-media-object--left .c-media-object__accent,
  .c-media-object--left .c-media-object__accent--wide {
    right: -20vw;
  }
  .c-media-object__content.c-text-block {
    padding: 0;
  }
  .c-media-object__content.c-text-block .c-title br + br, .c-media-object__content.c-text-block .p-article--single h2 br + br, .p-article--single .c-media-object__content.c-text-block h2 br + br, .c-media-object__content.c-text-block .p-article--single h3 br + br, .p-article--single .c-media-object__content.c-text-block h3 br + br, .c-media-object__content.c-text-block .p-article--single h4 br + br, .p-article--single .c-media-object__content.c-text-block h4 br + br {
    display: none;
  }
}

.c-content {
  color: #666666;
  line-height: 2.25;
}

.c-content--medium {
  font-size: 1rem;
}

.c-content--large {
  font-size: 1.125rem;
  line-height: 2;
}

.c-content--xlarge {
  font-size: 1.563rem;
  line-height: 1.8;
}

@media (max-width: 35.99em) {
  .c-content--xlarge {
    font-size: 1.125rem;
  }
}

.c-content--light {
  font-weight: 300;
}

.c-content--spread {
  letter-spacing: 3px;
}

.c-content--grey-background {
  background-color: #e1e4e5;
}

.c-pullquote {
  margin: 0;
}

.c-pullquote--third {
  width: 28%;
}

.c-pullquote--narrowest {
  max-width: 20vw;
}

.c-pullquote--narrow {
  max-width: 55vw;
}

.c-pullquote--wide {
  max-width: 75vw;
}

.c-pullquote__content {
  position: relative;
  padding: 3rem;
  font-weight: 300;
  color: #333333;
}

.c-pullquote__content--grey-background {
  background: #e1e4e5;
}

.c-pullquote__content--grey-background:before, .c-pullquote__content--grey-background:after {
  content: "";
  display: block;
  position: absolute;
  color: #191d26;
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-size: 20rem;
  line-height: 1;
}

.c-pullquote__content--grey-background:before {
  content: "\201C";
  top: -7.5rem;
  left: -1.75rem;
}

.c-pullquote__content--grey-background:after {
  content: "\201D";
  bottom: -11.5rem;
  right: -0.75rem;
}

.c-pullquote__cite, .p-article--single cite {
  display: block;
  margin: 1rem 3rem 0 0;
  color: #ea1c24;
  text-align: right;
  font-style: normal;
  letter-spacing: 4px;
}

.c-pullquote__cite:before, .p-article--single cite:before {
  content: "\2013";
}

.c-pullquote__cite--script, .p-article--single cite {
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  margin-top: 4rem;
  letter-spacing: normal;
}

@media (max-width: 56.24em) {
  .c-pullquote--third, .c-pullquote--narrowest, .c-pullquote--narrow, .c-pullquote--wide {
    width: 100%;
  }
}

.c-cta--center {
  text-align: center;
  margin: 0 auto;
}

.c-cta--narrow {
  max-width: 65%;
}

.c-cta--wide {
  max-width: 80%;
}

.c-cta--right {
  width: 60%;
  margin-left: 40%;
}

.c-cta--right .e-link, .c-cta--right .p-article--single p a, .p-article--single p .c-cta--right a, .c-cta--right .p-article--single .c-content strong a, .p-article--single .c-content strong .c-cta--right a,
.c-cta--right .p-article--single button, .p-article--single .c-cta--right button,
.c-cta--right .p-article--single .button, .p-article--single .c-cta--right .button {
  width: 100%;
  padding-left: 10rem;
}

.c-cta__title {
  margin-bottom: 1rem;
}

@media (max-width: 56.24em) {
  .c-cta--center, .c-cta--narrow, .c-cta--wide, .c-cta--right {
    max-width: 100%;
    padding: 0 2rem;
    text-align: center;
  }
  .c-cta--right {
    margin-left: 0;
    width: 100%;
  }
  .c-cta--right .e-link, .c-cta--right .p-article--single p a, .p-article--single p .c-cta--right a, .c-cta--right .p-article--single .c-content strong a, .p-article--single .c-content strong .c-cta--right a,
  .c-cta--right .p-article--single button, .p-article--single .c-cta--right button,
  .c-cta--right .p-article--single .button, .p-article--single .c-cta--right .button {
    padding-left: 0;
  }
}

@media (max-width: 56.24em) {
  .c-text-block {
    max-width: 100% !important;
    padding: 0 2rem;
  }
}

.c-text-block--narrowest {
  max-width: 50%;
}

.c-text-block--narrow {
  max-width: 60%;
}

.c-text-block--wide {
  max-width: 80%;
}

.c-text-block--center {
  margin: 0 auto;
  text-align: center;
}

.c-text-block__title {
  line-height: 2;
}

.c-text-block__title:after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  background: red;
  margin: 2rem auto;
}

.c-text-block__title--left-line:after {
  margin-left: 0;
}

.c-text-block__title--no-line {
  margin-bottom: 2rem;
}

.c-text-block__title--no-line:after {
  display: none;
}

.c-text-block__content {
  color: #333333;
}

.c-read-time {
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.c-meta {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #666666;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.c-meta.e-link, .p-article--single p a.c-meta, .p-article--single .c-content strong a.c-meta,
.p-article--single button.c-meta,
.p-article--single .c-meta.button {
  color: #666666;
}

.c-meta.e-link:hover, .p-article--single p a.c-meta:hover, .p-article--single .c-content strong a.c-meta:hover,
.p-article--single button.c-meta:hover,
.p-article--single .c-meta.button:hover, .c-meta.e-link:active, .p-article--single p a.c-meta:active, .p-article--single .c-content strong a.c-meta:active,
.p-article--single button.c-meta:active,
.p-article--single .c-meta.button:active {
  color: #ea1c24;
}

.c-title, .p-article--single h2, .p-article--single h3, .p-article--single h4 {
  margin-bottom: 1rem;
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  line-height: 1.2;
  color: black;
}

.c-title--sans, .p-article--single h2, .p-article--single h3, .p-article--single h4 {
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 2.25rem;
}

.c-title--spread, .p-article--single h2, .p-article--single h3, .p-article--single h4 {
  text-transform: uppercase;
  letter-spacing: 4px;
}

.c-title--smaller {
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.c-title--small {
  font-size: 1.25rem;
  line-height: 1.8rem;
}

.c-title--smallish {
  font-size: 1.563rem;
  line-height: 1.8rem;
}

.c-title--medium {
  font-size: 2.441rem;
}

.c-title--large {
  margin-bottom: 1.5rem;
  font-size: 3.815rem;
}

@media (max-width: 93.74em) {
  .c-title--large {
    font-size: 3.052rem;
  }
}

@media (max-width: 35.99em) {
  .c-title--large {
    font-size: 2.441rem;
  }
}

.c-title--xlarge {
  margin-bottom: 1.5rem;
  font-size: 4.768rem;
}

@media (max-width: 93.74em) {
  .c-title--xlarge {
    font-size: 3.815rem;
  }
}

@media (max-width: 35.99em) {
  .c-title--xlarge {
    font-size: 3.052rem;
  }
}

.c-title--line-center:after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  background: red;
  margin: 2rem auto;
}

.c-title--line-left:after, .p-article--single h2:after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  background: red;
  margin: 2rem 0;
}

.c-card--third {
  width: calc(33% - 2rem);
}

.c-card--third:nth-child(3n-1) {
  margin: 0 3rem 2rem;
}

.c-card--full {
  width: 100%;
}

.c-card__media, .c-card__content {
  position: absolute;
  width: calc(100% - 6rem);
}

.c-card__media {
  display: block;
  top: 2rem;
  left: 3rem;
  margin: 0;
  height: 10rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.c-card__content {
  top: 4rem;
  left: 3rem;
  height: 12rem;
  padding-top: 3.5rem;
  -webkit-transform: translateY(7rem);
          transform: translateY(7rem);
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
}

.c-card__title {
  letter-spacing: 4px;
}

.c-card__title:after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin: 1rem auto 0;
  background: #ea1c24;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out 0.2s;
  transition: 0.25s ease-in-out 0.2s;
}

.c-card__details {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: 0.25s ease-in-out 0.25s;
  transition: 0.25s ease-in-out 0.25s;
}

@media (max-width: 56.24em) {
  .c-card--third {
    width: 100%;
  }
}

.c-card--floorplan {
  position: relative;
  height: 18rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #f3f4f6;
  overflow: hidden;
}

.c-card--floorplan .c-card__title {
  margin-bottom: 2rem;
}

.c-card--floorplan .c-card__details li::after {
  content: "\2022";
  display: inline-block;
  margin: 0 0.5rem;
  color: #888888;
}

.c-card--floorplan .c-card__details li:last-child::after {
  display: none;
}

.c-card--floorplan:hover .c-card__media {
  opacity: 0;
}

.c-card--floorplan:hover .c-card__content {
  background-color: #FFFFFF;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-card--floorplan:hover .c-card__title:after {
  opacity: 1;
}

.c-card--floorplan:hover .c-card__details {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 2rem 0;
}

.c-list--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 56.24em) {
  .c-list--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 2rem;
  }
}

.c-list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-list--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-list--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-list--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-list--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-list--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-list--start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-list--no-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list--no-bullets.c-list li {
  padding: 0;
}

.c-list--no-bullets.c-list li::before {
  display: none;
}

.c-form {
  width: 100%;
  padding: 3rem;
  font-weight: 300;
  text-transform: none;
  color: #333333;
}

@media (max-width: 81.24em) {
  .c-form {
    max-width: 100vw;
    padding: 1rem;
  }
}

.c-form h3 {
  color: #ea1c24;
  letter-spacing: 4px;
}

.c-form label {
  display: block;
  position: relative;
}

.c-form label:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-box-shadow: 0 0 0 2px #333333;
          box-shadow: 0 0 0 2px #333333;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.c-form label:focus-within input::-webkit-input-placeholder,
.c-form label:focus-within textarea::-webkit-input-placeholder {
  color: #333333;
}

.c-form label:focus-within input::-moz-placeholder,
.c-form label:focus-within textarea::-moz-placeholder {
  color: #333333;
}

.c-form label:focus-within input::-ms-input-placeholder,
.c-form label:focus-within textarea::-ms-input-placeholder {
  color: #333333;
}

.c-form label:focus-within input::placeholder,
.c-form label:focus-within textarea::placeholder {
  color: #333333;
}

.c-form label:focus-within:after {
  opacity: 1;
}

.c-form label[for=submit]:after {
  display: none;
}

.c-form input:not([type=radio]),
.c-form textarea {
  position: relative;
  width: 100%;
  padding: 0.75em;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  z-index: 2;
}

.c-form input:not([type=radio]):focus,
.c-form textarea:focus {
  outline: none;
}

.c-form input:not([type=radio])::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #CCC;
}

.c-form input:not([type=radio])::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #CCC;
}

.c-form input:not([type=radio])::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #CCC;
}

.c-form input:not([type=radio])::placeholder,
.c-form textarea::placeholder {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #CCC;
}

.c-form textarea {
  resize: none;
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.c-form button {
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  text-transform: lowercase;
  background: none;
  border: none;
  z-index: 2;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #fff;
}

.c-form button:hover {
  background-color: #ea1c24;
  color: #fff;
}

.c-form--grey-background {
  background-color: #e1e4e5;
}

.c-form--left-padding {
  padding-left: 10rem;
}

.c-form--selector {
  padding: 3rem 0 3rem 20rem;
  margin: 4rem 0 0;
}

.c-form--selector h3 {
  text-transform: uppercase;
}

.c-form--selector label {
  margin-top: 0.5rem;
}

.c-form--selector label:after {
  display: none;
}

.c-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 4px;
  margin-bottom: 1rem;
}

.c-form__row h3 {
  margin: 1rem 0;
}

.c-form__row:last-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0;
}

@media (max-width: 68.75em) {
  .c-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-form__row .u-half,
  .c-form__row .u-third {
    width: 100%;
    margin: 4px 0;
  }
  .c-form input:not([type=radio]),
  .c-form textarea {
    font-size: 0.8rem;
  }
  .c-form input:not([type=radio])::-webkit-input-placeholder,
  .c-form textarea::-webkit-input-placeholder {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CCC;
  }
  .c-form input:not([type=radio])::-moz-placeholder,
  .c-form textarea::-moz-placeholder {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CCC;
  }
  .c-form input:not([type=radio])::-ms-input-placeholder,
  .c-form textarea::-ms-input-placeholder {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CCC;
  }
  .c-form input:not([type=radio])::placeholder,
  .c-form textarea::placeholder {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CCC;
  }
}

.c-contact-footer__header {
  grid-column: 1 / span 4;
  -ms-flex-item-align: center;
      align-self: center;
}

.c-contact-footer__header .e-link, .c-contact-footer__header .p-article--single p a, .p-article--single p .c-contact-footer__header a, .c-contact-footer__header .p-article--single .c-content strong a, .p-article--single .c-content strong .c-contact-footer__header a,
.c-contact-footer__header .p-article--single button, .p-article--single .c-contact-footer__header button,
.c-contact-footer__header .p-article--single .button, .p-article--single .c-contact-footer__header .button {
  width: 100%;
}

.c-contact-footer__phone {
  grid-column: 5 / span 3;
}

.c-contact-footer__social {
  grid-column: 8 / span 1;
}

@media (max-width: 93.74em) {
  .c-contact-footer__header {
    grid-column: 1 / span 4;
  }
}

@media (max-width: 68.75em) {
  .c-contact-footer__header {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
    margin-bottom: 4rem;
  }
  .c-contact-footer__header .e-link, .c-contact-footer__header .p-article--single p a, .p-article--single p .c-contact-footer__header a, .c-contact-footer__header .p-article--single .c-content strong a, .p-article--single .c-content strong .c-contact-footer__header a,
  .c-contact-footer__header .p-article--single button, .p-article--single .c-contact-footer__header button,
  .c-contact-footer__header .p-article--single .button, .p-article--single .c-contact-footer__header .button {
    font-size: 1.25rem;
  }
  .c-contact-footer__phone {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
  }
  .c-contact-footer__social {
    grid-column: 2 / span 2;
    grid-row: 3 / span 1;
  }
}

.p-contact-phone {
  position: relative;
  text-align: left;
}

.p-contact-phone > * {
  position: absolute;
  left: 50%;
  width: 280px;
  -webkit-transform: translateX(-52%) translateY(5rem);
          transform: translateX(-52%) translateY(5rem);
}

.p-contact-phone__title {
  top: 96px;
}

.p-contact-phone__email:before, .p-contact-phone__phone:before, .p-contact-phone__hours:before, .p-contact-phone__address:before {
  display: block;
  color: #888888;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.p-contact-phone__email {
  top: 160px;
}

.p-contact-phone__email:before {
  content: "Email";
}

.p-contact-phone__phone {
  top: 224px;
}

.p-contact-phone__phone:before {
  content: "Phone";
}

.p-contact-phone__hours {
  top: 288px;
}

.p-contact-phone__hours:before {
  content: "Hours";
}

.p-contact-phone__address {
  top: 416px;
}

.p-contact-phone__address:before {
  content: "Address";
}

@media (max-width: 35.99em) {
  .p-contact-phone > * {
    width: 200px;
  }
  .p-contact-phone__title {
    top: 0;
  }
  .p-contact-phone__email, .p-contact-phone__phone, .p-contact-phone__hours, .p-contact-phone__address {
    font-size: 0.85rem;
  }
  .p-contact-phone__email {
    top: 2.5rem;
  }
  .p-contact-phone__phone {
    top: 6rem;
  }
  .p-contact-phone__hours {
    top: 9rem;
  }
  .p-contact-phone__address {
    top: 12.5rem;
  }
}

.c-footer {
  grid-template-rows: 230px 81px auto;
}

.c-footer__cta {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  -webkit-transform: translateX(-4em);
          transform: translateX(-4em);
}

.c-footer__badges {
  grid-column: 4 / span 6;
  grid-row: 2 / span 2;
  background: #e1e4e5;
}

.c-footer__info {
  grid-column: 1 / span 9;
  grid-row: 4 / span 1;
  margin: 3em 0 1em;
  text-align: center;
  color: #888888;
}

.c-footer .c-cta__image {
  width: 262px;
  height: 311px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.c-footer .c-cta__content {
  -ms-flex-item-align: center;
      align-self: center;
}

@media (max-width: 93.74em) {
  .c-footer__cta {
    grid-column: 1 / span 4;
    margin-bottom: 4rem;
  }
}

@media (max-width: 68.75em) {
  .c-footer {
    grid-template-rows: auto auto auto;
  }
  .c-footer__cta {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    text-align: center;
    margin: 0 4rem 4rem 0;
  }
  .c-footer__cta img {
    margin: 0 auto;
  }
  .c-footer__badges {
    grid-column: 1 / span 4;
    grid-row: 2 / span 1;
    text-align: center;
  }
  .c-footer__info {
    grid-column: 2 / span 2;
    grid-row: 3 / span 1;
  }
  .c-footer .c-cta__image {
    padding-left: 1.5rem;
  }
}

@media (max-width: 56.24em) {
  .c-footer__cta {
    margin: 0 0 4rem;
  }
}

.c-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-badges__item {
  margin: 5rem 2rem;
}

.c-badges__item:first-child {
  margin-left: 5rem;
}

@media (max-width: 56.24em) {
  .c-badges__item:first-child {
    margin-left: 2rem;
  }
}

@media (max-width: 35.99em) {
  .c-badges {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-badges__item {
    width: 45%;
    margin: 0;
    padding: 1rem;
  }
  .c-badges__item:first-child, .c-badges__item:nth-child(2) {
    margin: 0;
    padding-top: 2rem;
  }
  .c-badges__item:last-child {
    width: 100%;
    text-align: center;
    padding-bottom: 2rem;
  }
}

.c-bg {
  position: relative;
}

.c-bg__before::before {
  content: "";
  display: block;
  position: absolute;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: -1;
}

.c-bg__after::after {
  content: "";
  display: block;
  position: absolute;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: -1;
}

.c-bg--home-hanging-light::before {
  content: "";
  display: block;
  position: absolute;
  top: -6rem;
  left: 8rem;
  width: 229px;
  height: 316px;
  background: transparent url(../images/pages/home-hanging-light.jpg) 0 0 no-repeat;
}

@media (max-width: 93.74em) {
  .c-bg--home-hanging-light {
    padding-top: 4rem;
  }
  .c-bg--home-hanging-light::before {
    top: 0;
    left: 4rem;
    background-size: 80%;
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-hanging-light::before {
    left: -5.6rem;
  }
  .c-bg--home-hanging-light .c-text-block:nth-child(1) {
    padding: 0 6rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 35.99em) {
  .c-bg--home-hanging-light::before {
    left: -4.2rem;
    background-size: 60%;
    z-index: -1;
  }
  .c-bg--home-hanging-light .c-text-block:nth-child(1) {
    padding: 0 2rem;
    margin-bottom: 4rem;
  }
}

.c-bg--home-flooring::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - (324px / 2));
  left: calc(100% - 190px);
  width: 190px;
  height: 324px;
  background: transparent url(../images/pages/home-flooring.jpg) 0 0 no-repeat;
  z-index: -1;
}

@media (max-width: 93.74em) {
  .c-bg--home-flooring::after {
    left: calc(100% - 150px);
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-flooring::after {
    left: calc(100% - 130px);
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-flooring::after {
    -webkit-transform: translateY(-6rem) scale(0.8);
            transform: translateY(-6rem) scale(0.8);
  }
  .c-bg--home-flooring .c-text-block:nth-child(2) li:first-child {
    margin-top: 12rem;
  }
}

@media (max-width: 35.99em) {
  .c-bg--home-flooring::after {
    display: none;
  }
  .c-bg--home-flooring .c-text-block:nth-child(2) li:first-child {
    margin-top: 4rem;
  }
}

.c-bg--home-dog::before {
  top: 8rem;
  left: calc(-447px - 2rem);
  width: 447px;
  height: 258px;
  background: transparent url(../images/pages/home-dog.jpg) 0 0 no-repeat;
}

@media (max-width: 93.74em) {
  .c-bg--home-dog::before {
    left: -50%;
  }
}

@media (max-width: 68.75em) {
  .c-bg--home-dog {
    margin-top: 14rem !important;
  }
  .c-bg--home-dog::before {
    top: -14rem;
    left: calc(50% - (447px / 2) + 60px);
    background-size: 80%;
  }
}

.c-bg--home-cactus-shelf::after {
  top: 14rem;
  right: 0;
  width: 757px;
  height: 306px;
  background-image: url(../images/pages/home-cactus-shelf.png);
  z-index: -1;
}

@media (max-width: 81.25em) {
  .c-bg--home-cactus-shelf::after {
    top: 12rem;
    right: -8rem;
  }
}

@media (max-width: 35.99em) {
  .c-bg--home-cactus-shelf {
    margin-bottom: 8rem !important;
  }
  .c-bg--home-cactus-shelf::after {
    display: none;
  }
}

.c-bg--home-paint-can::after {
  top: 80%;
  right: 10%;
  width: 332px;
  height: 344px;
  background-image: url(../images/pages/home-paint-can.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--home-paint-can::after {
    right: 5%;
    background-size: 80%;
    background-position: bottom right;
    background-repeat: no-repeat;
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-paint-can::after {
    display: none;
  }
}

.c-bg--home-building-blocks::before {
  top: -8rem;
  left: 10%;
  width: 476px;
  height: 286px;
  background-image: url(../images/pages/home-building-blocks.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--home-building-blocks::before {
    top: -12rem;
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-building-blocks::before {
    top: -16rem;
    left: 0;
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-building-blocks::before {
    display: none;
  }
}

.c-bg--home-red-couch::after {
  top: 80%;
  left: -24rem;
  width: 1125px;
  height: 757px;
  background-image: url(../images/pages/home-red-couch.jpg);
  z-index: -2;
}

@media (max-width: 81.24em) {
  .c-bg--home-red-couch::after {
    left: -38rem;
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-red-couch::after {
    display: none;
  }
}

.c-bg--new-homes-carpet::after {
  top: 80%;
  left: -15%;
  width: 873px;
  height: 575px;
  background-image: url(../images/pages/new-homes-carpet-2.jpg);
  z-index: -1;
}

@media (max-width: 93.74em) {
  .c-bg--new-homes-carpet::after {
    top: 80%;
  }
}

@media (max-width: 81.24em) {
  .c-bg--new-homes-carpet::after {
    top: 110%;
    background-size: 70%;
  }
}

@media (max-width: 56.24em) {
  .c-bg--new-homes-carpet::after {
    display: none;
  }
}

.c-bg--new-homes-pencil::before {
  top: -14rem;
  left: 0;
  width: 389px;
  height: 370px;
  background-image: url(../images/pages/new-homes-pencil.jpg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0.8) rotate(-10deg);
          transform: scale(0.8) rotate(-10deg);
}

@media all and (max-width: 1100px) {
  .c-bg--new-homes-pencil::before {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@media all and (max-width: 900px) {
  .c-bg--new-homes-pencil::before {
    -webkit-transform: scale(0.6) translateX(15rem) rotate(40deg);
            transform: scale(0.6) translateX(15rem) rotate(40deg);
  }
}

@media (max-width: 35.99em) {
  .c-bg--new-homes-pencil::before {
    display: none;
  }
}

.c-bg--new-homes-cactus-shelf::before {
  top: -5rem;
  left: -80%;
  width: 772px;
  height: 358px;
  background-image: url(../images/pages/new-homes-cactus-shelf.jpg);
  z-index: -1;
}

@media (max-width: 93.74em) {
  .c-bg--new-homes-cactus-shelf::before {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--new-homes-cactus-shelf::before {
    -webkit-transform: translateX(-22rem);
            transform: translateX(-22rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--new-homes-cactus-shelf::before {
    display: none;
  }
}

.c-bg--new-homes-lamp::before {
  top: 100%;
  right: -400px;
  width: 415px;
  height: 1079px;
  background-image: url(../images/pages/new-homes-lamp.jpg);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 93.74em) {
  .c-bg--new-homes-lamp::before {
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
  }
}

@media (max-width: 81.24em) {
  .c-bg--new-homes-lamp::before {
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
  }
}

@media (max-width: 68.75em) {
  .c-bg--new-homes-lamp::before {
    display: none;
  }
}

.c-bg--new-homes-love::after {
  top: calc(100% + 8rem);
  left: 7.5%;
  width: 556px;
  height: 240px;
  background-image: url(../images/pages/new-homes-love.jpg);
}

@media (max-width: 56.24em) {
  .c-bg--new-homes-love::after {
    display: none;
  }
}

.c-bg--renovations-and-additions-flower-shelf::before {
  top: -2rem;
  left: 0;
  width: 853px;
  height: 321px;
  -webkit-transform: translateX(-8rem);
          transform: translateX(-8rem);
  background-image: url(../images/pages/renovations-and-additions-flower-shelf.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--renovations-and-additions-flower-shelf::before {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--renovations-and-additions-flower-shelf::before {
    -webkit-transform: translateX(-24rem);
            transform: translateX(-24rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--renovations-and-additions-flower-shelf::before {
    display: none;
  }
}

.c-bg--home-additions-hangers::before {
  top: -4rem;
  right: calc(-50% - 12rem);
  width: 502px;
  height: 369px;
  background-image: url(../images/pages/additions-hangers.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--home-additions-hangers::before {
    -webkit-transform: translateX(8rem) translateY(4rem);
            transform: translateX(8rem) translateY(4rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-additions-hangers::before {
    -webkit-transform: translateX(10rem) translateY(6rem);
            transform: translateX(10rem) translateY(6rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-additions-hangers::before {
    display: none;
  }
}

.c-bg--home-additions-plant::after {
  top: 60%;
  right: 4rem;
  width: 376px;
  height: 548px;
  background-image: url(../images/pages/additions-plant.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--home-additions-plant::after {
    -webkit-transform: translateX(4rem) scale(0.8);
            transform: translateX(4rem) scale(0.8);
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-additions-plant::after {
    -webkit-transform: translateX(12rem) scale(0.8);
            transform: translateX(12rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-additions-plant::after {
    -webkit-transform: translateX(8rem) translateY(-4rem) scale(0.6);
            transform: translateX(8rem) translateY(-4rem) scale(0.6);
  }
}

@media (max-width: 35.99em) {
  .c-bg--home-additions-plant::after {
    display: none;
  }
}

.c-bg--home-additions-blankets::after {
  top: 4rem;
  left: 8rem;
  width: 489px;
  height: 268px;
  background-image: url(../images/pages/additions-blankets.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--home-additions-blankets::after {
    -webkit-transform: translateX(-8rem);
            transform: translateX(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-additions-blankets::after {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-additions-blankets {
    margin: 8rem 0 !important;
  }
  .c-bg--home-additions-blankets::after {
    display: none;
  }
}

.c-bg--home-additions-desk::after {
  top: 50%;
  left: -7.5%;
  width: 957px;
  height: 758px;
  background-image: url(../images/pages/additions-desk.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--home-additions-desk::after {
    -webkit-transform: translateX(-16rem);
            transform: translateX(-16rem);
  }
}

@media (max-width: 68.75em) {
  .c-bg--home-additions-desk::after {
    display: none;
  }
}

.c-bg--kitchens-and-whole-home-spoons::before {
  top: 0;
  right: -52.5%;
  width: 309px;
  height: 267px;
  background-image: url(../images/pages/kitchens-and-whole-home-spoons.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--kitchens-and-whole-home-spoons::before {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--kitchens-and-whole-home-spoons::before {
    -webkit-transform: translateX(6rem);
            transform: translateX(6rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--kitchens-and-whole-home-spoons::before {
    display: none;
  }
}

.c-bg--kitchens-and-whole-home-back-splash::after {
  top: 70%;
  right: 7.5%;
  width: 412px;
  height: 490px;
  background-image: url(../images/pages/kitchens-and-whole-home-back-splash.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--kitchens-and-whole-home-back-splash::after {
    -webkit-transform: translateX(8rem) translateY(-8rem);
            transform: translateX(8rem) translateY(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--kitchens-and-whole-home-back-splash::after {
    -webkit-transform: translateX(16rem) translateY(-8rem) scale(0.8);
            transform: translateX(16rem) translateY(-8rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--kitchens-and-whole-home-back-splash::after {
    -webkit-transform: translateX(10rem) translateY(-8rem) scale(0.8);
            transform: translateX(10rem) translateY(-8rem) scale(0.8);
  }
}

@media (max-width: 35.99em) {
  .c-bg--kitchens-and-whole-home-back-splash::after {
    display: none;
  }
}

.c-bg--kitchens-and-whole-home-tea-towels::after {
  top: 50%;
  left: 7.5%;
  width: 438px;
  height: 301px;
  background-image: url(../images/pages/kitchens-and-whole-home-tea-towels.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--kitchens-and-whole-home-tea-towels::after {
    -webkit-transform: translateX(-8rem);
            transform: translateX(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--kitchens-and-whole-home-tea-towels::after {
    -webkit-transform: translateX(-16rem) translateY(-4rem);
            transform: translateX(-16rem) translateY(-4rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--kitchens-and-whole-home-tea-towels {
    margin: 8rem 0 !important;
  }
  .c-bg--kitchens-and-whole-home-tea-towels::after {
    display: none;
  }
}

.c-bg--kitchens-and-whole-home-pots::after {
  top: 80%;
  left: -5%;
  width: 566px;
  height: 441px;
  background-image: url(../images/pages/kitchens-and-whole-home-pots.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--kitchens-and-whole-home-pots::after {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 68.75em) {
  .c-bg--kitchens-and-whole-home-pots::after {
    display: none;
  }
}

.c-bg--basement-dog::before {
  top: -20%;
  right: -60%;
  width: 448px;
  height: 292px;
  background-image: url(../images/pages/basement-dog.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--basement-dog::before {
    -webkit-transform: translateX(6rem) translateY(4rem);
            transform: translateX(6rem) translateY(4rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--basement-dog::before {
    -webkit-transform: translateX(10rem) translateY(4rem);
            transform: translateX(10rem) translateY(4rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--basement-dog::before {
    display: none;
  }
}

.c-bg--basement-wine::after {
  top: 70%;
  right: 10%;
  width: 262px;
  height: 393px;
  background-image: url(../images/pages/basement-wine.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--basement-wine::after {
    -webkit-transform: translateX(4rem) translateY(-8rem);
            transform: translateX(4rem) translateY(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--basement-wine::after {
    -webkit-transform: translateX(10rem) translateY(-8rem);
            transform: translateX(10rem) translateY(-8rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--basement-wine::after {
    -webkit-transform: translateX(4rem) translateY(0rem) scale(0.8);
            transform: translateX(4rem) translateY(0rem) scale(0.8);
  }
}

@media (max-width: 35.99em) {
  .c-bg--basement-wine::after {
    display: none;
  }
}

.c-bg--basement-pool::after {
  top: 50%;
  left: 7.5%;
  width: 334px;
  height: 202px;
  background-image: url(../images/pages/basement-pool.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--basement-pool::after {
    -webkit-transform: translateX(-4rem);
            transform: translateX(-4rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--basement-pool::after {
    -webkit-transform: translateX(-4rem) translateY(2rem) scale(0.8);
            transform: translateX(-4rem) translateY(2rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--basement-pool {
    margin: 8rem 0 !important;
  }
  .c-bg--basement-pool::after {
    display: none;
  }
}

.c-bg--basement-chair::after {
  top: 90%;
  left: -5%;
  width: 431px;
  height: 498px;
  background-image: url(../images/pages/basement-chair.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--basement-chair::after {
    -webkit-transform: translateX(-4rem) scale(0.7);
            transform: translateX(-4rem) scale(0.7);
  }
}

@media (max-width: 68.75em) {
  .c-bg--basement-chair::after {
    display: none;
  }
}

.c-bg--secondary-suites-blanket::before {
  top: -20%;
  right: -65%;
  width: 498px;
  height: 256px;
  background-image: url(../images/pages/secondary-suites-blanket.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--secondary-suites-blanket::before {
    -webkit-transform: translateX(8rem) translateY(10rem);
            transform: translateX(8rem) translateY(10rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--secondary-suites-blanket::before {
    -webkit-transform: translateX(12rem) translateY(10rem);
            transform: translateX(12rem) translateY(10rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--secondary-suites-blanket::before {
    display: none;
  }
}

.c-bg--secondary-suites-chair::after {
  top: 70%;
  right: 7.5%;
  width: 320px;
  height: 605px;
  background-image: url(../images/pages/secondary-suites-chair.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--secondary-suites-chair::after {
    -webkit-transform: translateX(8rem) translateY(-8rem);
            transform: translateX(8rem) translateY(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--secondary-suites-chair::after {
    -webkit-transform: translateX(10rem) translateY(-14rem) scale(0.8);
            transform: translateX(10rem) translateY(-14rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--secondary-suites-chair::after {
    -webkit-transform: translateX(6rem) translateY(-12rem) scale(0.6);
            transform: translateX(6rem) translateY(-12rem) scale(0.6);
  }
}

@media (max-width: 35.99em) {
  .c-bg--secondary-suites-chair::after {
    display: none;
  }
}

.c-bg--secondary-suites-keys::after {
  top: 50%;
  left: 7.5%;
  width: 356px;
  height: 284px;
  background-image: url(../images/pages/secondary-suites-keys.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--secondary-suites-keys::after {
    -webkit-transform: translateX(-2rem) scale(0.8);
            transform: translateX(-2rem) scale(0.8);
  }
}

@media (max-width: 81.24em) {
  .c-bg--secondary-suites-keys::after {
    -webkit-transform: translateX(-4rem) scale(0.7);
            transform: translateX(-4rem) scale(0.7);
  }
}

@media (max-width: 68.75em) {
  .c-bg--secondary-suites-keys {
    margin: 8rem 0 !important;
  }
  .c-bg--secondary-suites-keys::after {
    display: none;
  }
}

.c-bg--secondary-suites-floor-samples::after {
  top: 80%;
  left: -2.5%;
  width: 548px;
  height: 441px;
  background-image: url(../images/pages/secondary-suites-floor-samples.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--secondary-suites-floor-samples::after {
    -webkit-transform: translateY(4rem);
            transform: translateY(4rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--secondary-suites-floor-samples::after {
    -webkit-transform: translateX(-4rem) scale(0.7);
            transform: translateX(-4rem) scale(0.7);
  }
}

@media (max-width: 68.75em) {
  .c-bg--secondary-suites-floor-samples {
    margin: 8rem 0 !important;
  }
  .c-bg--secondary-suites-floor-samples::after {
    display: none;
  }
}

.c-bg--why-melanson-carpet-sample::after {
  top: 70%;
  right: -387px;
  width: 417px;
  height: 341px;
  background-image: url(../images/pages/why-melanson-carpet-sample.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-carpet-sample::after {
    -webkit-transform: translateY(-4rem);
            transform: translateY(-4rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-carpet-sample::after {
    display: none;
  }
}

.c-bg--why-melanson-accent::after {
  width: 100%;
  height: 8rem;
  background: #e1e4e5;
}

.c-bg--why-melanson-rocking-horse::after {
  top: -4rem;
  right: -8rem;
  width: 445px;
  height: 361px;
  background-image: url(../images/pages/why-melanson-rocking-horse.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--why-melanson-rocking-horse::after {
    -webkit-transform: translateX(4rem);
            transform: translateX(4rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-rocking-horse::after {
    -webkit-transform: translateX(0rem) translateY(10rem) scale(0.6);
            transform: translateX(0rem) translateY(10rem) scale(0.6);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-rocking-horse::after {
    display: none;
  }
}

.c-bg--why-melanson-pop-corn::after {
  top: 80%;
  right: 0;
  width: 472px;
  height: 297px;
  background-image: url(../images/pages/why-melanson-pop-corn.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--why-melanson-pop-corn::after {
    -webkit-transform: translateX(2rem) translateY(2rem) scale(0.8);
            transform: translateX(2rem) translateY(2rem) scale(0.8);
  }
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-pop-corn::after {
    -webkit-transform: translateX(6rem) translateY(3rem) scale(0.6);
            transform: translateX(6rem) translateY(3rem) scale(0.6);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-pop-corn::after {
    display: none;
  }
}

.c-bg--why-melanson-plants::before {
  top: -4rem;
  left: -70%;
  width: 702px;
  height: 301px;
  background-image: url(../images/pages/why-melanson-plants.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--why-melanson-plants::before {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-plants::before {
    -webkit-transform: translateX(-12rem) translateY(4rem);
            transform: translateX(-12rem) translateY(4rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-plants {
    margin-top: 8rem;
  }
  .c-bg--why-melanson-plants::before {
    display: none;
  }
}

.c-bg--why-melanson-blue-prints::before {
  top: -16rem;
  right: -3rem;
  width: 426px;
  height: 290px;
  background-image: url(../images/pages/why-melanson-blue-prints.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-blue-prints::before {
    -webkit-transform: translate(2rem, 0) scale(0.8);
            transform: translate(2rem, 0) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-blue-prints::before {
    display: none;
  }
}

.c-bg--why-melanson-tape-measure::after {
  bottom: -14rem;
  left: 18rem;
  width: 320px;
  height: 355px;
  background-image: url(../images/pages/why-melanson-tape-measure.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--why-melanson-tape-measure::after {
    -webkit-transform: translateX(-8rem);
            transform: translateX(-8rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-tape-measure::after {
    -webkit-transform: translateX(-12rem);
            transform: translateX(-12rem);
  }
}

@media (max-width: 68.75em) {
  .c-bg--why-melanson-tape-measure::after {
    -webkit-transform: translateX(-16rem) scale(0.8);
            transform: translateX(-16rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-tape-measure::after {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.8) rotate(-48deg);
            transform: translateX(-50%) scale(0.8) rotate(-48deg);
  }
}

@media (max-width: 35.99em) {
  .c-bg--why-melanson-tape-measure::after {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.6) rotate(-48deg);
            transform: translateX(-50%) scale(0.6) rotate(-48deg);
  }
}

.c-bg--why-melanson-hot-chocolate::after {
  top: 90%;
  left: 16rem;
  width: 327px;
  height: 343px;
  background-image: url(../images/pages/why-melanson-hot-chocolate.jpg);
}

@media (max-width: 81.24em) {
  .c-bg--why-melanson-hot-chocolate::after {
    -webkit-transform: translateX(-8rem) translateY(4rem);
            transform: translateX(-8rem) translateY(4rem);
  }
}

@media (max-width: 68.75em) {
  .c-bg--why-melanson-hot-chocolate::after {
    -webkit-transform: translateX(-16rem) translateY(0) scale(0.6);
            transform: translateX(-16rem) translateY(0) scale(0.6);
  }
}

@media (max-width: 56.24em) {
  .c-bg--why-melanson-hot-chocolate {
    margin-bottom: 8rem !important;
  }
  .c-bg--why-melanson-hot-chocolate::after {
    display: none;
  }
}

.c-bg--awards-trophy::before {
  top: 0;
  right: -20.5%;
  width: 381px;
  height: 493px;
  background-image: url(../images/pages/awards-trophy.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--awards-trophy::before {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
}

@media (max-width: 81.24em) {
  .c-bg--awards-trophy::before {
    -webkit-transform: translateX(6rem);
            transform: translateX(6rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--awards-trophy::before {
    display: none;
  }
}

.c-bg--project-template-additions-plant::after {
  top: 100%;
  right: 0;
  width: 337px;
  height: 344px;
  background-image: url(../images/pages/project-template-additions-plant.jpg);
  -webkit-transform: translateX(-8rem);
          transform: translateX(-8rem);
}

@media (max-width: 56.24em) {
  .c-bg--project-template-additions-plant::after {
    display: none;
  }
}

.c-bg--project-template-kitchen-pot::after {
  top: 100%;
  right: 0;
  width: 364px;
  height: 259px;
  background-image: url(../images/pages/project-template-kitchen-pot.jpg);
  -webkit-transform: translateX(-12rem);
          transform: translateX(-12rem);
}

@media (max-width: 93.74em) {
  .c-bg--project-template-kitchen-pot::after {
    -webkit-transform: translateX(-12rem) translateY(3rem);
            transform: translateX(-12rem) translateY(3rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--project-template-kitchen-pot::after {
    display: none;
  }
}

.c-bg--project-template-basement-pillows::after {
  top: 100%;
  right: 0;
  width: 472px;
  height: 311px;
  background: url(../images/pages/project-template-basement-pillows.jpg);
  -webkit-transform: translateX(-4rem);
          transform: translateX(-4rem);
}

@media (max-width: 81.24em) {
  .c-bg--project-template-basement-pillows::after {
    -webkit-transform: translateX(-4rem) translateY(1rem);
            transform: translateX(-4rem) translateY(1rem);
  }
}

@media (max-width: 56.24em) {
  .c-bg--project-template-basement-pillows::after {
    display: none;
  }
}

.c-bg--project-template-secondary-chair::after {
  top: 70%;
  right: 7.5%;
  width: 418px;
  height: 514px;
  background-image: url(../images/pages/project-template-secondary-chair.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--project-template-secondary-chair::after {
    -webkit-transform: translateX(6rem) scale(0.6);
            transform: translateX(6rem) scale(0.6);
  }
}

@media (max-width: 81.24em) {
  .c-bg--project-template-secondary-chair::after {
    -webkit-transform: translateX(6rem) scale(0.6);
            transform: translateX(6rem) scale(0.6);
  }
}

@media (max-width: 68.75em) {
  .c-bg--project-template-secondary-chair::after {
    display: none;
  }
}

.c-bg--contact-dishes::after {
  width: 202px;
  height: 321px;
  background-image: url(../images/pages/contact-dishes.jpg);
}

.c-bg--gallery-cat::after {
  left: -12rem;
  bottom: -22rem;
  width: 647px;
  height: 240px;
  background-image: url(../images/pages/gallery-cat.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--gallery-cat::after {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@media (max-width: 68.75em) {
  .c-bg--gallery-cat::after {
    left: 50%;
    -webkit-transform: scale(0.6) translate(calc(-50% - 280px), -16rem);
            transform: scale(0.6) translate(calc(-50% - 280px), -16rem);
  }
}

@media (max-width: 35.99em) {
  .c-bg--gallery-cat::after {
    -webkit-transform: scale(0.4) translate(calc(-50% - 540px), -16rem);
            transform: scale(0.4) translate(calc(-50% - 540px), -16rem);
  }
}

.c-bg--accent {
  display: block;
  background: #e1e4e5;
}

.c-bg--phone {
  height: 912px;
  background: transparent url(../images/pages/contact-iphone.png) top center no-repeat;
  /* background: transparent url(../images/pages/footer-iphone.png) top center no-repeat; */
}

@media (max-width: 35.99em) {
  .c-bg--phone {
    height: 546px;
    background-position: 50% 40%;
    background-size: 573px 657px;
  }
}

.c-bg--tea-cup {
  padding-bottom: calc(212px + 4rem) !important;
  background: transparent url(../images/pages/footer-tea.jpg) bottom center no-repeat;
  background-size: contain;
}

@media (max-width: 93.74em) {
  .c-bg--tea-cup {
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
}

@media (max-width: 68.75em) {
  .c-bg--tea-cup {
    padding-bottom: 2rem !important;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background: none;
  }
}

/**
 * Patterns.
 *
 * This is collections of components.
 */
.p-header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  pointer-events: none;
}

.p-header--scrolled {
  opacity: 5;
}

.p-header--scrolled.o-header-row {
  grid-template-rows: calc(1rem + 58px + 1rem) auto;
}

@media (max-width: 56.24em) {
  .p-header--scrolled .c-logo,
  .p-header--scrolled .c-menu {
    height: calc(1rem + 58px + 1rem);
  }
}

.p-header--scrolled .c-logo__title,
.p-header--scrolled .c-menu__title {
  padding: 1rem 2.5rem;
}

.p-introduction {
  color: #888888;
}

.p-gallery {
  width: 100%;
  overflow: hidden;
  cursor: e-resize;
}

.p-gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.p-gallery__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5vw;
  cursor: pointer;
}

.p-gallery__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media (max-width: 56.24em) {
  .p-gallery {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .p-gallery__image {
    width: 60vw;
    height: 40vw;
    scroll-snap-align: start;
  }
}

.p-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 80%;
  margin: 8rem auto 0;
  text-align: center;
}

.p-services__service {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: calc(70vh + 12rem);
  margin: 0 8px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-flex-basis 0.5s ease-out;
  transition: -webkit-flex-basis 0.5s ease-out;
  transition: flex-basis 0.5s ease-out;
  transition: flex-basis 0.5s ease-out, -webkit-flex-basis 0.5s ease-out, -ms-flex-preferred-size 0.5s ease-out;
  cursor: pointer;
}

.p-services__service:after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  height: 70vh;
  width: 100%;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), -4px 0 8px rgba(0, 0, 0, 0.15), 4px 0 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), -4px 0 8px rgba(0, 0, 0, 0.15), 4px 0 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-services__service:hover:after {
  opacity: 1;
}

.p-services__content {
  position: relative;
  height: 70vh;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  cursor: normal;
}

.p-services__content .c-content {
  position: absolute;
  top: 4rem;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
  -webkit-transition: opacity 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0.25s;
  transition: opacity 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0.25s;
  transition: transform 0.35s ease-out 0.25s, opacity 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0.25s, opacity 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0.25s;
}

.p-services h3 {
  width: 14rem;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.p-services a {
  display: inline-block;
  margin-top: 1.5rem;
}

@media (max-width: 68.75em) {
  .p-services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
  }
  .p-services__service {
    max-height: calc(8rem + 40vh);
    margin-bottom: 4rem;
  }
  .p-services__service::after {
    display: none;
  }
  .p-services__title {
    position: relative;
    height: 8rem;
  }
  .p-services__title h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .p-services__content .c-content {
    top: 2rem;
    padding: 2rem;
  }
  .p-services__content .u-pulse {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
  }
  .p-services.is-active .u-pulse {
    opacity: 0;
  }
  .p-services h3 {
    width: 90%;
  }
  .p-services a {
    margin-top: 1rem;
  }
}

@media (max-width: 56.24em) {
  .p-services__content .c-content {
    font-size: 1rem;
  }
}

.p-services__service:hover,
.p-services__service.is-active {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  cursor: normal;
  -webkit-transition: -webkit-flex-basis 0.5s ease-out 0s;
  transition: -webkit-flex-basis 0.5s ease-out 0s;
  transition: flex-basis 0.5s ease-out 0s;
  transition: flex-basis 0.5s ease-out 0s, -webkit-flex-basis 0.5s ease-out 0s, -ms-flex-preferred-size 0.5s ease-out 0s;
}

.p-services__service:hover .p-services__content,
.p-services__service.is-active .p-services__content {
  cursor: normal;
}

.p-services__service:hover .c-content,
.p-services__service.is-active .c-content {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateX(-3rem);
          transform: translateX(-3rem);
  -webkit-transition: opacity 0.25s ease-out 0.35s, -webkit-transform 0.35s ease-out 0.25s;
  transition: opacity 0.25s ease-out 0.35s, -webkit-transform 0.35s ease-out 0.25s;
  transition: transform 0.35s ease-out 0.25s, opacity 0.25s ease-out 0.35s;
  transition: transform 0.35s ease-out 0.25s, opacity 0.25s ease-out 0.35s, -webkit-transform 0.35s ease-out 0.25s;
}

@media (max-width: 56.24em) {
  .p-services__service:hover,
  .p-services__service.is-active {
    max-height: 80vh;
    -webkit-transition: max-height 0.5s ease-out 0s;
    transition: max-height 0.5s ease-out 0s;
  }
  .p-services__service:hover .c-content,
  .p-services__service.is-active .c-content {
    -webkit-transform: translateX(-1.5rem);
            transform: translateX(-1.5rem);
  }
}

.p-services__service:first-child .p-services__content {
  background-position: bottom left;
}

.p-services__service:last-child .p-services__content {
  background-position: bottom right;
}

.p-team .c-media-object {
  max-width: 40%;
}

.p-team .c-media-object img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 56.24em) {
  .p-team .c-media-object {
    margin: 0 0 8rem;
    max-width: 100%;
  }
  .p-team .c-media-object:last-child {
    margin-bottom: 0;
  }
}

.p-slider .c-media-object__wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-slider .c-media-object__wrapper img.is-active {
  opacity: 1;
}

.p-slider .e-link--light.is-active {
  color: #333333;
}

@media (max-width: 56.24em) {
  .p-slider.c-media-object__media {
    margin-left: 2rem;
  }
}

.p-navigation {
  padding: 2rem 0;
}

.p-navigation--grey-background {
  background: #e1e4e5;
}

.p-navigation .c-menu {
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: auto;
}

.p-navigation .c-menu__hamburger {
  padding: 0;
}

.p-navigation .c-menu__icon img {
  width: 2rem;
  height: 2rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.p-navigation .c-menu__icon.is-clicked img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.p-navigation .p-navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 1rem;
}

.p-navigation .p-navigation--mobile .c-list.c-list--row {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 60px);
  max-height: 0;
  padding: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  opacity: 0;
  -webkit-transition: max-height 0.25s ease-out 0.1s;
  transition: max-height 0.25s ease-out 0.1s;
}

.p-navigation .p-navigation--mobile .c-list.c-list--row li {
  margin-bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.25s ease-out 0.2s, -webkit-transform 0.3s ease-out 0.1s;
  transition: opacity 0.25s ease-out 0.2s, -webkit-transform 0.3s ease-out 0.1s;
  transition: opacity 0.25s ease-out 0.2s, transform 0.3s ease-out 0.1s;
  transition: opacity 0.25s ease-out 0.2s, transform 0.3s ease-out 0.1s, -webkit-transform 0.3s ease-out 0.1s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(13) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(14) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.p-navigation .p-navigation--mobile .c-list li:nth-child(15) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.p-navigation .p-navigation--mobile .c-list.is-open {
  max-height: 1000px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: max-height 0.6s ease-out 0.1s;
  transition: max-height 0.6s ease-out 0.1s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.35s ease-out 0.2s, -webkit-transform 0.5s ease-out 0.1s;
  transition: opacity 0.35s ease-out 0.2s, -webkit-transform 0.5s ease-out 0.1s;
  transition: opacity 0.35s ease-out 0.2s, transform 0.5s ease-out 0.1s;
  transition: opacity 0.35s ease-out 0.2s, transform 0.5s ease-out 0.1s, -webkit-transform 0.5s ease-out 0.1s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(7) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(8) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(9) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(10) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(11) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(12) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(13) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(14) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.p-navigation .p-navigation--mobile .c-list.is-open li:nth-child(15) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

@media (max-width: 56.24em) {
  .p-navigation .p-navigation--mobile .c-list li {
    margin-bottom: 0.5rem;
  }
  .p-navigation .p-navigation--mobile .c-list li:last-child {
    margin-bottom: 0;
  }
}

.p-article-list .c-media-object__media,
.p-article-list .c-media-object__media img {
  width: 20vw;
}

.p-article-list .c-media-object__accent {
  width: 30vw;
  right: -5vw;
}

.p-article-list .c-media-object__content {
  width: 30vw;
}

@media (max-width: 56.24em) {
  .p-article-list .c-media-object__media,
  .p-article-list .c-media-object__media img,
  .p-article-list .c-media-object__content {
    width: calc(100vw - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
  .p-article-list .c-media-object__accent {
    width: 120vw;
    right: -20vw;
  }
  .p-article-list .c-media-object__content {
    text-align: center;
  }
  .p-article-list .c-title::after, .p-article-list .p-article--single h2::after, .p-article--single .p-article-list h2::after, .p-article-list .p-article--single h3::after, .p-article--single .p-article-list h3::after, .p-article-list .p-article--single h4::after, .p-article--single .p-article-list h4::after {
    margin: 1rem auto;
  }
  .p-article-list footer {
    padding: 0;
  }
}

.p-article__header, .p-article__content, .p-article__footer {
  color: #666666;
}

.p-article__content {
  margin-bottom: 1.5rem;
  line-height: 2.25;
  font-weight: 300;
}

.p-article__content p {
  line-height: 2.5;
  margin-bottom: 1.5rem;
}

.p-article__content p:last-child {
  margin-bottom: 0;
}

.p-article--small {
  max-width: 60%;
  margin: 4rem 0 0;
  text-align: center;
}

.p-article--small:first-child {
  margin: 8rem 0 0;
}

.p-article--small .p-article__header {
  margin-bottom: 1rem;
}

.p-article--small .p-article__content:after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  margin: 4rem auto 0;
  background: #888888;
}

.p-article--small__content span {
  color: #888888;
  padding: 0 1rem;
}

.p-article--top {
  margin: 2rem 3rem 0;
  text-align: center;
}

.p-article--top:first-of-type {
  margin-top: 0;
}

.p-article--top:last-of-type .p-article__content::after {
  display: none;
}

.p-article--top .p-article__header {
  margin-bottom: 0rem;
}

.p-article--top .p-article__content:after {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  margin: 3rem auto 0;
  background: #888888;
}

.p-article--top__content span {
  color: #888888;
  padding: 0 1rem;
}

.p-article--top__content span.eta {
  padding: 0;
}

@media (max-width: 93.74em) {
  .p-article--top {
    margin: 1rem 3rem 0;
  }
  .p-article--top .p-article__content::after {
    margin: 1rem auto 0;
  }
  .p-article--top__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
  }
  .p-article--top__content span {
    display: none;
  }
  .p-article--top__content span.eta {
    display: block;
  }
}

.p-article--single > .p-meta,
.p-article--single > .c-content > * {
  margin-left: calc(1 / 6 * 100%);
}

.p-article--single > .c-content > .instagram-media {
  margin-left: calc(1 / 6 * 100%) !important;
}

.p-article--single h2 {
  font-size: 1.953rem;
}

.p-article--single h3 {
  font-size: 1.563rem;
}

.p-article--single h4 {
  display: inline-block;
  font-size: 1.125rem;
}

.p-article--single h4 + p {
  display: inline;
}

.p-article--single p + h2,
.p-article--single p + h3,
.p-article--single p + h4 {
  margin-top: 3rem;
}

.p-article--single p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 2.5;
}

.p-article--single p:last-child {
  margin-bottom: 0;
}

.p-article--single figure,
.p-article--single .c-content > img {
  margin-left: 0;
  width: 100%;
}

.p-article--single img {
  margin: 0;
}

.p-article--single blockquote {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #333333;
}

.p-article--single blockquote p {
  display: inline-block;
}

.p-article--single blockquote p::before {
  display: inline;
  content: "\201C";
}

.p-article--single blockquote p::after {
  display: inline;
  content: "\201D";
}

.p-article--single cite {
  display: inline-block;
  float: right;
  margin: 0 0 2rem;
  font-size: 1.953rem;
}

.p-article--single hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  overflow: visible;
  border: none;
  border-bottom: 2px solid #e1e4e5;
}

.p-article--single ol {
  padding-left: 3rem;
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  counter-reset: list;
}

.p-article--single ol li:before {
  content: counter(list);
  display: inline-block;
  color: #191d26;
  text-indent: -0.7em;
}

.p-article--single ol h2,
.p-article--single ol h3 {
  margin-top: -3rem;
  margin-bottom: 0;
  text-align: left;
}

.p-article--single ol h2::after {
  margin-left: 0;
}

.p-article--single ul {
  list-style: none;
  padding: 0;
}

.p-article--single ul li {
  padding-left: 1.5rem;
}

.p-article--single ul li::before {
  display: inline-block;
  content: "\2022";
  width: 1.5rem;
  margin-left: -1.5rem;
  color: #ea1c24;
  font-size: 1.25rem;
}

.p-article--single ul ul li::before {
  color: #666666;
}

.p-article--single ul ul li:first-child {
  margin-top: 1rem;
}

@media (max-width: 93.74em) {
  .p-article--single .img-desktop {
    width: 140%;
    max-width: none;
    margin-left: -20%;
  }
}

@media (max-width: 56.24em) {
  .p-article--single .img-desktop {
    display: none;
  }
}

.p-article--single .img-mobile {
  display: none;
}

@media (max-width: 56.24em) {
  .p-article--single .img-mobile {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 93.74em) {
  .p-article--single .img-desktop {
    width: 140%;
    max-width: none;
    margin-left: -20%;
  }
}

@media (max-width: 56.24em) {
  .p-article--single .img-desktop {
    display: none;
  }
}

.p-article--single .img-mobile {
  display: none;
}

@media (max-width: 56.24em) {
  .p-article--single .img-mobile {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-article--single .c-content strong a,
.p-article--single button,
.p-article--single .button {
  display: block;
  color: #ea1c24;
  font-size: 1.563rem;
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  border: none;
  background: transparent;
}

.p-article--single .c-content strong a:hover, .p-article--single .c-content strong a:active,
.p-article--single button:hover,
.p-article--single button:active,
.p-article--single .button:hover,
.p-article--single .button:active {
  color: #333333;
}

.p-article--single .c-cta {
  margin-bottom: 3rem;
}

.p-article--single .c-cta .c-title, .p-article--single .c-cta h2, .p-article--single .c-cta h3, .p-article--single .c-cta h4 {
  margin-bottom: 2rem;
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-size: 3.815rem;
  letter-spacing: 0;
  color: #191d26;
  text-transform: none;
  line-height: 1.2;
}

.p-article--single .c-cta + .c-content--spacer {
  margin-top: 6rem;
}

@media (max-width: 81.24em) {
  .p-article--single footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .p-article--single .p-share,
  .p-article--single .p-pagination {
    width: 100%;
  }
}

@media (max-width: 56.24em) {
  .p-article--single .p-meta,
  .p-article--single .c-content > * {
    margin-left: 0;
    padding: 0 3rem;
  }
  .p-article--single .c-content > .instagram-media {
    width: calc(100% - 6rem) !important;
    margin: 0 3rem !important;
  }
  .p-article--single .c-title, .p-article--single h2, .p-article--single h3, .p-article--single h4 {
    text-align: center;
  }
  .p-article--single .c-title::after, .p-article--single h2::after, .p-article--single h3::after, .p-article--single h4::after {
    margin: 1rem auto;
    text-align: center;
  }
  .p-article--single .p-meta li {
    margin-right: 0;
  }
  .p-article--single .c-content ol {
    padding-left: 6rem;
  }
  .p-article--single ol li::before {
    font-size: 4rem;
    text-indent: -0.6em;
  }
}

@media (max-width: 35.99em) {
  .p-article--single .p-meta,
  .p-article--single .c-content > * {
    padding: 0 2rem;
  }
  .p-article--single .c-content > .instagram-media {
    width: calc(100% - 4rem) !important;
    margin: 0 2rem !important;
  }
  .p-article--single .c-content ol {
    padding-left: 2rem;
  }
  .p-article--single ol li::before {
    margin-bottom: 3rem;
    text-indent: 0;
  }
  .p-article--single .c-cta .c-title, .p-article--single .c-cta h2, .p-article--single .c-cta h3, .p-article--single .c-cta h4 {
    font-size: 2.441rem;
  }
}

.p-article--single .c-media-object__media {
  margin-left: 0;
  width: 100%;
  margin-bottom: 8rem;
}

.p-article--single .c-media-object__media .c-media-object__accent {
  width: 60vw;
}

@media (max-width: 56.24em) {
  .p-article--single .c-media-object__media .c-media-object__accent {
    width: 120vw;
    -webkit-transform: translateX(-4rem) translateY(6rem);
            transform: translateX(-4rem) translateY(6rem);
  }
}

.p-article--single .c-media-object__media img {
  margin: 0;
  background: #FFFFFF;
  opacity: 0;
}

.p-article--single .c-media-object__media img:first-child {
  opacity: 1;
}

.p-article--single .c-media-object__media img.small {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-article--single .c-media-object__media + .c-content--spacer {
  margin-top: 8rem;
}

.p-meta {
  margin: 3.5rem 0 3rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #BBBBBB;
}

.p-meta li {
  margin-right: 5em;
}

.p-meta li:last-child {
  margin-right: 0;
}

@media (max-width: 56.24em) {
  .p-meta .p-meta li {
    margin-right: 0;
  }
}

.p-share {
  width: 60%;
  background: #e1e4e5;
}

.p-share .c-list {
  width: 50%;
}

.p-share ul li::before {
  display: none;
}

@media (max-width: 56.24em) {
  .p-share {
    width: 100vw;
    margin: 4rem -2rem;
    padding: 3rem;
  }
  .p-share .c-list {
    width: 80vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.p-pagination {
  width: 30%;
}

.p-pagination ul li {
  padding: 0;
}

.p-pagination ul li::before {
  display: none;
}

.p-pagination ul li::after {
  display: inline-block;
  content: "/";
  padding: 0 1rem;
  color: #ea1c24;
}

.p-pagination ul li:last-child::after {
  display: none;
}

@media (max-width: 56.24em) {
  .p-pagination {
    width: 100%;
  }
  .p-pagination .c-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-sidebar {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 8rem 0 16rem;
  padding: 2rem 0;
  opacity: 1;
  background: #e1e4e5;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

@media (max-width: 56.24em) {
  .p-sidebar {
    margin: 4rem 0 4rem;
  }
}

.p-sidebar__wrapper.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(4 / 11 * 100vw);
  margin: 0;
}

/**
 * Scopes.
 *
 * Scoping in the page level but only used when it's absolutely necessary.
 */
.s-home .c-landing__content {
  margin-bottom: 4rem;
}

@media (max-width: 93.74em) {
  .s-home .c-landing__content {
    margin-bottom: 0;
  }
}

.s-home .c-landing-cta {
  grid-column: 1 /span 9;
  grid-row: 4 / span 1;
  padding-right: 8rem;
  background: #e1e4e5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 93.74em) {
  .s-home .c-landing-cta {
    grid-column: 1 / span 9;
    padding-right: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 56.24em) {
  .s-home .c-landing-cta {
    grid-column: 1 / span 4;
    grid-row: 5 / span 1;
  }
}

.s-home .c-landing-cta__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

@media (max-width: 56.24em) {
  .s-home .c-landing-cta__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.s-home .c-landing-cta__item {
  padding: 4rem;
}

@media (max-width: 81.24em) {
  .s-home .c-landing-cta__item {
    padding: 3rem 2rem;
  }
}

@media (max-width: 56.24em) {
  .s-home .c-landing-cta__item {
    width: 100%;
    margin: 0;
    font-size: 1rem;
    padding: 0 2rem 2rem;
  }
  .s-home .c-landing-cta__item:first-child {
    padding-top: 2rem;
  }
}

.s-home .c-view-more {
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.s-home .c-view-more:hover, .s-home .c-view-more:active, .s-home .c-view-more:focus {
  -webkit-transform: translate3d(0, 0, 0) translateX(8px);
          transform: translate3d(0, 0, 0) translateX(8px);
}

.s-home .c-view-more:hover .c-view-more__line, .s-home .c-view-more:active .c-view-more__line, .s-home .c-view-more:focus .c-view-more__line {
  -webkit-transform: translate3d(0, 0, 0) translateX(16px);
          transform: translate3d(0, 0, 0) translateX(16px);
}

.s-home .c-view-more__line {
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease 0.1s;
  transition: -webkit-transform 0.4s ease 0.1s;
  transition: transform 0.4s ease 0.1s;
  transition: transform 0.4s ease 0.1s, -webkit-transform 0.4s ease 0.1s;
}

@media (max-width: 56.24em) {
  .s-home .c-view-more__line {
    display: inline-block;
  }
}

.s-home .c-view-more__line:before, .s-home .c-view-more__line:after {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2px;
  margin: 0 8px 4px 0;
  background: #bdd3ce;
}

.s-home .c-view-more__line:after {
  display: none;
}

.s-home .p-values li:nth-child(3n - 1) {
  margin: 0 2rem;
}

.s-home .c-cta {
  width: 70%;
  padding: 2rem;
  margin-left: 30%;
  margin-bottom: 16rem;
}

.s-home .c-cta .c-title, .s-home .c-cta .p-article--single h2, .p-article--single .s-home .c-cta h2, .s-home .c-cta .p-article--single h3, .p-article--single .s-home .c-cta h3, .s-home .c-cta .p-article--single h4, .p-article--single .s-home .c-cta h4 {
  padding-left: 6rem;
}

.s-home .c-cta .e-link, .s-home .c-cta .p-article--single p a, .p-article--single p .s-home .c-cta a, .s-home .c-cta .p-article--single .c-content strong a, .p-article--single .c-content strong .s-home .c-cta a,
.s-home .c-cta .p-article--single button, .p-article--single .s-home .c-cta button,
.s-home .c-cta .p-article--single .button, .p-article--single .s-home .c-cta .button {
  padding-left: 14rem;
}

@media (max-width: 68.75em) {
  .s-home {
    /*& .c-view-more__line::before {
      display: none;
    }*/
  }
  .s-home .p-slider {
    margin-left: 0;
  }
  .s-home .c-media-object__content .c-title.c-title--line-left, .s-home .c-media-object__content .p-article--single h2, .p-article--single .s-home .c-media-object__content h2, .s-home .c-media-object__content .p-article--single h3.c-title--line-left, .p-article--single .s-home .c-media-object__content h3.c-title--line-left, .s-home .c-media-object__content .p-article--single h4.c-title--line-left, .p-article--single .s-home .c-media-object__content h4.c-title--line-left {
    text-align: center;
    margin-bottom: 2rem;
  }
  .s-home .c-media-object__content .c-title.c-title--line-left::after, .s-home .c-media-object__content .p-article--single h2::after, .p-article--single .s-home .c-media-object__content h2::after, .s-home .c-media-object__content .p-article--single h3.c-title--line-left::after, .p-article--single .s-home .c-media-object__content h3.c-title--line-left::after, .s-home .c-media-object__content .p-article--single h4.c-title--line-left::after, .p-article--single .s-home .c-media-object__content h4.c-title--line-left::after {
    margin: 0 auto;
  }
  .s-home .c-view-more__line::before,
  .s-home .c-view-more__line::after {
    width: 1.25rem;
    height: 2px;
    margin: 0 0.25rem 4px;
  }
  .s-home .c-view-more__line::after {
    display: inline-block;
  }
  .s-home .c-landing-cta__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  .s-home .p-values li,
  .s-home .p-values li:nth-child(3n-1) {
    margin: 0 0 2rem;
  }
  .s-home .c-cta {
    width: 100%;
    margin-left: 0;
    padding: 2rem;
    text-align: center;
  }
  .s-home .c-cta .c-title, .s-home .c-cta .p-article--single h2, .p-article--single .s-home .c-cta h2, .s-home .c-cta .p-article--single h3, .p-article--single .s-home .c-cta h3, .s-home .c-cta .p-article--single h4, .p-article--single .s-home .c-cta h4, .s-home .c-cta .e-link, .s-home .c-cta .p-article--single p a, .p-article--single p .s-home .c-cta a, .s-home .c-cta .p-article--single .c-content strong a, .p-article--single .c-content strong .s-home .c-cta a,
  .s-home .c-cta .p-article--single button, .p-article--single .s-home .c-cta button,
  .s-home .c-cta .p-article--single .button, .p-article--single .s-home .c-cta .button {
    padding: 0;
  }
}

@media (min-width: 56.25em) and (max-width: 81.24em) {
  .s-home .p-values li {
    padding: 1rem;
  }
}

@media (max-width: 35.99em) {
  .s-home .c-text-block {
    padding: 0;
  }
  .s-home .c-cta.c-bg--home-dog {
    padding: 1rem 2rem;
  }
  .s-home .p-slider .c-media-object__accent {
    right: -20vw;
  }
  .s-home .p-values li {
    padding: 0 2rem;
  }
}

.s-new-homes .p-floorplan-view h2 {
  margin-bottom: 8rem;
}

.s-new-homes .p-card-view {
  overflow-y: hidden;
  max-height: 22rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.s-new-homes .p-card-view .c-card:nth-child(n+4) {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out, opacity 0.7s ease-out;
  transition: transform 0.6s ease-out, opacity 0.7s ease-out, -webkit-transform 0.6s ease-out;
}

.s-new-homes .p-card-view .c-card__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.s-new-homes .p-card-view img {
  min-width: 92px;
  min-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.s-new-homes .p-card-view.is-open {
  max-height: 100rem;
  -webkit-transition: 2s ease;
  transition: 2s ease;
}

.s-new-homes .p-card-view.is-open .c-card:nth-child(n+4) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

@media (max-width: 81.24em) {
  .s-new-homes .c-pullquote.c-pullquote--narrow {
    max-width: calc(100vw - (1 / 11 * 100%));
    margin-bottom: 4rem;
  }
  .s-new-homes .p-floorplan-view {
    max-width: 90%;
  }
  .s-new-homes .p-card-view .c-card__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 56.24em) {
  .s-new-homes .c-pullquote.c-pullquote--narrow {
    max-width: 100vw;
  }
  .s-new-homes .p-card-view {
    display: block;
    width: 100%;
    max-height: calc((16rem + 4rem) * 3);
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  .s-new-homes .p-card-view.is-open {
    max-height: 1000em;
  }
  .s-new-homes .p-card-view .c-card--third,
  .s-new-homes .p-card-view .c-card--third:nth-child(3n-1) {
    margin: 0 0 4rem;
  }
  .s-new-homes .p-card-view .c-card {
    width: calc(100vw-4rem);
    height: 16rem;
  }
  .s-new-homes .p-card-view .c-card__media {
    height: 70%;
  }
  .s-new-homes .p-card-view .c-card__media img {
    max-width: 100%;
    max-height: 8rem;
    margin: 0 auto;
  }
  .s-new-homes .p-card-view .c-card__content {
    top: auto;
    bottom: 2rem;
  }
  .s-new-homes .p-card-view .c-card__content .c-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 35.99em) {
  .s-new-homes .p-floorplan-view h2 {
    margin-bottom: 4rem;
  }
  .s-new-homes .c-pullquote__cite, .s-new-homes .p-article--single cite, .p-article--single .s-new-homes cite {
    margin-top: 2rem;
  }
}

.s-floorplan .c-landing__background {
  background-size: 1006px 447px;
  background-color: #f3f4f6;
  background-position: 50% 40%;
}

.s-floorplan .c-landing__background--fullwidth {
  background-size: cover;
  background-position: center center;
}

.s-floorplan .c-landing__content:not(.c-landing__content--white) .c-landing__title {
  color: #191d26;
  text-shadow: none;
}

.s-floorplan .c-landing__content:not(.c-landing__content--white) .c-landing__text {
  color: #ea1c24;
  text-shadow: none;
}

.s-floorplan .c-media-object__media img {
  padding: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f3f4f6;
}

.s-floorplan .s-floorplan-grid {
  grid-template-rows: 200px auto 200px auto 200px;
}

.s-floorplan .p-introduction {
  grid-column: 2 / span 4;
  grid-row: 1 / span 2;
}

.s-floorplan .p-slider {
  grid-column: 1 / span 6;
  grid-row: 4 / span 2;
  -ms-flex-item-align: end;
      align-self: end;
}

.s-floorplan .p-features {
  grid-column: 7 / span 4;
  grid-row: 2 / span 3;
  -ms-flex-item-align: start;
      align-self: start;
}

.s-floorplan .c-cta {
  margin-top: 4rem;
  -webkit-transform: translateX(-6rem);
          transform: translateX(-6rem);
}

@media (max-width: 93.74em) {
  .s-floorplan .c-landing__background {
    background-size: 60%;
    min-height: 70vh;
    background-position: center 15vh !important;
  }
  .s-floorplan .c-landing__background--fullwidth {
    background-size: cover;
    background-position: center center !important;
  }
  .s-floorplan .p-features {
    grid-column: 7 / span 5;
  }
}

@media (max-width: 81.24em) {
  .s-floorplan .s-floorplan-grid {
    grid-template-rows: 100px auto 200px auto 200px;
  }
  .s-floorplan .c-landing__background {
    background-size: 60%;
  }
  .s-floorplan .c-landing__background--fullwidth {
    background-size: cover;
    background-position: center center !important;
  }
  .s-floorplan .c-landing__text {
    margin: 0;
  }
  .s-floorplan .p-slider {
    grid-row: 4 / span 3;
  }
}

@media (max-width: 56.24em) {
  .s-floorplan .c-landing__background {
    background-size: 80%;
    min-height: 70vh;
    background-position: center 15vh !important;
  }
  .s-floorplan .c-landing__background--fullwidth {
    background-size: cover;
    background-position: center center !important;
  }
  .s-floorplan .s-floorplan-grid {
    grid-template-rows: auto;
  }
  .s-floorplan .s-floorplan-grid .p-introduction {
    grid-column: 1 / span 4;
    grid-row: 1 / span 1;
  }
  .s-floorplan .p-features {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
    margin-bottom: 4rem;
  }
  .s-floorplan .p-features .c-cta {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .s-floorplan .p-features .c-media-object__content {
    margin: 4rem 0 0;
  }
  .s-floorplan .p-slider {
    grid-column: 1 / span 4;
    grid-row: 3 / span 1;
    margin: 0 auto 8rem;
  }
  .s-floorplan .p-slider .c-media-object__controls {
    font-size: 1rem;
  }
}

.s-project .p-introduction {
  grid-column: 2 / span 4;
  grid-row: 1 / span 1;
  margin-bottom: 8rem;
}

.s-project .p-project {
  grid-column: 2 / span 10;
  grid-row: 3 / span 1;
  grid-column: 1 / span 11;
  grid-row: 2 / span 1;
}

.s-project .p-gallery {
  grid-column: 2 / span 10;
  grid-row: 3 / span 1;
}

.s-project .p-pagination {
  grid-column: 2 / span 10;
  grid-row: 4 / span 1;
  width: 100%;
  margin-top: 8rem;
}

@media (max-width: 56.24em) {
  .s-project .p-introduction {
    margin-bottom: 4rem;
  }
  .s-project .p-project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .s-project .p-project .p-slider {
    margin: 0 auto;
  }
  .s-project .p-gallery {
    grid-column: 2 / span 2;
    grid-row: 4 / span 1;
    margin-bottom: 4rem;
  }
  .s-project .p-gallery .c-title, .s-project .p-gallery .p-article--single h2, .p-article--single .s-project .p-gallery h2, .s-project .p-gallery .p-article--single h3, .p-article--single .s-project .p-gallery h3, .s-project .p-gallery .p-article--single h4, .p-article--single .s-project .p-gallery h4 {
    padding: 0 2rem;
  }
  .s-project .s-project-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .s-project .p-pagination {
    grid-column: 2 / span 2;
    grid-row: 4 / span 1;
    margin-top: 3rem;
  }
  .s-project .p-pagination ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-project .p-pagination li:not(:last-child)::after {
    display: block;
    text-align: center;
    color: #888888;
  }
}

@media (max-width: 35.99em) {
  .s-project .p-project {
    padding: 0 2rem;
  }
}

.s-renovations-additions .p-quote {
  padding: 0 18.18vw 0 46.81vw;
}

.s-renovations-additions .c-pullquote__cite, .s-renovations-additions .p-article--single cite, .p-article--single .s-renovations-additions cite {
  margin-top: 2rem;
}

@media (max-width: 81.24em) {
  .s-renovations-additions .p-quote {
    padding-right: 2rem;
  }
}

@media (max-width: 56.24em) {
  .s-renovations-additions .c-text-block {
    padding: 0 2rem;
  }
  .s-renovations-additions .p-quote {
    padding: 0;
    margin: 0 auto;
  }
  .s-renovations-additions .p-quote .c-pullquote {
    max-width: 100%;
  }
  .s-renovations-additions .u-ts-4xl {
    font-size: 2.25rem;
  }
}

@media (max-width: 35.99em) {
  .s-renovations-additions .c-pullquote__cite, .s-renovations-additions .p-article--single cite, .p-article--single .s-renovations-additions cite {
    margin-top: 0;
  }
}

.s-home-additions .c-landing + .c-text-block,
.s-renovations .c-landing + .c-text-block {
  margin-left: 20vw;
}

.s-home-additions .p-pullquote,
.s-renovations .p-pullquote {
  margin-top: -8rem;
  margin-bottom: 0;
}

.s-home-additions .p-project + .c-cta,
.s-renovations .p-project + .c-cta {
  margin-top: 16rem;
}

@media (max-width: 93.74em) {
  .s-home-additions .c-landing + .c-text-block,
  .s-renovations .c-landing + .c-text-block {
    margin-top: 8rem;
    margin-left: 15vw;
  }
  .s-home-additions .p-pullquote .c-pullquote--narrowest,
  .s-renovations .p-pullquote .c-pullquote--narrowest {
    max-width: 25vw;
  }
}

@media (max-width: 68.75em) {
  .s-home-additions .c-landing + .c-text-block,
  .s-renovations .c-landing + .c-text-block {
    margin-left: auto;
  }
  .s-home-additions .c-text-block.c-bg--home-additions-hangers,
  .s-renovations .c-text-block.c-bg--home-additions-hangers {
    margin-left: auto;
  }
  .s-home-additions .p-pullquote,
  .s-renovations .p-pullquote {
    margin-top: 4rem;
  }
  .s-home-additions .p-pullquote .c-pullquote,
  .s-renovations .p-pullquote .c-pullquote {
    max-width: 100vw;
    width: 100vw;
    margin: 4rem 0 4rem;
  }
  .s-home-additions .p-slider,
  .s-renovations .p-slider {
    margin-left: 0;
  }
}

@media (max-width: 35.99em) {
  .s-home-additions .c-pullquote__cite--script, .s-home-additions .p-article--single cite, .p-article--single .s-home-additions cite,
  .s-renovations .c-pullquote__cite--script,
  .s-renovations .p-article--single cite,
  .p-article--single .s-renovations cite {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

.home-additions .s-home-additions .button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #FFFFFF;
  text-shadow: none;
  background-color: rgba(234, 28, 36, 0.8);
  border-radius: 5px;
}

.home-additions .s-home-additions .button:hover, .home-additions .s-home-additions .button:active {
  background-color: #ea1c24;
}

.home-additions .s-home-additions .create-space-for-memories {
  margin-left: 12.5%;
}

@media (max-width: 56.24em) {
  .home-additions .s-home-additions .create-space-for-memories {
    margin-left: unset;
  }
  .home-additions .s-home-additions .create-space-for-memories .c-title, .home-additions .s-home-additions .create-space-for-memories .p-article--single h2, .p-article--single .home-additions .s-home-additions .create-space-for-memories h2, .home-additions .s-home-additions .create-space-for-memories .p-article--single h3, .p-article--single .home-additions .s-home-additions .create-space-for-memories h3, .home-additions .s-home-additions .create-space-for-memories .p-article--single h4, .p-article--single .home-additions .s-home-additions .create-space-for-memories h4 {
    text-align: center;
  }
  .home-additions .s-home-additions .create-space-for-memories .c-title::after, .home-additions .s-home-additions .create-space-for-memories .p-article--single h2::after, .p-article--single .home-additions .s-home-additions .create-space-for-memories h2::after, .home-additions .s-home-additions .create-space-for-memories .p-article--single h3::after, .p-article--single .home-additions .s-home-additions .create-space-for-memories h3::after, .home-additions .s-home-additions .create-space-for-memories .p-article--single h4::after, .p-article--single .home-additions .s-home-additions .create-space-for-memories h4::after {
    margin: 0 auto;
  }
  .home-additions .s-home-additions .create-space-for-memories .c-content p,
  .home-additions .s-home-additions .create-space-for-memories .c-content h2,
  .home-additions .s-home-additions .create-space-for-memories .c-content h3,
  .home-additions .s-home-additions .create-space-for-memories .c-content h4 {
    text-align: center;
  }
}

.home-additions .s-home-additions .create-space-for-memories-quote {
  position: absolute;
  right: 0;
  width: 30%;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}

@media (max-width: 56.24em) {
  .home-additions .s-home-additions .create-space-for-memories-quote {
    width: calc(100% - 4rem);
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.home-additions .s-home-additions .home-addition-icons {
  max-width: 64px;
}

.home-additions .s-home-additions .home-addition-icons.icon-second-story {
  margin-left: 16px;
  max-width: 48px;
}

.home-additions .s-home-additions .home-addition-icons.icon-sunroom {
  margin-left: 8px;
  max-width: 54px;
}

.home-additions .s-home-additions .home-addition-icons.icon-bump-out-basement {
  margin-top: -0.75rem;
  -webkit-transform: translateY(0.75rem);
          transform: translateY(0.75rem);
}

.home-additions .s-home-additions .types-of-renovations .c-media-object__content {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 56.24em) {
  .home-additions .s-home-additions .types-of-renovations .c-media-object__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .home-additions .s-home-additions .types-of-renovations .c-media-object__content ol ul,
  .home-additions .s-home-additions .types-of-renovations .c-media-object__content ul ol,
  .home-additions .s-home-additions .types-of-renovations .c-media-object__content ol ol,
  .home-additions .s-home-additions .types-of-renovations .c-media-object__content ul ul {
    padding-left: 4rem;
  }
}

.home-additions .s-home-additions .p-floorplan-view {
  padding-top: 8rem;
}

.home-additions .s-home-additions .p-before-and-after-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
  max-height: var(--before-and-after-initial-height, auto);
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in;
  transition: max-height 0.5s ease-in;
}

.home-additions .s-home-additions .p-before-and-after-view.is-open {
  max-height: var(--before-and-after-full-height, "100%");
}

.home-additions .s-home-additions .c-before-and-after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  margin: 0 1rem;
}

.home-additions .s-home-additions .c-before-and-after__title {
  line-height: 1.5;
}

.home-additions .s-home-additions .c-before-and-after__media {
  position: relative;
  width: 400px;
  height: 266px;
}

@media (max-width: 35.99em) {
  .home-additions .s-home-additions .c-before-and-after__media {
    width: 100%;
    height: auto;
    padding-bottom: 66.66667%;
  }
}

.home-additions .s-home-additions .c-before-and-after__media::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 8px 10px rgba(25, 29, 38, 0.35);
          box-shadow: 0 8px 10px rgba(25, 29, 38, 0.35);
  opacity: 0;
  -webkit-transform: translate3d(0, -0.25rem, 0);
          transform: translate3d(0, -0.25rem, 0);
  -webkit-transition: 0.35s ease 0.1s;
  transition: 0.35s ease 0.1s;
}

.home-additions .s-home-additions .c-before-and-after__media img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}

.home-additions .s-home-additions .c-before-and-after__media .is-active {
  opacity: 1;
  z-index: 1;
  -webkit-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}

.home-additions .s-home-additions .c-before-and-after__media:hover::after, .home-additions .s-home-additions .c-before-and-after__media:active::after, .home-additions .s-home-additions .c-before-and-after__media:focus::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-additions .s-home-additions .c-before-and-after__media:hover .is-active, .home-additions .s-home-additions .c-before-and-after__media:active .is-active, .home-additions .s-home-additions .c-before-and-after__media:focus .is-active {
  opacity: 0;
}

.home-additions .s-home-additions .c-before-and-after__content {
  padding: 1rem;
}

.home-additions .s-home-additions .c-card--full {
  margin-top: 1rem;
}

.home-additions .s-home-additions .c-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.home-additions .s-home-additions .c-content > * + * {
  margin-top: 2rem;
}

.home-additions .s-home-additions .c-content li + li {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.home-additions .s-home-additions .c-content ol li,
.home-additions .s-home-additions .c-content ol li + li,
.home-additions .s-home-additions .c-content ul li,
.home-additions .s-home-additions .c-content ul li + li,
.home-additions .s-home-additions .c-content ol ul,
.home-additions .s-home-additions .c-content ul ol {
  margin-top: 0;
  margin-bottom: 0;
}

.home-additions .s-home-additions .c-content ol {
  counter-reset: numbers;
  list-style: none;
}

.home-additions .s-home-additions .c-content ol > li::before {
  counter-increment: numbers;
  content: counter(numbers);
  display: inline-block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  background-color: #ea1c24;
  border-radius: 50%;
  -webkit-transform: translateX(-2.5rem);
          transform: translateX(-2.5rem);
}

.home-additions .s-home-additions .c-bg--home-additions-hangers::before {
  right: calc(-50% - 16rem);
}

@media (max-width: 93.74em) {
  .home-additions .s-home-additions .c-bg--home-additions-plant::after {
    display: none;
  }
}

.home-additions .s-home-additions .c-bg--home-additions-desk::after {
  top: 90%;
  left: -12.5%;
}

@media (min-width: 81.25em) and (max-width: 93.74em) {
  .s-basement-developments .p-pullquote {
    margin-top: -12rem;
  }
}

.s-awards .c-bg--awards-trophy {
  margin-bottom: -6rem;
}

@media (max-width: 56.24em) {
  .s-awards .c-bg--awards-trophy {
    margin-bottom: 0;
  }
}

.s-awards .c-bg--awards-trophy > .c-content {
  margin-left: 15vw;
}

@media (max-width: 56.24em) {
  .s-awards .c-bg--awards-trophy > .c-content {
    margin-left: 0;
  }
}

.s-awards .c-content--award {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15vw;
}

@media (max-width: 56.24em) {
  .s-awards .c-content--award {
    margin-left: 0;
  }
}

@media (max-width: 35.99em) {
  .s-awards .c-content--award {
    display: block;
    margin-left: 0;
  }
}

.s-awards .c-content--award h2 {
  margin-bottom: 0.75rem;
}

.s-awards .c-content--award h3 {
  margin-bottom: 0.75rem;
}

.s-awards .c-content--award .e-link, .s-awards .c-content--award .p-article--single p a, .p-article--single p .s-awards .c-content--award a, .s-awards .c-content--award .p-article--single .c-content strong a, .p-article--single .c-content strong .s-awards .c-content--award a,
.s-awards .c-content--award .p-article--single button, .p-article--single .s-awards .c-content--award button,
.s-awards .c-content--award .p-article--single .button, .p-article--single .s-awards .c-content--award .button {
  margin-top: 0;
}

.s-awards .c-content--award--image {
  max-width: 140px;
  margin-left: -1rem;
  margin-right: 1rem;
  -ms-flex-item-align: center;
      align-self: center;
}

@media (max-width: 35.99em) {
  .s-awards .c-content--award--image {
    display: block;
    margin: 0 auto;
  }
}

.s-awards .c-content--award .c-media-object__content {
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 56.24em) {
  .s-awards .c-content--award .c-media-object__content {
    margin-left: 0;
  }
}

@media (max-width: 35.99em) {
  .s-awards .c-content--award .c-media-object__content {
    margin-top: 2rem;
  }
}

.s-why-melanson .c-text-block.c-text-block--center:nth-of-type(1) {
  margin-bottom: 8rem;
}

.s-why-melanson .p-team {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.s-why-melanson .p-team h3 {
  margin-top: 1.5rem;
}

.s-why-melanson .p-team--2 {
  max-width: unset;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  margin-bottom: 8rem;
}

@media (max-width: 56.24em) {
  .s-why-melanson .p-team--2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-1::after, .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-3::after {
  top: 2rem;
  right: 2rem;
  width: 50vw;
}

@media (max-width: 56.24em) {
  .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-1::after, .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-3::after {
    width: 100vw;
  }
}

.s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-2::after, .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-4::after {
  bottom: 1rem;
  left: 6rem;
  width: 45vw;
}

@media (max-width: 56.24em) {
  .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-2::after, .s-why-melanson .p-team--2 .c-bg--why-melanson-accent.p-team--item-4::after {
    width: 100vw;
  }
}

.s-why-melanson .p-team--3 .c-bg--why-melanson-accent.p-team--item-1::after {
  top: 2rem;
  right: 0;
  width: 50vw;
}

.s-why-melanson .p-team--3 .c-bg--why-melanson-accent.p-team--item-2::after {
  bottom: 1rem;
  left: 1rem;
  width: 42vw;
}

.s-why-melanson .p-team--3 .c-bg--why-melanson-accent.p-team--item-3::after {
  top: 10rem;
  left: 0;
  width: 40vw;
}

.s-why-melanson .p-quote-block .c-pullquote__cite, .s-why-melanson .p-quote-block .p-article--single cite, .p-article--single .s-why-melanson .p-quote-block cite {
  margin-right: 0;
  font-size: 1.953rem;
  letter-spacing: 0;
}

.s-why-melanson .our-process {
  margin-top: 18rem;
}

.s-why-melanson .our-process .cta {
  margin-top: 8rem;
}

@media (max-width: 56.24em) {
  .s-why-melanson .p-team .c-title, .s-why-melanson .p-team .p-article--single h2, .p-article--single .s-why-melanson .p-team h2, .s-why-melanson .p-team .p-article--single h3, .p-article--single .s-why-melanson .p-team h3, .s-why-melanson .p-team .p-article--single h4, .p-article--single .s-why-melanson .p-team h4 {
    margin-top: 1rem;
  }
  .s-why-melanson .c-landing__text {
    display: none;
  }
  .s-why-melanson .p-quote-block {
    margin-top: 8rem;
    padding-left: 0;
    padding-right: 0;
  }
  .s-why-melanson .p-quote-block > .c-title, .s-why-melanson .p-article--single .p-quote-block > h2, .p-article--single .s-why-melanson .p-quote-block > h2, .s-why-melanson .p-article--single .p-quote-block > h3, .p-article--single .s-why-melanson .p-quote-block > h3, .s-why-melanson .p-article--single .p-quote-block > h4, .p-article--single .s-why-melanson .p-quote-block > h4 {
    padding: 0 2rem;
  }
  .s-why-melanson .p-quote-block .c-pullquote {
    margin-top: 4rem;
  }
  .s-why-melanson .our-process {
    margin-top: 0;
  }
}

@media (max-width: 35.99em) {
  .s-why-melanson .p-family .c-text-block {
    padding: 0;
  }
  .s-why-melanson .c-text-block.c-text-block--center:nth-of-type(1) {
    margin-top: 4rem;
  }
  .s-why-melanson .p-quote-block .c-pullquote__content {
    padding: 2rem;
  }
}

.s-build-better .p-navigation {
  grid-column: 1 / span 8;
  grid-row: 4 / span 1;
}

.s-build-better .p-article-list {
  grid-column: 1 / span 7;
  grid-row: 1 / span 1;
}

.s-build-better .p-article--single {
  grid-column: 1 / span 6;
}

.s-build-better .p-sidebar {
  grid-column: 8 / span 4;
  grid-row: 1 / span 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

@media (max-width: 81.24em) {
  .s-build-better .p-navigation {
    grid-column: 1 / span 10;
  }
}

@media (max-width: 56.24em) {
  .s-build-better .p-navigation .c-list {
    padding: 2rem 0;
  }
  .s-build-better .p-article-list {
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
  }
  .s-build-better .p-article--single {
    grid-column: 1 / span 4;
    grid-row: 1 / span 1;
  }
  .s-build-better .p-sidebar {
    grid-column: 1 / span 4;
    grid-row: 2 / span 1;
    padding: 2rem;
  }
}

.s-gallery .gallery__header,
.s-gallery .gallery__grid,
.s-gallery .gallery__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.s-gallery .gallery__grid,
.s-gallery .gallery__controls {
  width: 70%;
}

@media (max-width: 93.74em) {
  .s-gallery .gallery__grid,
  .s-gallery .gallery__controls {
    width: 80%;
  }
}

@media (max-width: 81.24em) {
  .s-gallery .gallery__grid,
  .s-gallery .gallery__controls {
    width: auto;
  }
}

.s-gallery .gallery__grid {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 4rem auto 12rem;
}

@media (max-width: 81.24em) {
  .s-gallery .gallery__grid {
    margin: 4rem 0 12rem 2rem;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__grid {
    margin: 4rem 0 12rem;
  }
}

.s-gallery .gallery__controls {
  margin: 4rem auto 0;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2rem 0 0;
  font-size: 2rem;
}

@media (max-width: 81.24em) {
  .s-gallery .gallery__controls {
    width: 100%;
    margin: 4rem 2rem 0;
  }
}

@media (max-width: 68.75em) {
  .s-gallery .gallery__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
  }
  .s-gallery .gallery__controls > a {
    margin-bottom: 1rem;
  }
  .s-gallery .gallery__controls > a:last-child {
    margin-bottom: 0;
  }
  .s-gallery .gallery__controls.c-title, .s-gallery .p-article--single h2.gallery__controls, .p-article--single .s-gallery h2.gallery__controls, .s-gallery .p-article--single h3.gallery__controls, .p-article--single .s-gallery h3.gallery__controls, .s-gallery .p-article--single h4.gallery__controls, .p-article--single .s-gallery h4.gallery__controls {
    font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  .s-gallery .gallery__controls.c-title a.e-link--inverse, .s-gallery .p-article--single h2.gallery__controls a.e-link--inverse, .p-article--single .s-gallery h2.gallery__controls a.e-link--inverse, .s-gallery .p-article--single h3.gallery__controls a.e-link--inverse, .p-article--single .s-gallery h3.gallery__controls a.e-link--inverse, .s-gallery .p-article--single h4.gallery__controls a.e-link--inverse, .p-article--single .s-gallery h4.gallery__controls a.e-link--inverse, .s-gallery .gallery__controls.c-title .p-article--single p a, .p-article--single p .s-gallery .gallery__controls.c-title a, .s-gallery .p-article--single h2.gallery__controls p a, .s-gallery .p-article--single p h2.gallery__controls a, .p-article--single .s-gallery h2.gallery__controls p a, .p-article--single p .s-gallery h2.gallery__controls a, .s-gallery .p-article--single h3.gallery__controls p a, .s-gallery .p-article--single p h3.gallery__controls a, .p-article--single .s-gallery h3.gallery__controls p a, .p-article--single p .s-gallery h3.gallery__controls a, .s-gallery .p-article--single h4.gallery__controls p a, .s-gallery .p-article--single p h4.gallery__controls a, .p-article--single .s-gallery h4.gallery__controls p a, .p-article--single p .s-gallery h4.gallery__controls a, .s-gallery .gallery__controls.c-title .p-article--single .c-content strong a, .p-article--single .c-content strong .s-gallery .gallery__controls.c-title a, .s-gallery .p-article--single h2.gallery__controls .c-content strong a, .s-gallery .p-article--single .c-content strong h2.gallery__controls a, .p-article--single .s-gallery h2.gallery__controls .c-content strong a, .p-article--single .c-content strong .s-gallery h2.gallery__controls a, .s-gallery .p-article--single h3.gallery__controls .c-content strong a, .s-gallery .p-article--single .c-content strong h3.gallery__controls a, .p-article--single .s-gallery h3.gallery__controls .c-content strong a, .p-article--single .c-content strong .s-gallery h3.gallery__controls a, .s-gallery .p-article--single h4.gallery__controls .c-content strong a, .s-gallery .p-article--single .c-content strong h4.gallery__controls a, .p-article--single .s-gallery h4.gallery__controls .c-content strong a, .p-article--single .c-content strong .s-gallery h4.gallery__controls a,
  .s-gallery .gallery__controls.c-title .p-article--single a.button, .p-article--single .s-gallery .gallery__controls.c-title a.button,
  .s-gallery .p-article--single h2.gallery__controls a.button, .p-article--single .s-gallery h2.gallery__controls a.button,
  .s-gallery .p-article--single h3.gallery__controls a.button, .p-article--single .s-gallery h3.gallery__controls a.button,
  .s-gallery .p-article--single h4.gallery__controls a.button, .p-article--single .s-gallery h4.gallery__controls a.button {
    color: #333333;
    padding: 0 1rem;
  }
  .s-gallery .gallery__controls.c-title a.e-link--inverse:active, .s-gallery .p-article--single h2.gallery__controls a.e-link--inverse:active, .p-article--single .s-gallery h2.gallery__controls a.e-link--inverse:active, .s-gallery .p-article--single h3.gallery__controls a.e-link--inverse:active, .p-article--single .s-gallery h3.gallery__controls a.e-link--inverse:active, .s-gallery .p-article--single h4.gallery__controls a.e-link--inverse:active, .p-article--single .s-gallery h4.gallery__controls a.e-link--inverse:active, .s-gallery .gallery__controls.c-title .p-article--single p a:active, .p-article--single p .s-gallery .gallery__controls.c-title a:active, .s-gallery .p-article--single h2.gallery__controls p a:active, .s-gallery .p-article--single p h2.gallery__controls a:active, .p-article--single .s-gallery h2.gallery__controls p a:active, .p-article--single p .s-gallery h2.gallery__controls a:active, .s-gallery .p-article--single h3.gallery__controls p a:active, .s-gallery .p-article--single p h3.gallery__controls a:active, .p-article--single .s-gallery h3.gallery__controls p a:active, .p-article--single p .s-gallery h3.gallery__controls a:active, .s-gallery .p-article--single h4.gallery__controls p a:active, .s-gallery .p-article--single p h4.gallery__controls a:active, .p-article--single .s-gallery h4.gallery__controls p a:active, .p-article--single p .s-gallery h4.gallery__controls a:active, .s-gallery .gallery__controls.c-title .p-article--single .c-content strong a:active, .p-article--single .c-content strong .s-gallery .gallery__controls.c-title a:active, .s-gallery .p-article--single h2.gallery__controls .c-content strong a:active, .s-gallery .p-article--single .c-content strong h2.gallery__controls a:active, .p-article--single .s-gallery h2.gallery__controls .c-content strong a:active, .p-article--single .c-content strong .s-gallery h2.gallery__controls a:active, .s-gallery .p-article--single h3.gallery__controls .c-content strong a:active, .s-gallery .p-article--single .c-content strong h3.gallery__controls a:active, .p-article--single .s-gallery h3.gallery__controls .c-content strong a:active, .p-article--single .c-content strong .s-gallery h3.gallery__controls a:active, .s-gallery .p-article--single h4.gallery__controls .c-content strong a:active, .s-gallery .p-article--single .c-content strong h4.gallery__controls a:active, .p-article--single .s-gallery h4.gallery__controls .c-content strong a:active, .p-article--single .c-content strong .s-gallery h4.gallery__controls a:active,
  .s-gallery .gallery__controls.c-title .p-article--single a.button:active, .p-article--single .s-gallery .gallery__controls.c-title a.button:active,
  .s-gallery .p-article--single h2.gallery__controls a.button:active, .p-article--single .s-gallery h2.gallery__controls a.button:active,
  .s-gallery .p-article--single h3.gallery__controls a.button:active, .p-article--single .s-gallery h3.gallery__controls a.button:active,
  .s-gallery .p-article--single h4.gallery__controls a.button:active, .p-article--single .s-gallery h4.gallery__controls a.button:active {
    color: #ea1c24;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__controls {
    margin: 4rem 2rem 0;
  }
}

.s-gallery .gallery__controls li {
  width: 25%;
  text-align: center;
}

@media (max-width: 68.75em) {
  .s-gallery .gallery__controls li {
    width: calc((100% - 3rem) / 2);
  }
  .s-gallery .gallery__controls li:nth-child(1), .s-gallery .gallery__controls li:nth-child(2) {
    margin-bottom: 2rem;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__controls li {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.s-gallery .gallery__filter--selected {
  color: #333333;
}

.s-gallery .gallery__item {
  position: relative;
  width: calc((100% - 6rem) / 3);
  height: 30vh;
  max-width: 1000%;
  max-height: 1000%;
  margin: 0 2rem 2rem 0;
  overflow: hidden;
  /*&:not(.is-visible) {
      img {

      opacity: 1;
      -webkit-transform: scale(1,1);
      transform: scale(1,1);
        -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
        transition: opacity 0.5s, transform 0.5s;
      }
    }
    &.is-visible {
      img {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
      }
    }*/
}

.s-gallery .gallery__item:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(25, 29, 38, 0.2);
          box-shadow: 0 10px 20px 0 rgba(25, 29, 38, 0.2);
}

.s-gallery .gallery__item.unloaded {
  opacity: 0;
  -webkit-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.s-gallery .gallery__item:not(.unloaded) {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

@media (max-width: 56.24em) {
  .s-gallery .gallery__item {
    width: calc((100% - 4rem) / 2);
    height: auto;
    overflow: visible;
  }
  .s-gallery .gallery__item:hover, .s-gallery .gallery__item:active {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__item {
    /* width: calc(100% - 3rem); */
    width: 100%;
    /* height: 40vh; */
    height: auto;
    margin-right: 0;
  }
}

.s-gallery .gallery__link {
  display: block;
}

.s-gallery .gallery__link--project,
.s-gallery .gallery__link--lightbox {
  width: 50%;
  padding: 1rem 1.5rem;
}

.s-gallery .gallery__link--project {
  float: left;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
}

@media (max-width: 56.24em) {
  .s-gallery .gallery__link--project {
    width: 100%;
    font-size: 0.875rem;
    padding: 0;
    border-right: none;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__link--project {
    padding: 0 0 0 1rem;
  }
}

.s-gallery .gallery__link--lightbox {
  float: right;
  text-align: right;
}

.s-gallery .gallery__meta {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 0.875rem;
  background: rgba(243, 244, 246, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.s-gallery .gallery__item:hover .gallery__meta {
  opacity: 1;
}

.s-gallery .gallery__image {
  width: 100%;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media (max-width: 56.24em) {
  .s-gallery .gallery__image {
    height: 30vh;
  }
}

@media (max-width: 35.99em) {
  .s-gallery .gallery__image {
    height: 40vh;
  }
}

.s-gallery img {
  opacity: 0;
  -webkit-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

.s-gallery img:not(.initial) {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.s-gallery img.initial,
.s-gallery img.loaded,
.s-gallery img.error,
.s-gallery img.loaded2 {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.s-gallery img:not([src]) {
  visibility: hidden;
}

.s-contact .o-main .o-row {
  grid-template-rows: auto;
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
  margin-bottom: -300px;
}

.s-contact .p-form--selector {
  grid-column: 1 / span 6;
  grid-row: 2 / span 1;
}

.s-contact .p-form--selector .c-form {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #e1e4e5), to(#e1e4e5));
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e1e4e5 50%, #e1e4e5 100%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  -webkit-transition: background-position 0.3s ease-out;
  transition: background-position 0.3s ease-out;
}

.s-contact .p-form--selector .c-form h3 {
  margin-bottom: 1rem;
}

.s-contact .p-form--selector .c-form label {
  padding: 0.25rem 0;
}

.s-contact .p-form--selector.has-selected .c-form {
  background-position: 100% 0%;
}

.s-contact .p-form--contact,
.s-contact .p-form--contractor {
  grid-column: 1 / span 6;
  grid-row: 3 / span 2;
  -ms-flex-item-align: start;
      align-self: start;
}

.s-contact .p-form--contact,
.s-contact .p-form--contractor {
  height: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-clip-path 0.3s ease, -webkit-transform 0.35s ease 0.25s;
  transition: opacity 0.6s ease, -webkit-clip-path 0.3s ease, -webkit-transform 0.35s ease 0.25s;
  transition: clip-path 0.3s ease, transform 0.35s ease 0.25s, opacity 0.6s ease;
  transition: clip-path 0.3s ease, transform 0.35s ease 0.25s, opacity 0.6s ease, -webkit-clip-path 0.3s ease, -webkit-transform 0.35s ease 0.25s;
  z-index: -1;
}

.s-contact .p-form--contact.is-selected,
.s-contact .p-form--contractor.is-selected {
  height: auto;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 2;
  opacity: 1;
  -webkit-transition: opacity 0.35s ease 0.25s, -webkit-clip-path 0.5s ease 0.25s, -webkit-transform 0.35s ease 0.25s;
  transition: opacity 0.35s ease 0.25s, -webkit-clip-path 0.5s ease 0.25s, -webkit-transform 0.35s ease 0.25s;
  transition: clip-path 0.5s ease 0.25s, transform 0.35s ease 0.25s, opacity 0.35s ease 0.25s;
  transition: clip-path 0.5s ease 0.25s, transform 0.35s ease 0.25s, opacity 0.35s ease 0.25s, -webkit-clip-path 0.5s ease 0.25s, -webkit-transform 0.35s ease 0.25s;
}

.s-contact .p-phone {
  grid-column: 7 / span 3;
  grid-row: 1 / span 3;
}

.s-contact .c-bg--phone {
  background: transparent url(../images/pages/contact-iphone.png) top center no-repeat;
  /* background: transparent url(../images/pages/footer-iphone.png) top center no-repeat; */
}

@media (max-width: 35.99em) {
  .s-contact .c-bg--phone {
    height: 546px;
    background-position: 50% 40%;
    background-size: 573px 657px;
  }
}

.s-contact .p-pullquote {
  grid-column: 2 / span 4;
  grid-row: 3 / span 2;
  -ms-flex-item-align: start;
      align-self: start;
  margin: 5rem 0 5rem 20rem;
  z-index: -1;
  max-width: 100vw;
}

.s-contact .c-pullquote__cite, .s-contact .p-article--single cite, .p-article--single .s-contact cite {
  margin-top: 0;
}

.s-contact .decoration {
  grid-column: 11 / span 1;
  grid-row: 3 / span 1;
}

@media (max-width: 93.74em) {
  .s-contact .p-phone {
    grid-column: 7 / span 4;
  }
  .s-contact .p-pullquote {
    grid-column: 3 / span 4;
    margin-left: 4rem;
  }
  .s-contact .decoration {
    grid-column: 11 / span 1;
  }
}

@media (max-width: 68.75em) {
  .s-contact .o-main .o-grid {
    grid-template-columns: 2rem auto auto 2rem;
  }
  .s-contact .o-main .o-row {
    grid-template-rows: auto auto auto auto;
    margin-bottom: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .s-contact .p-form--selector {
    grid-column: 1 / span 4;
    grid-row: 1 / span 1;
  }
  .s-contact .p-form--selector .c-form--selector {
    margin: 0;
    padding: 3rem 2rem;
  }
  .s-contact .p-form--contact,
  .s-contact .p-form--contractor {
    grid-column: 1 / span 4;
    grid-row: 2 / span 1;
  }
  .s-contact .p-phone {
    grid-column: 1 / span 4;
    grid-row: 3 / span 1;
    margin-top: 4rem;
  }
  .s-contact .p-pullquote {
    grid-column: 2 / span 2;
    grid-row: 4 / span 1;
    margin-left: 0;
    padding: 0 2rem;
  }
  .s-contact .p-pullquote .c-pullquote {
    margin: 0 auto;
  }
  .s-contact .c-form--left-padding {
    padding-left: 3rem;
  }
  .s-contact .decoration {
    display: none;
  }
}

@media (max-width: 35.99em) {
  .s-contact .p-pullquote {
    margin-bottom: 2rem;
  }
  .s-contact .c-pullquote__content {
    margin-bottom: 1rem;
    padding: 0;
  }
}

.page-template-template-priddis {
  /**
 * Rancher's Hill (Priddis) Landing Page
 * Date: 2019-09-18
 * Author: True Market
 * Design: Matt Wright <matt@truemarket.ca>
 */
}

.page-template-template-priddis .c-landing + aside .c-pullquote .c-pullquote__content {
  font-size: 1.5rem;
}

.page-template-template-priddis .c-landing + aside .c-pullquote .c-pullquote__content::before, .page-template-template-priddis .c-landing + aside .c-pullquote .c-pullquote__content::after {
  display: none;
}

.page-template-template-priddis .c-landing + aside .c-pullquote .c-pullquote__cite, .page-template-template-priddis .c-landing + aside .c-pullquote .p-article--single cite, .p-article--single .page-template-template-priddis .c-landing + aside .c-pullquote cite {
  display: none;
}

.page-template-template-priddis .c-text-block h2 {
  margin-bottom: 2rem !important;
}

.page-template-template-priddis .c-text-block .c-title--small {
  font-size: 1rem;
}

.page-template-template-priddis .c-text-block__subtitle {
  margin-bottom: 2rem;
}

.page-template-template-priddis .c-bg--backpack::after {
  bottom: 0;
  left: 50%;
  width: 388px;
  height: 484px;
  background-image: url(../images/ranchers-hill/melanson-homes-hiking-backpack-80.jpg);
  -webkit-transform: scale(0.8) translate(-70%, calc(100% + 4rem));
          transform: scale(0.8) translate(-70%, calc(100% + 4rem));
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .c-bg--backpack::after {
    -webkit-transform: scale(0.5) translate(-100%, calc(100% + 16rem));
            transform: scale(0.5) translate(-100%, calc(100% + 16rem));
  }
}

.page-template-template-priddis .p-slider {
  grid-column: 1 / span 6;
  grid-row: 2 / span 2;
}

.page-template-template-priddis .p-slider img {
  background-color: #f5f6fa;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .p-slider {
    grid-column: 1 / span 11;
    grid-row: 2;
    margin-top: 4rem;
  }
}

.page-template-template-priddis .p-slider .c-list {
  display: none;
}

.page-template-template-priddis .p-features {
  grid-column: 7 / span 4;
  grid-row: 1 / span 3;
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .p-features {
    grid-column: 1 / span 11;
    grid-row: 1;
  }
}

.page-template-template-priddis .p-features > div {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .p-features > div {
    width: 100%;
  }
  .page-template-template-priddis .p-features > div h2 {
    text-align: center;
  }
  .page-template-template-priddis .p-features > div h2::after {
    margin-left: auto;
  }
}

.page-template-template-priddis .p-features .c-media-object__accent--wide {
  width: 45vw;
}

.page-template-template-priddis .p-features .c-cta {
  margin-top: 2rem;
}

.page-template-template-priddis .p-floorplan-view {
  padding: 0 2rem 0 1.5rem;
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .p-floorplan-view {
    margin-top: 12rem;
  }
}

.page-template-template-priddis .p-floorplan-view > .c-text-block {
  padding: 0;
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .p-floorplan-view > .c-text-block {
    width: calc(100vw - 5rem);
    margin-left: 0;
  }
}

@media (max-width: 81.24em) {
  .page-template-template-priddis .c-card--floorplan {
    padding: 1rem;
  }
}

@media (max-width: 81.24em) {
  .page-template-template-priddis .c-card__details {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.page-template-template-priddis .c-bg--skis::before {
  top: -16rem;
  right: -10vw;
  width: 426px;
  height: 575px;
  background-image: url(../images/ranchers-hill/melanson-homes-skies-80.jpg);
}

@media (max-width: 56.24em) {
  .page-template-template-priddis .c-bg--skis::before {
    display: none;
  }
}

.page-template-template-priddis .c-bg--horseshoe::after {
  bottom: 0;
  left: 0;
  width: 338px;
  height: 332px;
  background-image: url(../images/ranchers-hill/melanson-homes-horse-shoe-80.jpg);
  -webkit-transform: translate(50%, 100%);
          transform: translate(50%, 100%);
}

@media (max-width: 81.24em) {
  .page-template-template-priddis .c-bg--horseshoe::after {
    display: none;
  }
}

.page-template-template-priddis .c-footer__cta {
  display: none;
}

.page-template-template-priddis .u-mb-4 {
  margin-bottom: 4rem;
}

.page-template-template-priddis .u-mb-8 {
  margin-bottom: 8rem;
}

.page-template-template-priddis .u-mt-4 {
  margin-top: 4rem;
}

.page-template-template-priddis .u-mt-8 {
  margin-top: 8rem;
}

/**
 * Utilities.
 *
 * Ability to override anything.
 * It will most likely come with !important as we are sure to use them.
 */
.u-spacer--top {
  margin-top: 12rem;
}

.u-spacer--bottom {
  margin-bottom: 12rem;
}

.u-spacer--both {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.u-spacer-2x--top {
  margin-top: 24rem;
}

.u-spacer-2x--bottom {
  margin-bottom: 24rem;
}

.u-spacer-2x--both {
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.u-spacer-1\/2x--top {
  margin-top: 6rem;
}

@media (max-width: 56.24em) {
  .u-spacer--top {
    margin-top: 4rem;
  }
  .u-spacer--bottom {
    margin-bottom: 4rem;
  }
  .u-spacer--both {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .u-spacer-2x--top {
    margin-top: 8rem;
  }
  .u-spacer-2x--bottom {
    margin-bottom: 8rem;
  }
  .u-spacer-2x--both {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}

.u-move-up {
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
}

.u-font-sans {
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.u-font-serif,
.u-font-script {
  font-family: "hollandregular", "Constantina", "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  line-height: 1.2 !important;
}

.u-text-white {
  color: #FFFFFF;
}

.u-text-black {
  color: #191d26;
}

.u-text-blacklight {
  color: #333333;
}

.u-text-grey {
  color: #CCC;
}

.u-text-greylight {
  color: #f3f4f6;
}

.u-text-greydark {
  color: #888888;
}

.u-text-greydarker, .p-article--single h3 {
  color: #666666;
}

.u-text-red, .c-read-time, .p-article--single h4 {
  color: #ea1c24;
}

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

.u-uppercase, .c-read-time {
  text-transform: uppercase;
}

.u-lowercase, .p-article--single .c-content strong a,
.p-article--single button,
.p-article--single .button {
  text-transform: lowercase;
}

.u-list-reset {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.u-no-bullets {
  list-style: none;
}

.u-vertical-text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.u-justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.u-justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.u-justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.u-justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.u-align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.u-full {
  width: 100%;
}

.u-half {
  width: 49%;
}

.u-third {
  width: 32%;
}

.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

.u-inline {
  display: inline;
}

.u-clearfix::after, .p-article--single blockquote::after {
  content: "";
  display: table;
  clear: both;
}

.u-tm {
  font-family: "Poppins", system-ui, BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.75em;
}

.u-tm--small {
  font-size: 0.5em;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-pulse {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #ea1c24;
  -webkit-box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
  cursor: pointer;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.4);
            box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.4);
  }
  80% {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.4);
            box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.4);
  }
  80% {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.u-hidden {
  display: none;
}

@media (max-width: 56.24em) {
  .u-hidden--mobile {
    display: none !important;
  }
}

@media (max-width: 81.24em) {
  .u-hidden--md-mobile {
    display: none !important;
  }
}

@media (min-width: 56.25em) {
  .u-hidden--desktop {
    display: none !important;
  }
}

@media (min-width: 81.25em) {
  .u-hidden--md-desktop {
    display: none !important;
  }
}

#signup_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 900;
}

#signup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50vw;
  padding: calc(2rem + 36px);
  background: #e1e4e5;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}

#signup_close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
}

#mailchimp-form {
  padding: 0;
}

.subscribed-message {
  padding-bottom: 2rem;
}

.c-form--mailchimp input[type=email] {
  margin-bottom: 0.5rem;
}

.c-form--mailchimp input[type=email]::focus {
  border: 2px solid #191d26;
}

.c-form--mailchimp input[type=email].error {
  border: 2px solid #ea1c24;
}

@media (max-width: 56.24em) {
  #signup {
    width: 75vw;
    height: auto;
    padding: calc(2rem + 36px) 2rem;
  }
  .c-form--mailchimp {
    padding: 1rem;
  }
  #download {
    margin: 1rem;
    padding: 1rem;
    font-size: 0.8rem;
    text-align: center;
  }
}

.c-float-spacing {
  position: absolute;
}

.c-float-spacing.c-float-spacing--right {
  right: 15%;
}

.c-float-spacing.c-float-spacing--left {
  left: 5%;
}

@media (max-width: 56.24em) {
  .c-float-spacing {
    right: unset;
    position: unset;
  }
}

.link-reno-add {
  -webkit-transform: translate(10rem, -13rem);
          transform: translate(10rem, -13rem);
}

@media (max-width: 56.24em) {
  .link-reno-add {
    -webkit-transform: unset;
            transform: unset;
  }
}

.link-new-homes {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}

.link-new-homes.link-new-homes--2x {
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
}

@media (max-width: 56.24em) {
  .link-new-homes {
    -webkit-transform: unset;
            transform: unset;
  }
}

.byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin: 2rem 0 2rem calc(1 / 6 * 100%);
}

@media screen and (max-width: 56.24em) {
  .byline {
    margin: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .byline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.byline__picture {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7rem;
          flex: 0 0 7rem;
  -ms-flex-item-align: center;
      align-self: center;
}

.byline__picture img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .byline__picture {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
    text-align: end;
  }
}

.byline__info {
  margin: auto 1rem auto 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 10rem;
          flex: 0 1 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.byline__info > p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .byline__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}

.byline__last-updated {
  margin: 1rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 15rem;
          flex: 1 1 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.byline__last-updated > p {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 .5rem;
  color: #BBBBBB;
  text-transform: uppercase;
}

.byline__last-updated > p a:link {
  color: #BBBBBB;
}

.byline__last-updated > p a:link:hover, .byline__last-updated > p a:link:focus {
  color: #333;
}

@media screen and (max-width: 600px) {
  .byline__last-updated {
    margin: 2rem 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 5rem;
            flex: 1 1 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

.landing-title {
  font-size: 1.25rem;
  font-weight: 300;
}

.landing-subtitle {
  font-size: 1.25rem;
}

.content_section {
  margin-left: 15%;
}

@media all and (max-width: 500px) {
  .content_section {
    margin-left: 0;
  }
}

.spacing-top-18 {
  margin-top: 18rem;
}

@media all and (max-width: 500px) {
  .spacing-top-18 {
    margin-top: 8rem;
  }
}

.spacing-top-16 {
  margin-top: 16rem;
}

.spacing-top-8 {
  margin-top: 8rem;
}

.spacing-top-4 {
  margin-top: 4rem;
}

ol {
  counter-reset: numbers;
  list-style: none;
}

ol > li::before {
  counter-increment: numbers;
  content: counter(numbers);
  display: inline-block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  background-color: #ea1c24;
  border-radius: 50%;
  -webkit-transform: translateX(-2.5rem);
          transform: translateX(-2.5rem);
}

.process {
  position: relative;
}

.push-left {
  margin-left: 20%;
}

.side-quote {
  position: absolute;
  right: -68%;
  top: -12%;
  max-width: 450px;
  text-align: left;
}

@media all and (max-width: 1400px) {
  .side-quote {
    position: static;
    -webkit-transform: none;
            transform: none;
    max-width: 900px;
  }
}

@media all and (max-width: 500px) {
  .side-quote {
    padding: 0;
  }
}

.media-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

.media-container__item {
  width: 400px;
  height: 280px;
  margin: 2rem;
}

.media-container__item iframe {
  width: 100%;
  height: 100%;
}

.media-container__title {
  margin-top: 1rem;
  text-transform: uppercase;
  line-height: 1.6;
}

.media-container .c-title, .media-container .p-article--single h2, .p-article--single .media-container h2, .media-container .p-article--single h3, .p-article--single .media-container h3, .media-container .p-article--single h4, .p-article--single .media-container h4 {
  padding: 0 2rem;
}

@media all and (max-width: 500px) {
  .media-container .c-title, .media-container .p-article--single h2, .p-article--single .media-container h2, .media-container .p-article--single h3, .p-article--single .media-container h3, .media-container .p-article--single h4, .p-article--single .media-container h4 {
    padding: 0 .5rem;
  }
}

.c-bg--home-additions-kitchen-plant::after {
  top: 60%;
  right: 4rem;
  width: 376px;
  height: 560px;
  background-image: url(../images/pages/kitchen-plant.jpg);
}

@media (max-width: 93.74em) {
  .c-bg--home-additions-kitchen-plant::after {
    -webkit-transform: translateX(4rem) scale(0.8);
            transform: translateX(4rem) scale(0.8);
  }
}

@media (max-width: 81.24em) {
  .c-bg--home-additions-kitchen-plant::after {
    -webkit-transform: translateX(12rem) scale(0.8);
            transform: translateX(12rem) scale(0.8);
  }
}

@media (max-width: 56.24em) {
  .c-bg--home-additions-kitchen-plant::after {
    -webkit-transform: translateX(8rem) translateY(-4rem) scale(0.6);
            transform: translateX(8rem) translateY(-4rem) scale(0.6);
  }
}

@media (max-width: 35.99em) {
  .c-bg--home-additions-kitchen-plant::after {
    display: none;
  }
}

.p-before-and-after-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
  max-height: var(--before-and-after-initial-height, auto);
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in;
  transition: max-height 0.5s ease-in;
}

.p-before-and-after-view.is-open {
  max-height: var(--before-and-after-full-height, "100%");
}

.c-before-and-after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  margin: 0 1rem;
}

.c-before-and-after__title {
  line-height: 1.5;
}

.c-before-and-after__media {
  position: relative;
  width: 400px;
  height: 266px;
}

@media (max-width: 35.99em) {
  .c-before-and-after__media {
    width: 100%;
    height: auto;
    padding-bottom: 66.66667%;
  }
}

.c-before-and-after__media::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 8px 10px rgba(25, 29, 38, 0.35);
          box-shadow: 0 8px 10px rgba(25, 29, 38, 0.35);
  opacity: 0;
  -webkit-transform: translate3d(0, -0.25rem, 0);
          transform: translate3d(0, -0.25rem, 0);
  -webkit-transition: 0.35s ease 0.1s;
  transition: 0.35s ease 0.1s;
}

.c-before-and-after__media img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}

.c-before-and-after__media .is-active {
  opacity: 1;
  z-index: 1;
  -webkit-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}

.c-before-and-after__media:hover::after, .c-before-and-after__media:active::after, .c-before-and-after__media:focus::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.c-before-and-after__media:hover .is-active, .c-before-and-after__media:active .is-active, .c-before-and-after__media:focus .is-active {
  opacity: 0;
}

.c-before-and-after__content {
  padding: 1rem;
}

.c-before-and-after__title {
  line-height: 1.5;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #FFFFFF;
  text-shadow: none;
  background-color: rgba(234, 28, 36, 0.8);
  border-radius: 5px;
  color: #fff;
}

.button:hover, .button:active {
  background-color: #ea1c24;
  color: #fff;
}

.home-type {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}

@media all and (max-width: 1100px) {
  .home-type {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.home-type__card {
  width: 430px;
  max-width: 100%;
  margin: 1rem;
}

@media all and (max-width: 1100px) {
  .home-type__card {
    width: 60%;
  }
}

@media all and (max-width: 800px) {
  .home-type__card {
    width: 90%;
  }
}

@media all and (max-width: 500px) {
  .home-type__card {
    width: 100%;
    margin: 1rem 0;
  }
}

.home-type__title {
  text-align: left;
  text-transform: uppercase;
  font-weight: 400;
  margin: 1rem 0 .5rem 0;
  letter-spacing: .1rem;
  color: #191d26;
  line-height: 1.6;
}

.home-type__content {
  padding: 0 1rem;
}

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

.home-type__link {
  margin-top: 2rem;
}

.home-type__link {
  font-size: 22px;
}

.home-type__link .e-link__line::before, .home-type__link .p-article--single .c-content strong a::before, .p-article--single .c-content strong .home-type__link a::before,
.home-type__link .p-article--single button::before, .p-article--single .home-type__link button::before,
.home-type__link .p-article--single .button::before, .p-article--single .home-type__link .button::before {
  width: 4rem;
}

.home-type__floorplans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .6s ease all;
  transition: .6s ease all;
  overflow: hidden;
  max-height: 300px;
}

.hide-floorplans {
  opacity: 0;
  max-height: 0;
}

.floorplans {
  width: 1500px;
  max-width: 95%;
}

.floorplans .c-card--floorplan {
  margin: 0 1rem;
}

@media all and (max-width: 1100px) {
  .floorplans .c-card--floorplan {
    width: 100%;
  }
}

@media all and (max-width: 500px) {
  .floorplans {
    padding: 0 1rem;
  }
}

.floorplans aside {
  max-width: 600px;
}

.recent-posts .media-container {
  width: 1500px;
  max-width: 95%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 4rem auto 0 auto;
}

@media all and (max-width: 1100px) {
  .recent-posts .media-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recent-posts .media-container .media-container__item {
  height: auto;
  margin: 0 1rem;
  margin-bottom: 2rem;
}

@media all and (max-width: 1100px) {
  .recent-posts .media-container .media-container__item {
    width: 80%;
  }
}

.text-block-container {
  width: 880px;
  max-width: 100%;
}

.text-block-container--center {
  margin: 0 auto;
}

.text-block-container--larger {
  width: 960px;
}

.field-label, .footnotes, .container-fluid label {
  color: #333;
  font-weight: 300;
  font-family: 'Poppins', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.gfield_label {
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  color: #333;
  font-size: 18px !important;
  font-weight: 300 !important;
}

.gform_wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.gform_wrapper .gform_validation_errors {
  display: none !important;
}

ul.tabs-menu a {
  display: block;
  line-height: 3;
  padding: 0px .7rem;
  margin: 0 2px -1px 2px;
  border: 1px solid #e1e4e5;
  background: #fff;
  overflow: hidden;
  float: left;
  text-transform: uppercase;
  font-family: Poppins,system-ui,BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
  font-weight: 300;
}

ul.tabs-menu a.active {
  color: #ea1c24;
  background: #e1e4e5;
}

ul.tabs-menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

ul.tabs-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  max-width: 100vw;
  overflow: hidden;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

@media (max-width: 81.24em) {
  ul.tabs-menu {
    font-size: 0.8rem;
  }
}

.gform_wrapper.gravity-theme .ginput_complex select {
  -webkit-appearance: menulist-button;
}

.c-media-object__controls ul li:nth-child(2) {
  -webkit-margin-start: 0.75rem;
          margin-inline-start: 0.75rem;
}
