/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}





.vgt-table.striped tbody tr:nth-of-type(odd){background-color:rgba(51,68,109,.03)}.vgt-right-align{text-align:right}.vgt-left-align{text-align:left}.vgt-center-align{text-align:center}.vgt-pull-left{float:left!important}.vgt-pull-right{float:right!important}.vgt-clearfix::after{display:block;content:"";clear:both}.vgt-responsive{width:100%;overflow-x:auto;position:relative}.vgt-text-disabled{color:#909399}.sr-only{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.vgt-wrap{position:relative}.vgt-fixed-header{position:absolute;z-index:10;overflow-x:auto}table.vgt-table{font-size:16px;border-collapse:collapse;background-color:#fff;width:100%;max-width:100%;table-layout:auto;border:1px solid #dcdfe6}table.vgt-table td{padding:.75em .75em .75em .75em;vertical-align:top;border-bottom:1px solid #dcdfe6;color:#606266}table.vgt-table tr.clickable{cursor:pointer}table.vgt-table tr.clickable:hover{background-color:#f1f5fd}.vgt-table th{padding:.75em 1.5em .75em .75em;vertical-align:middle;position:relative}.vgt-table th.sortable button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;position:absolute;top:0;left:0;width:100%;height:100%}.vgt-table th.sortable button:focus{outline:0}.vgt-table th.sortable button:after{content:"";position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-7px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #606266}.vgt-table th.sortable button:before{content:"";position:absolute;height:0;width:0;right:6px;top:50%;margin-bottom:-7px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #606266}.vgt-table th.line-numbers,.vgt-table th.vgt-checkbox-col{padding:0 .75em 0 .75em;color:#606266;border-right:1px solid #dcdfe6;word-wrap:break-word;width:25px;text-align:center;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table th.filter-th{padding:.75em .75em .75em .75em}.vgt-table th.vgt-row-header{border-bottom:2px solid #dcdfe6;border-top:2px solid #dcdfe6;background-color:#fafafb}.vgt-table th.vgt-row-header .triangle{width:24px;height:24px;border-radius:15%;position:relative;margin:0 8px}.vgt-table th.vgt-row-header .triangle:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid #606266;margin-left:-3px;transition:.3s ease transform}.vgt-table th.vgt-row-header .triangle.expand:after{transform:rotate(90deg)}.vgt-table thead th{color:#606266;vertical-align:bottom;border-bottom:1px solid #dcdfe6;padding-right:1.5em;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-table thead th.vgt-checkbox-col{vertical-align:middle}.vgt-table thead th.sorting-asc button:after{border-bottom:5px solid #409eff}.vgt-table thead th.sorting-desc button:before{border-top:5px solid #409eff}.vgt-input,.vgt-select{width:100%;height:32px;line-height:1;display:block;font-size:14px;font-weight:400;padding:6px 12px;color:#606266;border-radius:4px;box-sizing:border-box;background-image:none;background-color:#fff;border:1px solid #dcdfe6;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.vgt-input::placeholder,.vgt-select::placeholder{color:#606266;opacity:.3}.vgt-input:focus,.vgt-select:focus{outline:0;border-color:#409eff}.vgt-loading{position:absolute;width:100%;z-index:10;margin-top:117px}.vgt-loading__content{background-color:#c0dfff;color:#409eff;padding:7px 30px;border-radius:3px}.vgt-inner-wrap.is-loading{opacity:.5;pointer-events:none}.vgt-table.bordered td,.vgt-table.bordered th{border:1px solid #dcdfe6}.vgt-table.bordered th.vgt-row-header{border-bottom:3px solid #dcdfe6}.vgt-wrap.rtl{direction:rtl}.vgt-wrap.rtl .vgt-table thead th,.vgt-wrap.rtl .vgt-table.condensed thead th{padding-left:1.5em;padding-right:.75em}.vgt-wrap.rtl .vgt-table th.sorting-asc:after,.vgt-wrap.rtl .vgt-table th.sorting:after{margin-right:5px;margin-left:0}.vgt-wrap.rtl .vgt-table th.sortable:after,.vgt-wrap.rtl .vgt-table th.sortable:before{right:inherit;left:6px}.vgt-table.condensed td,.vgt-table.condensed th.vgt-row-header{padding:.4em .4em .4em .4em}@media (max-width:576px){.vgt-compact *{box-sizing:border-box}.vgt-compact tbody,.vgt-compact td,.vgt-compact tr{display:block;width:100%}.vgt-compact thead{display:none}.vgt-compact tr{margin-bottom:15px}.vgt-compact td{text-align:right;position:relative}.vgt-compact td:before{content:attr(data-label);position:relative;float:left;left:0;width:40%;padding-left:10px;font-weight:700;text-align:left}.vgt-compact th.line-numbers{width:100%!important;display:block;padding:.3em 1em!important}}.vgt-global-search{padding:5px 0;display:flex;flex-wrap:nowrap;align-items:stretch;border:1px solid #dcdfe6;border-bottom:0;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-global-search form{display:flex}.vgt-global-search form label{margin-top:3px}.vgt-global-search__input{position:relative;padding-left:40px;flex-grow:1}.vgt-global-search__input .input__icon{position:absolute;left:0;max-width:32px}.vgt-global-search__input .input__icon .magnifying-glass{margin-top:3px;margin-left:8px;display:block;width:16px;height:16px;border:2px solid #494949;position:relative;border-radius:50%}.vgt-global-search__input .input__icon .magnifying-glass:before{content:"";display:block;position:absolute;right:-7px;bottom:-5px;background:#494949;width:8px;height:4px;border-radius:2px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg)}.vgt-global-search__actions{margin-left:10px}.vgt-selection-info-row{background:#fdf9e8;padding:5px 16px;font-size:13px;border-top:1px solid #dcdfe6;border-left:1px solid #dcdfe6;border-right:1px solid #dcdfe6;color:#d3aa3b;font-weight:700}.vgt-selection-info-row a{font-weight:700;display:inline-block;margin-left:10px}.vgt-wrap__actions-footer{border:1px solid #dcdfe6}.vgt-wrap__footer{color:#606266;font-size:1.1rem;padding:1em;border:1px solid #dcdfe6;background:linear-gradient(#f4f5f8,#f1f3f6)}.vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap__footer .footer__row-count__label,.vgt-wrap__footer .footer__row-count__select{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__row-count__label{font-size:1.1rem}.vgt-wrap__footer .footer__row-count__select{font-size:1.1rem;background-color:transparent;width:auto;padding:0;border:0;border-radius:0;height:auto;margin-left:8px;color:#606266;font-weight:700;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:5px}.vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap__footer .footer__row-count__select:focus{outline:0;border-color:#409eff}.vgt-wrap__footer .footer__row-count::after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border-top:6px solid #606266;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:none;pointer-events:none}.vgt-wrap__footer .footer__navigation{font-size:1.1rem}.vgt-wrap__footer .footer__navigation>button:first-of-type{margin-right:16px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-btn,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;vertical-align:middle;color:#909399}.vgt-wrap__footer .footer__navigation__page-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;text-decoration:none;color:#606266;font-weight:700;white-space:nowrap;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn:hover{cursor:pointer}.vgt-wrap__footer .footer__navigation__page-btn.disabled,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover{opacity:.5;cursor:not-allowed}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#606266}.vgt-wrap__footer .footer__navigation__page-btn span{display:inline-block;vertical-align:middle;font-size:1.1rem}.vgt-wrap__footer .footer__navigation__page-btn .chevron{width:24px;height:24px;border-radius:15%;position:relative;margin:0;display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-btn .chevron:after{content:"";position:absolute;display:block;left:50%;top:50%;margin-top:-6px;border-top:6px solid transparent;border-bottom:6px solid transparent}.vgt-wrap__footer .footer__navigation__page-btn .chevron.left::after{border-right:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__page-btn .chevron.right::after{border-left:6px solid #409eff;margin-left:-3px}.vgt-wrap__footer .footer__navigation__info,.vgt-wrap__footer .footer__navigation__page-info{display:inline-block;margin:0 16px}.vgt-wrap__footer .footer__navigation__page-info span{display:inline-block;vertical-align:middle}.vgt-wrap__footer .footer__navigation__page-info__current-entry{width:30px;text-align:center;vertical-align:middle;display:inline-block;margin:0 10px;font-weight:700}@media only screen and (max-width:750px){.vgt-wrap__footer .footer__navigation__info{display:none}.vgt-wrap__footer .footer__navigation__page-btn{margin-left:16px}}.vgt-table.nocturnal{border:1px solid #435169;background-color:#324057}.vgt-table.nocturnal tr.clickable:hover{background-color:#445168}.vgt-table.nocturnal td{border-bottom:1px solid #435169;color:#c7ced8}.vgt-table.nocturnal th.line-numbers,.vgt-table.nocturnal th.vgt-checkbox-col{color:#c7ced8;border-right:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th{color:#c7ced8;border-bottom:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-table.nocturnal thead th.sortable:before{border-top-color:#3e5170}.vgt-table.nocturnal thead th.sortable:after{border-bottom-color:#3e5170}.vgt-table.nocturnal thead th.sortable.sorting-asc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.nocturnal thead th.sortable.sorting-desc{color:#fff}.vgt-table.nocturnal thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.nocturnal.bordered td,.vgt-table.nocturnal.bordered th{border:1px solid #435169}.vgt-table.nocturnal .vgt-input,.vgt-table.nocturnal .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-table.nocturnal .vgt-input::placeholder,.vgt-table.nocturnal .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-wrap.nocturnal .vgt-wrap__footer{color:#c7ced8;border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count{position:relative}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__label{color:#8290a7}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select{color:#c7ced8;background:#232d3f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:10px;border-radius:3px;text-align:center}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__row-count::after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border-top:6px solid #c7ced8;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:none;pointer-events:none}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn{color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#c7ced8}.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.nocturnal .vgt-wrap__footer .footer__navigation__page-info{color:#8290a7}.vgt-wrap.nocturnal .vgt-global-search{border:1px solid #435169;background:linear-gradient(#2c394f,#2c394f)}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select{color:#c7ced8;background-color:#232d3f;border:1px solid #435169}.vgt-wrap.nocturnal .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.nocturnal .vgt-global-search__input .vgt-select::placeholder{color:#c7ced8;opacity:.3}.vgt-table.black-rhino{border:1px solid #435169;background-color:#dfe5ee}.vgt-table.black-rhino tr.clickable:hover{background-color:#fff}.vgt-table.black-rhino td{border-bottom:1px solid #bbc5d6;color:#49515e}.vgt-table.black-rhino th.line-numbers,.vgt-table.black-rhino th.vgt-checkbox-col{color:#dae2f0;border-right:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th{color:#dae2f0;text-shadow:1px 1px #3e5170;border-bottom:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-table.black-rhino thead th.sortable:before{border-top-color:#607498}.vgt-table.black-rhino thead th.sortable:after{border-bottom-color:#607498}.vgt-table.black-rhino thead th.sortable.sorting-asc{color:#fff}.vgt-table.black-rhino thead th.sortable.sorting-asc:after{border-bottom-color:#409eff}.vgt-table.black-rhino thead th.sortable.sorting-desc:before{border-top-color:#409eff}.vgt-table.black-rhino.bordered td{border:1px solid #bbc5d6}.vgt-table.black-rhino.bordered th{border:1px solid #435169}.vgt-table.black-rhino .vgt-input,.vgt-table.black-rhino .vgt-select{color:#dae2f0;background-color:#34445f;border:1px solid transparent}.vgt-table.black-rhino .vgt-input::placeholder,.vgt-table.black-rhino .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-wrap.black-rhino .vgt-wrap__footer{color:#dae2f0;border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select{color:#49515e;background:#34445f;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-right:15px;padding-left:5px;border-radius:3px}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count__select:focus{border-color:#409eff}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__row-count::after{content:"";display:block;position:absolute;height:0;width:0;right:6px;top:50%;margin-top:-1px;border-top:6px solid #49515e;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:none;pointer-events:none}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn{color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#dae2f0}.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.black-rhino .vgt-wrap__footer .footer__navigation__page-info{color:#dae2f0}.vgt-wrap.black-rhino .vgt-global-search{border:1px solid #435169;background:linear-gradient(#4c5c79,#4e5d7c)}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .input__icon .magnifying-glass:before{background:#3f4c63}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select{color:#dae2f0;background-color:#44516c;border:1px solid transparent}.vgt-wrap.black-rhino .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.black-rhino .vgt-global-search__input .vgt-select::placeholder{color:#dae2f0;opacity:.3}.vgt-inner-wrap{border-radius:.25rem;box-shadow:0 1px 3px 0 rgba(50,50,93,.1),0 1px 2px 0 rgba(50,50,93,.06)}.vgt-table.polar-bear{border-spacing:0;border-collapse:separate;font-size:1rem;background-color:#fff;border:1px solid #e3e8ee;border-bottom:none;border-radius:.25rem}.vgt-table.polar-bear td{padding:1em .75em 1em .75em;border-bottom:1px solid #e4ebf3;color:#525f7f}.vgt-table.polar-bear td.vgt-right-align{text-align:right}.vgt-table.polar-bear th.line-numbers,.vgt-table.polar-bear th.vgt-checkbox-col{color:#394567;border-right:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th{color:#667b94;font-weight:600;border-bottom:1px solid #e3e8ee;background:#f7fafc}.vgt-table.polar-bear thead th.sorting-asc,.vgt-table.polar-bear thead th.sorting-desc{color:#5e72e4}.vgt-table.polar-bear thead th.sorting-desc:before{border-top:5px solid #7485e8}.vgt-table.polar-bear thead th.sorting-asc:after{border-bottom:5px solid #7485e8}.vgt-table.polar-bear thead th .vgt-input,.vgt-table.polar-bear thead th .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-table.polar-bear thead th .vgt-input:focus,.vgt-table.polar-bear thead th .vgt-select:focus{outline:0;border-color:#cae0fe}.vgt-table.polar-bear thead tr:first-child th:first-child{border-top-left-radius:.25rem}.vgt-table.polar-bear thead tr:first-child th:last-child{border-top-right-radius:.25rem}.vgt-table.polar-bear.bordered td{border:1px solid #e3e8ee;background:#fff}.vgt-table.polar-bear.bordered th{border:1px solid #e3e8ee}.vgt-wrap.polar-bear .vgt-wrap__footer{color:#394567;border:1px solid #e3e8ee;border-bottom:0;border-top:0;background:linear-gradient(#f7fafc,#f7fafc)}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count{position:relative;padding-right:3px}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__label{color:#98a5b9}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select{text-align:center;color:#525f7f;background:#fff;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:5px;padding-right:30px;border-radius:3px;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select::-ms-expand{display:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count__select:focus{border-color:#5e72e4}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__row-count::after{content:"";display:block;position:absolute;height:0;width:0;right:15px;top:50%;margin-top:-3px;border-top:6px solid #525f7f;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:none;pointer-events:none}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn{color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.left:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.left:after{border-right-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled .chevron.right:after,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-btn.disabled:hover .chevron.right:after{border-left-color:#394567}.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__info,.vgt-wrap.polar-bear .vgt-wrap__footer .footer__navigation__page-info{color:#394567}.vgt-wrap.polar-bear .vgt-global-search{border:1px solid #e3e8ee;border-bottom:0;border-top-left-radius:3px;border-top-right-radius:3px;background:#f7fafc}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass{border:2px solid #dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .input__icon .magnifying-glass:before{background:#dde3ea}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select{height:2.75em;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);border:1px solid #e4ebf3}.vgt-wrap.polar-bear .vgt-global-search__input .vgt-input::placeholder,.vgt-wrap.polar-bear .vgt-global-search__input .vgt-select::placeholder{color:#394567;opacity:.3}@charset "UTF-8";

/** Colors */

/* line 128, resources/assets/styles/common/_settings.scss */

.text-yellow {
  color: #F3DEB7 !important;
}

/* line 129, resources/assets/styles/common/_settings.scss */

.text-yellow-overwrite {
  color: #F3DEB7 !important;
}

/* line 130, resources/assets/styles/common/_settings.scss */

.text-white {
  color: #FFFFFF;
}

/* line 131, resources/assets/styles/common/_settings.scss */

.bg-yellow {
  background-color: #F3DEB7;
}

/*
    @media only screen and (max-width: 600px) {
      #desktop-hero-video {  display: none; }
      #mobile-hero-video {  display: block; }
    }
    @media only screen and (min-width: 601px) {
      #desktop-hero-video {  display: block; }
      #mobile-hero-video {  display: none; }
    }
*/

/* line 149, resources/assets/styles/common/_settings.scss */

.cls-1 {
  fill: #16254c;
}

/* line 153, resources/assets/styles/common/_settings.scss */

.cls-2,
.cls-3 {
  fill: #154565;
}

/* line 157, resources/assets/styles/common/_settings.scss */

.cls-4 {
  fill: #fff;
  font-family: Arsenal-Bold, Arsenal;
  font-size: 61px;
  font-weight: 700;
}

/* line 164, resources/assets/styles/common/_settings.scss */

.cls-5,
.cls-3 {
  opacity: .8;
}

/* line 167, resources/assets/styles/common/_settings.scss */

.cursor-pointer {
  cursor: pointer;
}

/* line 168, resources/assets/styles/common/_settings.scss */

.apartment-hover {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* line 169, resources/assets/styles/common/_settings.scss */

.apartment-hover:hover {
  opacity: 1;
}

/* line 170, resources/assets/styles/common/_settings.scss */

.house-hover {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* line 171, resources/assets/styles/common/_settings.scss */

.house-hover:hover {
  opacity: 0.8;
}

/* line 181, resources/assets/styles/common/_settings.scss */

body.new-dark-gray * {
  color: #F3DEB7 !important;
}

/* line 182, resources/assets/styles/common/_settings.scss */

body.new-dark-gray .menu-item a:before {
  background-color: #F3DEB7 !important;
}

/* line 183, resources/assets/styles/common/_settings.scss */

body.new-dark-gray .header .language-switcher .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) !important;
}

/* line 184, resources/assets/styles/common/_settings.scss */

body.new-dark-gray .section--large-image-text p {
  color: #FFFFFF !important;
}

/* line 186, resources/assets/styles/common/_settings.scss */

body.swamp-light * {
  color: #F3DEB7 !important;
}

/* line 187, resources/assets/styles/common/_settings.scss */

body.swamp-light .menu-item a:before {
  background-color: #F3DEB7 !important;
}

/* line 188, resources/assets/styles/common/_settings.scss */

body.swamp-light .header .language-switcher .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) !important;
}

/* line 191, resources/assets/styles/common/_settings.scss */

body.swamp * {
  color: #F3DEB7 !important;
}

/* line 192, resources/assets/styles/common/_settings.scss */

body.swamp .header .language-switcher .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) !important;
}

/* line 193, resources/assets/styles/common/_settings.scss */

body.swamp .page-template .main .header--swamp .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #717C76;
}

/* line 197, resources/assets/styles/common/_settings.scss */

body.dark-gray * {
  color: #F3DEB7 !important;
}

/* line 198, resources/assets/styles/common/_settings.scss */

body.dark-gray .menu-item a:before {
  background-color: #F3DEB7 !important;
}

/* line 199, resources/assets/styles/common/_settings.scss */

body.dark-gray .header .language-switcher .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) !important;
}

/* line 202, resources/assets/styles/common/_settings.scss */

body.template-developer .section--large-image-text .image-container:after {
  background-color: rgba(255, 255, 255, 0.7);
}

/* line 204, resources/assets/styles/common/_settings.scss */

body.template-developer .section--large-image-text .image-container .content * {
  color: #17254c !important;
}

/* line 206, resources/assets/styles/common/_settings.scss */

body.light-blue section * {
  color: #285c61 !important;
}

/* line 207, resources/assets/styles/common/_settings.scss */

body.light-blue section .button--yellow,
body.light-blue section form.wpcf7-form .button,
form.wpcf7-form body.light-blue section .button,
body.light-blue section form.wpcf7-form .comment-form input[type="submit"],
form.wpcf7-form .comment-form body.light-blue section input[type="submit"],
body.light-blue section .comment-form form.wpcf7-form input[type="submit"],
.comment-form form.wpcf7-form body.light-blue section input[type="submit"],
body.light-blue section form.wpcf7-form .search-form .search-submit,
form.wpcf7-form .search-form body.light-blue section .search-submit,
body.light-blue section .search-form form.wpcf7-form .search-submit,
.search-form form.wpcf7-form body.light-blue section .search-submit {
  border-color: #285c61 !important;
}

/** Import everything from autoload */

/**
 * Foundation for Sites by ZURB
 * Version 6.4.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */

/* Document
       ========================================================================== */

/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */

/* line 59, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
       ========================================================================== */

/**
     * Remove the margin in all browsers (opinionated).
     */

/* line 83, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

body {
  margin: 0;
}

/**
     * Add the correct display in IE 9-.
     */

/* line 91, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */

/* line 105, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

/* line 198, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */

/* line 207, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

figure {
  margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */

/* line 221, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */

/* line 231, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

main {
  display: block;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */

/* line 251, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
       ========================================================================== */

/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */

/* line 266, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */

/* line 276, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
       ========================================================================== */

/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */

/* line 291, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */

/* line 301, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

b,
strong {
  font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */

/* line 310, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */

/* line 320, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */

/* line 331, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */

/* line 339, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

mark {
  background-color: #ff0;
  color: #000;
}

/**
     * Add the correct font size in all browsers.
     */

/* line 348, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */

/* line 357, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 365, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

sub {
  bottom: -0.25em;
}

/* line 369, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

/* line 382, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */

/* line 391, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Remove the border on images inside links in IE 10-.
     */

/* line 400, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

img {
  border-style: none;
}

/**
     * Hide the overflow in IE.
     */

/* line 408, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
       ========================================================================== */

/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */

/* line 422, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     */

/* line 442, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button {
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */

/* line 451, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */

/* line 462, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/* line 469, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

/* line 478, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* line 487, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */

/* line 496, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */

/* line 505, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */

/* line 515, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */

/* line 525, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

/* line 533, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */

/* line 544, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */

/* line 553, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */

/* line 566, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */

/* line 580, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */

/* line 589, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

textarea {
  overflow: auto;
}

/* Interactive
       ========================================================================== */

/*
     * Add the correct display in Edge, IE, and Firefox.
     */

/* line 602, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */

/* line 610, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

summary {
  display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */

/* line 618, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

menu {
  display: block;
}

/* Scripting
       ========================================================================== */

/**
     * Add the correct display in IE 9-.
     */

/* line 651, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */

/* line 659, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

template {
  display: none;
}

/* Hidden
       ========================================================================== */

/**
     * Add the correct display in IE 10-.
     */

/* line 672, node_modules/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss */

[hidden] {
  display: none;
}

/* line 139, node_modules/foundation-sites/scss/_global.scss */

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=93.75em";
}

/* line 143, node_modules/foundation-sites/scss/_global.scss */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

/* line 149, node_modules/foundation-sites/scss/_global.scss */

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* line 156, node_modules/foundation-sites/scss/_global.scss */

body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  font-family: "TT-Norms", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #222222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 173, node_modules/foundation-sites/scss/_global.scss */

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* line 185, node_modules/foundation-sites/scss/_global.scss */

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

/* line 192, node_modules/foundation-sites/scss/_global.scss */

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

/* line 202, node_modules/foundation-sites/scss/_global.scss */

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

/* line 210, node_modules/foundation-sites/scss/_global.scss */

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

/* line 202, node_modules/foundation-sites/scss/util/_mixins.scss */

[data-whatinput='mouse'] button {
  outline: 0;
}

/* line 222, node_modules/foundation-sites/scss/_global.scss */

pre {
  overflow: auto;
}

/* line 227, node_modules/foundation-sites/scss/_global.scss */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

/* line 236, node_modules/foundation-sites/scss/_global.scss */

.is-visible {
  display: block !important;
}

/* line 240, node_modules/foundation-sites/scss/_global.scss */

.is-hidden {
  display: none !important;
}

/* line 13, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

@media print, screen and (min-width: 40em) {
  /* line 13, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

/* line 16, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin: 0 auto;
}

@media print, screen and (min-width: 40em) {
  /* line 16, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

/* line 20, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

/* line 26, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x {
  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;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}

/* line 34, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell.auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

/* line 38, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell.shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* line 44, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .auto {
  width: auto;
}

/* line 48, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .shrink {
  width: auto;
}

/* line 64, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  /* line 64, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-shrink,
  .grid-x > .medium-full,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 64, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-shrink,
  .grid-x > .large-full,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 75em) {
  /* line 64, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-shrink,
  .grid-x > .xlarge-full,
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 64, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-shrink,
  .grid-x > .xxlarge-full,
  .grid-x > .xxlarge-1,
  .grid-x > .xxlarge-2,
  .grid-x > .xxlarge-3,
  .grid-x > .xxlarge-4,
  .grid-x > .xxlarge-5,
  .grid-x > .xxlarge-6,
  .grid-x > .xxlarge-7,
  .grid-x > .xxlarge-8,
  .grid-x > .xxlarge-9,
  .grid-x > .xxlarge-10,
  .grid-x > .xxlarge-11,
  .grid-x > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-1 {
  width: 8.33333%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-2 {
  width: 16.66667%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-3 {
  width: 25%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-4 {
  width: 33.33333%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-5 {
  width: 41.66667%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-6 {
  width: 50%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-7 {
  width: 58.33333%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-8 {
  width: 66.66667%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-9 {
  width: 75%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-10 {
  width: 83.33333%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-11 {
  width: 91.66667%;
}

/* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 72, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }

  /* line 77, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-1 {
    width: 8.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-2 {
    width: 16.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-3 {
    width: 25%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-4 {
    width: 33.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-5 {
    width: 41.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-6 {
    width: 50%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-7 {
    width: 58.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-8 {
    width: 66.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-9 {
    width: 75%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-10 {
    width: 83.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-11 {
    width: 91.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 72, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }

  /* line 77, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-1 {
    width: 8.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-2 {
    width: 16.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-3 {
    width: 25%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-4 {
    width: 33.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-5 {
    width: 41.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-6 {
    width: 50%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-7 {
    width: 58.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-8 {
    width: 66.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-9 {
    width: 75%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-10 {
    width: 83.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-11 {
    width: 91.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 72, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }

  /* line 77, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-3 {
    width: 25%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-6 {
    width: 50%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-9 {
    width: 75%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 72, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }

  /* line 77, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-3 {
    width: 25%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-6 {
    width: 50%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-9 {
    width: 75%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 85, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}

/* line 92, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

/* line 97, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

/* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

/* line 132, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 139, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}

/* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .auto {
  width: auto;
}

/* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .shrink {
  width: auto;
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-2 {
  width: calc(16.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-4 {
  width: calc(33.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-5 {
  width: calc(41.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-7 {
  width: calc(58.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-8 {
  width: calc(66.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-10 {
  width: calc(83.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-11 {
  width: calc(91.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .auto {
    width: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .shrink {
    width: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-2 {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-4 {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-5 {
    width: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-7 {
    width: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-8 {
    width: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-10 {
    width: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-11 {
    width: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }

  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-auto {
    width: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-shrink {
    width: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-2 {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-4 {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-5 {
    width: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-7 {
    width: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-8 {
    width: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-10 {
    width: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-11 {
    width: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-auto {
    width: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-shrink {
    width: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-2 {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-4 {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-5 {
    width: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-7 {
    width: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-8 {
    width: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-10 {
    width: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-11 {
    width: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-auto {
    width: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-1 {
    width: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-2 {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-4 {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-5 {
    width: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-7 {
    width: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-8 {
    width: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-10 {
    width: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-11 {
    width: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-1 {
    width: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-2 {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-4 {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-5 {
    width: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-7 {
    width: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-8 {
    width: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-10 {
    width: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-11 {
    width: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

/* line 167, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 167, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

/* line 173, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 173, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

/* line 178, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 178, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-1 > .cell {
  width: 100%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-2 > .cell {
  width: 50%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-3 > .cell {
  width: 33.33333%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-4 > .cell {
  width: 25%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-5 > .cell {
  width: 20%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-6 > .cell {
  width: 16.66667%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-7 > .cell {
  width: 14.28571%;
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-1 > .cell {
    width: 100%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-2 > .cell {
    width: 50%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-3 > .cell {
    width: 33.33333%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-4 > .cell {
    width: 25%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-5 > .cell {
    width: 20%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-6 > .cell {
    width: 16.66667%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-7 > .cell {
    width: 14.28571%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .medium-up-8 > .cell {
    width: 12.5%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-1 > .cell {
    width: 100%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-2 > .cell {
    width: 50%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-3 > .cell {
    width: 33.33333%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-4 > .cell {
    width: 25%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-5 > .cell {
    width: 20%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-6 > .cell {
    width: 16.66667%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-7 > .cell {
    width: 14.28571%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .large-up-8 > .cell {
    width: 12.5%;
  }
}

@media screen and (min-width: 75em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-1 > .cell {
    width: 100%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-2 > .cell {
    width: 50%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-3 > .cell {
    width: 33.33333%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-4 > .cell {
    width: 25%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-5 > .cell {
    width: 20%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-6 > .cell {
    width: 16.66667%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-7 > .cell {
    width: 14.28571%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-1 > .cell {
    width: 100%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-2 > .cell {
    width: 50%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-3 > .cell {
    width: 33.33333%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-4 > .cell {
    width: 25%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-5 > .cell {
    width: 20%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-6 > .cell {
    width: 16.66667%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-7 > .cell {
    width: 14.28571%;
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66667% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571% - 1.25rem);
}

/* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.66667% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }

  /* line 30, node_modules/foundation-sites/scss/xy-grid/_layout.scss */

  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

/* line 224, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}

/* line 28, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-1 {
  width: 8.33333%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-2 {
  width: 16.66667%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-3 {
  width: 25%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-4 {
  width: 33.33333%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-5 {
  width: 41.66667%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-6 {
  width: 50%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-7 {
  width: 58.33333%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-8 {
  width: 66.66667%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-9 {
  width: 75%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-10 {
  width: 83.33333%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-11 {
  width: 91.66667%;
}

/* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-margin-collapse > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

/* line 230, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}

/* line 67, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 224, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 28, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 230, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 67, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 224, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 28, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 230, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 67, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 75em) {
  /* line 224, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 28, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 230, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 67, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 224, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 28, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }

  /* line 43, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }

  /* line 52, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 230, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  /* line 67, node_modules/foundation-sites/scss/xy-grid/_collapse.scss */

  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-0 {
  margin-left: 0%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-1 {
  margin-left: 8.33333%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-2 {
  margin-left: 16.66667%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.66667% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-3 {
  margin-left: 25%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-4 {
  margin-left: 33.33333%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.33333% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-5 {
  margin-left: 41.66667%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.66667% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-6 {
  margin-left: 50%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-7 {
  margin-left: 58.33333%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.33333% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-8 {
  margin-left: 66.66667%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.66667% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-9 {
  margin-left: 75%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-10 {
  margin-left: 83.33333%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.33333% + 0.625rem);
}

/* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.small-offset-11 {
  margin-left: 91.66667%;
}

/* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.66667% + 0.625rem);
}

@media print, screen and (min-width: 40em) {
  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-0 {
    margin-left: 0%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-3 {
    margin-left: 25%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-6 {
    margin-left: 50%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-9 {
    margin-left: 75%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-0 {
    margin-left: 0%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-3 {
    margin-left: 25%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-6 {
    margin-left: 50%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-9 {
    margin-left: 75%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-0 {
    margin-left: 0%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-3 {
    margin-left: 25%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-6 {
    margin-left: 50%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-9 {
    margin-left: 75%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-0 {
    margin-left: 0%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-3 {
    margin-left: 25%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-6 {
    margin-left: 50%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-9 {
    margin-left: 75%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }

  /* line 244, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 248, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

/* line 266, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

/* line 270, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .cell {
  width: auto;
}

/* line 274, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .auto {
  height: auto;
}

/* line 278, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .shrink {
  height: auto;
}

/* line 292, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  /* line 292, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-shrink,
  .grid-y > .medium-full,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 292, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-shrink,
  .grid-y > .large-full,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 75em) {
  /* line 292, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-shrink,
  .grid-y > .xlarge-full,
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 292, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-shrink,
  .grid-y > .xxlarge-full,
  .grid-y > .xxlarge-1,
  .grid-y > .xxlarge-2,
  .grid-y > .xxlarge-3,
  .grid-y > .xxlarge-4,
  .grid-y > .xxlarge-5,
  .grid-y > .xxlarge-6,
  .grid-y > .xxlarge-7,
  .grid-y > .xxlarge-8,
  .grid-y > .xxlarge-9,
  .grid-y > .xxlarge-10,
  .grid-y > .xxlarge-11,
  .grid-y > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-1 {
  height: 8.33333%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-2 {
  height: 16.66667%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-3 {
  height: 25%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-4 {
  height: 33.33333%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-5 {
  height: 41.66667%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-6 {
  height: 50%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-7 {
  height: 58.33333%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-8 {
  height: 66.66667%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-9 {
  height: 75%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-10 {
  height: 83.33333%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-11 {
  height: 91.66667%;
}

/* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y > .small-12 {
  height: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 299, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }

  /* line 304, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-shrink {
    height: auto;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-1 {
    height: 8.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-2 {
    height: 16.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-3 {
    height: 25%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-4 {
    height: 33.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-5 {
    height: 41.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-6 {
    height: 50%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-7 {
    height: 58.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-8 {
    height: 66.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-9 {
    height: 75%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-10 {
    height: 83.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-11 {
    height: 91.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .medium-12 {
    height: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 299, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }

  /* line 304, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-shrink {
    height: auto;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-1 {
    height: 8.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-2 {
    height: 16.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-3 {
    height: 25%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-4 {
    height: 33.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-5 {
    height: 41.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-6 {
    height: 50%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-7 {
    height: 58.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-8 {
    height: 66.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-9 {
    height: 75%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-10 {
    height: 83.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-11 {
    height: 91.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .large-12 {
    height: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 299, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }

  /* line 304, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-shrink {
    height: auto;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-1 {
    height: 8.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-2 {
    height: 16.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-3 {
    height: 25%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-4 {
    height: 33.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-5 {
    height: 41.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-6 {
    height: 50%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-7 {
    height: 58.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-8 {
    height: 66.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-9 {
    height: 75%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-10 {
    height: 83.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-11 {
    height: 91.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xlarge-12 {
    height: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 299, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }

  /* line 304, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-shrink {
    height: auto;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-1 {
    height: 8.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-2 {
    height: 16.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-3 {
    height: 25%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-4 {
    height: 33.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-5 {
    height: 41.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-6 {
    height: 50%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-7 {
    height: 58.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-8 {
    height: 66.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-9 {
    height: 75%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-10 {
    height: 83.33333%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-11 {
    height: 91.66667%;
  }

  /* line 312, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}

/* line 323, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 323, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

/* line 328, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 328, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

/* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

/* line 132, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 139, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

/* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .auto {
  height: auto;
}

/* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .shrink {
  height: auto;
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }

  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

/* line 342, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100vw;
}

/* line 346, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell .grid-frame {
  width: 100%;
}

/* line 350, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

/* line 354, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

/* line 359, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
}

/* line 81, node_modules/foundation-sites/scss/xy-grid/_frame.scss */

.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  /* line 366, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }

  /* line 370, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .medium-grid-frame {
    width: 100%;
  }

  /* line 374, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }

  /* line 378, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }

  /* line 81, node_modules/foundation-sites/scss/xy-grid/_frame.scss */

  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 382, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 366, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }

  /* line 370, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .large-grid-frame {
    width: 100%;
  }

  /* line 374, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }

  /* line 378, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }

  /* line 81, node_modules/foundation-sites/scss/xy-grid/_frame.scss */

  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 382, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media screen and (min-width: 75em) {
  /* line 366, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }

  /* line 370, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .xlarge-grid-frame {
    width: 100%;
  }

  /* line 374, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }

  /* line 378, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }

  /* line 81, node_modules/foundation-sites/scss/xy-grid/_frame.scss */

  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 382, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 366, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }

  /* line 370, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .xxlarge-grid-frame {
    width: 100%;
  }

  /* line 374, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }

  /* line 378, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }

  /* line 81, node_modules/foundation-sites/scss/xy-grid/_frame.scss */

  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  /* line 382, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

/* line 389, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100vh;
}

@media print, screen and (min-width: 40em) {
  /* line 395, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 395, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media screen and (min-width: 75em) {
  /* line 395, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 395, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-y.xxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

/* line 403, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.cell .grid-y.grid-frame {
  height: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 407, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 407, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

@media screen and (min-width: 75em) {
  /* line 407, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 407, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}

/* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 128, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

/* line 132, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 139, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

/* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .auto {
  height: auto;
}

/* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .shrink {
  height: auto;
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.25rem);
}

/* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }

  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 104, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }

  /* line 108, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }

  /* line 116, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

/* line 415, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}

@media print, screen and (min-width: 40em) {
  /* line 415, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 415, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 415, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 415, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 40em) {
  /* line 419, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 419, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  /* line 419, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 93.75em) {
  /* line 419, node_modules/foundation-sites/scss/xy-grid/_classes.scss */

  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

/* line 256, node_modules/foundation-sites/scss/typography/_base.scss */

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* line 280, node_modules/foundation-sites/scss/typography/_base.scss */

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

/* line 289, node_modules/foundation-sites/scss/typography/_base.scss */

em,
i {
  font-style: italic;
  line-height: inherit;
}

/* line 296, node_modules/foundation-sites/scss/typography/_base.scss */

strong,
b {
  font-weight: 500;
  line-height: inherit;
}

/* line 303, node_modules/foundation-sites/scss/typography/_base.scss */

small {
  font-size: 80%;
  line-height: inherit;
}

/* line 309, node_modules/foundation-sites/scss/typography/_base.scss */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "TT-Norms", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: inherit;
  text-rendering: optimizeLegibility;
}

/* line 321, node_modules/foundation-sites/scss/typography/_base.scss */

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h1,
.h1 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h2,
.h2 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h3,
.h3 {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h4,
.h4 {
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h5,
.h5 {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

h6,
.h6 {
  font-size: 0.6875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h1,
  .h1 {
    font-size: 1.6875rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h2,
  .h2 {
    font-size: 1.6875rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h3,
  .h3 {
    font-size: 1rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h4,
  .h4 {
    font-size: 0.9375rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h5,
  .h5 {
    font-size: 0.875rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h6,
  .h6 {
    font-size: 0.8125rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h1,
  .h1 {
    font-size: 2.25rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h2,
  .h2 {
    font-size: 1.875rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h3,
  .h3 {
    font-size: 1.125rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h4,
  .h4 {
    font-size: 1rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h5,
  .h5 {
    font-size: 0.9375rem;
  }

  /* line 332, node_modules/foundation-sites/scss/typography/_base.scss */

  h6,
  .h6 {
    font-size: 0.875rem;
  }
}

/* line 371, node_modules/foundation-sites/scss/typography/_base.scss */

a {
  line-height: inherit;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

/* line 378, node_modules/foundation-sites/scss/typography/_base.scss */

a:hover,
a:focus {
  color: #E9B89D;
}

/* line 386, node_modules/foundation-sites/scss/typography/_base.scss */

a img {
  border: 0;
}

/* line 392, node_modules/foundation-sites/scss/typography/_base.scss */

hr {
  clear: both;
  max-width: 62.5rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

/* line 406, node_modules/foundation-sites/scss/typography/_base.scss */

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.8;
}

/* line 415, node_modules/foundation-sites/scss/typography/_base.scss */

li {
  font-size: inherit;
}

/* line 420, node_modules/foundation-sites/scss/typography/_base.scss */

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

/* line 426, node_modules/foundation-sites/scss/typography/_base.scss */

ol {
  margin-left: 1.25rem;
}

/* line 432, node_modules/foundation-sites/scss/typography/_base.scss */

ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

/* line 439, node_modules/foundation-sites/scss/typography/_base.scss */

dl {
  margin-bottom: 1rem;
}

/* line 442, node_modules/foundation-sites/scss/typography/_base.scss */

dl dt {
  margin-bottom: 0.3rem;
  font-weight: 500;
}

/* line 449, node_modules/foundation-sites/scss/typography/_base.scss */

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}

/* line 454, node_modules/foundation-sites/scss/typography/_base.scss */

blockquote,
blockquote p {
  line-height: 1.8;
  color: #464646;
}

/* line 461, node_modules/foundation-sites/scss/typography/_base.scss */

cite {
  display: block;
  font-size: 0.8125rem;
  color: #464646;
}

/* line 466, node_modules/foundation-sites/scss/typography/_base.scss */

cite:before {
  content: "\2014   ";
}

/* line 472, node_modules/foundation-sites/scss/typography/_base.scss */

abbr,
abbr[title] {
  border-bottom: 1px dotted #000000;
  cursor: help;
  text-decoration: none;
}

/* line 479, node_modules/foundation-sites/scss/typography/_base.scss */

figure {
  margin: 0;
}

/* line 484, node_modules/foundation-sites/scss/typography/_base.scss */

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #FAFAFA;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 300;
  color: #000000;
}

/* line 496, node_modules/foundation-sites/scss/typography/_base.scss */

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #FAFAFA;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000000;
}

/* line 48, node_modules/foundation-sites/scss/typography/_helpers.scss */

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #464646;
}

/* line 58, node_modules/foundation-sites/scss/typography/_helpers.scss */

.lead {
  font-size: 125%;
  line-height: 1.6;
}

/* line 64, node_modules/foundation-sites/scss/typography/_helpers.scss */

.stat {
  font-size: 2.5rem;
  line-height: 1;
}

/* line 68, node_modules/foundation-sites/scss/typography/_helpers.scss */

p + .stat {
  margin-top: -1rem;
}

/* line 75, node_modules/foundation-sites/scss/typography/_helpers.scss */

ul.no-bullet,
ul.comment-list,
ol.no-bullet,
ol.comment-list {
  margin-left: 0;
  list-style: none;
}

/* line 15, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

/* line 15, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

/* line 15, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

/* line 15, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

@media print, screen and (min-width: 40em) {
  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

  .medium-text-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

  .large-text-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 75em) {
  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

  .xlarge-text-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

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

  /* line 10, node_modules/foundation-sites/scss/typography/_alignment.scss */

  .xxlarge-text-justify {
    text-align: justify;
  }
}

/* line 14, node_modules/foundation-sites/scss/typography/_print.scss */

.show-for-print {
  display: none !important;
}

@media print {
  /* line 17, node_modules/foundation-sites/scss/typography/_print.scss */

  * {
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }

  /* line 28, node_modules/foundation-sites/scss/typography/_print.scss */

  .show-for-print {
    display: block !important;
  }

  /* line 29, node_modules/foundation-sites/scss/typography/_print.scss */

  .hide-for-print {
    display: none !important;
  }

  /* line 31, node_modules/foundation-sites/scss/typography/_print.scss */

  table.show-for-print {
    display: table !important;
  }

  /* line 32, node_modules/foundation-sites/scss/typography/_print.scss */

  thead.show-for-print {
    display: table-header-group !important;
  }

  /* line 33, node_modules/foundation-sites/scss/typography/_print.scss */

  tbody.show-for-print {
    display: table-row-group !important;
  }

  /* line 34, node_modules/foundation-sites/scss/typography/_print.scss */

  tr.show-for-print {
    display: table-row !important;
  }

  /* line 35, node_modules/foundation-sites/scss/typography/_print.scss */

  td.show-for-print {
    display: table-cell !important;
  }

  /* line 36, node_modules/foundation-sites/scss/typography/_print.scss */

  th.show-for-print {
    display: table-cell !important;
  }

  /* line 39, node_modules/foundation-sites/scss/typography/_print.scss */

  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 42, node_modules/foundation-sites/scss/typography/_print.scss */

  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 46, node_modules/foundation-sites/scss/typography/_print.scss */

  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }

  /* line 51, node_modules/foundation-sites/scss/typography/_print.scss */

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 54, node_modules/foundation-sites/scss/typography/_print.scss */

  pre,
  blockquote {
    border: 1px solid #464646;
    page-break-inside: avoid;
  }

  /* line 61, node_modules/foundation-sites/scss/typography/_print.scss */

  thead {
    display: table-header-group;
  }

  /* line 63, node_modules/foundation-sites/scss/typography/_print.scss */

  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 66, node_modules/foundation-sites/scss/typography/_print.scss */

  img {
    max-width: 100% !important;
  }

@page {
    margin: 0.5cm;
}

  /* line 70, node_modules/foundation-sites/scss/typography/_print.scss */

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 78, node_modules/foundation-sites/scss/typography/_print.scss */

  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 82, node_modules/foundation-sites/scss/typography/_print.scss */

  .print-break-inside {
    page-break-inside: auto;
  }
}

/* line 125, node_modules/foundation-sites/scss/forms/_text.scss */

[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 2.7375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 111, node_modules/foundation-sites/scss/forms/_text.scss */

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus {
  outline: none;
  border: 1px solid #464646;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 5px #cacaca;
          box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

/* line 132, node_modules/foundation-sites/scss/forms/_text.scss */

textarea {
  max-width: 100%;
}

/* line 135, node_modules/foundation-sites/scss/forms/_text.scss */

textarea[rows] {
  height: auto;
}

/* line 143, node_modules/foundation-sites/scss/forms/_text.scss */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cacaca;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cacaca;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}

/* line 148, node_modules/foundation-sites/scss/forms/_text.scss */

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #FAFAFA;
  cursor: not-allowed;
}

/* line 156, node_modules/foundation-sites/scss/forms/_text.scss */

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

/* line 163, node_modules/foundation-sites/scss/forms/_text.scss */

input[type='search'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 10, node_modules/foundation-sites/scss/forms/_checkbox.scss */

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem;
}

/* line 17, node_modules/foundation-sites/scss/forms/_checkbox.scss */

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}

/* line 26, node_modules/foundation-sites/scss/forms/_checkbox.scss */

[type='checkbox'] + label[for],
[type='radio'] + label[for] {
  cursor: pointer;
}

/* line 32, node_modules/foundation-sites/scss/forms/_checkbox.scss */

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem;
}

/* line 38, node_modules/foundation-sites/scss/forms/_checkbox.scss */

[type='file'] {
  width: 100%;
}

/* line 43, node_modules/foundation-sites/scss/forms/_label.scss */

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}

/* line 46, node_modules/foundation-sites/scss/forms/_label.scss */

label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

/* line 22, node_modules/foundation-sites/scss/forms/_help-text.scss */

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #000000;
}

/* line 27, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group,
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* line 36, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group > :first-child,
.search-form > :first-child {
  border-radius: 0 0 0 0;
}

/* line 41, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group > :last-child > *,
.search-form > :last-child > * {
  border-radius: 0 0 0 0;
}

/* line 47, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-label,
.input-group-field,
.search-form .search-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
}

/* line 57, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #FAFAFA;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 78, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-label:first-child {
  border-right: 0;
}

/* line 82, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-label:last-child {
  border-left: 0;
}

/* line 88, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-field,
.search-form .search-field {
  border-radius: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  height: auto;
  min-width: 0;
}

/* line 102, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* line 117, node_modules/foundation-sites/scss/forms/_input-group.scss */

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

/* line 39, node_modules/foundation-sites/scss/forms/_fieldset.scss */

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/* line 45, node_modules/foundation-sites/scss/forms/_fieldset.scss */

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

/* line 50, node_modules/foundation-sites/scss/forms/_fieldset.scss */

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}

/* line 30, node_modules/foundation-sites/scss/forms/_fieldset.scss */

.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

/* line 83, node_modules/foundation-sites/scss/forms/_select.scss */

select {
  height: 2.7375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2870, 70, 70%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

@media screen and (min-width: 0\0) {
  /* line 83, node_modules/foundation-sites/scss/forms/_select.scss */

  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}

/* line 54, node_modules/foundation-sites/scss/forms/_select.scss */

select:focus {
  outline: none;
  border: 1px solid #464646;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 5px #cacaca;
          box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

/* line 66, node_modules/foundation-sites/scss/forms/_select.scss */

select:disabled {
  background-color: #FAFAFA;
  cursor: not-allowed;
}

/* line 72, node_modules/foundation-sites/scss/forms/_select.scss */

select::-ms-expand {
  display: none;
}

/* line 76, node_modules/foundation-sites/scss/forms/_select.scss */

select[multiple] {
  height: auto;
  background-image: none;
}

/* line 45, node_modules/foundation-sites/scss/forms/_error.scss */

.is-invalid-input:not(:focus) {
  border-color: #E64117;
  background-color: #fdece8;
}

/* line 48, node_modules/foundation-sites/scss/forms/_error.scss */

.is-invalid-input:not(:focus)::-webkit-input-placeholder {
  color: #E64117;
}

.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #E64117;
}

.is-invalid-input:not(:focus)::-ms-input-placeholder {
  color: #E64117;
}

.is-invalid-input:not(:focus)::placeholder {
  color: #E64117;
}

/* line 75, node_modules/foundation-sites/scss/forms/_error.scss */

.is-invalid-label {
  color: #E64117;
}

/* line 81, node_modules/foundation-sites/scss/forms/_error.scss */

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #E64117;
}

/* line 84, node_modules/foundation-sites/scss/forms/_error.scss */

.form-error.is-visible {
  display: block;
}

/* line 262, node_modules/foundation-sites/scss/components/_button.scss */

.button,
.comment-form input[type="submit"],
.search-form .search-submit {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #0082C6;
  color: #FFFFFF;
}

/* line 202, node_modules/foundation-sites/scss/util/_mixins.scss */

[data-whatinput='mouse'] .button,
[data-whatinput='mouse'] .comment-form input[type="submit"],
.comment-form [data-whatinput='mouse'] input[type="submit"],
[data-whatinput='mouse'] .search-form .search-submit,
.search-form [data-whatinput='mouse'] .search-submit {
  outline: 0;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button:hover,
.comment-form input:hover[type="submit"],
.search-form .search-submit:hover,
.button:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus {
  background-color: #006fa8;
  color: #FFFFFF;
}

/* line 267, node_modules/foundation-sites/scss/components/_button.scss */

.button.tiny,
.comment-form input.tiny[type="submit"],
.search-form .tiny.search-submit {
  font-size: 0.6rem;
}

/* line 267, node_modules/foundation-sites/scss/components/_button.scss */

.button.small,
.comment-form input.small[type="submit"],
.search-form .small.search-submit {
  font-size: 0.75rem;
}

/* line 267, node_modules/foundation-sites/scss/components/_button.scss */

.button.large,
.comment-form input.large[type="submit"],
.search-form .large.search-submit {
  font-size: 1.25rem;
}

/* line 272, node_modules/foundation-sites/scss/components/_button.scss */

.button.expanded,
.comment-form input.expanded[type="submit"],
.search-form .expanded.search-submit {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

/* line 277, node_modules/foundation-sites/scss/components/_button.scss */

.button.primary,
.comment-form input.primary[type="submit"],
.search-form .primary.search-submit {
  background-color: #0082C6;
  color: #000000;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button.primary:hover,
.comment-form input.primary:hover[type="submit"],
.search-form .primary.search-submit:hover,
.button.primary:focus,
.comment-form input.primary:focus[type="submit"],
.search-form .primary.search-submit:focus {
  background-color: #00689e;
  color: #000000;
}

/* line 277, node_modules/foundation-sites/scss/components/_button.scss */

.button.secondary,
.comment-form input[type="submit"],
.search-form .search-submit {
  background-color: #767676;
  color: #000000;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button.secondary:hover,
.comment-form input:hover[type="submit"],
.search-form .search-submit:hover,
.button.secondary:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus {
  background-color: #5e5e5e;
  color: #000000;
}

/* line 277, node_modules/foundation-sites/scss/components/_button.scss */

.button.success,
.comment-form input.success[type="submit"],
.search-form .success.search-submit {
  background-color: #7DD01E;
  color: #000000;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button.success:hover,
.comment-form input.success:hover[type="submit"],
.search-form .success.search-submit:hover,
.button.success:focus,
.comment-form input.success:focus[type="submit"],
.search-form .success.search-submit:focus {
  background-color: #64a618;
  color: #000000;
}

/* line 277, node_modules/foundation-sites/scss/components/_button.scss */

.button.warning,
.comment-form input.warning[type="submit"],
.search-form .warning.search-submit {
  background-color: #FFCB00;
  color: #000000;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button.warning:hover,
.comment-form input.warning:hover[type="submit"],
.search-form .warning.search-submit:hover,
.button.warning:focus,
.comment-form input.warning:focus[type="submit"],
.search-form .warning.search-submit:focus {
  background-color: #cca200;
  color: #000000;
}

/* line 277, node_modules/foundation-sites/scss/components/_button.scss */

.button.alert,
.comment-form input.alert[type="submit"],
.search-form .alert.search-submit {
  background-color: #E64117;
  color: #000000;
}

/* line 150, node_modules/foundation-sites/scss/components/_button.scss */

.button.alert:hover,
.comment-form input.alert:hover[type="submit"],
.search-form .alert.search-submit:hover,
.button.alert:focus,
.comment-form input.alert:focus[type="submit"],
.search-form .alert.search-submit:focus {
  background-color: #b83412;
  color: #000000;
}

/* line 293, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.button[disabled],
.comment-form input[disabled][type="submit"],
.search-form .search-submit[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.button.disabled:hover,
.comment-form input.disabled:hover[type="submit"],
.search-form .disabled.search-submit:hover,
.button.disabled:focus,
.comment-form input.disabled:focus[type="submit"],
.search-form .disabled.search-submit:focus,
.button[disabled],
.comment-form input[disabled][type="submit"],
.search-form .search-submit[disabled],
.button[disabled]:hover,
.comment-form input[disabled]:hover[type="submit"],
.search-form .search-submit[disabled]:hover,
.button[disabled]:focus,
.comment-form input[disabled]:focus[type="submit"],
.search-form .search-submit[disabled]:focus {
  background-color: #0082C6;
  color: #FFFFFF;
}

/* line 298, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.primary,
.comment-form input.disabled.primary[type="submit"],
.search-form .disabled.primary.search-submit,
.button[disabled].primary,
.comment-form input[disabled].primary[type="submit"],
.search-form .search-submit[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.primary,
.comment-form input.disabled.primary[type="submit"],
.search-form .disabled.primary.search-submit,
.button.disabled.primary:hover,
.comment-form input.disabled.primary:hover[type="submit"],
.search-form .disabled.primary.search-submit:hover,
.button.disabled.primary:focus,
.comment-form input.disabled.primary:focus[type="submit"],
.search-form .disabled.primary.search-submit:focus,
.button[disabled].primary,
.comment-form input[disabled].primary[type="submit"],
.search-form .search-submit[disabled].primary,
.button[disabled].primary:hover,
.comment-form input[disabled].primary:hover[type="submit"],
.search-form .search-submit[disabled].primary:hover,
.button[disabled].primary:focus,
.comment-form input[disabled].primary:focus[type="submit"],
.search-form .search-submit[disabled].primary:focus {
  background-color: #0082C6;
  color: #000000;
}

/* line 298, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.secondary,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.button[disabled].secondary,
.comment-form input[disabled][type="submit"],
.search-form .search-submit[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.secondary,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.button.disabled.secondary:hover,
.comment-form input.disabled:hover[type="submit"],
.search-form .disabled.search-submit:hover,
.button.disabled.secondary:focus,
.comment-form input.disabled:focus[type="submit"],
.search-form .disabled.search-submit:focus,
.button[disabled].secondary,
.comment-form input[disabled][type="submit"],
.search-form .search-submit[disabled],
.button[disabled].secondary:hover,
.comment-form input[disabled]:hover[type="submit"],
.search-form .search-submit[disabled]:hover,
.button[disabled].secondary:focus,
.comment-form input[disabled]:focus[type="submit"],
.search-form .search-submit[disabled]:focus {
  background-color: #767676;
  color: #000000;
}

/* line 298, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.success,
.comment-form input.disabled.success[type="submit"],
.search-form .disabled.success.search-submit,
.button[disabled].success,
.comment-form input[disabled].success[type="submit"],
.search-form .search-submit[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.success,
.comment-form input.disabled.success[type="submit"],
.search-form .disabled.success.search-submit,
.button.disabled.success:hover,
.comment-form input.disabled.success:hover[type="submit"],
.search-form .disabled.success.search-submit:hover,
.button.disabled.success:focus,
.comment-form input.disabled.success:focus[type="submit"],
.search-form .disabled.success.search-submit:focus,
.button[disabled].success,
.comment-form input[disabled].success[type="submit"],
.search-form .search-submit[disabled].success,
.button[disabled].success:hover,
.comment-form input[disabled].success:hover[type="submit"],
.search-form .search-submit[disabled].success:hover,
.button[disabled].success:focus,
.comment-form input[disabled].success:focus[type="submit"],
.search-form .search-submit[disabled].success:focus {
  background-color: #7DD01E;
  color: #000000;
}

/* line 298, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.warning,
.comment-form input.disabled.warning[type="submit"],
.search-form .disabled.warning.search-submit,
.button[disabled].warning,
.comment-form input[disabled].warning[type="submit"],
.search-form .search-submit[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.warning,
.comment-form input.disabled.warning[type="submit"],
.search-form .disabled.warning.search-submit,
.button.disabled.warning:hover,
.comment-form input.disabled.warning:hover[type="submit"],
.search-form .disabled.warning.search-submit:hover,
.button.disabled.warning:focus,
.comment-form input.disabled.warning:focus[type="submit"],
.search-form .disabled.warning.search-submit:focus,
.button[disabled].warning,
.comment-form input[disabled].warning[type="submit"],
.search-form .search-submit[disabled].warning,
.button[disabled].warning:hover,
.comment-form input[disabled].warning:hover[type="submit"],
.search-form .search-submit[disabled].warning:hover,
.button[disabled].warning:focus,
.comment-form input[disabled].warning:focus[type="submit"],
.search-form .search-submit[disabled].warning:focus {
  background-color: #FFCB00;
  color: #000000;
}

/* line 298, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.alert,
.comment-form input.disabled.alert[type="submit"],
.search-form .disabled.alert.search-submit,
.button[disabled].alert,
.comment-form input[disabled].alert[type="submit"],
.search-form .search-submit[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}

/* line 207, node_modules/foundation-sites/scss/components/_button.scss */

.button.disabled.alert,
.comment-form input.disabled.alert[type="submit"],
.search-form .disabled.alert.search-submit,
.button.disabled.alert:hover,
.comment-form input.disabled.alert:hover[type="submit"],
.search-form .disabled.alert.search-submit:hover,
.button.disabled.alert:focus,
.comment-form input.disabled.alert:focus[type="submit"],
.search-form .disabled.alert.search-submit:focus,
.button[disabled].alert,
.comment-form input[disabled].alert[type="submit"],
.search-form .search-submit[disabled].alert,
.button[disabled].alert:hover,
.comment-form input[disabled].alert:hover[type="submit"],
.search-form .search-submit[disabled].alert:hover,
.button[disabled].alert:focus,
.comment-form input[disabled].alert:focus[type="submit"],
.search-form .search-submit[disabled].alert:focus {
  background-color: #E64117;
  color: #000000;
}

/* line 306, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow,
.comment-form input.hollow[type="submit"],
.search-form .hollow.search-submit {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 158, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow,
.comment-form input.hollow[type="submit"],
.search-form .hollow.search-submit,
.button.hollow:hover,
.comment-form input.hollow:hover[type="submit"],
.search-form .hollow.search-submit:hover,
.button.hollow:focus,
.comment-form input.hollow:focus[type="submit"],
.search-form .hollow.search-submit:focus {
  background-color: transparent;
}

/* line 165, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.disabled,
.comment-form input.hollow.disabled[type="submit"],
.search-form .hollow.disabled.search-submit,
.button.hollow.disabled:hover,
.comment-form input.hollow.disabled:hover[type="submit"],
.search-form .hollow.disabled.search-submit:hover,
.button.hollow.disabled:focus,
.comment-form input.hollow.disabled:focus[type="submit"],
.search-form .hollow.disabled.search-submit:focus,
.button.hollow[disabled],
.comment-form input.hollow[disabled][type="submit"],
.search-form .hollow.search-submit[disabled],
.button.hollow[disabled]:hover,
.comment-form input.hollow[disabled]:hover[type="submit"],
.search-form .hollow.search-submit[disabled]:hover,
.button.hollow[disabled]:focus,
.comment-form input.hollow[disabled]:focus[type="submit"],
.search-form .hollow.search-submit[disabled]:focus {
  background-color: transparent;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow:hover,
.comment-form input.hollow:hover[type="submit"],
.search-form .hollow.search-submit:hover,
.button.hollow:focus,
.comment-form input.hollow:focus[type="submit"],
.search-form .hollow.search-submit:focus {
  border-color: #004163;
  color: #004163;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow:hover.disabled,
.comment-form input.hollow:hover.disabled[type="submit"],
.search-form .hollow.search-submit:hover.disabled,
.button.hollow:hover[disabled],
.comment-form input.hollow:hover[disabled][type="submit"],
.search-form .hollow.search-submit:hover[disabled],
.button.hollow:focus.disabled,
.comment-form input.hollow:focus.disabled[type="submit"],
.search-form .hollow.search-submit:focus.disabled,
.button.hollow:focus[disabled],
.comment-form input.hollow:focus[disabled][type="submit"],
.search-form .hollow.search-submit:focus[disabled] {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 311, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.primary,
.comment-form input.hollow.primary[type="submit"],
.search-form .hollow.primary.search-submit {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.primary:hover,
.comment-form input.hollow.primary:hover[type="submit"],
.search-form .hollow.primary.search-submit:hover,
.button.hollow.primary:focus,
.comment-form input.hollow.primary:focus[type="submit"],
.search-form .hollow.primary.search-submit:focus {
  border-color: #004163;
  color: #004163;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.primary:hover.disabled,
.comment-form input.hollow.primary:hover.disabled[type="submit"],
.search-form .hollow.primary.search-submit:hover.disabled,
.button.hollow.primary:hover[disabled],
.comment-form input.hollow.primary:hover[disabled][type="submit"],
.search-form .hollow.primary.search-submit:hover[disabled],
.button.hollow.primary:focus.disabled,
.comment-form input.hollow.primary:focus.disabled[type="submit"],
.search-form .hollow.primary.search-submit:focus.disabled,
.button.hollow.primary:focus[disabled],
.comment-form input.hollow.primary:focus[disabled][type="submit"],
.search-form .hollow.primary.search-submit:focus[disabled] {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 311, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.secondary,
.comment-form input.hollow[type="submit"],
.search-form .hollow.search-submit {
  border: 1px solid #767676;
  color: #767676;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.secondary:hover,
.comment-form input.hollow:hover[type="submit"],
.search-form .hollow.search-submit:hover,
.button.hollow.secondary:focus,
.comment-form input.hollow:focus[type="submit"],
.search-form .hollow.search-submit:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.secondary:hover.disabled,
.comment-form input.hollow:hover.disabled[type="submit"],
.search-form .hollow.search-submit:hover.disabled,
.button.hollow.secondary:hover[disabled],
.comment-form input.hollow:hover[disabled][type="submit"],
.search-form .hollow.search-submit:hover[disabled],
.button.hollow.secondary:focus.disabled,
.comment-form input.hollow:focus.disabled[type="submit"],
.search-form .hollow.search-submit:focus.disabled,
.button.hollow.secondary:focus[disabled],
.comment-form input.hollow:focus[disabled][type="submit"],
.search-form .hollow.search-submit:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}

/* line 311, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.success,
.comment-form input.hollow.success[type="submit"],
.search-form .hollow.success.search-submit {
  border: 1px solid #7DD01E;
  color: #7DD01E;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.success:hover,
.comment-form input.hollow.success:hover[type="submit"],
.search-form .hollow.success.search-submit:hover,
.button.hollow.success:focus,
.comment-form input.hollow.success:focus[type="submit"],
.search-form .hollow.success.search-submit:focus {
  border-color: #3f680f;
  color: #3f680f;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.success:hover.disabled,
.comment-form input.hollow.success:hover.disabled[type="submit"],
.search-form .hollow.success.search-submit:hover.disabled,
.button.hollow.success:hover[disabled],
.comment-form input.hollow.success:hover[disabled][type="submit"],
.search-form .hollow.success.search-submit:hover[disabled],
.button.hollow.success:focus.disabled,
.comment-form input.hollow.success:focus.disabled[type="submit"],
.search-form .hollow.success.search-submit:focus.disabled,
.button.hollow.success:focus[disabled],
.comment-form input.hollow.success:focus[disabled][type="submit"],
.search-form .hollow.success.search-submit:focus[disabled] {
  border: 1px solid #7DD01E;
  color: #7DD01E;
}

/* line 311, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.warning,
.comment-form input.hollow.warning[type="submit"],
.search-form .hollow.warning.search-submit {
  border: 1px solid #FFCB00;
  color: #FFCB00;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.warning:hover,
.comment-form input.hollow.warning:hover[type="submit"],
.search-form .hollow.warning.search-submit:hover,
.button.hollow.warning:focus,
.comment-form input.hollow.warning:focus[type="submit"],
.search-form .hollow.warning.search-submit:focus {
  border-color: #806600;
  color: #806600;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.warning:hover.disabled,
.comment-form input.hollow.warning:hover.disabled[type="submit"],
.search-form .hollow.warning.search-submit:hover.disabled,
.button.hollow.warning:hover[disabled],
.comment-form input.hollow.warning:hover[disabled][type="submit"],
.search-form .hollow.warning.search-submit:hover[disabled],
.button.hollow.warning:focus.disabled,
.comment-form input.hollow.warning:focus.disabled[type="submit"],
.search-form .hollow.warning.search-submit:focus.disabled,
.button.hollow.warning:focus[disabled],
.comment-form input.hollow.warning:focus[disabled][type="submit"],
.search-form .hollow.warning.search-submit:focus[disabled] {
  border: 1px solid #FFCB00;
  color: #FFCB00;
}

/* line 311, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.alert,
.comment-form input.hollow.alert[type="submit"],
.search-form .hollow.alert.search-submit {
  border: 1px solid #E64117;
  color: #E64117;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.alert:hover,
.comment-form input.hollow.alert:hover[type="submit"],
.search-form .hollow.alert.search-submit:hover,
.button.hollow.alert:focus,
.comment-form input.hollow.alert:focus[type="submit"],
.search-form .hollow.alert.search-submit:focus {
  border-color: #73210c;
  color: #73210c;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.hollow.alert:hover.disabled,
.comment-form input.hollow.alert:hover.disabled[type="submit"],
.search-form .hollow.alert.search-submit:hover.disabled,
.button.hollow.alert:hover[disabled],
.comment-form input.hollow.alert:hover[disabled][type="submit"],
.search-form .hollow.alert.search-submit:hover[disabled],
.button.hollow.alert:focus.disabled,
.comment-form input.hollow.alert:focus.disabled[type="submit"],
.search-form .hollow.alert.search-submit:focus.disabled,
.button.hollow.alert:focus[disabled],
.comment-form input.hollow.alert:focus[disabled][type="submit"],
.search-form .hollow.alert.search-submit:focus[disabled] {
  border: 1px solid #E64117;
  color: #E64117;
}

/* line 320, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear,
.comment-form input.clear[type="submit"],
.search-form .clear.search-submit {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 158, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear,
.comment-form input.clear[type="submit"],
.search-form .clear.search-submit,
.button.clear:hover,
.comment-form input.clear:hover[type="submit"],
.search-form .clear.search-submit:hover,
.button.clear:focus,
.comment-form input.clear:focus[type="submit"],
.search-form .clear.search-submit:focus {
  background-color: transparent;
}

/* line 165, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.disabled,
.comment-form input.clear.disabled[type="submit"],
.search-form .clear.disabled.search-submit,
.button.clear.disabled:hover,
.comment-form input.clear.disabled:hover[type="submit"],
.search-form .clear.disabled.search-submit:hover,
.button.clear.disabled:focus,
.comment-form input.clear.disabled:focus[type="submit"],
.search-form .clear.disabled.search-submit:focus,
.button.clear[disabled],
.comment-form input.clear[disabled][type="submit"],
.search-form .clear.search-submit[disabled],
.button.clear[disabled]:hover,
.comment-form input.clear[disabled]:hover[type="submit"],
.search-form .clear.search-submit[disabled]:hover,
.button.clear[disabled]:focus,
.comment-form input.clear[disabled]:focus[type="submit"],
.search-form .clear.search-submit[disabled]:focus {
  background-color: transparent;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear:hover,
.comment-form input.clear:hover[type="submit"],
.search-form .clear.search-submit:hover,
.button.clear:focus,
.comment-form input.clear:focus[type="submit"],
.search-form .clear.search-submit:focus {
  border-color: #004163;
  color: #004163;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear:hover.disabled,
.comment-form input.clear:hover.disabled[type="submit"],
.search-form .clear.search-submit:hover.disabled,
.button.clear:hover[disabled],
.comment-form input.clear:hover[disabled][type="submit"],
.search-form .clear.search-submit:hover[disabled],
.button.clear:focus.disabled,
.comment-form input.clear:focus.disabled[type="submit"],
.search-form .clear.search-submit:focus.disabled,
.button.clear:focus[disabled],
.comment-form input.clear:focus[disabled][type="submit"],
.search-form .clear.search-submit:focus[disabled] {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 325, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear,
.comment-form input.clear[type="submit"],
.search-form .clear.search-submit,
.button.clear.disabled,
.comment-form input.clear.disabled[type="submit"],
.search-form .clear.disabled.search-submit,
.button.clear[disabled],
.comment-form input.clear[disabled][type="submit"],
.search-form .clear.search-submit[disabled],
.button.clear:hover,
.comment-form input.clear:hover[type="submit"],
.search-form .clear.search-submit:hover,
.button.clear:hover.disabled,
.comment-form input.clear:hover.disabled[type="submit"],
.search-form .clear.search-submit:hover.disabled,
.button.clear:hover[disabled],
.comment-form input.clear:hover[disabled][type="submit"],
.search-form .clear.search-submit:hover[disabled],
.button.clear:focus,
.comment-form input.clear:focus[type="submit"],
.search-form .clear.search-submit:focus,
.button.clear:focus.disabled,
.comment-form input.clear:focus.disabled[type="submit"],
.search-form .clear.search-submit:focus.disabled,
.button.clear:focus[disabled],
.comment-form input.clear:focus[disabled][type="submit"],
.search-form .clear.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 331, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.primary,
.comment-form input.clear.primary[type="submit"],
.search-form .clear.primary.search-submit {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.primary:hover,
.comment-form input.clear.primary:hover[type="submit"],
.search-form .clear.primary.search-submit:hover,
.button.clear.primary:focus,
.comment-form input.clear.primary:focus[type="submit"],
.search-form .clear.primary.search-submit:focus {
  border-color: #004163;
  color: #004163;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.primary:hover.disabled,
.comment-form input.clear.primary:hover.disabled[type="submit"],
.search-form .clear.primary.search-submit:hover.disabled,
.button.clear.primary:hover[disabled],
.comment-form input.clear.primary:hover[disabled][type="submit"],
.search-form .clear.primary.search-submit:hover[disabled],
.button.clear.primary:focus.disabled,
.comment-form input.clear.primary:focus.disabled[type="submit"],
.search-form .clear.primary.search-submit:focus.disabled,
.button.clear.primary:focus[disabled],
.comment-form input.clear.primary:focus[disabled][type="submit"],
.search-form .clear.primary.search-submit:focus[disabled] {
  border: 1px solid #0082C6;
  color: #0082C6;
}

/* line 336, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.primary,
.comment-form input.clear.primary[type="submit"],
.search-form .clear.primary.search-submit,
.button.clear.primary.disabled,
.comment-form input.clear.primary.disabled[type="submit"],
.search-form .clear.primary.disabled.search-submit,
.button.clear.primary[disabled],
.comment-form input.clear.primary[disabled][type="submit"],
.search-form .clear.primary.search-submit[disabled],
.button.clear.primary:hover,
.comment-form input.clear.primary:hover[type="submit"],
.search-form .clear.primary.search-submit:hover,
.button.clear.primary:hover.disabled,
.comment-form input.clear.primary:hover.disabled[type="submit"],
.search-form .clear.primary.search-submit:hover.disabled,
.button.clear.primary:hover[disabled],
.comment-form input.clear.primary:hover[disabled][type="submit"],
.search-form .clear.primary.search-submit:hover[disabled],
.button.clear.primary:focus,
.comment-form input.clear.primary:focus[type="submit"],
.search-form .clear.primary.search-submit:focus,
.button.clear.primary:focus.disabled,
.comment-form input.clear.primary:focus.disabled[type="submit"],
.search-form .clear.primary.search-submit:focus.disabled,
.button.clear.primary:focus[disabled],
.comment-form input.clear.primary:focus[disabled][type="submit"],
.search-form .clear.primary.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 331, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.secondary,
.comment-form input.clear[type="submit"],
.search-form .clear.search-submit {
  border: 1px solid #767676;
  color: #767676;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.secondary:hover,
.comment-form input.clear:hover[type="submit"],
.search-form .clear.search-submit:hover,
.button.clear.secondary:focus,
.comment-form input.clear:focus[type="submit"],
.search-form .clear.search-submit:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.secondary:hover.disabled,
.comment-form input.clear:hover.disabled[type="submit"],
.search-form .clear.search-submit:hover.disabled,
.button.clear.secondary:hover[disabled],
.comment-form input.clear:hover[disabled][type="submit"],
.search-form .clear.search-submit:hover[disabled],
.button.clear.secondary:focus.disabled,
.comment-form input.clear:focus.disabled[type="submit"],
.search-form .clear.search-submit:focus.disabled,
.button.clear.secondary:focus[disabled],
.comment-form input.clear:focus[disabled][type="submit"],
.search-form .clear.search-submit:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}

/* line 336, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.secondary,
.comment-form input.clear[type="submit"],
.search-form .clear.search-submit,
.button.clear.secondary.disabled,
.comment-form input.clear.disabled[type="submit"],
.search-form .clear.disabled.search-submit,
.button.clear.secondary[disabled],
.comment-form input.clear[disabled][type="submit"],
.search-form .clear.search-submit[disabled],
.button.clear.secondary:hover,
.comment-form input.clear:hover[type="submit"],
.search-form .clear.search-submit:hover,
.button.clear.secondary:hover.disabled,
.comment-form input.clear:hover.disabled[type="submit"],
.search-form .clear.search-submit:hover.disabled,
.button.clear.secondary:hover[disabled],
.comment-form input.clear:hover[disabled][type="submit"],
.search-form .clear.search-submit:hover[disabled],
.button.clear.secondary:focus,
.comment-form input.clear:focus[type="submit"],
.search-form .clear.search-submit:focus,
.button.clear.secondary:focus.disabled,
.comment-form input.clear:focus.disabled[type="submit"],
.search-form .clear.search-submit:focus.disabled,
.button.clear.secondary:focus[disabled],
.comment-form input.clear:focus[disabled][type="submit"],
.search-form .clear.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 331, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.success,
.comment-form input.clear.success[type="submit"],
.search-form .clear.success.search-submit {
  border: 1px solid #7DD01E;
  color: #7DD01E;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.success:hover,
.comment-form input.clear.success:hover[type="submit"],
.search-form .clear.success.search-submit:hover,
.button.clear.success:focus,
.comment-form input.clear.success:focus[type="submit"],
.search-form .clear.success.search-submit:focus {
  border-color: #3f680f;
  color: #3f680f;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.success:hover.disabled,
.comment-form input.clear.success:hover.disabled[type="submit"],
.search-form .clear.success.search-submit:hover.disabled,
.button.clear.success:hover[disabled],
.comment-form input.clear.success:hover[disabled][type="submit"],
.search-form .clear.success.search-submit:hover[disabled],
.button.clear.success:focus.disabled,
.comment-form input.clear.success:focus.disabled[type="submit"],
.search-form .clear.success.search-submit:focus.disabled,
.button.clear.success:focus[disabled],
.comment-form input.clear.success:focus[disabled][type="submit"],
.search-form .clear.success.search-submit:focus[disabled] {
  border: 1px solid #7DD01E;
  color: #7DD01E;
}

/* line 336, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.success,
.comment-form input.clear.success[type="submit"],
.search-form .clear.success.search-submit,
.button.clear.success.disabled,
.comment-form input.clear.success.disabled[type="submit"],
.search-form .clear.success.disabled.search-submit,
.button.clear.success[disabled],
.comment-form input.clear.success[disabled][type="submit"],
.search-form .clear.success.search-submit[disabled],
.button.clear.success:hover,
.comment-form input.clear.success:hover[type="submit"],
.search-form .clear.success.search-submit:hover,
.button.clear.success:hover.disabled,
.comment-form input.clear.success:hover.disabled[type="submit"],
.search-form .clear.success.search-submit:hover.disabled,
.button.clear.success:hover[disabled],
.comment-form input.clear.success:hover[disabled][type="submit"],
.search-form .clear.success.search-submit:hover[disabled],
.button.clear.success:focus,
.comment-form input.clear.success:focus[type="submit"],
.search-form .clear.success.search-submit:focus,
.button.clear.success:focus.disabled,
.comment-form input.clear.success:focus.disabled[type="submit"],
.search-form .clear.success.search-submit:focus.disabled,
.button.clear.success:focus[disabled],
.comment-form input.clear.success:focus[disabled][type="submit"],
.search-form .clear.success.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 331, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.warning,
.comment-form input.clear.warning[type="submit"],
.search-form .clear.warning.search-submit {
  border: 1px solid #FFCB00;
  color: #FFCB00;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.warning:hover,
.comment-form input.clear.warning:hover[type="submit"],
.search-form .clear.warning.search-submit:hover,
.button.clear.warning:focus,
.comment-form input.clear.warning:focus[type="submit"],
.search-form .clear.warning.search-submit:focus {
  border-color: #806600;
  color: #806600;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.warning:hover.disabled,
.comment-form input.clear.warning:hover.disabled[type="submit"],
.search-form .clear.warning.search-submit:hover.disabled,
.button.clear.warning:hover[disabled],
.comment-form input.clear.warning:hover[disabled][type="submit"],
.search-form .clear.warning.search-submit:hover[disabled],
.button.clear.warning:focus.disabled,
.comment-form input.clear.warning:focus.disabled[type="submit"],
.search-form .clear.warning.search-submit:focus.disabled,
.button.clear.warning:focus[disabled],
.comment-form input.clear.warning:focus[disabled][type="submit"],
.search-form .clear.warning.search-submit:focus[disabled] {
  border: 1px solid #FFCB00;
  color: #FFCB00;
}

/* line 336, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.warning,
.comment-form input.clear.warning[type="submit"],
.search-form .clear.warning.search-submit,
.button.clear.warning.disabled,
.comment-form input.clear.warning.disabled[type="submit"],
.search-form .clear.warning.disabled.search-submit,
.button.clear.warning[disabled],
.comment-form input.clear.warning[disabled][type="submit"],
.search-form .clear.warning.search-submit[disabled],
.button.clear.warning:hover,
.comment-form input.clear.warning:hover[type="submit"],
.search-form .clear.warning.search-submit:hover,
.button.clear.warning:hover.disabled,
.comment-form input.clear.warning:hover.disabled[type="submit"],
.search-form .clear.warning.search-submit:hover.disabled,
.button.clear.warning:hover[disabled],
.comment-form input.clear.warning:hover[disabled][type="submit"],
.search-form .clear.warning.search-submit:hover[disabled],
.button.clear.warning:focus,
.comment-form input.clear.warning:focus[type="submit"],
.search-form .clear.warning.search-submit:focus,
.button.clear.warning:focus.disabled,
.comment-form input.clear.warning:focus.disabled[type="submit"],
.search-form .clear.warning.search-submit:focus.disabled,
.button.clear.warning:focus[disabled],
.comment-form input.clear.warning:focus[disabled][type="submit"],
.search-form .clear.warning.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 331, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.alert,
.comment-form input.clear.alert[type="submit"],
.search-form .clear.alert.search-submit {
  border: 1px solid #E64117;
  color: #E64117;
}

/* line 182, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.alert:hover,
.comment-form input.clear.alert:hover[type="submit"],
.search-form .clear.alert.search-submit:hover,
.button.clear.alert:focus,
.comment-form input.clear.alert:focus[type="submit"],
.search-form .clear.alert.search-submit:focus {
  border-color: #73210c;
  color: #73210c;
}

/* line 185, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.alert:hover.disabled,
.comment-form input.clear.alert:hover.disabled[type="submit"],
.search-form .clear.alert.search-submit:hover.disabled,
.button.clear.alert:hover[disabled],
.comment-form input.clear.alert:hover[disabled][type="submit"],
.search-form .clear.alert.search-submit:hover[disabled],
.button.clear.alert:focus.disabled,
.comment-form input.clear.alert:focus.disabled[type="submit"],
.search-form .clear.alert.search-submit:focus.disabled,
.button.clear.alert:focus[disabled],
.comment-form input.clear.alert:focus[disabled][type="submit"],
.search-form .clear.alert.search-submit:focus[disabled] {
  border: 1px solid #E64117;
  color: #E64117;
}

/* line 336, node_modules/foundation-sites/scss/components/_button.scss */

.button.clear.alert,
.comment-form input.clear.alert[type="submit"],
.search-form .clear.alert.search-submit,
.button.clear.alert.disabled,
.comment-form input.clear.alert.disabled[type="submit"],
.search-form .clear.alert.disabled.search-submit,
.button.clear.alert[disabled],
.comment-form input.clear.alert[disabled][type="submit"],
.search-form .clear.alert.search-submit[disabled],
.button.clear.alert:hover,
.comment-form input.clear.alert:hover[type="submit"],
.search-form .clear.alert.search-submit:hover,
.button.clear.alert:hover.disabled,
.comment-form input.clear.alert:hover.disabled[type="submit"],
.search-form .clear.alert.search-submit:hover.disabled,
.button.clear.alert:hover[disabled],
.comment-form input.clear.alert:hover[disabled][type="submit"],
.search-form .clear.alert.search-submit:hover[disabled],
.button.clear.alert:focus,
.comment-form input.clear.alert:focus[type="submit"],
.search-form .clear.alert.search-submit:focus,
.button.clear.alert:focus.disabled,
.comment-form input.clear.alert:focus.disabled[type="submit"],
.search-form .clear.alert.search-submit:focus.disabled,
.button.clear.alert:focus[disabled],
.comment-form input.clear.alert:focus[disabled][type="submit"],
.search-form .clear.alert.search-submit:focus[disabled] {
  border-color: transparent;
}

/* line 222, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown::after,
.comment-form input.dropdown[type="submit"]::after,
.search-form .dropdown.search-submit::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #FFFFFF transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}

/* line 358, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow::after,
.comment-form input.dropdown.hollow[type="submit"]::after,
.search-form .dropdown.hollow.search-submit::after {
  border-top-color: #0082C6;
}

/* line 364, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow.primary::after,
.comment-form input.dropdown.hollow.primary[type="submit"]::after,
.search-form .dropdown.hollow.primary.search-submit::after {
  border-top-color: #0082C6;
}

/* line 364, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow.secondary::after,
.comment-form input.dropdown.hollow[type="submit"]::after,
.search-form .dropdown.hollow.search-submit::after {
  border-top-color: #767676;
}

/* line 364, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow.success::after,
.comment-form input.dropdown.hollow.success[type="submit"]::after,
.search-form .dropdown.hollow.success.search-submit::after {
  border-top-color: #7DD01E;
}

/* line 364, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow.warning::after,
.comment-form input.dropdown.hollow.warning[type="submit"]::after,
.search-form .dropdown.hollow.warning.search-submit::after {
  border-top-color: #FFCB00;
}

/* line 364, node_modules/foundation-sites/scss/components/_button.scss */

.button.dropdown.hollow.alert::after,
.comment-form input.dropdown.hollow.alert[type="submit"]::after,
.search-form .dropdown.hollow.alert.search-submit::after {
  border-top-color: #E64117;
}

/* line 373, node_modules/foundation-sites/scss/components/_button.scss */

.button.arrow-only::after,
.comment-form input.arrow-only[type="submit"]::after,
.search-form .arrow-only.search-submit::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

/* line 380, node_modules/foundation-sites/scss/components/_button.scss */

a.button:hover,
.search-form a.search-submit:hover,
a.button:focus,
.search-form a.search-submit:focus {
  text-decoration: none;
}

/* line 140, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion {
  margin-left: 0;
  background: #FFFFFF;
  list-style-type: none;
}

/* line 57, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

/* line 65, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}

/* line 69, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

/* line 148, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #FAFAFA;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #0082C6;
}

/* line 93, node_modules/foundation-sites/scss/components/_accordion.scss */

:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #FAFAFA;
  border-radius: 0 0 0 0;
}

/* line 98, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-title:hover,
.accordion-title:focus {
  background-color: #FAFAFA;
}

/* line 104, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: '+';
}

/* line 112, node_modules/foundation-sites/scss/components/_accordion.scss */

.is-active > .accordion-title::before {
  content: '\2013';
}

/* line 152, node_modules/foundation-sites/scss/components/_accordion.scss */

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #FAFAFA;
  border-bottom: 0;
  background-color: #FFFFFF;
  color: #222222;
}

/* line 134, node_modules/foundation-sites/scss/components/_accordion.scss */

:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #FAFAFA;
}

/* line 361, node_modules/foundation-sites/scss/components/_menu.scss */

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 202, node_modules/foundation-sites/scss/util/_mixins.scss */

[data-whatinput='mouse'] .menu li {
  outline: 0;
}

/* line 72, node_modules/foundation-sites/scss/components/_menu.scss */

.menu a,
.menu .button,
.menu .comment-form input[type="submit"],
.comment-form .menu input[type="submit"],
.menu .search-form .search-submit,
.search-form .menu .search-submit {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}

/* line 81, node_modules/foundation-sites/scss/components/_menu.scss */

.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}

/* line 88, node_modules/foundation-sites/scss/components/_menu.scss */

.menu input {
  display: inline-block;
}

/* line 365, node_modules/foundation-sites/scss/components/_menu.scss */

.menu,
.menu.horizontal {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 370, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.vertical {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.expanded li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

/* line 380, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.simple {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 214, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.simple li + li {
  margin-left: 1rem;
}

/* line 218, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.simple a {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 386, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 390, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.medium-expanded li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.medium-simple li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 386, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 390, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.large-expanded li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.large-simple li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media screen and (min-width: 75em) {
  /* line 386, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xlarge-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 390, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xlarge-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xlarge-expanded li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xlarge-simple li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 386, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xxlarge-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 390, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xxlarge-vertical {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xxlarge-expanded li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }

  /* line 96, node_modules/foundation-sites/scss/components/_menu.scss */

  .menu.xxlarge-simple li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

/* line 404, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}

/* line 244, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 244, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-top a,
.menu.icon-right a,
.menu.icon-bottom a,
.menu.icon-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 264, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-left li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

/* line 269, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}

/* line 281, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-right li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

/* line 286, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}

/* line 298, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-top li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

/* line 306, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}

/* line 322, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-bottom li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

/* line 330, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}

/* line 444, node_modules/foundation-sites/scss/components/_menu.scss */

.menu .is-active > a {
  background: #0082C6;
  color: #FFFFFF;
}

/* line 450, node_modules/foundation-sites/scss/components/_menu.scss */

.menu .active > a {
  background: #0082C6;
  color: #FFFFFF;
}

/* line 456, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 123, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 127, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-right li .submenu li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 132, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-right.vertical li {
  display: block;
  text-align: right;
}

/* line 136, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-right.vertical li .submenu li {
  text-align: right;
}

/* line 464, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}

/* line 157, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-center li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 161, node_modules/foundation-sites/scss/components/_menu.scss */

.menu.align-center li .submenu li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 474, node_modules/foundation-sites/scss/components/_menu.scss */

.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

/* line 481, node_modules/foundation-sites/scss/components/_menu.scss */

.menu-centered > .menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 157, node_modules/foundation-sites/scss/components/_menu.scss */

.menu-centered > .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 161, node_modules/foundation-sites/scss/components/_menu.scss */

.menu-centered > .menu li .submenu li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 492, node_modules/foundation-sites/scss/components/_menu.scss */

.no-js [data-responsive-menu] ul {
  display: none;
}

/* line 305, node_modules/foundation-sites/scss/components/_table.scss */

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}

/* line 111, node_modules/foundation-sites/scss/components/_table.scss */

thead,
tbody,
tfoot {
  border: 1px solid #f2f2f2;
  background-color: #FFFFFF;
}

/* line 119, node_modules/foundation-sites/scss/components/_table.scss */

caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: 500;
}

/* line 125, node_modules/foundation-sites/scss/components/_table.scss */

thead {
  background: #f9f9f9;
  color: #222222;
}

/* line 131, node_modules/foundation-sites/scss/components/_table.scss */

tfoot {
  background: #f2f2f2;
  color: #222222;
}

/* line 140, node_modules/foundation-sites/scss/components/_table.scss */

thead tr,
tfoot tr {
  background: transparent;
}

/* line 145, node_modules/foundation-sites/scss/components/_table.scss */

thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: 500;
  text-align: left;
}

/* line 155, node_modules/foundation-sites/scss/components/_table.scss */

tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

/* line 87, node_modules/foundation-sites/scss/components/_table.scss */

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f2f2f2;
}

/* line 168, node_modules/foundation-sites/scss/components/_table.scss */

table.unstriped tbody {
  background-color: #FFFFFF;
}

/* line 103, node_modules/foundation-sites/scss/components/_table.scss */

table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f2f2f2;
  background-color: #FFFFFF;
}

@media screen and (max-width: 63.9375em) {
  /* line 284, node_modules/foundation-sites/scss/components/_table.scss */

  table.stack thead {
    display: none;
  }

  /* line 289, node_modules/foundation-sites/scss/components/_table.scss */

  table.stack tfoot {
    display: none;
  }

  /* line 293, node_modules/foundation-sites/scss/components/_table.scss */

  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }

  /* line 299, node_modules/foundation-sites/scss/components/_table.scss */

  table.stack td {
    border-top: 0;
  }
}

/* line 315, node_modules/foundation-sites/scss/components/_table.scss */

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

/* line 221, node_modules/foundation-sites/scss/components/_table.scss */

table.hover thead tr:hover {
  background-color: #f4f4f4;
}

/* line 228, node_modules/foundation-sites/scss/components/_table.scss */

table.hover tfoot tr:hover {
  background-color: #ededed;
}

/* line 235, node_modules/foundation-sites/scss/components/_table.scss */

table.hover tbody tr:hover {
  background-color: #fafafa;
}

/* line 243, node_modules/foundation-sites/scss/components/_table.scss */

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed;
}

/* line 323, node_modules/foundation-sites/scss/components/_table.scss */

.table-scroll {
  overflow-x: auto;
}

/* line 326, node_modules/foundation-sites/scss/components/_table.scss */

.table-scroll table {
  width: auto;
}

/* line 147, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs {
  margin: 0;
  border: 1px solid #FAFAFA;
  background: #FFFFFF;
  list-style-type: none;
}

/* line 170, node_modules/foundation-sites/scss/util/_mixins.scss */

.tabs::before,
.tabs::after {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 181, node_modules/foundation-sites/scss/util/_mixins.scss */

.tabs::after {
  clear: both;
}

/* line 75, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

/* line 158, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.simple > li > a {
  padding: 0;
}

/* line 161, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.simple > li > a:hover {
  background: transparent;
}

/* line 168, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.primary {
  background: #0082C6;
}

/* line 171, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.primary > li > a {
  color: #000000;
}

/* line 174, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: #008cd6;
}

/* line 181, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-title {
  float: left;
}

/* line 93, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #0082C6;
}

/* line 100, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-title > a:hover {
  background: #FFFFFF;
  color: #0070aa;
}

/* line 105, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-title > a:focus,
.tabs-title > a[aria-selected='true'] {
  background: #FAFAFA;
  color: #0082C6;
}

/* line 185, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-content {
  border: 1px solid #FAFAFA;
  border-top: 0;
  background: #FFFFFF;
  color: #222222;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* line 189, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-content.vertical {
  border: 1px solid #FAFAFA;
  border-left: 0;
}

/* line 193, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-panel {
  display: none;
  padding: 1rem;
}

/* line 141, node_modules/foundation-sites/scss/components/_tabs.scss */

.tabs-panel.is-active {
  display: block;
}

/* line 62, node_modules/foundation-sites/scss/components/_visibility.scss */

.hide {
  display: none !important;
}

/* line 66, node_modules/foundation-sites/scss/components/_visibility.scss */

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  /* line 82, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  /* line 86, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 73, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 77, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /* line 82, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  /* line 86, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 73, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  /* line 77, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  /* line 82, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  /* line 86, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 75em) {
  /* line 73, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em) {
  /* line 77, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 75em) and (max-width: 93.6875em) {
  /* line 82, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em), screen and (min-width: 93.75em) {
  /* line 86, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 73, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-xxlarge {
    display: none !important;
  }
}

@media screen and (max-width: 93.6875em) {
  /* line 77, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-xxlarge {
    display: none !important;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 82, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-xxlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 93.6875em) {
  /* line 86, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-xxlarge-only {
    display: none !important;
  }
}

/* line 93, node_modules/foundation-sites/scss/components/_visibility.scss */

.show-for-sr,
.show-on-focus,
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

/* line 100, node_modules/foundation-sites/scss/components/_visibility.scss */

.show-on-focus:active,
.screen-reader-text:active,
.show-on-focus:focus,
.screen-reader-text:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

/* line 107, node_modules/foundation-sites/scss/components/_visibility.scss */

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  /* line 107, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  /* line 107, node_modules/foundation-sites/scss/components/_visibility.scss */

  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

/* line 120, node_modules/foundation-sites/scss/components/_visibility.scss */

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  /* line 120, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  /* line 120, node_modules/foundation-sites/scss/components/_visibility.scss */

  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

/* line 75, node_modules/foundation-sites/scss/components/_flex.scss */

.align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 75, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 75, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 75, node_modules/foundation-sites/scss/components/_flex.scss */

.align-spaced {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/* line 83, node_modules/foundation-sites/scss/components/_flex.scss */

.align-right.vertical.menu > li > a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 83, node_modules/foundation-sites/scss/components/_flex.scss */

.align-center.vertical.menu > li > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 91, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 95, node_modules/foundation-sites/scss/components/_flex.scss */

.align-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* line 91, node_modules/foundation-sites/scss/components/_flex.scss */

.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* line 95, node_modules/foundation-sites/scss/components/_flex.scss */

.align-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* line 91, node_modules/foundation-sites/scss/components/_flex.scss */

.align-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 95, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 91, node_modules/foundation-sites/scss/components/_flex.scss */

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* line 95, node_modules/foundation-sites/scss/components/_flex.scss */

.align-self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

/* line 101, node_modules/foundation-sites/scss/components/_flex.scss */

.align-center-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

/* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

.small-order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media print, screen and (min-width: 40em) {
  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media screen and (min-width: 75em) {
  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 109, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

/* line 18, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 22, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-child-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* line 26, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-child-grow {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/* line 30, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-child-shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

/* line 35, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 35, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* line 35, node_modules/foundation-sites/scss/components/_flex.scss */

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

/* line 35, node_modules/foundation-sites/scss/components/_flex.scss */

.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  /* line 45, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 49, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* line 53, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }

  /* line 57, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 45, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 49, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* line 53, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }

  /* line 57, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 75em) {
  /* line 45, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 49, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* line 53, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }

  /* line 57, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 45, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 49, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  /* line 53, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }

  /* line 57, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 62, node_modules/foundation-sites/scss/components/_flex.scss */

  .xxlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/** Import theme styles */

@font-face {
  font-family: 'TT-Norms';
  src: url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Bold.eot);
  src: local("../fonts/TT-Norms-Bold"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Bold.eot) format("embedded-opentype"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Bold.woff) format("woff"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Bold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'TT-Norms';
  src: url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Regular.eot);
  src: local("../fonts/TT-Norms-Regular"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Regular.eot) format("embedded-opentype"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Regular.woff) format("woff"), url(/wp-content/themes/kalaranna/dist/fonts/TT-Norms-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arsenal';
  src: local("../fonts/Arsenal-Regular"), url(/wp-content/themes/kalaranna/dist/fonts/Arsenal-Regular.woff) format("woff"), url(/wp-content/themes/kalaranna/dist/fonts/Arsenal-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SeasonsLight';
  src: local("../fonts/the_seasons_light"), url(/wp-content/themes/kalaranna/dist/fonts/TheSeasons-Lt.woff) format("woff"), url(/wp-content/themes/kalaranna/dist/fonts/TheSeasons-Lt.woff2) format("woff2"), url(/wp-content/themes/kalaranna/dist/fonts/TheSeasons-Lt.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }

  50% {
    -webkit-transform: translateX(-50%) translateY(-1.875rem);
            transform: translateX(-50%) translateY(-1.875rem);
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }
}

@-o-keyframes bounce {
  0% {
    -o-transform: translateX(-50%) translateY(30);
       transform: translateX(-50%) translateY(30);
  }

  50% {
    -o-transform: translateX(-50%) translateY(-1.875rem);
       transform: translateX(-50%) translateY(-1.875rem);
  }

  100% {
    -o-transform: translateX(-50%) translateY(30);
       transform: translateX(-50%) translateY(30);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateX(-50%) translateY(30);
         -o-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }

  50% {
    -webkit-transform: translateX(-50%) translateY(-1.875rem);
         -o-transform: translateX(-50%) translateY(-1.875rem);
            transform: translateX(-50%) translateY(-1.875rem);
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(30);
         -o-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }
}

@-webkit-keyframes bounce-small {
  0% {
    -webkit-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }

  50% {
    -webkit-transform: translateX(-50%) translateY(0.3125rem);
            transform: translateX(-50%) translateY(0.3125rem);
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }
}

@-o-keyframes bounce-small {
  0% {
    -o-transform: translateX(-50%) translateY(30);
       transform: translateX(-50%) translateY(30);
  }

  50% {
    -o-transform: translateX(-50%) translateY(0.3125rem);
       transform: translateX(-50%) translateY(0.3125rem);
  }

  100% {
    -o-transform: translateX(-50%) translateY(30);
       transform: translateX(-50%) translateY(30);
  }
}

@keyframes bounce-small {
  0% {
    -webkit-transform: translateX(-50%) translateY(30);
         -o-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }

  50% {
    -webkit-transform: translateX(-50%) translateY(0.3125rem);
         -o-transform: translateX(-50%) translateY(0.3125rem);
            transform: translateX(-50%) translateY(0.3125rem);
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(30);
         -o-transform: translateX(-50%) translateY(30);
            transform: translateX(-50%) translateY(30);
  }
}

/*
*   Global
*/

/* line 61, resources/assets/styles/common/_global.scss */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SeasonsLight';
  font-weight: 400;
  letter-spacing: 0.25rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* line 75, resources/assets/styles/common/_global.scss */

body {
  width: 100vw;
  margin: 0;
}

@media screen and (max-width: 39.9375em) {
  /* line 75, resources/assets/styles/common/_global.scss */

  body {
    overflow: auto;
  }
}

@media screen and (max-width: 63.9375em) {
  /* line 83, resources/assets/styles/common/_global.scss */

  body.open {
    overflow: hidden;
  }
}

/* line 90, resources/assets/styles/common/_global.scss */

.wrap.container {
  overflow: hidden;
}

@media screen and (max-width: 39.9375em) {
  /* line 90, resources/assets/styles/common/_global.scss */

  .wrap.container {
    width: 100%;
    width: 100vw;
  }
}

@media screen and (max-width: 63.9375em) {
  /* line 99, resources/assets/styles/common/_global.scss */

  .grid-container {
    padding: 0;
  }
}

/* line 105, resources/assets/styles/common/_global.scss */

::-moz-selection {
  background: #E9B89D;
  /* WebKit/Blink Browsers */
}

::selection {
  background: #E9B89D;
  /* WebKit/Blink Browsers */
}

/* line 108, resources/assets/styles/common/_global.scss */

::-moz-selection {
  background: #E9B89D;
  /* Gecko Browsers */
}

/*
*   Navigation menu
*/

/* line 115, resources/assets/styles/common/_global.scss */

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 120, resources/assets/styles/common/_global.scss */

.menu .menu-item a {
  position: relative;
  padding: 0.625rem 0.9375rem;
  color: #154565;
  text-transform: uppercase;
}

/* line 126, resources/assets/styles/common/_global.scss */

.menu .menu-item a:before {
  content: '';
  position: absolute;
  bottom: 0.3125rem;
  right: calc(100% - 0.9375rem);
  left: 0.9375rem;
  height: 0.0625rem;
  background-color: #154565;
  -webkit-transition: right 300ms ease-in-out;
  -o-transition: right 300ms ease-in-out;
  transition: right 300ms ease-in-out;
}

/* line 138, resources/assets/styles/common/_global.scss */

.menu .menu-item a:hover:before {
  right: 0.9375rem;
}

/* line 146, resources/assets/styles/common/_global.scss */

.menu .menu-item.current-menu-item a:before {
  right: 0.9375rem;
}

/*
*   Anchor underling
*/

/* line 157, resources/assets/styles/common/_global.scss */

.au {
  position: relative;
  color: #F3DEB7;
}

/* line 161, resources/assets/styles/common/_global.scss */

.au:before {
  content: '';
  position: absolute;
  bottom: -0.125rem;
  right: 100%;
  left: 0;
  height: 0.0625rem;
  background-color: #F3DEB7;
  -webkit-transition: right 300ms ease-out;
  -o-transition: right 300ms ease-out;
  transition: right 300ms ease-out;
}

/* line 172, resources/assets/styles/common/_global.scss */

.au:hover {
  color: #F3DEB7;
}

/* line 175, resources/assets/styles/common/_global.scss */

.au:hover:before {
  right: 0;
}

/*
*   Tabs
*/

/* line 184, resources/assets/styles/common/_global.scss */

.tabs {
  border: none;
  background: transparent;
}

/* line 188, resources/assets/styles/common/_global.scss */

.tabs .tabs-title,
.tabs .tabs-info {
  float: left;
}

/* line 192, resources/assets/styles/common/_global.scss */

.tabs .tabs-title a,
.tabs .tabs-info a {
  display: inline-block;
  position: relative;
  padding: 0.625rem 0.9375rem;
  margin: 0.3125rem 0;
  line-height: 1;
  color: #E9B89D !important;
  font-size: 1rem;
  text-transform: uppercase;
  background: transparent !important;
  font-family: 'SeasonsLight';
  letter-spacing: 0.075rem;
}

/* line 205, resources/assets/styles/common/_global.scss */

.tabs .tabs-title a:before,
.tabs .tabs-info a:before {
  content: '';
  position: absolute;
  bottom: 0.3125rem;
  right: calc(100% - 0.9375rem);
  left: 0.9375rem;
  height: 0.0625rem;
  background-color: #E9B89D;
  -webkit-transition: right 300ms ease-in-out;
  -o-transition: right 300ms ease-in-out;
  transition: right 300ms ease-in-out;
}

/* line 217, resources/assets/styles/common/_global.scss */

.tabs .tabs-title a:hover:before,
.tabs .tabs-info a:hover:before {
  right: 0.9375rem;
}

/* line 222, resources/assets/styles/common/_global.scss */

.tabs .tabs-title a:focus,
.tabs .tabs-info a:focus {
  outline: none;
}

/* line 229, resources/assets/styles/common/_global.scss */

.tabs .tabs-title.is-active a:before,
.tabs .tabs-info.is-active a:before {
  right: 0.9375rem;
}

/* line 237, resources/assets/styles/common/_global.scss */

.tabs-content {
  border: none;
  background: transparent;
  padding: 0;
}

/*
*   Swiper
*/

/* line 246, resources/assets/styles/common/_global.scss */

.swiper-slide {
  -webkit-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

/* line 251, resources/assets/styles/common/_global.scss */

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev,
.swiper-button-next {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* line 258, resources/assets/styles/common/_global.scss */

.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

/* line 263, resources/assets/styles/common/_global.scss */

.swiper-button-prev,
.swiper-button-prev {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -1.5625rem;
}

@media print, screen and (min-width: 64em) {
  /* line 263, resources/assets/styles/common/_global.scss */

  .swiper-button-prev,
  .swiper-button-prev {
    left: -2.5rem;
  }
}

/* line 272, resources/assets/styles/common/_global.scss */

.swiper-button-next,
.swiper-button-next {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: -1.5625rem;
}

@media print, screen and (min-width: 64em) {
  /* line 272, resources/assets/styles/common/_global.scss */

  .swiper-button-next,
  .swiper-button-next {
    right: -2.5rem;
  }
}

/*
*   Scroll hint
*/

/* line 285, resources/assets/styles/common/_global.scss */

.scroll-hint {
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation-name: bounce;
       -o-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 4s;
       -o-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: ease;
       -o-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* line 295, resources/assets/styles/common/_global.scss */

.scroll-hint:before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  width: 1.875rem;
  height: 1.875rem;
}

/* line 301, resources/assets/styles/common/_global.scss */

.scroll-hint--small {
  -webkit-animation-name: bounce-small;
       -o-animation-name: bounce-small;
          animation-name: bounce-small;
  -webkit-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
  bottom: -0.9375rem;
}

/* line 306, resources/assets/styles/common/_global.scss */

.scroll-hint--small:before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  width: 1.25rem;
  height: 1.25rem;
}

/* line 314, resources/assets/styles/common/_global.scss */

.scroll-hint--yellow:before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 320, resources/assets/styles/common/_global.scss */

.scroll-hint--orange:before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/*
*   Prokapital fixed logo
*/

/* line 329, resources/assets/styles/common/_global.scss */

.prokapital {
  position: fixed;
  z-index: 9999;
  bottom: -0.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.25rem;
}

@media print, screen and (min-width: 40em) {
  /* line 329, resources/assets/styles/common/_global.scss */

  .prokapital {
    left: 1.875rem;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 329, resources/assets/styles/common/_global.scss */

  .prokapital {
    left: 3.125rem;
  }
}

/* line 347, resources/assets/styles/common/_global.scss */

.disclaimer-image {
  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;
  background-color: #16254C;
  font-size: 0.625rem;
  padding: 0.9375rem 0.625rem 2.5rem;
  color: #FFFFFF;
  height: 1.8125rem;
}

@media print, screen and (min-width: 40em) {
  /* line 347, resources/assets/styles/common/_global.scss */

  .disclaimer-image {
    position: fixed;
    z-index: 9998;
    bottom: 0;
    right: 1.875rem;
    padding: 0 0.625rem;
    font-size: 0.75rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 347, resources/assets/styles/common/_global.scss */

  .disclaimer-image {
    right: 3.125rem;
  }
}

/* line 370, resources/assets/styles/common/_global.scss */

.disclaimer-image span {
  line-height: 1;
}

/*
*   VGT table
*/

/* line 378, resources/assets/styles/common/_global.scss */

.vgt-wrap {
  border-bottom: 0.0625rem solid #154565;
}

/* line 381, resources/assets/styles/common/_global.scss */

.vgt-table {
  border: none !important;
  margin-bottom: 0;
}

/* line 385, resources/assets/styles/common/_global.scss */

.vgt-table thead {
  border: none;
}

/* line 389, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th {
  border: none !important;
  background: #F3DEB7;
  cursor: pointer;
}

/* line 394, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th span {
  position: relative;
  font-family: 'SeasonsLight';
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: #154565;
  font-size: 0.75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 394, resources/assets/styles/common/_global.scss */

  .vgt-table thead tr th span {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 394, resources/assets/styles/common/_global.scss */

  .vgt-table thead tr th span {
    font-size: 1rem;
  }
}

/* line 410, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th span:after {
  content: '';
  position: absolute;
  left: calc(100% + 0.1875rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 0.9375rem;
  width: 0.9375rem;
  opacity: 0.25;
}

/* line 428, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th.sorting:after {
  content: none;
}

/* line 431, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th.sorting span {
  position: relative;
}

/* line 434, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th.sorting span:after {
  content: '';
  position: absolute;
  left: calc(100% + 0.1875rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 0.9375rem;
  width: 0.9375rem;
  opacity: 1;
}

/* line 453, resources/assets/styles/common/_global.scss */

.vgt-table thead tr th.sorting.sorting-asc span:after {
  top: calc(50% - 0.8125rem);
  -webkit-transform: rotate(180deg) translateY(-50%);
       -o-transform: rotate(180deg) translateY(-50%);
          transform: rotate(180deg) translateY(-50%);
}

/* line 463, resources/assets/styles/common/_global.scss */

.vgt-table tbody {
  border: none;
}

/* line 466, resources/assets/styles/common/_global.scss */

.vgt-table tbody tr {
  position: relative;
  border-bottom: 0.0625rem solid #154565;
  background: transparent;
  -webkit-transition: background-color 250ms ease-out;
  -o-transition: background-color 250ms ease-out;
  transition: background-color 250ms ease-out;
}

/* line 472, resources/assets/styles/common/_global.scss */

.vgt-table tbody tr td {
  border: none !important;
  color: #154565;
  font-size: 0.75rem;
}

@media print, screen and (min-width: 64em) {
  /* line 472, resources/assets/styles/common/_global.scss */

  .vgt-table tbody tr td {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 472, resources/assets/styles/common/_global.scss */

  .vgt-table tbody tr td {
    font-size: 1rem;
  }
}

/* line 486, resources/assets/styles/common/_global.scss */

.vgt-table tbody tr.sold {
  position: relative;
}

/* line 494, resources/assets/styles/common/_global.scss */

.vgt-table tbody tr.sold td {
  opacity: 0.25;
}

/* line 499, resources/assets/styles/common/_global.scss */

.vgt-table tbody tr:last-of-type {
  border-bottom: none;
}

/*
*   Language switcher
*/

/* line 510, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls {
  font-family: 'SeasonsLight';
  text-transform: uppercase;
}

/* line 514, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-item {
  text-align: center;
}

/* line 517, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  display: inline-block;
  color: #F3DEB7;
  background: transparent;
  border: none;
  padding: 0.625rem;
}

/* line 524, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  position: absolute;
  top: calc(50% + 0.125rem);
  left: 100%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* line 539, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-sub-menu {
  border: none;
}

/* line 542, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item {
  text-align: center;
  -webkit-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

/* line 546, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  display: inline-block;
  color: #F3DEB7;
  background: transparent;
  border: none;
  padding: 0.625rem;
}

/* line 554, resources/assets/styles/common/_global.scss */

.language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item:hover {
  opacity: 0.5;
}

/*
*   Animation class
*/

/* line 565, resources/assets/styles/common/_global.scss */

.ani {
  opacity: 0;
}

/* line 568, resources/assets/styles/common/_global.scss */

.ani[data-children] {
  opacity: 1;
}

/* line 571, resources/assets/styles/common/_global.scss */

.ani[data-children] > * {
  opacity: 0;
}

@-webkit-keyframes animationFrames {
  0% {
    background-size: 130%;
  }

  100% {
    background-size: 130%;
  }
}

@-o-keyframes animationFrames {
  0% {
    background-size: 130%;
  }

  100% {
    background-size: 130%;
  }
}

@keyframes animationFrames {
  0% {
    background-size: 130%;
  }

  100% {
    background-size: 130%;
  }
}

/* line 1, resources/assets/styles/components/_buttons.scss */

.button,
.comment-form input[type="submit"],
.search-form .search-submit {
  color: #F3DEB7;
  border: 0.0625rem solid #F3DEB7;
  background-color: transparent;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  font-family: 'SeasonsLight';
  font-size: 0.875rem;
  letter-spacing: 0.075rem;
}

/* line 11, resources/assets/styles/components/_buttons.scss */

.button--green {
  color: #285C61;
  border: 0.0625rem solid #285C61;
}

/* line 15, resources/assets/styles/components/_buttons.scss */

.button--green:hover,
.button--green:focus {
  background-color: #285C61;
  color: #F3DEB7;
  outline: 0;
}

/* line 23, resources/assets/styles/components/_buttons.scss */

.button--orange {
  color: #E9B89D;
  border: 0.0625rem solid #E9B89D;
}

/* line 27, resources/assets/styles/components/_buttons.scss */

.button--orange:hover,
.button--orange:focus {
  background-color: #E9B89D;
  color: #285C61;
  outline: 0;
}

/* line 35, resources/assets/styles/components/_buttons.scss */

.button--blue {
  color: #154565;
  border: 0.0625rem solid #154565;
}

/* line 39, resources/assets/styles/components/_buttons.scss */

.button--blue:hover,
.button--blue:focus {
  background-color: #154565;
  color: #FFFFFF !important;
  outline: 0;
}

/* line 47, resources/assets/styles/components/_buttons.scss */

.button--swamp {
  color: #717C76;
  border: 0.0625rem solid #717C76;
}

/* line 51, resources/assets/styles/components/_buttons.scss */

.button--swamp:hover,
.button--swamp:focus {
  background-color: #717C76;
  color: #F3DEB7;
  outline: 0;
}

/* line 59, resources/assets/styles/components/_buttons.scss */

.button--yellow,
form.wpcf7-form .button,
form.wpcf7-form .comment-form input[type="submit"],
.comment-form form.wpcf7-form input[type="submit"],
form.wpcf7-form .search-form .search-submit,
.search-form form.wpcf7-form .search-submit {
  color: #F3DEB7;
  border: 0.0625rem solid #F3DEB7;
}

/* line 63, resources/assets/styles/components/_buttons.scss */

.button--yellow:hover,
form.wpcf7-form .button:hover,
form.wpcf7-form .comment-form input:hover[type="submit"],
.comment-form form.wpcf7-form input:hover[type="submit"],
form.wpcf7-form .search-form .search-submit:hover,
.search-form form.wpcf7-form .search-submit:hover,
.button--yellow:focus,
form.wpcf7-form .button:focus,
form.wpcf7-form .comment-form input:focus[type="submit"],
.comment-form form.wpcf7-form input:focus[type="submit"],
form.wpcf7-form .search-form .search-submit:focus,
.search-form form.wpcf7-form .search-submit:focus {
  background-color: #F3DEB7;
  color: #285C61;
  outline: 0;
}

/* line 71, resources/assets/styles/components/_buttons.scss */

.button--borderless {
  border: 0.0625rem solid transparent;
}

/* line 75, resources/assets/styles/components/_buttons.scss */

.button .icon,
.comment-form input[type="submit"] .icon,
.search-form .search-submit .icon {
  display: inline-block;
  margin: 0 0 0 0.3125rem;
  -webkit-transform: translateY(0.0625rem);
       -o-transform: translateY(0.0625rem);
          transform: translateY(0.0625rem);
}

/* line 81, resources/assets/styles/components/_buttons.scss */

.button .icon svg path,
.comment-form input[type="submit"] .icon svg path,
.search-form .search-submit .icon svg path {
  fill: #E9B89D;
  -webkit-transition: fill 200ms ease-out;
  -o-transition: fill 200ms ease-out;
  transition: fill 200ms ease-out;
}

/* line 91, resources/assets/styles/components/_buttons.scss */

.button:hover .icon svg path,
.comment-form input:hover[type="submit"] .icon svg path,
.search-form .search-submit:hover .icon svg path {
  fill: #285C61;
}

/* line 101, resources/assets/styles/components/_buttons.scss */

.button--blue .icon svg path {
  fill: #154565;
}

/* line 110, resources/assets/styles/components/_buttons.scss */

.button--blue:hover .icon svg path {
  fill: #FFFFFF;
}

/* line 5, resources/assets/styles/components/_comments.scss */

.comment-list ol {
  list-style: none;
}

/** Search form */

/* line 6, resources/assets/styles/components/_forms.scss */

.search-form label {
  font-weight: normal;
}

/* line 19, resources/assets/styles/components/_forms.scss */

.wpcf7-list-item-label {
  color: #f3deb7;
  margin-bottom: 0px;
}

/* line 20, resources/assets/styles/components/_forms.scss */

body.page-template-template-info form.wpcf7-form .button:hover,
body.page-template-template-info form.wpcf7-form .comment-form input:hover[type="submit"],
.comment-form body.page-template-template-info form.wpcf7-form input:hover[type="submit"],
body.page-template-template-info form.wpcf7-form .search-form .search-submit:hover,
.search-form body.page-template-template-info form.wpcf7-form .search-submit:hover {
  color: #717c76;
}

/*
  * Form
  */

/* line 27, resources/assets/styles/components/_forms.scss */

form input[type='text'],
form input[type='email'],
form input[type='tel'],
form textarea {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 100%;
  color: #F3DEB7;
  border-bottom: 0.0625rem solid #F3DEB7;
  text-align: center;
  -webkit-transition: border-bottom 200ms ease-out;
  -o-transition: border-bottom 200ms ease-out;
  transition: border-bottom 200ms ease-out;
}

/* line 40, resources/assets/styles/components/_forms.scss */

form input[type='text']::-webkit-input-placeholder,
form input[type='email']::-webkit-input-placeholder,
form input[type='tel']::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  color: #F3DEB7;
  -webkit-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}

form input[type='text']::-moz-placeholder,
form input[type='email']::-moz-placeholder,
form input[type='tel']::-moz-placeholder,
form textarea::-moz-placeholder {
  color: #F3DEB7;
  -webkit-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}

form input[type='text']::-ms-input-placeholder,
form input[type='email']::-ms-input-placeholder,
form input[type='tel']::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
  color: #F3DEB7;
  -webkit-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}

form input[type='text']::placeholder,
form input[type='email']::placeholder,
form input[type='tel']::placeholder,
form textarea::placeholder {
  color: #F3DEB7;
  -webkit-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
}

/* line 45, resources/assets/styles/components/_forms.scss */

form input[type='text']:focus,
form input[type='email']:focus,
form input[type='tel']:focus,
form textarea:focus {
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 0.0625rem solid rgba(243, 222, 183, 0.5);
}

/* line 51, resources/assets/styles/components/_forms.scss */

form input[type='text']:focus::-webkit-input-placeholder,
form input[type='email']:focus::-webkit-input-placeholder,
form input[type='tel']:focus::-webkit-input-placeholder,
form textarea:focus::-webkit-input-placeholder {
  color: rgba(243, 222, 183, 0.5);
}

form input[type='text']:focus::-moz-placeholder,
form input[type='email']:focus::-moz-placeholder,
form input[type='tel']:focus::-moz-placeholder,
form textarea:focus::-moz-placeholder {
  color: rgba(243, 222, 183, 0.5);
}

form input[type='text']:focus::-ms-input-placeholder,
form input[type='email']:focus::-ms-input-placeholder,
form input[type='tel']:focus::-ms-input-placeholder,
form textarea:focus::-ms-input-placeholder {
  color: rgba(243, 222, 183, 0.5);
}

form input[type='text']:focus::placeholder,
form input[type='email']:focus::placeholder,
form input[type='tel']:focus::placeholder,
form textarea:focus::placeholder {
  color: rgba(243, 222, 183, 0.5);
}

/* line 58, resources/assets/styles/components/_forms.scss */

form.wpcf7-form br {
  display: none;
}

/* line 62, resources/assets/styles/components/_forms.scss */

form.wpcf7-form .button,
form.wpcf7-form .comment-form input[type="submit"],
.comment-form form.wpcf7-form input[type="submit"],
form.wpcf7-form .search-form .search-submit,
.search-form form.wpcf7-form .search-submit {
  display: block;
  margin: 2.8125rem auto 0;
}

/* line 69, resources/assets/styles/components/_forms.scss */

form.wpcf7-form .wpcf7-not-valid-tip {
  color: #F3DEB7;
  text-align: center;
  font-size: 0.75rem;
  margin: -0.3125rem 0 0.9375rem;
}

/* line 76, resources/assets/styles/components/_forms.scss */

form.wpcf7-form div.wpcf7-response-output,
form.wpcf7-form div.wpcf7-validation-errors,
form.wpcf7-form div.wpcf7-acceptance-missing {
  border: 0.0625rem solid #F3DEB7 !important;
  text-align: center;
  margin: 0;
  padding: 0.9375rem;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

/* line 7, resources/assets/styles/components/_wp-classes.scss */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

/* line 14, resources/assets/styles/components/_wp-classes.scss */

.aligncenter {
  display: block;
  height: auto;
  margin: 0.625rem auto;
}

@media print, screen and (min-width: 40em) {
  /* line 14, resources/assets/styles/components/_wp-classes.scss */

  .aligncenter {
    margin: 0.9375rem auto;
  }
}

/* line 23, resources/assets/styles/components/_wp-classes.scss */

.alignleft,
.alignright {
  height: auto;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 23, resources/assets/styles/components/_wp-classes.scss */

  .alignleft,
  .alignright {
    margin-bottom: 0.9375rem;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 33, resources/assets/styles/components/_wp-classes.scss */

  .alignleft {
    float: left;
    margin-right: 0.9375rem;
  }

  /* line 41, resources/assets/styles/components/_wp-classes.scss */

  .alignright {
    float: right;
    margin-left: 0.9375rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

/* line 1, resources/assets/styles/components/_modal.scss */

.modal {
  display: none;
  position: relative;
  z-index: 9999;
}

/* line 7, resources/assets/styles/components/_modal.scss */

.modal .grid-container .full {
  max-width: 75rem;
}

/* line 12, resources/assets/styles/components/_modal.scss */

.modal.is-open {
  display: block;
}

/* line 16, resources/assets/styles/components/_modal.scss */

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #717C76;
  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;
}

@media print, screen and (min-width: 64em) {
  /* line 16, resources/assets/styles/components/_modal.scss */

  .modal__overlay {
    margin: 0 auto;
  }
}

/* line 35, resources/assets/styles/components/_modal.scss */

.modal__overlay:focus {
  outline: 0;
}

/* line 40, resources/assets/styles/components/_modal.scss */

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  background: transparent;
  border: 0;
  -webkit-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

/* line 50, resources/assets/styles/components/_modal.scss */

.modal__close:before {
  content: '';
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAzMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxLjM5MTYgMTkuNDU1N0wxOC41NjE5IDExLjAxMDZMMzEuMzkxNiAyLjU2NTUzQzMxLjcwMjUgMi4zNjA3MiAzMS45MTkgMi4wNDE0IDMxLjk5MzMgMS42Nzc4MUMzMi4wNjc2IDEuMzE0MjMgMzEuOTkzNyAwLjkzNjE1MiAzMS43ODc5IDAuNjI2NzY2QzMxLjU4MjEgMC4zMTczOCAzMS4yNjEyIDAuMTAyMDI0IDMwLjg5NTggMC4wMjgwNzM4QzMwLjUzMDQgLTAuMDQ1ODc2NCAzMC4xNTA0IDAuMDI3NjM3MSAyOS44Mzk1IDAuMjMyNDQyTDE2LjAxOTEgOS4zMzQ3NkwyLjE5ODY0IDAuMjMyNDQyQzIuMDQ0NjggMC4xMzEwMzMgMS44NzIxNiAwLjA2MDc5MDMgMS42OTA5MyAwLjAyNTcyNDhDMS41MDk2OSAtMC4wMDkzNDA4MiAxLjMyMzI5IC0wLjAwODU0MjYzIDEuMTQyMzYgMC4wMjgwNzM4QzAuNzc2OTY5IDAuMTAyMDI0IDAuNDU2MDYxIDAuMzE3MzggMC4yNTAyMzggMC42MjY3NjZDMC4wNDQ0MTQzIDAuOTM2MTUyIC0wLjAyOTQ2NDcgMS4zMTQyMyAwLjA0NDg1MzEgMS42Nzc4MUMwLjExOTE3MSAyLjA0MTQgMC4zMzU1OTggMi4zNjA3MiAwLjY0NjUyMiAyLjU2NTUzTDEzLjQ3NjIgMTEuMDEwNkwwLjY0NjUyMiAxOS40NTU3QzAuMzg5NzQ2IDE5LjYxNzEgMC4xOTMyNzIgMTkuODU3OCAwLjA4NzI2MDUgMjAuMTQwOUMtMC4wMTg3NTA5IDIwLjQyNDEgLTAuMDI4NDQwNSAyMC43MzQxIDAuMDU5Njc5MiAyMS4wMjMyQzAuMTQ3Nzk5IDIxLjMxMjQgMC4zMjg4NTcgMjEuNTY0OCAwLjU3NTA2MSAyMS43NDE3QzAuODIxMjY1IDIxLjkxODYgMS4xMTkwMSAyMi4wMTAyIDEuNDIyNTggMjIuMDAyNEMxLjY5ODY1IDIyLjAwNTMgMS45NjkxNCAyMS45MjUxIDIuMTk4NjQgMjEuNzcyNEwxNi4wMTkxIDEyLjY4NjVMMjkuODM5NSAyMS43NzI0QzMwLjA2ODEgMjEuOTI3IDMwLjMzOTIgMjIuMDA3NCAzMC42MTU2IDIyLjAwMjRDMzAuODQ3MyAyMi4wMDE1IDMxLjA3NTQgMjEuOTQ0MSAzMS4yNzk3IDIxLjgzNTJDMzEuNDg0MSAyMS43MjY0IDMxLjY1ODUgMjEuNTY5NCAzMS43ODc5IDIxLjM3ODFDMzEuODg5NyAyMS4yMjYzIDMxLjk2MDMgMjEuMDU1OSAzMS45OTU1IDIwLjg3NjhDMzIuMDMwNyAyMC42OTc3IDMyLjAyOTggMjAuNTEzNCAzMS45OTI5IDIwLjMzNDZDMzEuOTU2MSAyMC4xNTU4IDMxLjg4NCAxOS45ODYxIDMxLjc4MDcgMTkuODM1MkMzMS42Nzc1IDE5LjY4NDQgMzEuNTQ1MyAxOS41NTU0IDMxLjM5MTYgMTkuNDU1N1oiIGZpbGw9IiNGM0RFQjciLz4KPC9zdmc+Cg==);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #F3DEB7;
  cursor: pointer;
}

/* line 63, resources/assets/styles/components/_modal.scss */

.modal__close:focus {
  opacity: 0.5;
  outline: 0;
}

/* line 69, resources/assets/styles/components/_modal.scss */

.modal__container {
  padding: 1.875rem 3.75rem;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 81, resources/assets/styles/components/_modal.scss */

.modal__wrapper {
  max-width: 25rem;
  margin: 0 auto;
}

/* line 86, resources/assets/styles/components/_modal.scss */

.modal__title {
  margin: 1.875rem 0 2.8125rem;
  font-size: 2.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

@media print, screen and (min-width: 64em) {
  /* line 86, resources/assets/styles/components/_modal.scss */

  .modal__title {
    margin: 1.875rem 0 5.625rem;
  }
}

/* line 97, resources/assets/styles/components/_modal.scss */

.modal__content {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  color: #F3DEB7;
}

/* line 103, resources/assets/styles/components/_modal.scss */

.modal__footer {
  text-align: center;
}

/* line 109, resources/assets/styles/components/_modal.scss */

.modal--large .modal__title {
  text-align: left;
}

@media screen and (max-width: 39.9375em) {
  /* line 109, resources/assets/styles/components/_modal.scss */

  .modal--large .modal__title {
    font-size: 1.5rem;
  }
}

/* line 117, resources/assets/styles/components/_modal.scss */

.modal--large .modal__wrapper {
  max-width: 100rem;
  margin: 0 auto;
}

/* line 122, resources/assets/styles/components/_modal.scss */

.modal--large .modal__footer {
  text-align: left;
  margin-bottom: 3.75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 129, resources/assets/styles/components/_modal.scss */

  .modal--large .cell--left {
    padding-right: 1.875rem;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 134, resources/assets/styles/components/_modal.scss */

  .modal--large .cell--right {
    padding-left: 1.875rem;
  }
}

/* line 144, resources/assets/styles/components/_modal.scss */

.modal--viewbox .modal__overlay {
  padding: 3.75rem 1.875rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #464646;
}

@media print, screen and (min-width: 64em) {
  /* line 144, resources/assets/styles/components/_modal.scss */

  .modal--viewbox .modal__overlay {
    padding: 3.75rem;
  }
}

/* line 157, resources/assets/styles/components/_modal.scss */

.modal--viewbox .modal__container,
.modal--viewbox .modal__wrapper {
  height: 100%;
  padding: 0;
}

/* line 164, resources/assets/styles/components/_modal.scss */

.modal--viewbox .image {
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 172, resources/assets/styles/components/_modal.scss */

.modal .item {
  margin: 0 0 1.875rem;
}

/* line 175, resources/assets/styles/components/_modal.scss */

.modal .item__title {
  margin: 0 0 0.9375rem;
  font-size: 1.125rem;
  letter-spacing: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 175, resources/assets/styles/components/_modal.scss */

  .modal .item__title {
    font-size: 1.5rem;
  }
}

/* line 186, resources/assets/styles/components/_modal.scss */

.modal .item__content a {
  position: relative;
  color: #F3DEB7;
}

/* line 190, resources/assets/styles/components/_modal.scss */

.modal .item__content a:before {
  content: '';
  position: absolute;
  bottom: -0.125rem;
  right: 0;
  left: 0;
  height: 0.0625rem;
  background-color: #F3DEB7;
  -webkit-transition: right 300ms ease-in-out;
  -o-transition: right 300ms ease-in-out;
  transition: right 300ms ease-in-out;
}

/* line 201, resources/assets/styles/components/_modal.scss */

.modal .item__content a:hover {
  color: #F3DEB7;
}

/* line 204, resources/assets/styles/components/_modal.scss */

.modal .item__content a:hover:before {
  right: 100%;
}

/* line 212, resources/assets/styles/components/_modal.scss */

.modal--popup-form {
  z-index: 9999;
}

/* line 216, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__container {
  padding: 1.875rem;
}

/* line 220, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* line 224, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper {
  position: relative;
  padding: 2.8125rem 1.875rem 1.875rem;
  max-width: 31.25rem;
  border: 0.625rem solid #FFFFFF;
  background: #717C76;
}

/* line 231, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper .close-button {
  position: absolute;
  z-index: 2;
  top: -0.3125rem;
  right: -0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #4D4D4F;
  cursor: pointer;
}

/* line 241, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper .close-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 50%;
  width: 50%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAzMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxLjM5MTYgMTkuNDU1N0wxOC41NjE5IDExLjAxMDZMMzEuMzkxNiAyLjU2NTUzQzMxLjcwMjUgMi4zNjA3MiAzMS45MTkgMi4wNDE0IDMxLjk5MzMgMS42Nzc4MUMzMi4wNjc2IDEuMzE0MjMgMzEuOTkzNyAwLjkzNjE1MiAzMS43ODc5IDAuNjI2NzY2QzMxLjU4MjEgMC4zMTczOCAzMS4yNjEyIDAuMTAyMDI0IDMwLjg5NTggMC4wMjgwNzM4QzMwLjUzMDQgLTAuMDQ1ODc2NCAzMC4xNTA0IDAuMDI3NjM3MSAyOS44Mzk1IDAuMjMyNDQyTDE2LjAxOTEgOS4zMzQ3NkwyLjE5ODY0IDAuMjMyNDQyQzIuMDQ0NjggMC4xMzEwMzMgMS44NzIxNiAwLjA2MDc5MDMgMS42OTA5MyAwLjAyNTcyNDhDMS41MDk2OSAtMC4wMDkzNDA4MiAxLjMyMzI5IC0wLjAwODU0MjYzIDEuMTQyMzYgMC4wMjgwNzM4QzAuNzc2OTY5IDAuMTAyMDI0IDAuNDU2MDYxIDAuMzE3MzggMC4yNTAyMzggMC42MjY3NjZDMC4wNDQ0MTQzIDAuOTM2MTUyIC0wLjAyOTQ2NDcgMS4zMTQyMyAwLjA0NDg1MzEgMS42Nzc4MUMwLjExOTE3MSAyLjA0MTQgMC4zMzU1OTggMi4zNjA3MiAwLjY0NjUyMiAyLjU2NTUzTDEzLjQ3NjIgMTEuMDEwNkwwLjY0NjUyMiAxOS40NTU3QzAuMzg5NzQ2IDE5LjYxNzEgMC4xOTMyNzIgMTkuODU3OCAwLjA4NzI2MDUgMjAuMTQwOUMtMC4wMTg3NTA5IDIwLjQyNDEgLTAuMDI4NDQwNSAyMC43MzQxIDAuMDU5Njc5MiAyMS4wMjMyQzAuMTQ3Nzk5IDIxLjMxMjQgMC4zMjg4NTcgMjEuNTY0OCAwLjU3NTA2MSAyMS43NDE3QzAuODIxMjY1IDIxLjkxODYgMS4xMTkwMSAyMi4wMTAyIDEuNDIyNTggMjIuMDAyNEMxLjY5ODY1IDIyLjAwNTMgMS45NjkxNCAyMS45MjUxIDIuMTk4NjQgMjEuNzcyNEwxNi4wMTkxIDEyLjY4NjVMMjkuODM5NSAyMS43NzI0QzMwLjA2ODEgMjEuOTI3IDMwLjMzOTIgMjIuMDA3NCAzMC42MTU2IDIyLjAwMjRDMzAuODQ3MyAyMi4wMDE1IDMxLjA3NTQgMjEuOTQ0MSAzMS4yNzk3IDIxLjgzNTJDMzEuNDg0MSAyMS43MjY0IDMxLjY1ODUgMjEuNTY5NCAzMS43ODc5IDIxLjM3ODFDMzEuODg5NyAyMS4yMjYzIDMxLjk2MDMgMjEuMDU1OSAzMS45OTU1IDIwLjg3NjhDMzIuMDMwNyAyMC42OTc3IDMyLjAyOTggMjAuNTEzNCAzMS45OTI5IDIwLjMzNDZDMzEuOTU2MSAyMC4xNTU4IDMxLjg4NCAxOS45ODYxIDMxLjc4MDcgMTkuODM1MkMzMS42Nzc1IDE5LjY4NDQgMzEuNTQ1MyAxOS41NTU0IDMxLjM5MTYgMTkuNDU1N1oiIGZpbGw9IiNGM0RFQjciLz4KPC9zdmc+Cg==);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}

/* line 257, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper .close-button:hover:before {
  opacity: 0.5;
}

/* line 263, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper .content-wrapper {
  position: relative;
  z-index: 1;
}

/* line 268, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__wrapper .image-container {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.15;
}

/* line 279, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__title {
  margin: 0 0 0.9375rem;
  font-size: 1.375rem;
  color: #F3DEB7;
}

/* line 285, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__content {
  color: #F3DEB7;
}

/* line 288, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__content p {
  font-family: "TT-Norms", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

/* line 293, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__content p:last-of-type {
  margin: 0 0 1.875rem;
}

/* line 297, resources/assets/styles/components/_modal.scss */

.modal--popup-form .modal__content p strong {
  color: #E9B89D;
  font-weight: 400;
}

/* line 305, resources/assets/styles/components/_modal.scss */

.modal--popup-form .wpcf7 {
  width: calc(100% - 2.8125rem);
  margin: 0 auto;
}

/* line 309, resources/assets/styles/components/_modal.scss */

.modal--popup-form .wpcf7 form.wpcf7-form {
  display: block;
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 309, resources/assets/styles/components/_modal.scss */

  .modal--popup-form .wpcf7 form.wpcf7-form {
    width: 90%;
    margin: 0 auto;
  }
}

/* line 318, resources/assets/styles/components/_modal.scss */

.modal--popup-form .wpcf7 form.wpcf7-form .form__input {
  width: 100%;
}

/* line 322, resources/assets/styles/components/_modal.scss */

.modal--popup-form .wpcf7 form.wpcf7-form .wpcf7-submit {
  width: 100%;
  white-space: normal;
  line-height: 1.4;
}

@media print, screen and (min-width: 40em) {
  /* line 322, resources/assets/styles/components/_modal.scss */

  .modal--popup-form .wpcf7 form.wpcf7-form .wpcf7-submit {
    padding: 0.625rem;
  }
}

/* line 335, resources/assets/styles/components/_modal.scss */

.modal.image_form {
  z-index: 9999;
}

/* line 339, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__container {
  padding: 1.875rem;
}

/* line 343, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* line 347, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper {
  position: relative;
  padding: 1.875rem;
  max-width: 56.25rem;
  border: unset;
  background: white;
}

/* line 355, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_image,
.modal.image_form .modal__wrapper .popup_text {
  max-width: 50%;
  width: 100%;
}

/* line 360, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_text {
  margin-top: 2.5rem;
}

/* line 365, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_cta .btn {
  border: 2px solid black;
  font-weight: 500;
  padding: 6px 20px;
  font-family: "TT-Norms", Helvetica, Roboto, Arial, sans-serif;
  -webkit-transition: ease 0.2s all;
  -o-transition: ease 0.2s all;
  transition: ease 0.2s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* line 374, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_cta .btn:hover,
.modal.image_form .modal__wrapper .popup_cta .btn:focus {
  background-color: black;
  color: white;
}

/* line 381, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_image .image-container {
  position: unset;
  opacity: 1;
}

/* line 385, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .popup_image .image-container .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* line 394, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .close-button {
  position: absolute;
  z-index: 2;
  top: 0.3125rem;
  right: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background-color: transparent;
}

/* line 404, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .close-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 50%;
  width: 50%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAzMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMzEuMzkxNiAxOS40NTU3TDE4LjU2MTkgMTEuMDEwNkwzMS4zOTE2IDIuNTY1NTNDMzEuNzAyNSAyLjM2MDcyIDMxLjkxOSAyLjA0MTQgMzEuOTkzMyAxLjY3NzgxQzMyLjA2NzYgMS4zMTQyMyAzMS45OTM3IDAuOTM2MTUyIDMxLjc4NzkgMC42MjY3NjZDMzEuNTgyMSAwLjMxNzM4IDMxLjI2MTIgMC4xMDIwMjQgMzAuODk1OCAwLjAyODA3MzhDMzAuNTMwNCAtMC4wNDU4NzY0IDMwLjE1MDQgMC4wMjc2MzcxIDI5LjgzOTUgMC4yMzI0NDJMMTYuMDE5MSA5LjMzNDc2TDIuMTk4NjQgMC4yMzI0NDJDMi4wNDQ2OCAwLjEzMTAzMyAxLjg3MjE2IDAuMDYwNzkwMyAxLjY5MDkzIDAuMDI1NzI0OEMxLjUwOTY5IC0wLjAwOTM0MDgyIDEuMzIzMjkgLTAuMDA4NTQyNjMgMS4xNDIzNiAwLjAyODA3MzhDMC43NzY5NjkgMC4xMDIwMjQgMC40NTYwNjEgMC4zMTczOCAwLjI1MDIzOCAwLjYyNjc2NkMwLjA0NDQxNDMgMC45MzYxNTIgLTAuMDI5NDY0NyAxLjMxNDIzIDAuMDQ0ODUzMSAxLjY3NzgxQzAuMTE5MTcxIDIuMDQxNCAwLjMzNTU5OCAyLjM2MDcyIDAuNjQ2NTIyIDIuNTY1NTNMMTMuNDc2MiAxMS4wMTA2TDAuNjQ2NTIyIDE5LjQ1NTdDMC4zODk3NDYgMTkuNjE3MSAwLjE5MzI3MiAxOS44NTc4IDAuMDg3MjYwNSAyMC4xNDA5Qy0wLjAxODc1MDkgMjAuNDI0MSAtMC4wMjg0NDA1IDIwLjczNDEgMC4wNTk2NzkyIDIxLjAyMzJDMC4xNDc3OTkgMjEuMzEyNCAwLjMyODg1NyAyMS41NjQ4IDAuNTc1MDYxIDIxLjc0MTdDMC44MjEyNjUgMjEuOTE4NiAxLjExOTAxIDIyLjAxMDIgMS40MjI1OCAyMi4wMDI0QzEuNjk4NjUgMjIuMDA1MyAxLjk2OTE0IDIxLjkyNTEgMi4xOTg2NCAyMS43NzI0TDE2LjAxOTEgMTIuNjg2NUwyOS44Mzk1IDIxLjc3MjRDMzAuMDY4MSAyMS45MjcgMzAuMzM5MiAyMi4wMDc0IDMwLjYxNTYgMjIuMDAyNEMzMC44NDczIDIyLjAwMTUgMzEuMDc1NCAyMS45NDQxIDMxLjI3OTcgMjEuODM1MkMzMS40ODQxIDIxLjcyNjQgMzEuNjU4NSAyMS41Njk0IDMxLjc4NzkgMjEuMzc4MUMzMS44ODk3IDIxLjIyNjMgMzEuOTYwMyAyMS4wNTU5IDMxLjk5NTUgMjAuODc2OEMzMi4wMzA3IDIwLjY5NzcgMzIuMDI5OCAyMC41MTM0IDMxLjk5MjkgMjAuMzM0NkMzMS45NTYxIDIwLjE1NTggMzEuODg0IDE5Ljk4NjEgMzEuNzgwNyAxOS44MzUyQzMxLjY3NzUgMTkuNjg0NCAzMS41NDUzIDE5LjU1NTQgMzEuMzkxNiAxOS40NTU3WiIgZmlsbD0iIzAwMDAwMCIvPgo8L3N2Zz4K);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}

/* line 420, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .close-button:hover:before {
  opacity: 0.5;
}

/* line 426, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .content-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

/* line 433, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__wrapper .image-container {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.15;
}

/* line 444, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__title {
  margin: 0 0 0.625rem;
  font-size: 2rem;
  color: black;
  text-align: left;
  text-transform: unset;
}

/* line 452, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__content {
  color: black;
  text-align: left;
  margin: 1.875rem 0;
}

/* line 457, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__content p {
  font-family: "TT-Norms", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

/* line 462, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__content p:last-of-type {
  margin: 0 0 1.875rem;
}

/* line 466, resources/assets/styles/components/_modal.scss */

.modal.image_form .modal__content p strong {
  color: black;
  font-weight: 400;
}

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

  to {
    opacity: 1;
  }
}

@-o-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 0;
  }
}

@-o-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes mmslideIn {
  from {
    -o-transform: translateY(15%);
       transform: translateY(15%);
  }

  to {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
         -o-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@-o-keyframes mmslideOut {
  from {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  to {
    -o-transform: translateY(-10%);
       transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
         -o-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

/* line 518, resources/assets/styles/components/_modal.scss */

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 526, resources/assets/styles/components/_modal.scss */

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 534, resources/assets/styles/components/_modal.scss */

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media (max-width: 700px) {
  /* line 541, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__wrapper .content-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  /* line 544, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__wrapper .content-wrapper .popup_image,
  .modal.image_form .modal__wrapper .content-wrapper .popup_text {
    max-width: 100%;
  }

  /* line 547, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__content {
    margin: 0;
  }

  /* line 551, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__wrapper .popup_text {
    margin-top: 0;
    margin: 0px 15px;
  }

  /* line 556, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__wrapper .popup_image .image-container .image {
    min-height: 300px;
  }

  /* line 560, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__wrapper {
    padding: 2.8125rem 0.9375rem;
  }

  /* line 565, resources/assets/styles/components/_modal.scss */

  .modal.image_form .modal__title {
    font-size: 1.7rem;
  }
}

/* line 1, resources/assets/styles/layouts/_header.scss */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1.25rem 3.125rem;
  background-color: #C7CCD3;
}

/* line 10, resources/assets/styles/layouts/_header.scss */

.header.fixed {
  position: fixed !important;
  top: 0 !important;
}

/* line 15, resources/assets/styles/layouts/_header.scss */

.header .grid-container {
  position: relative;
  z-index: 998;
}

/* line 20, resources/assets/styles/layouts/_header.scss */

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 25, resources/assets/styles/layouts/_header.scss */

.header__wrapper .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media print, screen and (min-width: 64em) {
  /* line 25, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .logo {
    margin: 0;
  }
}

/* line 34, resources/assets/styles/layouts/_header.scss */

.header__wrapper .logo__image {
  width: 6.25rem;
  height: 1.9375rem;
}

@media print, screen and (min-width: 40em) {
  /* line 34, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .logo__image {
    width: 8.125rem;
    height: 2.5rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 34, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .logo__image {
    width: 10.625rem;
    height: 3.3125rem;
  }
}

/* line 50, resources/assets/styles/layouts/_header.scss */

.header__wrapper .nav-primary {
  display: none;
}

@media print, screen and (min-width: 64em) {
  /* line 50, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .nav-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 57, resources/assets/styles/layouts/_header.scss */

.header__wrapper .nav-primary .menu {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 0 0 1.875rem;
}

/* line 62, resources/assets/styles/layouts/_header.scss */

.header__wrapper .nav-primary .menu .menu-item a {
  font-family: 'SeasonsLight';
  letter-spacing: 1px;
  letter-spacing: 0.06875rem;
  text-transform: uppercase;
  font-size: 0.625rem;
}

@media print, screen and (min-width: 64em) {
  /* line 62, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .nav-primary .menu .menu-item a {
    font-size: 0.5625rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 62, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .nav-primary .menu .menu-item a {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 62, resources/assets/styles/layouts/_header.scss */

  .header__wrapper .nav-primary .menu .menu-item a {
    font-size: 1rem;
  }
}

/* line 87, resources/assets/styles/layouts/_header.scss */

.header .menu-button {
  cursor: pointer;
  position: absolute;
  z-index: 998;
  top: calc(50% - 0.1875rem);
  left: 0.75rem;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.8125rem;
  height: 2.1875rem;
  padding: 0.625rem;
  overflow: hidden;
}

@media print, screen and (min-width: 40em) {
  /* line 87, resources/assets/styles/layouts/_header.scss */

  .header .menu-button {
    padding: 0.9375rem 0.625rem 0.9375rem;
    height: 2.8125rem;
    left: 1.25rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 87, resources/assets/styles/layouts/_header.scss */

  .header .menu-button {
    display: none;
  }
}

/* line 109, resources/assets/styles/layouts/_header.scss */

.header .menu-button .menu-toggle {
  position: relative;
  width: 1.5625rem;
  height: 1.25rem;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* line 115, resources/assets/styles/layouts/_header.scss */

.header .menu-button .menu-toggle span {
  display: block;
  position: absolute;
  height: 0.0625rem;
  width: 1.5625rem;
  border-radius: 0.25rem;
  background: #154565;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* line 127, resources/assets/styles/layouts/_header.scss */

.header .menu-button .menu-toggle span:nth-child(1) {
  top: 0;
  width: 1.125rem;
}

/* line 132, resources/assets/styles/layouts/_header.scss */

.header .menu-button .menu-toggle span:nth-child(2),
.header .menu-button .menu-toggle span:nth-child(3) {
  top: 0.5rem;
}

/* line 137, resources/assets/styles/layouts/_header.scss */

.header .menu-button .menu-toggle span:nth-child(4) {
  top: 1rem;
}

/* line 143, resources/assets/styles/layouts/_header.scss */

.header .menu-button.open span {
  background: #F3DEB7 !important;
}

/* line 146, resources/assets/styles/layouts/_header.scss */

.header .menu-button.open span:nth-child(1) {
  width: 0;
  right: 50%;
  opacity: 0;
}

/* line 152, resources/assets/styles/layouts/_header.scss */

.header .menu-button.open span:nth-child(2) {
  -webkit-transform: rotate(35deg);
       -o-transform: rotate(35deg);
          transform: rotate(35deg);
}

/* line 156, resources/assets/styles/layouts/_header.scss */

.header .menu-button.open span:nth-child(3) {
  -webkit-transform: rotate(-35deg);
       -o-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

/* line 160, resources/assets/styles/layouts/_header.scss */

.header .menu-button.open span:nth-child(4) {
  width: 0;
  left: 50%;
  opacity: 0;
}

/* line 169, resources/assets/styles/layouts/_header.scss */

.header .language-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -0.125rem 0 0;
}

/* line 174, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls {
  width: auto;
}

/* line 178, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #154565;
}

/* line 181, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  position: relative;
  top: unset;
  left: 0.3125rem;
  right: unset;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
  height: 0.625rem;
  width: 0.625rem;
}

@media screen and (min-width: 93.75em) {
  /* line 181, resources/assets/styles/layouts/_header.scss */

  .header .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
    height: 0.9375rem;
    width: 0.9375rem;
  }
}

/* line 198, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls .wpml-ls-sub-menu {
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
}

/* line 202, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #154565;
  padding: 0.3125rem 0.625rem 0.5rem;
}

/* line 209, resources/assets/styles/layouts/_header.scss */

.header .language-switcher .wpml-ls a {
  font-size: 0.625rem;
}

@media print, screen and (min-width: 64em) {
  /* line 209, resources/assets/styles/layouts/_header.scss */

  .header .language-switcher .wpml-ls a {
    font-size: 0.625rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 209, resources/assets/styles/layouts/_header.scss */

  .header .language-switcher .wpml-ls a {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 209, resources/assets/styles/layouts/_header.scss */

  .header .language-switcher .wpml-ls a {
    font-size: 1rem;
  }
}

/*
*  Overlay Menu
*/

/* line 233, resources/assets/styles/layouts/_header.scss */

.overlay-menu {
  position: fixed;
  width: 100vw;
  top: 0;
  bottom: 100%;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  background-color: #717C76;
  z-index: 999;
  opacity: 0;
}

/* line 245, resources/assets/styles/layouts/_header.scss */

.overlay-menu.opened {
  bottom: 0;
  opacity: 1;
}

@media print, screen and (min-width: 64em) {
  /* line 233, resources/assets/styles/layouts/_header.scss */

  .overlay-menu {
    display: none;
  }
}

/* line 254, resources/assets/styles/layouts/_header.scss */

.overlay-menu .grid-container {
  position: static;
}

/* line 259, resources/assets/styles/layouts/_header.scss */

.overlay-menu .header__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.25rem 3.125rem;
  margin: 0;
  width: 100%;
}

/* line 267, resources/assets/styles/layouts/_header.scss */

.overlay-menu .header__wrapper .menu-button {
  left: 0.75rem;
}

/* line 273, resources/assets/styles/layouts/_header.scss */

.overlay-menu .language-switcher {
  text-align: center;
}

/* line 276, resources/assets/styles/layouts/_header.scss */

.overlay-menu .language-switcher .js-wpml-ls-legacy-dropdown {
  width: 100%;
}

/* line 281, resources/assets/styles/layouts/_header.scss */

.overlay-menu .language-switcher .wpml-ls-item-toggle:after {
  contentf: none;
}

/* line 285, resources/assets/styles/layouts/_header.scss */

.overlay-menu .language-switcher .wpml-ls-sub-menu {
  visibility: visible;
}

/* line 289, resources/assets/styles/layouts/_header.scss */

.overlay-menu .language-switcher a {
  font-size: 1rem !important;
  padding: 0.3125rem 0.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 289, resources/assets/styles/layouts/_header.scss */

  .overlay-menu .language-switcher a {
    font-size: 1.125rem !important;
  }
}

/* line 299, resources/assets/styles/layouts/_header.scss */

.overlay-menu__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;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 5.625rem 0.9375rem 3.75rem;
}

/* line 309, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container {
  width: 100%;
  max-width: 62.5rem;
  text-align: center;
}

@media print, screen and (min-width: 40em) {
  /* line 309, resources/assets/styles/layouts/_header.scss */

  .overlay-menu__container .grid-container {
    text-align: left;
  }
}

/* line 318, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .overlay-logos {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 7.5rem;
  margin: 0 auto;
  text-align: center;
  height: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 318, resources/assets/styles/layouts/_header.scss */

  .overlay-menu__container .grid-container .overlay-logos {
    max-width: 9.375rem;
  }
}

/* line 332, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .overlay-logos .logo {
  width: 100%;
  margin: 0 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 332, resources/assets/styles/layouts/_header.scss */

  .overlay-menu__container .grid-container .overlay-logos .logo {
    margin: 0 0 2.8125rem;
  }
}

/* line 341, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .overlay-logos .sublogo {
  width: 90%;
}

/* line 346, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .menu {
  margin: 3.75rem 0 2.5rem;
}

@media print, screen and (min-width: 40em) {
  /* line 346, resources/assets/styles/layouts/_header.scss */

  .overlay-menu__container .grid-container .menu {
    margin: 1.875rem 0;
  }
}

/* line 353, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .menu li {
  width: 100%;
  text-align: center;
}

/* line 357, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .menu li a {
  display: inline-block;
  padding: 0;
  margin: 0.625rem 0;
  font-size: 1rem;
  font-weight: 400;
  -webkit-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  font-family: 'SeasonsLight';
  letter-spacing: 0.06875rem;
  color: #F3DEB7 !important;
}

@media print, screen and (min-width: 40em) {
  /* line 357, resources/assets/styles/layouts/_header.scss */

  .overlay-menu__container .grid-container .menu li a {
    font-size: 2.25rem;
    margin: 0.75rem 0;
  }
}

/* line 373, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .menu li a:before {
  bottom: -0.125rem;
  right: 100%;
  left: 0;
  background-color: #F3DEB7 !important;
}

/* line 381, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .menu li a:hover:before {
  right: 0;
}

/* line 389, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .wpml-ls {
  padding: 0 0 3.75rem;
  text-align: center;
}

/* line 393, resources/assets/styles/layouts/_header.scss */

.overlay-menu__container .grid-container .wpml-ls a {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'SeasonsLight';
  letter-spacing: 1px;
  padding: 0.625rem 0 0 0.9375rem;
  color: #F3DEB7 !important;
}

/* line 1, resources/assets/styles/layouts/_pages.scss */

.page-template-template-frontpage {
  background-color: #16254C;
  padding-bottom: 3.75rem;
}

/* line 5, resources/assets/styles/layouts/_pages.scss */

.page-template-template-frontpage .header {
  position: absolute;
  top: 100vh;
  top: calc(100vh - var(--vh-offset, 0px));
  background-color: #16254C;
}

@media screen and (max-height: 600px) {
  /* line 15, resources/assets/styles/layouts/_pages.scss */

  .page-template-template-frontpage .header {
    top: 37.5rem;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 21, resources/assets/styles/layouts/_pages.scss */

  .page-template-template-frontpage {
    padding-bottom: 0;
  }
}

/* line 27, resources/assets/styles/layouts/_pages.scss */

.page-template-template-location {
  background-color: #E5E5E5;
}

/* line 30, resources/assets/styles/layouts/_pages.scss */

.page-template-template-location .header {
  background-color: #E5E5E5;
}

/* line 35, resources/assets/styles/layouts/_pages.scss */

.page-template-template-info {
  background-color: #717C76;
}

/* line 38, resources/assets/styles/layouts/_pages.scss */

.page-template-template-info .header {
  background-color: #717C76;
}

/* line 42, resources/assets/styles/layouts/_pages.scss */

.page-template-template-info .disclaimer-image {
  display: none;
}

/* line 47, resources/assets/styles/layouts/_pages.scss */

.page-template-template-developer {
  background-color: #C7CCD3;
}

/* line 50, resources/assets/styles/layouts/_pages.scss */

.page-template-template-developer .header {
  background-color: #C7CCD3;
}

/* line 55, resources/assets/styles/layouts/_pages.scss */

.page-template-template-interiordesign {
  background-color: #686869;
}

/* line 58, resources/assets/styles/layouts/_pages.scss */

.page-template-template-interiordesign .header {
  background-color: #686869;
}

/* line 63, resources/assets/styles/layouts/_pages.scss */

.page-template-template-gallery {
  background-color: #464646;
}

/* line 66, resources/assets/styles/layouts/_pages.scss */

.page-template-template-gallery .header {
  background-color: #464646;
}

@media screen and (max-width: 39.9375em) {
  /* line 74, resources/assets/styles/layouts/_pages.scss */

  .page-template-template-gallery .disclaimer-image {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
  }
}

/* line 84, resources/assets/styles/layouts/_pages.scss */

.page-template-template-plan {
  background-color: #FFFFFF;
}

/* line 87, resources/assets/styles/layouts/_pages.scss */

.page-template-template-plan .header {
  background-color: #FFFFFF;
}

/* line 92, resources/assets/styles/layouts/_pages.scss */

.page-template-template-businessplan {
  background-color: #16254C;
}

/* line 95, resources/assets/styles/layouts/_pages.scss */

.page-template-template-businessplan .header {
  background-color: #16254C;
}

/* line 100, resources/assets/styles/layouts/_pages.scss */

.page-template-template-businessplan .section--plan {
  padding-top: 1.875rem;
}

/* line 112, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .logo__image path {
  fill: #F3DEB7;
}

/* line 120, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .menu-button .menu-toggle span {
  background-color: #F3DEB7;
}

/* line 128, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .menu .menu-item a {
  color: #F3DEB7;
}

/* line 131, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .menu .menu-item a:before {
  background-color: #F3DEB7;
}

/* line 141, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #F3DEB7;
}

/* line 144, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 149, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #285C61;
}

/* line 153, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--green .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #F3DEB7;
}

/* line 165, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .logo__image path {
  fill: #285C61;
}

/* line 173, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .menu-button .menu-toggle span {
  background-color: #285C61;
}

/* line 181, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .menu .menu-item a {
  color: #285C61;
}

/* line 184, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .menu .menu-item a:before {
  background-color: #285C61;
}

/* line 194, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #285C61;
}

/* line 197, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjMjg1QzYxIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iIzI4NUM2MSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 202, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #F3DEB7;
}

/* line 206, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--yellow .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #285C61;
}

/* line 218, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .logo__image path {
  fill: #154565;
}

/* line 226, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .menu-button .menu-toggle span {
  background-color: #154565;
}

/* line 234, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .menu .menu-item a {
  color: #154565;
}

/* line 237, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .menu .menu-item a:before {
  background-color: #154565;
}

/* line 247, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #154565;
}

/* line 250, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
}

/* line 255, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #FFFFFF;
}

/* line 259, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--white .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #154565;
}

/* line 271, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .logo__image path {
  fill: #154565;
}

/* line 279, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .menu-button .menu-toggle span {
  background-color: #154565;
}

/* line 287, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .menu .menu-item a {
  color: #154565;
}

/* line 290, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .menu .menu-item a:before {
  background-color: #154565;
}

/* line 300, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #154565;
}

/* line 303, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDYgMTVDMTguMjI5OCAxNS4wMDExIDE4LjA1NzQgMTQuOTQ5NCAxNy45MTA5IDE0Ljg1MTVMMC4zOTYwNzUgMy4yNzcyMkMwLjE5OTEzMiAzLjE0NTkzIDAuMDYyNDExNyAyLjk0MTc3IDAuMDE1OTkxOSAyLjcwOTY3Qy0wLjAzMDQyOCAyLjQ3NzU4IDAuMDE3MjU0NSAyLjIzNjU0IDAuMTQ4NTUgMi4wMzk2QzAuMjc5ODQ1IDEuODQyNjYgMC40ODM5OTggMS43MDU5NCAwLjcxNjA5OCAxLjY1OTUyQzAuOTQ4MTk3IDEuNjEzMSAxLjE4OTIzIDEuNjYwNzggMS4zODYxNyAxLjc5MjA3TDE4LjQwNiAxMy4wMzk2TDM1LjQyNTggMS43OTIwN0MzNS42MjIgMS42NzMwNiAzNS44NTYzIDEuNjMzNDIgMzYuMDgwOCAxLjY4MTI2QzM2LjMwNTMgMS43MjkxIDM2LjUwMyAxLjg2MDgxIDM2LjYzMzcgMi4wNDk1QzM2LjY5ODIgMi4xNDY3NyAzNi43NDI3IDIuMjU1ODkgMzYuNzY0NiAyLjM3MDVDMzYuNzg2NiAyLjQ4NTEyIDM2Ljc4NTYgMi42MDI5NiAzNi43NjE2IDIuNzE3MThDMzYuNzM3NyAyLjgzMTM5IDM2LjY5MTMgMi45Mzk3MiAzNi42MjUxIDMuMDM1ODZDMzYuNTU5IDMuMTMyIDM2LjQ3NDQgMy4yMTQwNCAzNi4zNzYzIDMuMjc3MjJMMTguODkxMSAxNC44NTE1QzE4Ljc0NzcgMTQuOTQ4IDE4LjU3ODggMTQuOTk5NyAxOC40MDYgMTVaIiBmaWxsPSIjMTU0NTY1Ii8+CjxwYXRoIGQ9Ik0xOC40MDYgOC4zNTY0M0MxOC4yMjk4IDguMzU3NTIgMTguMDU3NCA4LjMwNTc5IDE3LjkxMDkgOC4yMDc5Mkw3LjkyMDgzIDEuNjMzNjZDNy43MjgzNyAxLjQ5OCA3LjU5NzQzIDEuMjkxNjggNy41NTY2MSAxLjA1OTc4QzcuNTE1OCAwLjgyNzg4MSA3LjU2ODQzIDAuNTg5MjUzIDcuNzAzIDAuMzk2MDM2QzcuODM1MTcgMC4yMDg5NzMgOC4wMzM2MSAwLjA3OTI2NjMgOC4yNTc5OSAwLjAzMzI4NzFDOC40ODIzNyAtMC4wMTI2OTIxIDguNzE1ODQgMC4wMjg1MDgzIDguOTEwOTIgMC4xNDg1MTFMMTguMzc2MyA2LjM5NjA0TDI3Ljg2MTQgMC4xNDg1MTFDMjguMDU5IDAuMDE5NDQ4IDI4LjI5OTQgLTAuMDI2OTI1NCAyOC41MzA4IDAuMDE5MzYxNUMyOC43NjIyIDAuMDY1NjQ4NCAyOC45NjYzIDAuMjAwODk5IDI5LjA5OSAwLjM5NjAzNkMyOS4yMjgxIDAuNTkzNjM5IDI5LjI3NDUgMC44MzM5OTYgMjkuMjI4MiAxLjA2NTQzQzI5LjE4MTkgMS4yOTY4NyAyOS4wNDY3IDEuNTAwOSAyOC44NTE1IDEuNjMzNjZMMTguODkxMSA4LjIwNzkyQzE4Ljc0NzcgOC4zMDQ0NSAxOC41Nzg4IDguMzU2MTUgMTguNDA2IDguMzU2NDNaIiBmaWxsPSIjMTU0NTY1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iMzYuODExOSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
}

/* line 308, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #E5E5E5;
}

/* line 312, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--light-blue .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #154565;
}

/* line 324, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .logo__image path {
  fill: #285C61;
}

/* line 332, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .menu-button .menu-toggle span {
  background-color: #285C61;
}

/* line 340, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .menu .menu-item a {
  color: #285C61;
}

/* line 343, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .menu .menu-item a:before {
  background-color: #285C61;
}

/* line 353, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #285C61;
}

/* line 356, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjMjg1QzYxIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iIzI4NUM2MSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 361, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #E9B89D;
}

/* line 365, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--orange .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #285C61;
}

/* line 377, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .logo__image path {
  fill: #E9B89D;
}

/* line 385, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .menu-button .menu-toggle span {
  background-color: #E9B89D;
}

/* line 393, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .menu .menu-item a {
  color: #E9B89D;
}

/* line 396, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .menu .menu-item a:before {
  background-color: #E9B89D;
}

/* line 406, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #E9B89D;
}

/* line 409, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 414, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #717C76;
}

/* line 418, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #E9B89D;
}

/* line 430, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .logo__image path {
  fill: #F3DEB7;
}

/* line 438, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .menu-button .menu-toggle span {
  background-color: #F3DEB7;
}

/* line 446, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .menu .menu-item a {
  color: #F3DEB7;
}

/* line 449, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .menu .menu-item a:before {
  background-color: #F3DEB7;
}

/* line 459, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #F3DEB7;
}

/* line 462, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 467, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #717C76;
}

/* line 471, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--swamp-light .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #F3DEB7;
}

/* line 483, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .logo__image path {
  fill: #E9B89D;
}

/* line 491, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .menu-button .menu-toggle span {
  background-color: #E9B89D;
}

/* line 499, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .menu .menu-item a {
  color: #E9B89D;
}

/* line 502, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .menu .menu-item a:before {
  background-color: #E9B89D;
}

/* line 512, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #E9B89D;
}

/* line 515, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 520, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #686869;
}

/* line 524, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--gray .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #E9B89D;
}

/* line 534, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--blue .wpml-ls-sub-menu {
  background-color: #C7CCD3;
}

/* line 542, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .logo__image path {
  fill: #E9B89D;
}

/* line 550, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .menu-button .menu-toggle span {
  background-color: #E9B89D;
}

/* line 558, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .menu .menu-item a {
  color: #E9B89D;
}

/* line 561, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .menu .menu-item a:before {
  background-color: #E9B89D;
}

/* line 571, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #E9B89D;
}

/* line 574, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRTlCODlEIi8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0U5Qjg5RCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 579, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #464646;
}

/* line 583, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--dark-gray .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #E9B89D;
}

/* line 595, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .logo__image path {
  fill: #F3DEB7;
}

/* line 603, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .menu-button .menu-toggle span {
  background-color: #F3DEB7;
}

/* line 611, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .menu .menu-item a {
  color: #F3DEB7;
}

/* line 614, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .menu .menu-item a:before {
  background-color: #F3DEB7;
}

/* line 624, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle {
  color: #F3DEB7;
}

/* line 627, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .language-switcher .wpml-ls .wpml-ls-item .wpml-ls-item-toggle:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xOC40MDU5IDE1QzE4LjIyOTcgMTUuMDAxMSAxOC4wNTczIDE0Ljk0OTQgMTcuOTEwOCAxNC44NTE1TDAuMzk1OTUyIDMuMjc3MjJDMC4xOTkwMDkgMy4xNDU5MyAwLjA2MjI4OTcgMi45NDE3NyAwLjAxNTg2OTggMi43MDk2N0MtMC4wMzA1NTAxIDIuNDc3NTggMC4wMTcxMzI0IDIuMjM2NTQgMC4xNDg0MjggMi4wMzk2QzAuMjc5NzIzIDEuODQyNjYgMC40ODM4NzYgMS43MDU5NCAwLjcxNTk3NiAxLjY1OTUyQzAuOTQ4MDc1IDEuNjEzMSAxLjE4OTExIDEuNjYwNzggMS4zODYwNSAxLjc5MjA3TDE4LjQwNTkgMTMuMDM5NkwzNS40MjU3IDEuNzkyMDdDMzUuNjIxOSAxLjY3MzA2IDM1Ljg1NjIgMS42MzM0MiAzNi4wODA3IDEuNjgxMjZDMzYuMzA1MSAxLjcyOTEgMzYuNTAyOSAxLjg2MDgxIDM2LjYzMzYgMi4wNDk1QzM2LjY5ODEgMi4xNDY3NyAzNi43NDI2IDIuMjU1ODkgMzYuNzY0NSAyLjM3MDVDMzYuNzg2NSAyLjQ4NTEyIDM2Ljc4NTUgMi42MDI5NiAzNi43NjE1IDIuNzE3MThDMzYuNzM3NiAyLjgzMTM5IDM2LjY5MTIgMi45Mzk3MiAzNi42MjUgMy4wMzU4NkMzNi41NTg5IDMuMTMyIDM2LjQ3NDMgMy4yMTQwNCAzNi4zNzYyIDMuMjc3MjJMMTguODkxIDE0Ljg1MTVDMTguNzQ3NiAxNC45NDggMTguNTc4NyAxNC45OTk3IDE4LjQwNTkgMTVaIiBmaWxsPSIjRjNERUI3Ii8+CjxwYXRoIGQ9Ik0xOC40MDU4IDguMzU2NDNDMTguMjI5NyA4LjM1NzUyIDE4LjA1NzIgOC4zMDU3OSAxNy45MTA4IDguMjA3OTJMNy45MjA2NyAxLjYzMzY2QzcuNzI4MjIgMS40OTggNy41OTcyOCAxLjI5MTY4IDcuNTU2NDYgMS4wNTk3OEM3LjUxNTY1IDAuODI3ODgxIDcuNTY4MjggMC41ODkyNTMgNy43MDI4NSAwLjM5NjAzNkM3LjgzNTAyIDAuMjA4OTczIDguMDMzNDYgMC4wNzkyNjYzIDguMjU3ODQgMC4wMzMyODcxQzguNDgyMjIgLTAuMDEyNjkyMSA4LjcxNTY5IDAuMDI4NTA4MyA4LjkxMDc3IDAuMTQ4NTExTDE4LjM3NjEgNi4zOTYwNEwyNy44NjEzIDAuMTQ4NTExQzI4LjA1ODkgMC4wMTk0NDggMjguMjk5MiAtMC4wMjY5MjU0IDI4LjUzMDcgMC4wMTkzNjE1QzI4Ljc2MjEgMC4wNjU2NDg0IDI4Ljk2NjEgMC4yMDA4OTkgMjkuMDk4OSAwLjM5NjAzNkMyOS4yMjggMC41OTM2MzkgMjkuMjc0MyAwLjgzMzk5NiAyOS4yMjggMS4wNjU0M0MyOS4xODE4IDEuMjk2ODcgMjkuMDQ2NSAxLjUwMDkgMjguODUxNCAxLjYzMzY2TDE4Ljg5MSA4LjIwNzkyQzE4Ljc0NzYgOC4zMDQ0NSAxOC41Nzg3IDguMzU2MTUgMTguNDA1OCA4LjM1NjQzWiIgZmlsbD0iI0YzREVCNyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjM2LjgxMTkiIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

/* line 632, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .language-switcher .wpml-ls .wpml-ls-sub-menu {
  background-color: #16254C;
}

/* line 636, resources/assets/styles/layouts/_pages.scss */

.page-template .main .header--navy .language-switcher .wpml-ls .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link {
  color: #F3DEB7;
}

/* line 648, resources/assets/styles/layouts/_pages.scss */

body.error404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 6.875rem 0.9375rem;
}

/* line 1, resources/assets/styles/layouts/_tinymce.scss */

body#tinymce {
  margin: 12px !important;
}

/* line 5, resources/assets/styles/sections/_section.scss */

.section {
  padding: 1.25rem;
}

@media print, screen and (min-width: 40em) {
  /* line 5, resources/assets/styles/sections/_section.scss */

  .section {
    padding: 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_section.scss */

  .section {
    padding: 3.125rem;
  }
}

/* line 18, resources/assets/styles/sections/_section.scss */

.color-animate * {
  -webkit-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border 200ms ease-in-out;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border 200ms ease-in-out;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.default .color-animate * {
  color: #285C61 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.default .color-animate .button,
body.default .color-animate .comment-form input[type="submit"],
.comment-form body.default .color-animate input[type="submit"],
body.default .color-animate .search-form .search-submit,
.search-form body.default .color-animate .search-submit {
  color: #285C61 !important;
  border: 0.0625rem solid #285C61 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.default .color-animate .button:hover,
body.default .color-animate .comment-form input:hover[type="submit"],
.comment-form body.default .color-animate input:hover[type="submit"],
body.default .color-animate .search-form .search-submit:hover,
.search-form body.default .color-animate .search-submit:hover {
  color: #285C61 !important;
  background-color: #285C61 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.green .color-animate * {
  color: #F3DEB7 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.green .color-animate .button,
body.green .color-animate .comment-form input[type="submit"],
.comment-form body.green .color-animate input[type="submit"],
body.green .color-animate .search-form .search-submit,
.search-form body.green .color-animate .search-submit {
  color: #F3DEB7 !important;
  border: 0.0625rem solid #F3DEB7 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.green .color-animate .button:hover,
body.green .color-animate .comment-form input:hover[type="submit"],
.comment-form body.green .color-animate input:hover[type="submit"],
body.green .color-animate .search-form .search-submit:hover,
.search-form body.green .color-animate .search-submit:hover {
  color: #285C61 !important;
  background-color: #F3DEB7 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.yellow .color-animate * {
  color: #285C61 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.yellow .color-animate .button,
body.yellow .color-animate .comment-form input[type="submit"],
.comment-form body.yellow .color-animate input[type="submit"],
body.yellow .color-animate .search-form .search-submit,
.search-form body.yellow .color-animate .search-submit {
  color: #285C61 !important;
  border: 0.0625rem solid #285C61 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.yellow .color-animate .button:hover,
body.yellow .color-animate .comment-form input:hover[type="submit"],
.comment-form body.yellow .color-animate input:hover[type="submit"],
body.yellow .color-animate .search-form .search-submit:hover,
.search-form body.yellow .color-animate .search-submit:hover {
  color: #F3DEB7 !important;
  background-color: #285C61 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.white .color-animate * {
  color: #154565 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.white .color-animate .button,
body.white .color-animate .comment-form input[type="submit"],
.comment-form body.white .color-animate input[type="submit"],
body.white .color-animate .search-form .search-submit,
.search-form body.white .color-animate .search-submit {
  color: #154565 !important;
  border: 0.0625rem solid #154565 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.white .color-animate .button:hover,
body.white .color-animate .comment-form input:hover[type="submit"],
.comment-form body.white .color-animate input:hover[type="submit"],
body.white .color-animate .search-form .search-submit:hover,
.search-form body.white .color-animate .search-submit:hover {
  color: #FFFFFF !important;
  background-color: #154565 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.orange .color-animate * {
  color: #285C61 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.orange .color-animate .button,
body.orange .color-animate .comment-form input[type="submit"],
.comment-form body.orange .color-animate input[type="submit"],
body.orange .color-animate .search-form .search-submit,
.search-form body.orange .color-animate .search-submit {
  color: #285C61 !important;
  border: 0.0625rem solid #285C61 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.orange .color-animate .button:hover,
body.orange .color-animate .comment-form input:hover[type="submit"],
.comment-form body.orange .color-animate input:hover[type="submit"],
body.orange .color-animate .search-form .search-submit:hover,
.search-form body.orange .color-animate .search-submit:hover {
  color: #E9B89D !important;
  background-color: #285C61 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.swamp .color-animate * {
  color: #E9B89D !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.swamp .color-animate .button,
body.swamp .color-animate .comment-form input[type="submit"],
.comment-form body.swamp .color-animate input[type="submit"],
body.swamp .color-animate .search-form .search-submit,
.search-form body.swamp .color-animate .search-submit {
  color: #E9B89D !important;
  border: 0.0625rem solid #E9B89D !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.swamp .color-animate .button:hover,
body.swamp .color-animate .comment-form input:hover[type="submit"],
.comment-form body.swamp .color-animate input:hover[type="submit"],
body.swamp .color-animate .search-form .search-submit:hover,
.search-form body.swamp .color-animate .search-submit:hover {
  color: #717C76 !important;
  background-color: #E9B89D !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.swamp-light .color-animate * {
  color: #F3DEB7 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.swamp-light .color-animate .button,
body.swamp-light .color-animate .comment-form input[type="submit"],
.comment-form body.swamp-light .color-animate input[type="submit"],
body.swamp-light .color-animate .search-form .search-submit,
.search-form body.swamp-light .color-animate .search-submit {
  color: #F3DEB7 !important;
  border: 0.0625rem solid #F3DEB7 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.swamp-light .color-animate .button:hover,
body.swamp-light .color-animate .comment-form input:hover[type="submit"],
.comment-form body.swamp-light .color-animate input:hover[type="submit"],
body.swamp-light .color-animate .search-form .search-submit:hover,
.search-form body.swamp-light .color-animate .search-submit:hover {
  color: #717C76 !important;
  background-color: #F3DEB7 !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.gray .color-animate * {
  color: #E9B89D !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.gray .color-animate .button,
body.gray .color-animate .comment-form input[type="submit"],
.comment-form body.gray .color-animate input[type="submit"],
body.gray .color-animate .search-form .search-submit,
.search-form body.gray .color-animate .search-submit {
  color: #E9B89D !important;
  border: 0.0625rem solid #E9B89D !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.gray .color-animate .button:hover,
body.gray .color-animate .comment-form input:hover[type="submit"],
.comment-form body.gray .color-animate input:hover[type="submit"],
body.gray .color-animate .search-form .search-submit:hover,
.search-form body.gray .color-animate .search-submit:hover {
  color: #686869 !important;
  background-color: #E9B89D !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.dark-gray .color-animate * {
  color: #E9B89D !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.dark-gray .color-animate .button,
body.dark-gray .color-animate .comment-form input[type="submit"],
.comment-form body.dark-gray .color-animate input[type="submit"],
body.dark-gray .color-animate .search-form .search-submit,
.search-form body.dark-gray .color-animate .search-submit {
  color: #E9B89D !important;
  border: 0.0625rem solid #E9B89D !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.dark-gray .color-animate .button:hover,
body.dark-gray .color-animate .comment-form input:hover[type="submit"],
.comment-form body.dark-gray .color-animate input:hover[type="submit"],
body.dark-gray .color-animate .search-form .search-submit:hover,
.search-form body.dark-gray .color-animate .search-submit:hover {
  color: #464646 !important;
  background-color: #E9B89D !important;
}

/* line 54, resources/assets/styles/sections/_section.scss */

body.navy .color-animate * {
  color: #F3DEB7 !important;
}

/* line 58, resources/assets/styles/sections/_section.scss */

body.navy .color-animate .button,
body.navy .color-animate .comment-form input[type="submit"],
.comment-form body.navy .color-animate input[type="submit"],
body.navy .color-animate .search-form .search-submit,
.search-form body.navy .color-animate .search-submit {
  color: #F3DEB7 !important;
  border: 0.0625rem solid #F3DEB7 !important;
}

/* line 62, resources/assets/styles/sections/_section.scss */

body.navy .color-animate .button:hover,
body.navy .color-animate .comment-form input:hover[type="submit"],
.comment-form body.navy .color-animate input:hover[type="submit"],
body.navy .color-animate .search-form .search-submit:hover,
.search-form body.navy .color-animate .search-submit:hover {
  color: #16254C !important;
  background-color: #F3DEB7 !important;
}

/* line 1, resources/assets/styles/sections/_hero.scss */

.section--hero {
  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;
  position: relative;
  min-height: 37.5rem;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  max-height: 118.75rem;
  overflow: hidden;
}

/* line 12, resources/assets/styles/sections/_hero.scss */

.section--hero .grid-container {
  width: 100%;
}

/* line 16, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-logo {
  width: 80%;
  max-width: 26.25rem;
  margin: 0 auto;
}

/* line 21, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-logo__image {
  overflow: visible;
}

/* line 24, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-logo__image .top,
.section--hero .hero-logo__image .bottom {
  opacity: 0;
}

/* line 30, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-logo__image .center .logo-path {
  opacity: 0;
}

/* line 37, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-menu {
  margin: 7.5rem 0 0;
}

/* line 41, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-menu .menu .menu-item {
  opacity: 0;
}

/* line 44, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-menu .menu .menu-item a {
  font-family: 'SeasonsLight';
  letter-spacing: 0.06875rem;
  color: #F3DEB7;
}

@media print, screen and (min-width: 64em) {
  /* line 44, resources/assets/styles/sections/_hero.scss */

  .section--hero .hero-menu .menu .menu-item a {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 44, resources/assets/styles/sections/_hero.scss */

  .section--hero .hero-menu .menu .menu-item a {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 93.75em) {
  /* line 44, resources/assets/styles/sections/_hero.scss */

  .section--hero .hero-menu .menu .menu-item a {
    font-size: 1rem;
  }
}

/* line 61, resources/assets/styles/sections/_hero.scss */

.section--hero .hero-menu .menu .menu-item a:before {
  background-color: #F3DEB7;
}

/* line 69, resources/assets/styles/sections/_hero.scss */

.section--hero .language-switcher {
  position: absolute;
  top: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* line 75, resources/assets/styles/sections/_hero.scss */

.section--hero .language-switcher .wpml-ls {
  opacity: 0;
}

/* line 80, resources/assets/styles/sections/_hero.scss */

.section--hero .background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* line 88, resources/assets/styles/sections/_hero.scss */

.section--hero .background__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out 1s;
  -o-transition: opacity 1s ease-out 1s;
  transition: opacity 1s ease-out 1s;
}

/* line 100, resources/assets/styles/sections/_hero.scss */

.section--hero .background__video.loaded {
  opacity: 1;
}

/* line 105, resources/assets/styles/sections/_hero.scss */

.section--hero .background:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}

/* line 117, resources/assets/styles/sections/_hero.scss */

.section--hero .background:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}

/* line 2, resources/assets/styles/sections/_large-image.scss */

.section--large-image {
  position: relative;
  padding-top: 4.6875rem;
}

@media print, screen and (min-width: 64em) {
  /* line 2, resources/assets/styles/sections/_large-image.scss */

  .section--large-image {
    padding-top: 5.625rem;
  }
}

/* line 10, resources/assets/styles/sections/_large-image.scss */

.section--large-image .image-container {
  position: relative;
  overflow: hidden;
}

/* line 37, resources/assets/styles/sections/_large-image.scss */

.section--large-image .image-container:before {
  content: '';
  display: block;
  padding-bottom: 62.5%;
}

/* line 43, resources/assets/styles/sections/_large-image.scss */

.section--large-image .image-container .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  overflow: hidden;
  -webkit-transition: height 2.5s ease-in-out;
  -o-transition: height 2.5s ease-in-out;
  transition: height 2.5s ease-in-out;
}

/* line 52, resources/assets/styles/sections/_large-image.scss */

.section--large-image .image-container .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 67, resources/assets/styles/sections/_large-image.scss */

.section--large-image .image-container.ani-mated .image-wrapper {
  height: 100%;
}

/* line 2, resources/assets/styles/sections/_large-video.scss */

.section--large-video {
  position: relative;
  padding-top: 4.6875rem;
}

@media print, screen and (min-width: 64em) {
  /* line 2, resources/assets/styles/sections/_large-video.scss */

  .section--large-video {
    padding-top: 5.625rem;
  }
}

/* line 10, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container {
  position: relative;
  height: calc(100vh - 1.25rem * 2 - 6.875rem);
  height: calc(100vh - var(--vh-offset, 0px) - 1.25rem * 2 - 6.875rem);
  overflow: hidden;
  opacity: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 10, resources/assets/styles/sections/_large-video.scss */

  .section--large-video .video-container {
    height: calc(100vh - 1.875rem * 2);
    height: calc(100vh - var(--vh-offset, 0px) - 1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 10, resources/assets/styles/sections/_large-video.scss */

  .section--large-video .video-container {
    height: calc(100vh - 3.125rem * 2 - 6.875rem);
    height: calc(100vh - var(--vh-offset, 0px) - 3.125rem * 2 - 6.875rem);
  }
}

/* line 28, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container.ani-mated .background {
  height: 100%;
}

/* line 33, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container .background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* line 41, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container .background__video {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transition: opacity 1s ease-out 1s;
  -o-transition: opacity 1s ease-out 1s;
  transition: opacity 1s ease-out 1s;
}

/* line 53, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container .background__video.loaded {
  opacity: 1;
}

/* line 58, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container .background:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background-color: #154565;
}

/* line 70, resources/assets/styles/sections/_large-video.scss */

.section--large-video .video-container .background:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background-color: rgba(21, 69, 101, 0.5);
}

/* line 2, resources/assets/styles/sections/_description.scss */

.section--description {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_description.scss */

.section--description .video-container {
  position: relative;
  min-height: 25rem;
  height: calc(100vh - 1.25rem * 2);
  height: calc(100vh - var(--vh-offset, 0px) - 1.25rem * 2);
  overflow: hidden;
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_description.scss */

  .section--description .video-container {
    height: calc(100vh - 1.875rem * 2);
    height: calc(100vh - var(--vh-offset, 0px) - 1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_description.scss */

  .section--description .video-container {
    height: calc(100vh - 3.125rem * 2);
    height: calc(100vh - var(--vh-offset, 0px) - 3.125rem * 2);
  }
}

/* line 22, resources/assets/styles/sections/_description.scss */

.section--description .video-container:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #16254C;
}

/* line 33, resources/assets/styles/sections/_description.scss */

.section--description .video-container .video {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* line 45, resources/assets/styles/sections/_description.scss */

.section--description .video-container .content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 4.6875rem 2.8125rem;
  text-align: center;
}

/* line 56, resources/assets/styles/sections/_description.scss */

.section--description .video-container .content:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(21, 69, 101, 0.85);
}

@media print, screen and (min-width: 40em) {
  /* line 56, resources/assets/styles/sections/_description.scss */

  .section--description .video-container .content:before {
    top: 1.875rem;
    right: 1.875rem;
    bottom: 1.875rem;
    left: 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 56, resources/assets/styles/sections/_description.scss */

  .section--description .video-container .content:before {
    top: 3.125rem;
    right: 3.125rem;
    bottom: 3.125rem;
    left: 3.125rem;
  }
}

/* line 81, resources/assets/styles/sections/_description.scss */

.section--description .video-container .content p {
  position: relative;
  z-index: 1;
  max-width: 31.25rem;
  color: #F3DEB7;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* line 89, resources/assets/styles/sections/_description.scss */

.section--description .video-container .content p:last-of-type {
  margin: 0;
}

/* line 2, resources/assets/styles/sections/_description-images.scss */

.section--description-images {
  position: relative;
  padding-top: 0;
}

/* line 6, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container {
  position: relative;
  width: 100%;
}

/* line 10, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container .image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-position: 0% 10%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: background-position 5s ease-in-out;
  -o-transition: background-position 5s ease-in-out;
  transition: background-position 5s ease-in-out;
}

/* line 23, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container.ani-mated .image {
  background-position: 50% 10%;
}

/* line 29, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container--left:before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

@media print, screen and (min-width: 40em) {
  /* line 28, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .image-container--left {
    z-index: 1;
    margin: 3.75rem 0 0;
  }

  /* line 39, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .image-container--left:before {
    padding-bottom: 70%;
  }
}

/* line 44, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container--left .image {
  width: 90%;
  right: auto;
  left: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 44, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .image-container--left .image {
    width: 100%;
  }
}

/* line 55, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container--right {
  z-index: 1;
  margin: -3.75rem 0 0;
}

@media print, screen and (min-width: 40em) {
  /* line 55, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .image-container--right {
    z-index: 0;
    margin: 0;
  }
}

/* line 64, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container--right:before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

/* line 69, resources/assets/styles/sections/_description-images.scss */

.section--description-images .image-container--right .image {
  width: 80%;
}

@media print, screen and (min-width: 40em) {
  /* line 69, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .image-container--right .image {
    width: 120%;
  }
}

/* line 79, resources/assets/styles/sections/_description-images.scss */

.section--description-images .text-container {
  padding: 1.875rem 1.875rem 1.875rem 0;
  font-family: 'SeasonsLight';
  letter-spacing: 0.1875rem;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media print, screen and (min-width: 40em) {
  /* line 79, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .text-container {
    padding: 1.875rem 0 1.875rem 1.875rem;
  }
}

/* line 90, resources/assets/styles/sections/_description-images.scss */

.section--description-images .text-container p {
  margin: 0;
  color: #285C61;
  text-transform: uppercase;
  font-size: 1rem;
  max-width: 43.75rem;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media print, screen and (min-width: 40em) {
  /* line 90, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .text-container p {
    font-size: 1.125rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 90, resources/assets/styles/sections/_description-images.scss */

  .section--description-images .text-container p {
    font-size: 1.3125rem;
  }
}

/* line 111, resources/assets/styles/sections/_description-images.scss */

.section--description-images .cell--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 2, resources/assets/styles/sections/_architects.scss */

.section--architects {
  position: relative;
  color: #E9B89D;
}

@media print, screen and (min-width: 40em) {
  /* line 2, resources/assets/styles/sections/_architects.scss */

  .section--architects {
    padding-bottom: 7.5rem;
  }
}

/* line 10, resources/assets/styles/sections/_architects.scss */

.section--architects .lazyload,
.section--architects .lazyloading {
  opacity: 0;
}

/* line 14, resources/assets/styles/sections/_architects.scss */

.section--architects .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 19, resources/assets/styles/sections/_architects.scss */

.section--architects .image-container {
  position: relative;
  height: 100%;
}

/* line 23, resources/assets/styles/sections/_architects.scss */

.section--architects .image-container:before {
  content: '';
  display: block;
  padding-bottom: 60%;
}

/* line 29, resources/assets/styles/sections/_architects.scss */

.section--architects .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 2.5s ease-in-out;
  -o-transition: width 2.5s ease-in-out;
  transition: width 2.5s ease-in-out;
}

/* line 42, resources/assets/styles/sections/_architects.scss */

.section--architects .image-container.ani-mated .image {
  width: 100%;
}

/* line 48, resources/assets/styles/sections/_architects.scss */

.section--architects .architects {
  max-width: 14.0625rem;
  margin: 0 auto;
  padding: 2.8125rem 0 0.9375rem;
}

@media print, screen and (min-width: 40em) {
  /* line 48, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects {
    margin: 0;
    max-width: none;
    padding: 5.625rem 1.875rem 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 48, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects {
    padding: 3.75rem 1.875rem 1.875rem;
  }
}

/* line 63, resources/assets/styles/sections/_architects.scss */

.section--architects .architects .architect {
  font-size: 1.3125rem;
  text-transform: uppercase;
  font-family: 'SeasonsLight';
  letter-spacing: 0.1875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 63, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects .architect {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 63, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects .architect {
    font-size: 2.25rem;
  }
}

/* line 77, resources/assets/styles/sections/_architects.scss */

.section--architects .architects .architect:nth-of-type(2) {
  margin: 0.625rem 0;
  text-align: right;
}

@media print, screen and (min-width: 40em) {
  /* line 77, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects .architect:nth-of-type(2) {
    margin: 0.625rem 0 0.625rem 3.75rem;
    text-align: left;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 77, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects .architect:nth-of-type(2) {
    margin: 0.625rem 0 0.625rem 3.75rem;
  }
}

/* line 93, resources/assets/styles/sections/_architects.scss */

.section--architects .architects-description {
  padding: 1.25rem 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 93, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects-description {
    padding: 1.875rem 0 2.8125rem 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 93, resources/assets/styles/sections/_architects.scss */

  .section--architects .architects-description {
    padding: 1.875rem 0 3.75rem 1.875rem;
  }
}

/* line 2, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow {
  position: relative;
  padding-top: 0;
}

/* line 6, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .image-container {
  position: relative;
  overflow: hidden;
}

/* line 10, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .image-container:before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

/* line 16, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .image-container .image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 2.5s ease-in-out;
  -o-transition: width 2.5s ease-in-out;
  transition: width 2.5s ease-in-out;
}

/* line 29, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .image-container.ani-mated .image {
  width: 100%;
}

/* line 35, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container {
  position: relative;
  height: calc(100vh - 1.25rem * 2 - 6.875rem);
  height: calc(100vh - var(--vh-offset, 0px) - 1.25rem * 2 - 6.875rem);
  overflow: hidden;
  opacity: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 35, resources/assets/styles/sections/_large-image-narrow.scss */

  .section--large-image-narrow .video-container {
    height: calc(100vh - 1.875rem * 2);
    height: calc(100vh - var(--vh-offset, 0px) - 1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 35, resources/assets/styles/sections/_large-image-narrow.scss */

  .section--large-image-narrow .video-container {
    height: calc(100vh - 3.125rem * 2 - 6.875rem);
    height: calc(100vh - var(--vh-offset, 0px) - 3.125rem * 2 - 6.875rem);
  }
}

/* line 53, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container.ani-mated .background {
  height: 100%;
}

/* line 58, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container .background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* line 66, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container .background__video {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transition: opacity 1s ease-out 1s;
  -o-transition: opacity 1s ease-out 1s;
  transition: opacity 1s ease-out 1s;
}

/* line 78, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container .background__video.loaded {
  opacity: 1;
}

/* line 83, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container .background:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background-color: #154565;
}

/* line 95, resources/assets/styles/sections/_large-image-narrow.scss */

.section--large-image-narrow .video-container .background:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  background-color: rgba(21, 69, 101, 0.5);
}

/* line 2, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second {
  position: relative;
  padding-top: 0;
}

/* line 6, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container {
  position: relative;
  width: 100%;
}

/* line 10, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container .image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-position: 0% 25%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 22, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--left:before {
  content: '';
  display: block;
  padding-bottom: 70%;
}

@media print, screen and (min-width: 40em) {
  /* line 21, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .image-container--left {
    z-index: 1;
    margin: 3.75rem 0 0;
  }

  /* line 32, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .image-container--left:before {
    padding-bottom: 120%;
  }
}

/* line 37, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--left .image {
  width: 90%;
  right: auto;
  left: 0;
  -webkit-transition: background-position 5s ease-out;
  -o-transition: background-position 5s ease-out;
  transition: background-position 5s ease-out;
}

@media print, screen and (min-width: 40em) {
  /* line 37, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .image-container--left .image {
    right: 0;
    left: auto;
    width: 100%;
  }
}

/* line 51, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--left.ani-mated .image {
  background-position: 100% 10%;
}

/* line 57, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--right {
  z-index: 1;
  margin: -11.25rem 0 0;
}

@media print, screen and (min-width: 40em) {
  /* line 57, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .image-container--right {
    margin: 0;
  }
}

/* line 65, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--right:before {
  content: '';
  display: block;
  padding-bottom: 80%;
}

/* line 71, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .image-container--right .image {
  width: 80%;
  background-position: center;
}

@media print, screen and (min-width: 40em) {
  /* line 71, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .image-container--right .image {
    width: 140%;
  }
}

/* line 82, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .text-container {
  padding: 2.5rem 1.875rem 0 0;
}

@media print, screen and (min-width: 40em) {
  /* line 82, resources/assets/styles/sections/_description-images-second.scss */

  .section--description-images-second .text-container {
    padding: 1.875rem 0 3.75rem 1.875rem;
  }
}

/* line 89, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .text-container p {
  margin: 0;
  color: #285C61;
}

/* line 96, resources/assets/styles/sections/_description-images-second.scss */

.section--description-images-second .cell--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 2, resources/assets/styles/sections/_interior-image.scss */

.section--interior-image {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_interior-image.scss */

.section--interior-image .image-container {
  position: relative;
  overflow: hidden;
}

/* line 9, resources/assets/styles/sections/_interior-image.scss */

.section--interior-image .image-container:before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

/* line 15, resources/assets/styles/sections/_interior-image.scss */

.section--interior-image .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 2.5s ease-in-out;
  -o-transition: width 2.5s ease-in-out;
  transition: width 2.5s ease-in-out;
}

/* line 27, resources/assets/styles/sections/_interior-image.scss */

.section--interior-image .image-container.ani-mated .image {
  width: 100%;
}

/* line 2, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .image-container {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 40vw;
}

/* line 12, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .image-container:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

/* line 18, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 0% 10%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: background-position 5s ease-out, width 2.5s ease-in-out 0.5s;
  -o-transition: background-position 5s ease-out, width 2.5s ease-in-out 0.5s;
  transition: background-position 5s ease-out, width 2.5s ease-in-out 0.5s;
}

/* line 31, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .image-container.ani-mated .image {
  background-position: 80% 10%;
}

/* line 37, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .interior-description {
  padding: 0 0 1.875rem;
}

/* line 40, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .interior-description p {
  position: relative;
  z-index: 1;
  max-width: 31.25rem;
  color: #F3DEB7;
}

/* line 46, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .interior-description p:last-of-type {
  margin: 0;
}

/* line 52, resources/assets/styles/sections/_interior-description.scss */

.section--interior-description .interion-image-container {
  position: relative;
}

/* line 2, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container {
  position: relative;
  min-height: 25rem;
  height: calc(75vh - 1.25rem * 2);
  height: calc(75vh - var(--vh-offset, 0px) - 1.25rem * 2);
  overflow: hidden;
}

@media print, screen and (min-width: 40em) {
  /* line 5, resources/assets/styles/sections/_large-image-title.scss */

  .section--large-image-title .image-container {
    height: calc(75vh - 1.875rem * 2);
    height: calc(75vh - var(--vh-offset, 0px) - 1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_large-image-title.scss */

  .section--large-image-title .image-container {
    height: calc(75vh - 3.125rem * 2);
    height: calc(75vh - var(--vh-offset, 0px) - 3.125rem * 2);
  }
}

/* line 22, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E9B89D;
}

/* line 32, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.5);
       -o-transform: scale(1.5);
          transform: scale(1.5);
  height: 100%;
  width: 100%;
  min-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 10s ease-out;
  transition: -webkit-transform 10s ease-out;
  -o-transition: -o-transform 10s ease-out;
  transition: transform 10s ease-out;
  transition: transform 10s ease-out, -webkit-transform 10s ease-out, -o-transform 10s ease-out;
}

/* line 48, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container.ani-mated .image {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

/* line 53, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 4.6875rem 2.8125rem;
  text-align: center;
  color: #154565;
}

/* line 65, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .content:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(255, 255, 255, 0.6);
}

@media print, screen and (min-width: 40em) {
  /* line 65, resources/assets/styles/sections/_large-image-title.scss */

  .section--large-image-title .image-container .content:before {
    top: 1.875rem;
    right: 1.875rem;
    bottom: 1.875rem;
    left: 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 65, resources/assets/styles/sections/_large-image-title.scss */

  .section--large-image-title .image-container .content:before {
    top: 3.125rem;
    right: 3.125rem;
    bottom: 3.125rem;
    left: 3.125rem;
  }
}

/* line 90, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .content h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  font-family: 'SeasonsLight';
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

@media print, screen and (min-width: 40em) {
  /* line 90, resources/assets/styles/sections/_large-image-title.scss */

  .section--large-image-title .image-container .content h2 {
    font-size: 2.25rem;
  }
}

/* line 105, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .content p {
  position: relative;
  z-index: 1;
  max-width: 31.25rem;
  line-height: 1.2;
}

/* line 111, resources/assets/styles/sections/_large-image-title.scss */

.section--large-image-title .image-container .content p:last-of-type {
  margin: 0;
}

/* line 2, resources/assets/styles/sections/_content.scss */

.section--content {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_content.scss */

.section--content .image-container {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

/* line 10, resources/assets/styles/sections/_content.scss */

.section--content .image-container:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

/* line 16, resources/assets/styles/sections/_content.scss */

.section--content .image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 135%;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  background-position: left 0;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 9s ease-in-out;
  transition: -webkit-transform 9s ease-in-out;
  -o-transition: -o-transform 9s ease-in-out;
  transition: transform 9s ease-in-out;
  transition: transform 9s ease-in-out, -webkit-transform 9s ease-in-out, -o-transform 9s ease-in-out;
}

/* line 30, resources/assets/styles/sections/_content.scss */

.section--content .image-container.ani-mated .image {
  -webkit-transform: translateX(-17.5%);
       -o-transform: translateX(-17.5%);
          transform: translateX(-17.5%);
}

/* line 35, resources/assets/styles/sections/_content.scss */

.section--content .image-container--extra {
  display: none;
  position: absolute;
  z-index: -9;
  top: 0;
  left: 0;
  width: 35%;
  max-height: 28.125rem;
}

/* line 44, resources/assets/styles/sections/_content.scss */

.section--content .image-container--extra:before {
  padding-bottom: 75%;
}

@media print, screen and (min-width: 64em) {
  /* line 35, resources/assets/styles/sections/_content.scss */

  .section--content .image-container--extra {
    display: block;
    left: 3.125rem;
  }
}

/* line 53, resources/assets/styles/sections/_content.scss */

.section--content .image-container--extra .image {
  background-position: left 65%;
  -webkit-transition: -webkit-transform 12s ease-in-out;
  transition: -webkit-transform 12s ease-in-out;
  -o-transition: -o-transform 12s ease-in-out;
  transition: transform 12s ease-in-out;
  transition: transform 12s ease-in-out, -webkit-transform 12s ease-in-out, -o-transform 12s ease-in-out;
}

/* line 60, resources/assets/styles/sections/_content.scss */

.section--content .item {
  color: #285C61;
}

/* line 63, resources/assets/styles/sections/_content.scss */

.section--content .item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.8125rem 0 3.75rem;
}

/* line 71, resources/assets/styles/sections/_content.scss */

.section--content .item__title {
  margin: 0 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 71, resources/assets/styles/sections/_content.scss */

  .section--content .item__title {
    margin: 0 0 3.75rem;
  }
}

/* line 78, resources/assets/styles/sections/_content.scss */

.section--content .item__title p {
  margin: 0;
  line-height: 1.5;
  font-family: 'SeasonsLight';
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media print, screen and (min-width: 64em) {
  /* line 78, resources/assets/styles/sections/_content.scss */

  .section--content .item__title p {
    font-size: 1.25rem;
  }
}

/* line 93, resources/assets/styles/sections/_content.scss */

.section--content .item__title p:nth-of-type(2) {
  margin-left: 0.9375rem;
}

@media print, screen and (min-width: 64em) {
  /* line 93, resources/assets/styles/sections/_content.scss */

  .section--content .item__title p:nth-of-type(2) {
    margin-left: 1.875rem;
  }
}

/* line 101, resources/assets/styles/sections/_content.scss */

.section--content .item__title p:nth-of-type(3) {
  margin-left: 2.8125rem;
}

@media print, screen and (min-width: 64em) {
  /* line 101, resources/assets/styles/sections/_content.scss */

  .section--content .item__title p:nth-of-type(3) {
    margin-left: 3.75rem;
  }
}

/* line 109, resources/assets/styles/sections/_content.scss */

.section--content .item__title p:nth-of-type(4) {
  margin-left: 0.9375rem;
}

@media print, screen and (min-width: 64em) {
  /* line 109, resources/assets/styles/sections/_content.scss */

  .section--content .item__title p:nth-of-type(4) {
    margin-left: 0.9375rem;
  }
}

/* line 117, resources/assets/styles/sections/_content.scss */

.section--content .item__title p:nth-of-type(5) {
  margin-left: 1.875rem;
}

@media print, screen and (min-width: 64em) {
  /* line 117, resources/assets/styles/sections/_content.scss */

  .section--content .item__title p:nth-of-type(5) {
    margin-left: 1.875rem;
  }
}

/* line 125, resources/assets/styles/sections/_content.scss */

.section--content .item__title p:last-of-type {
  margin-bottom: 0;
}

/* line 131, resources/assets/styles/sections/_content.scss */

.section--content .item__text {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 136, resources/assets/styles/sections/_content.scss */

  .section--content .item:nth-of-type(even) .image-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* line 145, resources/assets/styles/sections/_content.scss */

.section--content .item:nth-of-type(1) .image-container:before {
  padding-bottom: 115%;
}

/* line 151, resources/assets/styles/sections/_content.scss */

.section--content .item:nth-of-type(2) {
  margin-top: -2.8125rem;
}

/* line 2, resources/assets/styles/sections/_map.scss */

.section--map {
  position: relative;
}

/* line 5, resources/assets/styles/sections/_map.scss */

.section--map .map-container {
  position: relative;
  height: calc(100vh - 1.25rem * 2 - 6.875rem);
  height: calc(100vh - var(--vh-offset, 0px) - 1.25rem * 2 - 6.875rem);
  background-color: #aab2bd;
  overflow: hidden;
}

@media print, screen and (min-width: 40em) {
  /* line 5, resources/assets/styles/sections/_map.scss */

  .section--map .map-container {
    height: calc(100vh - 1.875rem * 2 - 6.875rem);
    height: calc(100vh - var(--vh-offset, 0px) - 1.875rem * 2 - 6.875rem);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_map.scss */

  .section--map .map-container {
    height: calc(100vh - 3.125rem * 2 - 6.875rem);
    height: calc(100vh - var(--vh-offset, 0px) - 3.125rem * 2 - 6.875rem);
  }
}

/* line 22, resources/assets/styles/sections/_map.scss */

.section--map .map-container .map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* line 2, resources/assets/styles/sections/_personnel.scss */

.section--personnel {
  position: relative;
  color: #F3DEB7;
  padding-top: 5.625rem;
}

@media print, screen and (min-width: 40em) {
  /* line 2, resources/assets/styles/sections/_personnel.scss */

  .section--personnel {
    padding-top: 6.5625rem;
    padding-bottom: 7.5rem;
  }
}

/* line 12, resources/assets/styles/sections/_personnel.scss */

.section--personnel .lazyload,
.section--personnel .lazyloading {
  opacity: 0;
}

/* line 16, resources/assets/styles/sections/_personnel.scss */

.section--personnel .lazyloaded {
  opacity: 1;
}

/* line 20, resources/assets/styles/sections/_personnel.scss */

.section--personnel .grid-container {
  position: relative;
}

/* line 24, resources/assets/styles/sections/_personnel.scss */

.section--personnel .button--terms {
  position: absolute;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media print, screen and (min-width: 40em) {
  /* line 24, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .button--terms {
    right: 0;
    top: 0;
    left: auto;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 24, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .button--terms {
    right: 0.9375rem;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 41, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .button--terms--single {
    display: none;
  }
}

/* line 48, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items {
  margin-top: 3.75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 48, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items {
    margin-top: 0;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 55, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item {
    text-align: center;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 60, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item:nth-of-type(even) {
    -webkit-transform: translateY(11.25rem);
         -o-transform: translateY(11.25rem);
            transform: translateY(11.25rem);
  }
}

/* line 66, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__image-container {
  position: relative;
}

/* line 69, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__image-container:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

/* line 76, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: background-position 10s linear, opacity 300ms;
  -o-transition: background-position 10s linear, opacity 300ms;
  transition: background-position 10s linear, opacity 300ms;
}

/* line 88, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__title {
  font-size: 2.25rem;
  font-family: 'SeasonsLight';
  letter-spacing: 0.25rem;
  margin: 1.875rem 0 1.25rem;
  text-transform: uppercase;
  line-height: 1;
}

/* line 97, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__row {
  width: 100%;
  margin: 0 0 0.3125rem;
}

/* line 102, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item__button {
  margin: 0.9375rem 0 3.75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 108, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item--single .square-item__content-container {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1.875rem;
    padding-left: 1.875rem;
  }
}

/* line 120, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item--single .button--terms {
  width: 12.5rem;
}

@media print, screen and (min-width: 40em) {
  /* line 120, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item--single .button--terms {
    top: 0;
    left: 1.875rem;
    margin: 0;
  }
}

/* line 129, resources/assets/styles/sections/_personnel.scss */

.section--personnel .square-items .square-item--single .button--terms--item {
  display: none;
}

@media print, screen and (min-width: 40em) {
  /* line 129, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item--single .button--terms--item {
    display: block;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 138, resources/assets/styles/sections/_personnel.scss */

  .section--personnel .square-items .square-item--single .button--request {
    width: 12.5rem;
  }
}

/* line 2, resources/assets/styles/sections/_financers.scss */

.section--financers {
  padding-bottom: 11.25rem;
  color: #F3DEB7;
}

/* line 6, resources/assets/styles/sections/_financers.scss */

.section--financers .section__title {
  font-size: 2.25rem;
  margin: 3.75rem 0;
  text-align: center;
}

@media print, screen and (min-width: 40em) {
  /* line 6, resources/assets/styles/sections/_financers.scss */

  .section--financers .section__title {
    text-align: left;
  }
}

/* line 16, resources/assets/styles/sections/_financers.scss */

.section--financers .item {
  position: relative;
  padding-left: 8.75rem;
}

/* line 20, resources/assets/styles/sections/_financers.scss */

.section--financers .item__image-container {
  position: absolute;
  top: 0.9375rem;
  left: 0;
  width: 7.5rem;
  height: 7.5rem;
}

/* line 27, resources/assets/styles/sections/_financers.scss */

.section--financers .item__image-container .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

/* line 2, resources/assets/styles/sections/_projects.scss */

.section--projects {
  position: relative;
  color: #285C61;
}

/* line 6, resources/assets/styles/sections/_projects.scss */

.section--projects .grid-container {
  position: relative;
}

/* line 10, resources/assets/styles/sections/_projects.scss */

.section--projects .lazyload,
.section--projects .lazyloading {
  opacity: 0;
}

/* line 14, resources/assets/styles/sections/_projects.scss */

.section--projects .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 19, resources/assets/styles/sections/_projects.scss */

.section--projects .button--terms {
  position: absolute;
  top: -3.75rem;
  right: 0;
}

@media print, screen and (min-width: 40em) {
  /* line 19, resources/assets/styles/sections/_projects.scss */

  .section--projects .button--terms {
    top: 0;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 19, resources/assets/styles/sections/_projects.scss */

  .section--projects .button--terms {
    right: 0.9375rem;
  }
}

/* line 33, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items {
  margin-top: 3.75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 33, resources/assets/styles/sections/_projects.scss */

  .section--projects .square-items {
    margin-top: 0;
  }
}

@media screen and (max-width: 39.9375em) {
  /* line 40, resources/assets/styles/sections/_projects.scss */

  .section--projects .square-items .square-item {
    text-align: center;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 45, resources/assets/styles/sections/_projects.scss */

  .section--projects .square-items .square-item:nth-of-type(even) {
    -webkit-transform: translateY(11.25rem);
         -o-transform: translateY(11.25rem);
            transform: translateY(11.25rem);
  }
}

/* line 51, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__image-container {
  position: relative;
  background-color: #aab2bd;
}

/* line 55, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__image-container:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

/* line 62, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 73, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__title {
  font-size: 1.3125rem;
  font-family: 'SeasonsLight';
  letter-spacing: 0.25rem;
  margin: 1.875rem 0 1.25rem;
  text-transform: uppercase;
}

@media print, screen and (min-width: 40em) {
  /* line 73, resources/assets/styles/sections/_projects.scss */

  .section--projects .square-items .square-item__title {
    font-size: 1.75rem;
  }
}

@media print, screen and (min-width: 40em) {
  /* line 73, resources/assets/styles/sections/_projects.scss */

  .section--projects .square-items .square-item__title {
    font-size: 2.25rem;
  }
}

/* line 89, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__row {
  width: 100%;
  margin: 0 0 0.3125rem;
}

/* line 94, resources/assets/styles/sections/_projects.scss */

.section--projects .square-items .square-item__button {
  margin: 0.9375rem 0 3.75rem;
}

/* line 2, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text {
  position: relative;
  padding-top: 6.5625rem;
}

/* line 6, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container {
  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;
  position: relative;
  min-height: calc(75vh - 1.25rem * 2);
  min-height: calc(75vh - var(--vh-offset, 0px) - 1.25rem * 2);
  overflow: hidden;
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  /* line 6, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container {
    min-height: calc(75vh - 1.875rem * 2);
    min-height: calc(75vh - var(--vh-offset, 0px) - 1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 6, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container {
    min-height: calc(75vh - 3.125rem * 2);
    min-height: calc(75vh - var(--vh-offset, 0px) - 3.125rem * 2);
  }
}

/* line 26, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 35, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(21, 69, 101, 0.95);
}

@media print, screen and (min-width: 40em) {
  /* line 35, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container:after {
    top: 1.875rem;
    right: 1.875rem;
    bottom: 1.875rem;
    left: 1.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 35, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container:after {
    top: 3.125rem;
    right: 3.125rem;
    bottom: 3.125rem;
    left: 3.125rem;
  }
}

/* line 60, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container .image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.3);
       -o-transform: scale(1.3);
          transform: scale(1.3);
  height: 100%;
  width: 100%;
  min-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 10s ease-out;
  transition: -webkit-transform 10s ease-out;
  -o-transition: -o-transform 10s ease-out;
  transition: transform 10s ease-out;
  transition: transform 10s ease-out, -webkit-transform 10s ease-out, -o-transform 10s ease-out;
}

/* line 76, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container.ani-mated .image {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

/* line 81, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container .content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: calc(1.25rem * 2);
  text-align: center;
  color: #FFFFFF;
}

@media print, screen and (min-width: 40em) {
  /* line 81, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container .content {
    padding: calc(1.875rem * 2);
  }
}

@media print, screen and (min-width: 64em) {
  /* line 81, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container .content {
    padding: calc(3.125rem * 2);
  }
}

/* line 101, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container .content img {
  position: relative;
  margin: 1.25rem 0 1.875rem;
  max-width: 18.75rem;
  width: 80%;
  height: 2.125rem;
}

@media print, screen and (min-width: 40em) {
  /* line 101, resources/assets/styles/sections/_large-image-text.scss */

  .section--large-image-text .image-container .content img {
    margin: 0 0 5.625rem;
  }
}

/* line 113, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container .content p {
  position: relative;
  z-index: 1;
  max-width: 43.75rem;
}

/* line 118, resources/assets/styles/sections/_large-image-text.scss */

.section--large-image-text .image-container .content p:last-of-type {
  margin: 0;
}

/* line 2, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding-top: 6.5625rem;
  overflow: hidden;
}

@media print, screen and (min-width: 64em) {
  /* line 2, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design {
    min-height: calc(100vh - 1.25rem * 2 - 6.875rem);
    min-height: calc(100vh - var(--vh-offset, 0px) - 1.25rem * 2 - 6.875rem);
    max-height: 62.5rem;
  }
}

/* line 17, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .grid-container {
  width: 100%;
  margin: 0;
}

/* line 22, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .image-container {
  position: relative;
  z-index: -1;
}

/* line 26, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .image-container:before {
  content: '';
  display: block;
  padding-bottom: 125%;
}

@media print, screen and (min-width: 64em) {
  /* line 26, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .image-container:before {
    padding-bottom: 140%;
  }
}

/* line 36, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .image-container .image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 2.5s;
  -o-transition: width 2.5s;
  transition: width 2.5s;
}

/* line 49, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .image-container.ani-mated .image {
  width: 100%;
}

/* line 55, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item {
  color: #E9B89D;
}

/* line 58, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.8125rem 0 0;
}

@media print, screen and (min-width: 40em) {
  /* line 58, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__content {
    padding: 2.8125rem 0 3.75rem;
  }
}

/* line 70, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title {
  margin: 0 0 1.875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 70, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title {
    margin: 0 0 3.75rem;
  }
}

/* line 77, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p {
  margin: 0 0 0.625rem;
  line-height: 1;
  font-family: 'SeasonsLight';
  text-transform: uppercase;
  font-size: 1.875rem;
  letter-spacing: 0.25rem;
}

@media print, screen and (min-width: 64em) {
  /* line 77, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title p {
    font-size: 2.25rem;
  }
}

/* line 89, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p:nth-of-type(2) {
  margin-left: 0.9375rem;
}

@media print, screen and (min-width: 64em) {
  /* line 89, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title p:nth-of-type(2) {
    margin-left: 1.875rem;
  }
}

/* line 97, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p:nth-of-type(3) {
  margin-left: 2.8125rem;
}

@media print, screen and (min-width: 64em) {
  /* line 97, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title p:nth-of-type(3) {
    margin-left: 3.75rem;
  }
}

/* line 105, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p:nth-of-type(4) {
  margin-left: 0.9375rem;
}

@media print, screen and (min-width: 64em) {
  /* line 105, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title p:nth-of-type(4) {
    margin-left: 0.9375rem;
  }
}

/* line 113, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p:nth-of-type(5) {
  margin-left: 1.875rem;
}

@media print, screen and (min-width: 64em) {
  /* line 113, resources/assets/styles/sections/_interior-design.scss */

  .section--interior-design .item__title p:nth-of-type(5) {
    margin-left: 1.875rem;
  }
}

/* line 121, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__title p:last-of-type {
  margin-bottom: 0;
}

/* line 127, resources/assets/styles/sections/_interior-design.scss */

.section--interior-design .item__text {
  width: 100%;
}

/* line 1, resources/assets/styles/sections/_bundle-gallery.scss */

#bundle-0 h2 {
  visibility: hidden !important;
}

/* line 2, resources/assets/styles/sections/_bundle-gallery.scss */

#bundle-0-label {
  display: none !important;
}

/* line 5, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media print, screen and (min-width: 64em) {
  /* line 5, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery {
    min-height: calc(100vh - 6.5625rem);
    min-height: calc(100vh - var(--vh-offset, 0px) - 6.5625rem);
  }
}

/* line 15, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .grid-container {
  width: 100%;
}

/* line 19, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .grid-x {
  height: 100%;
}

/* line 23, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .lazyload,
.section--bundle-gallery .lazyloading {
  opacity: 0;
}

/* line 28, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 33, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .filters {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

@media print, screen and (min-width: 64em) {
  /* line 33, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .filters {
    margin: 0;
    height: auto;
    position: sticky;
    top: 7.5rem;
    margin: 2.8125rem 0 3.75rem;
  }
}

/* line 49, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .filter {
  width: 100%;
  margin: 0 0 1.875rem;
}

@media print, screen and (min-width: 64em) {
  /* line 49, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .filter {
    margin: 0 0 3.75rem;
  }
}

/* line 57, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .filter:last-of-type {
  margin: 0;
}

/* line 61, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .filter__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  color: #E9B89D;
}

/* line 67, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .filter__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-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

@media print, screen and (min-width: 64em) {
  /* line 67, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .filter__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 80, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

/* line 85, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle {
  position: relative;
  width: 100%;
  padding: 0;
}

/* line 90, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 3.0625rem;
}

/* line 98, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(70, 70, 70, 0.9);
}

/* line 108, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__container {
  max-height: 100%;
}

/* line 112, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__wrapper {
  max-width: 81.25rem;
}

/* line 117, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__close:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAzMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxLjM5MTYgMTkuNDU1N0wxOC41NjE5IDExLjAxMDZMMzEuMzkxNiAyLjU2NTUzQzMxLjcwMjUgMi4zNjA3MiAzMS45MTkgMi4wNDE0IDMxLjk5MzMgMS42Nzc4MUMzMi4wNjc2IDEuMzE0MjMgMzEuOTkzNyAwLjkzNjE1MiAzMS43ODc5IDAuNjI2NzY2QzMxLjU4MjEgMC4zMTczOCAzMS4yNjEyIDAuMTAyMDI0IDMwLjg5NTggMC4wMjgwNzM4QzMwLjUzMDQgLTAuMDQ1ODc2NCAzMC4xNTA0IDAuMDI3NjM3MSAyOS44Mzk1IDAuMjMyNDQyTDE2LjAxOTEgOS4zMzQ3NkwyLjE5ODY0IDAuMjMyNDQyQzIuMDQ0NjggMC4xMzEwMzMgMS44NzIxNiAwLjA2MDc5MDMgMS42OTA5MyAwLjAyNTcyNDhDMS41MDk2OSAtMC4wMDkzNDA4MiAxLjMyMzI5IC0wLjAwODU0MjYzIDEuMTQyMzYgMC4wMjgwNzM4QzAuNzc2OTY5IDAuMTAyMDI0IDAuNDU2MDYxIDAuMzE3MzggMC4yNTAyMzggMC42MjY3NjZDMC4wNDQ0MTQzIDAuOTM2MTUyIC0wLjAyOTQ2NDcgMS4zMTQyMyAwLjA0NDg1MzEgMS42Nzc4MUMwLjExOTE3MSAyLjA0MTQgMC4zMzU1OTggMi4zNjA3MiAwLjY0NjUyMiAyLjU2NTUzTDEzLjQ3NjIgMTEuMDEwNkwwLjY0NjUyMiAxOS40NTU3QzAuMzg5NzQ2IDE5LjYxNzEgMC4xOTMyNzIgMTkuODU3OCAwLjA4NzI2MDUgMjAuMTQwOUMtMC4wMTg3NTA5IDIwLjQyNDEgLTAuMDI4NDQwNSAyMC43MzQxIDAuMDU5Njc5MiAyMS4wMjMyQzAuMTQ3Nzk5IDIxLjMxMjQgMC4zMjg4NTcgMjEuNTY0OCAwLjU3NTA2MSAyMS43NDE3QzAuODIxMjY1IDIxLjkxODYgMS4xMTkwMSAyMi4wMTAyIDEuNDIyNTggMjIuMDAyNEMxLjY5ODY1IDIyLjAwNTMgMS45NjkxNCAyMS45MjUxIDIuMTk4NjQgMjEuNzcyNEwxNi4wMTkxIDEyLjY4NjVMMjkuODM5NSAyMS43NzI0QzMwLjA2ODEgMjEuOTI3IDMwLjMzOTIgMjIuMDA3NCAzMC42MTU2IDIyLjAwMjRDMzAuODQ3MyAyMi4wMDE1IDMxLjA3NTQgMjEuOTQ0MSAzMS4yNzk3IDIxLjgzNTJDMzEuNDg0MSAyMS43MjY0IDMxLjY1ODUgMjEuNTY5NCAzMS43ODc5IDIxLjM3ODFDMzEuODg5NyAyMS4yMjYzIDMxLjk2MDMgMjEuMDU1OSAzMS45OTU1IDIwLjg3NjhDMzIuMDMwNyAyMC42OTc3IDMyLjAyOTggMjAuNTEzNCAzMS45OTI5IDIwLjMzNDZDMzEuOTU2MSAyMC4xNTU4IDMxLjg4NCAxOS45ODYxIDMxLjc4MDcgMTkuODM1MkMzMS42Nzc1IDE5LjY4NDQgMzEuNTQ1MyAxOS41NTU0IDMxLjM5MTYgMTkuNDU1N1oiIGZpbGw9IiNFOUI4OUQiLz4KPC9zdmc+Cg==);
}

/* line 122, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell {
  position: relative;
  padding: 3.75rem 0.9375rem;
}

/* line 126, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell .title {
  color: #E9B89D;
  margin: 0 0 2.8125rem;
}

/* line 131, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell p {
  color: #E9B89D;
  width: 100%;
}

/* line 135, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell p:last-of-type {
  margin: 0 0 3.75rem;
}

/* line 140, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 151, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 39.9375em) {
  /* line 151, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle .modal__cell--left {
    padding: 3.75rem 0 1.875rem;
  }
}

/* line 162, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle .modal__cell--right {
  min-height: 31.25rem;
}

@media screen and (max-width: 39.9375em) {
  /* line 162, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle .modal__cell--right {
    padding: 3.75rem 0 1.875rem;
  }
}

/* line 172, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__galleries {
  position: relative;
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 64em) {
  /* line 172, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle__galleries {
    height: calc(100% - 2.5rem);
  }
}

/* line 184, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__content {
  position: relative;
  padding: 1.875rem 0 2.8125rem;
}

@media print, screen and (min-width: 40em) {
  /* line 184, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle__content {
    padding: 5.625rem 0;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 184, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle__content {
    padding: 1.875rem;
  }
}

@media screen and (min-width: 75em) {
  /* line 184, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle__content {
    padding: 7.5rem;
  }
}

/* line 200, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__content .scroll-hint {
  top: 3.125rem;
  bottom: auto;
  z-index: 2;
}

@media print, screen and (min-width: 40em) {
  /* line 200, resources/assets/styles/sections/_bundle-gallery.scss */

  .section--bundle-gallery .bundles .bundle__content .scroll-hint {
    top: 3.75rem;
  }
}

/* line 211, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__content .buttons .button,
.section--bundle-gallery .bundles .bundle__content .buttons .comment-form input[type="submit"],
.comment-form .section--bundle-gallery .bundles .bundle__content .buttons input[type="submit"],
.section--bundle-gallery .bundles .bundle__content .buttons .search-form .search-submit,
.search-form .section--bundle-gallery .bundles .bundle__content .buttons .search-submit {
  margin: 0 0.625rem 0.625rem 0;
}

/* line 217, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__tabs {
  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;
  width: 100%;
  height: 3.125rem;
}

/* line 225, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 230, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__gallery {
  position: relative;
  top: 0;
  left: 0;
  height: 80vh;
  height: calc(80vh - var(--vh-offset, 0px));
  width: 100%;
  padding: 0;
}

/* line 239, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__gallery .swiper-container {
  height: 100%;
}

/* line 242, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__gallery .swiper-container .swiper-wrapper {
  height: 100%;
}

/* line 245, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__gallery .swiper-container .swiper-wrapper .item {
  position: relative;
  height: 100%;
}

/* line 249, resources/assets/styles/sections/_bundle-gallery.scss */

.section--bundle-gallery .bundles .bundle__gallery .swiper-container .swiper-wrapper .item__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* line 2, resources/assets/styles/sections/_gallery.scss */

.section--gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 5.625rem;
  padding-bottom: 1.875rem;
  height: calc(100vh - 3.4375rem);
  height: calc(100vh - var(--vh-offset, 0px) - 3.4375rem);
  max-height: 75rem;
}

@media print, screen and (min-width: 40em) {
  /* line 2, resources/assets/styles/sections/_gallery.scss */

  .section--gallery {
    padding-top: 1.875rem;
    min-height: calc(100vh - 1.875rem);
    min-height: calc(100vh - 1.875rem - var(--vh-offset, 0px));
    height: auto;
  }
}

/* line 18, resources/assets/styles/sections/_gallery.scss */

.section--gallery .lazyload,
.section--gallery .lazyloading {
  opacity: 0;
}

/* line 22, resources/assets/styles/sections/_gallery.scss */

.section--gallery .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 27, resources/assets/styles/sections/_gallery.scss */

.section--gallery .grid-container {
  width: 100%;
}

/* line 31, resources/assets/styles/sections/_gallery.scss */

.section--gallery .grid-x {
  height: 100%;
}

/* line 36, resources/assets/styles/sections/_gallery.scss */

.section--gallery .tabs-title a {
  font-size: 0.6875rem;
}

@media print, screen and (min-width: 40em) {
  /* line 36, resources/assets/styles/sections/_gallery.scss */

  .section--gallery .tabs-title a {
    font-size: 0.875rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 36, resources/assets/styles/sections/_gallery.scss */

  .section--gallery .tabs-title a {
    font-size: 1rem;
  }
}

/* line 49, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 12.5rem);
  padding: 0;
}

/* line 56, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs__galleries {
  position: relative;
  height: calc(100% - 2.5rem);
  height: 80vh;
  height: calc(80vh - var(--vh-offset, 0px));
}

/* line 63, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
  height: 3.125rem;
}

@media print, screen and (min-width: 40em) {
  /* line 63, resources/assets/styles/sections/_gallery.scss */

  .section--gallery .gallery-tabs__tabs {
    bottom: -20px;
  }
}

/* line 76, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 81, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0;
}

/* line 89, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent {
  position: relative;
  width: 100%;
  height: calc(100% - 6.25rem);
  margin-left: auto;
  margin-right: auto;
}

/* line 96, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent .swiper-container {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* line 102, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent .swiper-container .swiper-wrapper {
  height: 100%;
}

/* line 105, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent .swiper-container .swiper-wrapper .item {
  position: relative;
  height: 100%;
}

/* line 109, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent .swiper-container .swiper-wrapper .item__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 123, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--main {
  margin: 0 0 0.625rem;
}

/* line 126, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--main .swiper-wrapper {
  height: calc(100% - 0.625rem);
}

/* line 130, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--main .swiper-wrapper .item__image {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/* line 137, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--thumbs {
  height: 3.75rem;
  margin-top: 3.125rem;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 143, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--thumbs .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
  height: auto;
}

/* line 148, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--thumbs .swiper-slide:before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

/* line 155, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs .gallery-tab .swiper-parent--thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/* line 164, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs--single .swiper-parent--main {
  height: calc(80% - 5rem) !important;
}

@media print, screen and (min-width: 40em) {
  /* line 164, resources/assets/styles/sections/_gallery.scss */

  .section--gallery .gallery-tabs--single .swiper-parent--main {
    height: calc(100% - 6.75rem) !important;
  }
}

/* line 171, resources/assets/styles/sections/_gallery.scss */

.section--gallery .gallery-tabs--single .swiper-parent--thumbs {
  margin-top: 0 !important;
}

/* line 180, resources/assets/styles/sections/_gallery.scss */

.video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 187, resources/assets/styles/sections/_gallery.scss */

.video-thumb video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* maintain aspect ratio and fill */
  pointer-events: none;
  /* makes video unclickable */
}

/* line 1, resources/assets/styles/sections/_plan.scss */

.vgt-table th.sortable button:before {
  display: none;
}

/* line 2, resources/assets/styles/sections/_plan.scss */

.vgt-table th.sortable button:after {
  display: none;
}

/* line 4, resources/assets/styles/sections/_plan.scss */

table.vgt-table td {
  padding-left: 0px;
  padding-right: 0px;
}

/* line 5, resources/assets/styles/sections/_plan.scss */

table.vgt-table td span {
  padding-left: 9px;
  padding-right: 9px;
}

@-webkit-keyframes backgroundAnim {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes backgroundAnim {
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes backgroundAnim {
  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes backgroundAnimBack {
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-o-keyframes backgroundAnimBack {
  100% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
}

@keyframes backgroundAnimBack {
  100% {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* line 20, resources/assets/styles/sections/_plan.scss */

.section--plan {
  position: relative;
  padding-top: 5rem;
}

@media print, screen and (min-width: 64em) {
  /* line 20, resources/assets/styles/sections/_plan.scss */

  .section--plan {
    padding-top: 5.9375rem;
  }
}

/* line 28, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--viewbox {
  z-index: 9999999;
}

@media print, screen and (min-width: 64em) {
  /* line 32, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--viewbox .modal__wrapper {
    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;
  }
}

/* line 40, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--viewbox .image {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

@media print, screen and (min-width: 64em) {
  /* line 40, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--viewbox .image {
    width: 100%;
    max-height: 80%;
  }
}

/* line 51, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout .buildings-layout-0 {
  fill: #F0DEBB;
}

/* line 55, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout .buildings-layout-1 {
  fill: #E9B89D;
}

/* line 59, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout .buildings-layout-3 {
  fill: #154565;
}

/* line 63, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout polygon {
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

/* line 68, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout polygon:hover {
  opacity: 0.5;
}

/* line 73, resources/assets/styles/sections/_plan.scss */

.section--plan .buildings-layout #Numbrid {
  pointer-events: none;
}

/* line 78, resources/assets/styles/sections/_plan.scss */

.section--plan .info {
  color: #154565;
  font-size: 0.75rem;
  margin: 1.875rem 0 0;
}

/* line 83, resources/assets/styles/sections/_plan.scss */

.section--plan .info a {
  color: #154565;
  font-size: 0.75rem;
  margin: 1.875rem 0 0;
}

/* line 88, resources/assets/styles/sections/_plan.scss */

.section--plan .info a:hover {
  color: #FFFFFF;
}

/* line 92, resources/assets/styles/sections/_plan.scss */

.section--plan .info2 {
  color: #154565;
  font-size: 0.75rem;
}

/* line 96, resources/assets/styles/sections/_plan.scss */

.section--plan .info2 a {
  color: #154565;
  font-size: 0.75rem;
}

/* line 100, resources/assets/styles/sections/_plan.scss */

.section--plan .info2 a:hover {
  color: #FFFFFF;
}

/* line 105, resources/assets/styles/sections/_plan.scss */

.section--plan .info2 a:focus,
.section--plan .info2 a:active {
  color: #FFFFFF;
}

/* line 108, resources/assets/styles/sections/_plan.scss */

.section--plan vue-good-table {
  display: none;
}

/* line 112, resources/assets/styles/sections/_plan.scss */

.section--plan .lazyload,
.section--plan .lazyloading {
  opacity: 0;
}

/* line 117, resources/assets/styles/sections/_plan.scss */

.section--plan .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 122, resources/assets/styles/sections/_plan.scss */

.section--plan .vgt-inner-wrap {
  max-height: 65vh;
  overflow: scroll;
}

/* line 128, resources/assets/styles/sections/_plan.scss */

.section--plan .city-map {
  margin: 3.75rem 0 0;
  text-align: center;
}

/* line 134, resources/assets/styles/sections/_plan.scss */

.section--plan .button--clearfilter {
  width: 100%;
  margin: 1.875rem 0 0;
}

@media screen and (max-width: 63.9375em) {
  /* line 140, resources/assets/styles/sections/_plan.scss */

  .section--plan .plan {
    margin: 1.875rem 0 0.9375rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 145, resources/assets/styles/sections/_plan.scss */

  .section--plan .plan .plan-container {
    height: calc(100vh - 9.375rem);
  }
}

/* line 150, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .button,
.section--plan .plan .plan-container .comment-form input[type="submit"],
.comment-form .section--plan .plan .plan-container input[type="submit"],
.section--plan .plan .plan-container .search-form .search-submit,
.search-form .section--plan .plan .plan-container .search-submit {
  display: block;
  margin: 0.9375rem auto 1.875rem;
}

/* line 156, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .st0 {
  fill: #F0DEBB;
}

/* line 160, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .st1 {
  fill: #EFDDBD;
}

/* line 164, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .st2 {
  fill: #E9B89D;
}

/* line 168, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .st3 {
  fill: #154565;
}

/* line 172, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .buildings {
  pointer-events: none;
}

/* line 175, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .buildings path,
.section--plan .plan .plan-container__buildings .buildings polygon,
.section--plan .plan .plan-container__buildings .buildings rect {
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  fill: #EFDDBD;
}

/* line 183, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .buildings path.active,
.section--plan .plan .plan-container__buildings .buildings polygon.active,
.section--plan .plan .plan-container__buildings .buildings rect.active {
  opacity: 1;
}

/* line 190, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .house-overlay polygon {
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

/* line 195, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .house-overlay polygon:hover {
  opacity: 0.5;
}

/* line 201, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .house-numbers {
  pointer-events: none;
}

/* line 204, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .house-numbers g {
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

/* line 207, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container__buildings .house-numbers g.active {
  opacity: 0.25;
}

/* line 214, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans {
  position: relative;
  overflow: hidden;
}

/* line 218, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans .plan-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 221, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans .plan-svg svg {
  width: 100%;
  height: 100%;
}

/* line 227, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans .plan-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: -15%;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* line 236, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans .plan-overlay svg {
  height: 100%;
}

/* line 240, resources/assets/styles/sections/_plan.scss */

.section--plan .plan .plan-container .plans .plan-overlay.active {
  display: block;
}

/* line 249, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
}

/* line 256, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__overlay .zoom-button {
  position: absolute;
  top: 0.9375rem;
  right: 0;
  cursor: pointer;
  height: 2.1875rem;
  width: 2.1875rem;
}

/* line 265, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__overlay .direction {
  position: absolute;
  top: 4.0625rem;
  right: 0.5rem;
  height: 2.8125rem;
  width: 2.8125rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTcuODYzIiBoZWlnaHQ9IjU2LjU1bW0iIHZpZXdCb3g9IjAgMCAxMTguMzk3IDE2MC4yOTgiPjxwYXRoIGQ9Ik01OS4yIDE2MC4zYTU5LjIgNTkuMiAwIDEgMSA1OS4yLTU5LjIgNTkuMjY2IDU5LjI2NiAwIDAgMS01OS4yIDU5LjJ6bTAtMTE0LjE2MWE1NC45NjEgNTQuOTYxIDAgMSAwIDU0Ljk2IDU0Ljk2M0E1NS4wMjMgNTUuMDIzIDAgMCAwIDU5LjIgNDYuMTM3eiIgZmlsbD0iIzE1NDU2NSIvPjxwYXRoIGQ9Ik03Ny4wMzEgMTM0LjIxNWEyLjEyIDIuMTIgMCAwIDEtMS41NTEtLjY3NEw1OS4yIDExNi4xMTJsLTE2LjI4NiAxNy40MjlhMi4xMTkgMi4xMTkgMCAwIDEtMy42LTEuOTg3bDE3LjgzNC02Ny44NDljLjQ5MS0xLjg2NiAzLjYwOS0xLjg2NiA0LjEgMGwxNy44MjkgNjcuODQ5YTIuMTE0IDIuMTE0IDAgMCAxLTEuMDIxIDIuNCAyLjE2IDIuMTYgMCAwIDEtMS4wMjUuMjYxek01OS4yIDExMC44ODVhMi4xMTIgMi4xMTIgMCAwIDEgMS41NDguNjczbDEyLjEgMTIuOTU0TDU5LjIgNzIuNTc5bC0xMy42NTEgNTEuOTMzIDEyLjEtMTIuOTU0YTIuMTEzIDIuMTEzIDAgMCAxIDEuNTUxLS42NzN6TTQ2LjggMzQuODA4VjBoNC4yMzJsMTcuNzc5IDI4LjctLjE2MS0xLjI4NVYwaDIuOTV2MzQuODA4aC0zLjUzOEw0OS41MzMgNS4xMzhoLS4wNTRsLjI2OCAxLjY2MnYyOC4wMDh6IiBmaWxsPSIjMTU0NTY1Ii8+PC9zdmc+);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(130deg);
       -o-transform: rotate(130deg);
          transform: rotate(130deg);
}

/* line 278, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__overlay .image-container {
  display: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  overflow: hidden;
}

@media print, screen and (min-width: 64em) {
  /* line 278, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__overlay .image-container {
    display: block;
  }
}

/* line 292, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__overlay .image-container .image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: backgroundAnimBack 2s forwards;
       -o-animation: backgroundAnimBack 2s forwards;
          animation: backgroundAnimBack 2s forwards;
}

/* line 312, resources/assets/styles/sections/_plan.scss */

.section--plan .modal.is-open .modal__overlay .image-container .image {
  -webkit-animation: backgroundAnim 2s forwards;
       -o-animation: backgroundAnim 2s forwards;
          animation: backgroundAnim 2s forwards;
}

@media print, screen and (min-width: 64em) {
  /* line 319, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__container {
    padding: 3.75rem 0;
    height: calc(100vh - 5.625rem);
    height: calc(100vh - var(--vh-offset, 0px) - 5.625rem);
    min-height: calc(100vh - 5.625rem);
    min-height: calc(100vh - var(--vh-offset, 0px) - 5.625rem);
  }
}

/* line 329, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__wrapper {
  max-width: none;
  height: 100%;
}

@media print, screen and (min-width: 64em) {
  /* line 329, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__wrapper {
    padding: 0;
  }
}

/* line 337, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__wrapper > .grid-x {
  min-height: 100%;
}

/* line 343, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  padding: 4.375rem 1.875rem 7.5rem;
}

@media print, screen and (min-width: 40em) {
  /* line 343, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right {
    padding: 5rem 5.625rem 3.75rem 3.75rem;
  }
}

@media print, screen and (min-width: 64em) {
  /* line 343, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right {
    padding: 3.75rem 5.625rem 3.75rem 3.75rem;
  }
}

/* line 360, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .apartment-image {
  position: relative;
}

/* line 363, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .apartment-image .zoom-button {
  right: auto;
  left: calc(100% + 0.9375rem);
  top: 0;
}

@media print, screen and (min-width: 64em) {
  /* line 360, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .apartment-image {
    padding-top: 3.75rem;
  }

  /* line 372, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .apartment-image .zoom-button {
    left: auto;
    right: 0;
  }
}

/* line 405, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .apartment-image .image {
  max-height: 50vh;
  min-height: 18.75rem;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/* line 412, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .floor-image {
  position: relative;
  text-align: center;
  padding: 2.8125rem 0 3.75rem;
}

@media print, screen and (min-width: 64em) {
  /* line 412, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .floor-image {
    padding: 5.625rem 0 0 0.9375rem;
  }
}

/* line 421, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .floor-image .zoom-button {
  top: 2.8125rem;
  left: 100%;
  right: auto;
}

@media print, screen and (min-width: 64em) {
  /* line 427, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .floor-image .zoom-button .zoom-button {
    right: 0;
    left: auto;
  }
}

/* line 434, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .floor-image .image {
  width: 80%;
  max-width: 21.875rem;
  max-height: 25vh;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

@media print, screen and (min-width: 64em) {
  /* line 434, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .floor-image .image {
    width: 100%;
  }
}

/* line 447, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--right .button--download {
  position: absolute;
  left: 50%;
  bottom: 3.4375rem;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
}

@media print, screen and (min-width: 64em) {
  /* line 447, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--right .button--download {
    left: 1.25rem;
    bottom: 1.25rem;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

/* line 463, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--left {
  position: relative;
  padding: 5.625rem 3.75rem 3.75rem;
  color: #F3DEB7;
  background-color: rgba(21, 69, 101, 0.9);
}

@media print, screen and (min-width: 64em) {
  /* line 463, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--left {
    max-width: 28.125rem;
  }
}

/* line 473, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--left .image-container {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media print, screen and (min-width: 64em) {
  /* line 473, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal__cell--left .image-container {
    display: none;
  }
}

/* line 486, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell--left .image-container .image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 500, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .title {
  margin: 0 0 2.8125rem;
}

/* line 503, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .title__sub {
  font-size: 1.125rem;
}

/* line 506, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .title__sub span {
  text-transform: none;
  letter-spacing: 0.0625rem;
}

/* line 513, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .list {
  margin: 0;
  list-style: none;
}

/* line 517, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.3125rem 0;
}

/* line 521, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .list .list-item__title {
  width: 35%;
  max-width: 9.375rem;
}

/* line 525, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .list .list-item__title:after {
  content: ':';
}

/* line 530, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .list .list-item__value {
  width: 70%;
}

/* line 536, resources/assets/styles/sections/_plan.scss */

.section--plan .modal__cell .price {
  border-top: 0.0625rem solid #F3DEB7;
  margin: 1.875rem 0 1.875rem;
  padding: 0.9375rem 0 1.875rem;
  font-size: 1.5rem;
  font-family: 'SeasonsLight';
  letter-spacing: 0.06875rem;
}

@media screen and (max-width: 63.9375em) {
  /* line 548, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--apartment .modal__overlay {
    display: block;
  }
}

/* line 554, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--apartment .modal__container {
  padding: 0;
  max-height: 100vh;
}

/* line 563, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--buildings .modal__overlay {
  background-color: #16254C;
}

/* line 566, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--buildings .modal__container {
  padding: 0 5.625rem 0 3.125rem;
}

@media screen and (max-width: 63.9375em) {
  /* line 566, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--buildings .modal__container {
    padding: 0;
    overflow: hidden;
    height: 100%;
  }
}

/* line 575, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--buildings .modal__wrapper {
  overflow: hidden;
}

@media print, screen and (min-width: 64em) {
  /* line 575, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--buildings .modal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 584, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--buildings .modal__wrapper svg {
  height: 100%;
  margin-left: -6vh;
}

@media print, screen and (min-width: 64em) {
  /* line 584, resources/assets/styles/sections/_plan.scss */

  .section--plan .modal--buildings .modal__wrapper svg {
    height: auto;
    width: 100%;
    margin-left: 0;
  }
}

/* line 600, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--request .modal__overlay {
  background-color: #154565;
}

/* line 604, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--request .modal__container {
  height: auto;
  min-height: unset;
}

/* line 609, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--request .modal__wrapper {
  max-width: 28.125rem;
}

/* line 613, resources/assets/styles/sections/_plan.scss */

.section--plan .modal--request .modal__title {
  color: #F3DEB7;
}

/* line 622, resources/assets/styles/sections/_plan.scss */

.filter-container {
  margin: 20px 0 0;
}

/* line 2, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 5.625rem;
  padding-bottom: 1.875rem;
  height: calc(100vh);
  height: calc(100vh - var(--vh-offset, 0px));
  max-height: 87.5rem;
}

@media print, screen and (min-width: 40em) {
  /* line 2, resources/assets/styles/sections/_business-gallery.scss */

  .section--business-gallery {
    padding-top: 6.5625rem;
    min-height: 100vh;
    min-height: calc(100vh - var(--vh-offset, 0px));
    height: auto;
  }
}

/* line 18, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .modal--viewbox .modal__overlay {
  background-color: #16254C;
}

/* line 22, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .lazyload,
.section--business-gallery .lazyloading {
  opacity: 0;
}

/* line 26, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* line 31, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .grid-container {
  width: 100%;
}

/* line 35, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .grid-x {
  height: 100%;
}

/* line 39, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .swiper-parent {
  position: relative;
  width: 100%;
  height: calc(100% - 3.75rem);
  margin: 0 0 0.625rem;
}

/* line 45, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .swiper-parent .swiper-container {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* line 51, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .swiper-parent .swiper-container .swiper-wrapper {
  height: 100%;
}

/* line 54, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .swiper-parent .swiper-container .swiper-wrapper .item {
  position: relative;
  height: 100%;
}

/* line 58, resources/assets/styles/sections/_business-gallery.scss */

.section--business-gallery .swiper-parent .swiper-container .swiper-wrapper .item__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media print {
  /* line 2, resources/assets/styles/common/_print.scss */

  body {
    -webkit-filter: Gray();
            filter: Gray();
    -webkit-filter: url("#grayscale");
            filter: url("#grayscale");
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }

  /* line 8, resources/assets/styles/common/_print.scss */

  .grid-container.full {
    display: none;
  }

  /* line 13, resources/assets/styles/common/_print.scss */

  .modal__cell--left {
    padding: 0.9375rem;
    margin: 0;
    width: 30%;
  }

  /* line 19, resources/assets/styles/common/_print.scss */

  .modal__cell--left .title__main {
    font-size: 1.5rem;
  }

  /* line 24, resources/assets/styles/common/_print.scss */

  .modal__cell--right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
    width: 70%;
  }

  /* line 30, resources/assets/styles/common/_print.scss */

  .modal__cell .apartment-image {
    padding: 0;
  }

  /* line 33, resources/assets/styles/common/_print.scss */

  .modal__cell .apartment-image .image {
    height: 18.75rem;
  }

  /* line 39, resources/assets/styles/common/_print.scss */

  .modal__cell .floor-image .image {
    height: 12.5rem;
    width: auto !important;
  }

  /* line 47, resources/assets/styles/common/_print.scss */

  .button--request,
  .button--download {
    display: none;
  }

  /* line 53, resources/assets/styles/common/_print.scss */

  .section--plan .modal__cell {
    color: #154565;
  }

  /* line 56, resources/assets/styles/common/_print.scss */

  .section--plan .modal__cell .price {
    border-top-color: #154565;
  }
}


/*# sourceMappingURL=main.css.map*/