@import 'variables.css';
#is-mobile {
  display: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--brown);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
  color: var(--light-beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .gap-5 {
  height: 5px;
  width: 100%;
}
body .spacer-5 {
  display: inline-block;
  height: 1px;
  width: 5px;
}
body .gap-10 {
  height: 10px;
  width: 100%;
}
body .spacer-10 {
  display: inline-block;
  height: 1px;
  width: 10px;
}
body .gap-15 {
  height: 15px;
  width: 100%;
}
body .spacer-15 {
  display: inline-block;
  height: 1px;
  width: 15px;
}
body .gap-20 {
  height: 20px;
  width: 100%;
}
body .spacer-20 {
  display: inline-block;
  height: 1px;
  width: 20px;
}
body .gap-25 {
  height: 25px;
  width: 100%;
}
body .spacer-25 {
  display: inline-block;
  height: 1px;
  width: 25px;
}
body .gap-30 {
  height: 30px;
  width: 100%;
}
body .spacer-30 {
  display: inline-block;
  height: 1px;
  width: 30px;
}
body .gap-35 {
  height: 35px;
  width: 100%;
}
body .spacer-35 {
  display: inline-block;
  height: 1px;
  width: 35px;
}
body .gap-40 {
  height: 40px;
  width: 100%;
}
body .spacer-40 {
  display: inline-block;
  height: 1px;
  width: 40px;
}
body .gap-45 {
  height: 45px;
  width: 100%;
}
body .spacer-45 {
  display: inline-block;
  height: 1px;
  width: 45px;
}
body .gap-50 {
  height: 50px;
  width: 100%;
}
body .spacer-50 {
  display: inline-block;
  height: 1px;
  width: 50px;
}
body .gap-55 {
  height: 55px;
  width: 100%;
}
body .spacer-55 {
  display: inline-block;
  height: 1px;
  width: 55px;
}
body .gap-60 {
  height: 60px;
  width: 100%;
}
body .spacer-60 {
  display: inline-block;
  height: 1px;
  width: 60px;
}
body .gap-65 {
  height: 65px;
  width: 100%;
}
body .spacer-65 {
  display: inline-block;
  height: 1px;
  width: 65px;
}
body .gap-70 {
  height: 70px;
  width: 100%;
}
body .spacer-70 {
  display: inline-block;
  height: 1px;
  width: 70px;
}
body .gap-75 {
  height: 75px;
  width: 100%;
}
body .spacer-75 {
  display: inline-block;
  height: 1px;
  width: 75px;
}
body .gap-80 {
  height: 80px;
  width: 100%;
}
body .spacer-80 {
  display: inline-block;
  height: 1px;
  width: 80px;
}
body .gap-85 {
  height: 85px;
  width: 100%;
}
body .spacer-85 {
  display: inline-block;
  height: 1px;
  width: 85px;
}
body .gap-90 {
  height: 90px;
  width: 100%;
}
body .spacer-90 {
  display: inline-block;
  height: 1px;
  width: 90px;
}
body .gap-95 {
  height: 95px;
  width: 100%;
}
body .spacer-95 {
  display: inline-block;
  height: 1px;
  width: 95px;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
h1,
h2,
h3,
h4 {
  color: var(--light-beige);
  font-family: var(--font-family-heading);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.125em;
  text-wrap: pretty;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.625em;
}
h3 {
  font-size: 1.375em;
  position: relative;
}
h3.label {
  background-color: var(--label-color);
  color: #FFF;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 500;
  margin-bottom: 0;
  padding: 8px 32px;
}
h3.label + h2,
h3.label + h3 {
  margin-top: 20px;
}
h4 {
  font-size: 1.5em;
}
* + h2,
* + h3,
* + h4 {
  margin-top: 40px;
}
p,
ul,
ol {
  font-weight: 400;
  line-height: 1.5;
}
p a,
ul a,
ol a {
  color: var(--red);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
p a:hover,
ul a:hover,
ol a:hover {
  color: var(--red-dark);
}
p + p,
ul + p,
ol + p,
p + ul,
p + ol,
ul + ul,
ul + ol,
ol + ul,
ol + ol {
  margin-top: 0.125em;
}
ul,
ol {
  padding-left: 20px;
}
li {
  padding: 5px 0;
}
.shed-button {
  background-color: var(--beige);
  border: none;
  border-radius: 40px;
  color: var(--brown);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.shed-button:hover {
  background-color: var(--light-beige);
}
.inset {
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.columns {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.columns--reverse {
  flex-direction: row-reverse;
}
.columns__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.columns__column--column-20 {
  width: 20%;
}
.columns__column--column-25 {
  width: 25%;
}
.columns__column--column-30 {
  width: 30%;
}
.columns__column--column-35 {
  width: 35%;
}
.columns__column--column-40 {
  width: 40%;
}
.columns__column--column-45 {
  width: 45%;
}
.columns__column--column-50 {
  width: 50%;
}
.columns__column--column-55 {
  width: 55%;
}
.columns__column--column-60 {
  width: 60%;
}
.columns__column--column-65 {
  width: 65%;
}
.columns__column--column-70 {
  width: 70%;
}
.columns__column--column-75 {
  width: 75%;
}
.columns__column--column-80 {
  width: 80%;
}
.columns__column--left,
.columns__column--wide {
  flex-grow: 1;
}
.columns__column--right,
.columns__column--narrow {
  width: 360px;
}
.columns__column--border-left {
  border-left: 1px solid var(--grey);
  padding-left: 40px;
}
.columns__column .box {
  background-color: var(--grey-light);
  text-align: center;
  padding: 30px;
}
.columns__column .box p {
  text-wrap: balance;
}
.columns__column .box .fosber-button {
  background-color: var(--red);
  color: var(--white);
  margin-top: 30px;
}
.columns__column .box .fosber-button:hover {
  background-color: var(--red-dark);
  color: var(--white);
}
.columns__column section:first-child {
  padding-top: 0;
}
header#header {
  --scroll-transition: all 0.2s ease-in-out;
  --logo-transition: all 0.1s cubic-bezier(0.6, 0, 0.4, 1);
  --top-logo-height: calc(var(--header-height) - 40px);
  --transition-delay: 0s;
  --logo-width: 240px;
  height: var(--header-height);
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 100;
}
header#header .inset {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}
header#header .inset .branding {
  width: var(--logo-width);
}
header#header .inset .branding a {
  aspect-ratio: 600/350;
  display: block;
  height: var(--top-logo-height);
  position: relative;
  width: 100%;
}
header#header .inset .branding a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header#header .inset .branding a #photoshed-shedlogo {
  filter: drop-shadow(0 0 10px var(--light-beige));
  transition: var(--logo-transition);
  z-index: 1;
}
header#header .inset .branding a #photoshed-typelogo {
  z-index: 2;
}
header#header .inset .branding a:hover #photoshed-shedlogo {
  filter: drop-shadow(0 0 30px var(--light-beige));
}
header#header .inset nav.menus {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  position: relative;
  width: calc(100% - var(--logo-width));
}
header#header .inset nav.menus:before {
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 100%;
  background-color: var(--dark-beige);
}
header#header .inset nav.menus ul.menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header#header .inset nav.menus ul.menu li {
  padding: 0;
}
header#header .inset nav.menus ul.menu li a {
  color: var(--light-beige);
  display: block;
  font-size: 1em;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  transition: all var(--scroll-transition);
}
header#header .inset nav.menus ul.menu li a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
body.scrolling header#header * {
  --header-height: 60px;
}
.page-header {
  margin-bottom: 20px;
}
.page-header .inset {
  border-bottom: 1px solid var(--dark-beige);
  padding: 0 20px 10px;
}
.page-header h1 {
  margin-bottom: 0;
  padding: 0;
  text-align: right;
}
section .inset {
  padding: 20px  ;
}
section.hero .inset {
  border-bottom: 1px solid var(--dark-beige);
  padding: 0 0 30px;
}
section.hero .inset .slides {
  height: 650px;
  padding: 0 40px;
  position: relative;
  --text-duration: 1200ms;
  --image-duration: 1000ms;
}
section.hero .inset .slides .slide {
  align-items: center;
  animation-delay: 500ms;
  animation: fade-out 500ms ease-out forwards;
  background-color: var(--grey-light);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding-left: 300px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
section.hero .inset .slides .slide__text {
  align-items: flex-start;
  color: var(--light-beige);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-heading);
  font-size: 4em;
  gap: 20px;
  height: 100%;
  justify-content: center;
  opacity: 0;
  padding: 0 50px;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  filter: drop-shadow(0 0 5px var(--black)) drop-shadow(0 0 10px var(--brown)) drop-shadow(0 0 20px var(--brown));
}
section.hero .inset .slides .slide__image {
  object-fit: contain;
  height: 100%;
  opacity: 0;
  width: auto;
  max-width: 100%;
  z-index: 1;
}
section.hero .inset .slides .slide.active {
  opacity: 1;
  z-index: 2;
  animation: fade-in 500ms ease-out forwards;
}
section.hero .inset .slides .slide.active .slide__text {
  animation: text-in var(--text-duration) cubic-bezier(0, 0.7, 0.4, 1) forwards;
  animation-delay: 250ms;
}
section.hero .inset .slides .slide.active .slide__image {
  animation: image-in var(--image-duration) cubic-bezier(0, 0.7, 0.4, 1) forwards;
  animation-delay: 250ms;
}
section.hero .inset .slides .slide.inactive {
  animation: fade-out 500ms ease-out forwards;
  animation-delay: 500ms;
}
section.hero .inset .slides .slide.inactive .slide__text {
  animation: text-out calc(var(--text-duration) / 3) ease-in forwards;
  animation-delay: 0ms;
}
section.hero .inset .slides .slide.inactive .slide__image {
  animation: image-out var(--image-duration) ease-out forwards;
  animation-delay: 0ms;
}
@keyframes text-in {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes text-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes image-in {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes image-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
section.page .inset {
  border-bottom: 1px solid var(--dark-beige);
  padding: 0 20px 40px;
}
section.page .inset .columns {
  gap: 40px;
}
section.page .inset .columns__column {
  padding: 30px;
  position: relative;
}
section.page .inset .columns__column--border-right:before {
  background-color: var(--dark-beige);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  width: 1px;
}
section.page .inset .houses {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
}
section.page .inset .houses .house {
  aspect-ratio: 240/150;
  color: var(--light-beige);
  display: flex;
  flex-direction: column;
  font-size: 1.25em;
  justify-content: center;
  align-items: center;
  height: auto;
  line-height: 1.1;
  max-width: 240px;
  padding: 50px 30px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  text-wrap: balance;
}
section.page .inset .houses .house svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease-in-out 0.2s;
  filter: drop-shadow(0 0 10px var(--light-beige));
  z-index: -1;
}
section.page .inset .houses .house:hover svg {
  filter: drop-shadow(0 0 30px var(--light-beige));
}
section.boxes .inset {
  border-bottom: 1px solid var(--dark-beige);
  padding: 0 0 30px;
}
section.boxes .grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}
section.boxes .grid .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
section.boxes .grid .row .box {
  display: block;
}
section.boxes .grid .row .box--image {
  height: auto;
  width: calc(var(--p) - (20px * (var(--num) - 1) / var(--num)));
}
section.boxes .grid .row--auto .box--text {
  aspect-ratio: 3/2;
  height: auto;
  width: calc(var(--p) - (20px * (var(--num) - 1) / var(--num)));
  padding: 20px;
}
section.boxes .grid .row--text {
  --image-width: 27%;
  justify-content: center;
  position: relative;
}
section.boxes .grid .row--text .box--image {
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  object-fit: cover;
  width: calc(var(--image-width) - (20px * 2 / 3));
  height: 100%;
}
section.boxes .grid .row--text .box--image:last-child {
  left: auto;
  right: 0;
}
section.boxes .grid .row--text .box--text {
  height: auto;
  width: calc((100% - var(--image-width) * 2) - (20px * 2 / 3));
  padding: 20px 0;
}
section.boxes .grid .row--text .box--text h1 {
  font-size: 2em;
  margin-bottom: 20px;
}
section.boxes .grid .row--text .box--testimonials h3 {
  margin-bottom: 10px;
  padding-left: 60px;
}
section.boxes .grid .row .zoom-image {
  cursor: zoom-in;
  outline: 1px solid transparent;
  outline-offset: 2px;
  transition: outline 0.1s ease-in-out;
}
section.boxes .grid .row .zoom-image:hover {
  outline-color: var(--light-beige);
}
section.cta .inset {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}
section.cta .inset span {
  text-transform: uppercase;
}
footer#footer {
  position: relative;
  text-align: left;
  z-index: 100;
}
footer#footer .inset {
  align-items: center;
  border-top: 1px solid var(--dark-beige);
  display: flex;
  flex-direction: row;
  font-size: 0.875em;
  padding: 10px 20px 40px;
  justify-content: space-between;
}
footer#footer .inset a {
  color: var(--light-beige);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset .box {
  flex-grow: 1;
  text-align: center;
}
footer#footer .inset .box--social {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
}
footer#footer .inset .box--social ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset .box--social ul li svg {
  display: block;
  fill: var(--light-beige);
  height: 24px;
  width: 24px;
}
footer#footer .inset .box--social ul li:hover svg {
  fill: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset .box--social a {
  font-size: 1.5em;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .box--social a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset .box:first-child {
  text-align: left;
}
footer#footer .inset .box:last-child {
  text-align: right;
}
.testimonial__quote {
  font-style: italic;
}
.testimonial__author {
  margin-top: 20px;
}
.grid-slider {
  padding: 0 50px;
  position: relative;
}
.grid-slider .holder {
  --gap: 50px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.grid-slider .holder .strip {
  display: grid;
  grid-template-columns: repeat(var(--num), 1fr);
  gap: 0;
  top: 0;
  left: 0;
  position: relative;
  white-space: nowrap;
  width: calc(var(--num) / var(--per) * 100%);
}
.grid-slider .holder .strip.sliding {
  transition: transform 250ms ease-in-out;
}
.grid-slider .holder .strip .item {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  max-width: none !important;
  padding: 10px;
  text-wrap: auto;
}
.grid-slider .arrow {
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  z-index: 1000;
  transition: all var(--transition-duration) ease-in-out;
}
.grid-slider .arrow:hover {
  background-color: var(--bright-blue);
}
.grid-slider .arrow:before {
  display: block;
  height: 40px;
  transition: all var(--transition-duration) ease-in-out;
  width: 24px;
}
.grid-slider .arrow--left {
  left: 0;
}
.grid-slider .arrow--left:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%237E7165" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
  right: 0;
}
.grid-slider .arrow--left:hover:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23A39383" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
}
.grid-slider .arrow--right {
  right: 0;
}
.grid-slider .arrow--right:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%237E7165" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
  left: -5px;
}
.grid-slider .arrow--right:hover:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23A39383" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
}
.grid-slider .dots {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.grid-slider .dots .dot {
  background-color: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  width: 10px;
}
.grid-slider .dots .dot.active {
  background-color: var(--bright-blue);
}
.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin: 30px auto 0;
  max-width: 1000px;
}
.form .field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.form .field--half {
  width: calc(50% - 10px);
}
.form .field:has(button) {
  justify-content: center;
  margin-top: 10px;
}
.form .field label {
  font-size: 1em;
  line-height: 1.2;
  text-wrap: pretty;
}
.form .field input,
.form .field select,
.form .field textarea {
  background-color: var(--beige);
  border: none;
  color: var(--brown);
  font-family: var(--font-family);
  font-size: 1.2em;
  padding: 12px 15px;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
.form .field input:focus,
.form .field select:focus,
.form .field textarea:focus {
  background: var(--light-beige);
  outline: none;
}
.form .field--checkbox {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 0;
}
.form .field--checkbox label {
  text-align: left;
  /*font-size: 1.1em;
                line-height: 1.3;
                text-wrap: pretty;*/
}
.form .field input[type="checkbox"] {
  display: none;
}
.form .field input[type="checkbox"] + label {
  cursor: pointer;
  display: block;
  font-family: var(--montserrat);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 2px 0 0 40px;
  position: relative;
  transition: background 0.1s, color 0.1s;
  text-wrap: balance;
}
.form .field input[type="checkbox"] + label:before {
  border: 2px solid var(--white);
  border-radius: 4px;
  content: '';
  display: block;
  font-family: var(--font-awesome);
  font-size: 1rem;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.form .field input[type="checkbox"]:checked + label:before {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--blue);
  content: '\f00c';
}
.form .field textarea {
  height: 200px;
  resize: none;
}
.form .field button {
  background-color: var(--beige);
  border: none;
  border-radius: 40px;
  color: var(--brown);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  padding: 10px 40px;
}
.form .field button:hover {
  background-color: var(--light-beige);
}
a.back-to-top {
  background-color: var(--red);
  border-radius: 0;
  bottom: 20px;
  color: #FFF;
  display: flex;
  height: 50px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  transform: translateX(100px);
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
a.back-to-top i {
  color: #FFF;
  font-size: 1.2em;
  line-height: 50px;
}
a.back-to-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
a.back-to-top:hover {
  background-color: var(--red-dark);
}
.yt-embed {
  max-width: 100% !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.yt-embed .yt-embed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox-overlay {
  background-color: rgba(0, 0, 0, 0.69);
  backdrop-filter: blur(5px);
  display: none;
  height: 100vh;
  left: 0;
  overflow: hidden auto;
  padding: 60px;
  position: fixed;
  top: 0;
  width: 100vw;
  animation: lightbox-fade-in 0.25s ease-in-out forwards;
  z-index: 11000;
}
.lightbox-overlay--active {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes lightbox-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lightbox-overlay .lightbox {
  height: calc(100vh);
  width: calc(100vw);
}
.lightbox-overlay .lightbox__content {
  display: flex;
  height: calc(100vh);
  justify-content: center;
  align-items: center;
  width: calc(100vw);
  padding: 80px 60px;
}
.lightbox-overlay .lightbox__content img {
  outline: 1px solid var(--light-beige);
  outline-offset: 2px;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.lightbox-overlay .lightbox__close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
}
.lightbox-overlay .lightbox__close::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23FFF" d="M393.4 41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 256 438.6 425.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 301.3 54.6 470.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0L224 210.7 393.4 41.4z"/></svg>');
  display: block;
  text-align: center;
}
.lightbox-overlay .lightbox__arrow {
  cursor: pointer;
  display: block;
  height: 60px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 1000;
}
.lightbox-overlay .lightbox__arrow:before {
  display: block;
  height: 30px;
  position: absolute;
  top: 50%;
  transition: all var(--transition-duration) ease-in-out;
  transform: translateY(-50%);
  width: 30px;
}
.lightbox-overlay .lightbox__arrow--prev {
  left: 10px;
}
.lightbox-overlay .lightbox__arrow--prev:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
  right: 0;
}
.lightbox-overlay .lightbox__arrow--prev:hover:before {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
  left: 0;
}
.lightbox-overlay .lightbox__arrow--next:hover:before {
  left: 10px;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h3.label {
    font-size: 1.2em;
    margin-bottom: 0;
  }
  header#header {
    --top-logo-height: calc(var(--header-height) - 20px);
  }
  header#header .inset {
    height: var(--header-height);
  }
  header#header .inset .branding {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    width: 100%;
  }
  header#header .inset .branding a {
    aspect-ratio: 600/350;
    position: relative;
    width: auto;
  }
  header#header .inset nav.menus {
    align-items: center;
    background-color: var(--brown);
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    height: calc(100vh - var(--header-height));
    justify-content: flex-start;
    padding: 40px 0;
    position: fixed;
    top: var(--header-height);
    width: calc(100%);
  }
  header#header .inset nav.menus:before {
    display: none;
  }
  header#header .inset nav.menus .menu-main-menu-container {
    font-size: 1.5em;
    order: 1;
    width: 100%;
  }
  header#header .inset nav.menus .menu-main-menu-container ul.menu li {
    border-bottom: 1px solid var(--dark-beige);
  }
  header#header .inset nav.menus .menu-top-menu-container {
    font-size: 1.25em;
    order: 2;
    margin-top: 40px;
    width: 100%;
  }
  header#header .inset nav.menus .menu-top-menu-container ul.menu li > span,
  header#header .inset nav.menus .menu-top-menu-container ul.menu li a {
    padding: 10px 20px;
  }
  header#header .inset nav.menus ul.menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  header#header .inset nav.menus ul.menu li {
    width: 100%;
    text-align: center;
  }
  header#header .inset nav.menus ul.menu li > span,
  header#header .inset nav.menus ul.menu li a {
    display: block;
    padding: 20px;
    width: 100%;
  }
  header#header .inset nav.menus ul.menu li > span:hover,
  header#header .inset nav.menus ul.menu li a:hover {
    background-color: var(--dark-beige);
  }
  header#header .mobile-menu-button {
    --line-inset: 7px;
    border-radius: 4px;
    color: #FFF;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    z-index: 1000;
  }
  header#header .mobile-menu-button__line {
    background-color: var(--light-beige);
    border-radius: 2px;
    position: absolute;
    top: calc(var(--line-inset) + 4px);
    left: var(--line-inset);
    height: 4px;
    width: calc(100% - (var(--line-inset) * 2));
    transition: all 0.1s ease-in-out;
  }
  header#header .mobile-menu-button__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header#header .mobile-menu-button__line:nth-child(3) {
    top: auto;
    bottom: calc(var(--line-inset) + 4px);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(2) {
    display: none;
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(3) {
    bottom: 18px;
    transform: rotate(-45deg);
  }
  header#header.menus--active {
    background-color: var(--brown);
    position: fixed;
    z-index: 1000;
  }
  header#header.menus--active .inset .menus {
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .columns {
    flex-direction: column;
    gap: 20px;
  }
  .columns__column {
    width: 100%;
  }
  .columns__column--border-left {
    border-left: none;
    padding-left: 0;
  }
  .columns__column--border-right {
    border-right: none;
    padding-right: 0;
  }
  section.hero .inset .slides {
    height: 300px;
  }
  section.hero .inset .slides .slide {
    padding: 20px 20px 20px 50px;
  }
  section.hero .inset .slides .slide__text {
    font-size: 3em;
    justify-content: flex-end;
    padding: 40px 20px;
  }
  section.hero .inset .slides .slide__image {
    background-size: cover;
    background-position: center;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
  }
  section.page .inset .columns {
    flex-direction: column;
    gap: 20px;
  }
  section.page .inset .columns__column {
    padding: 20px 0;
    width: 100%;
  }
  section.page .inset .columns__column--border-right:before {
    display: none;
  }
  section.page .inset .houses {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  section.page .inset .houses .house {
    width: 220px;
    aspect-ratio: 240/150;
    padding: 40px 20px 20px;
  }
  section.boxes .grid {
    padding: 20px 0;
  }
  section.boxes .grid .row {
    padding: 0 10px;
    flex-direction: column !important;
    gap: 20px;
    order: 2;
  }
  section.boxes .grid .row .box--image {
    width: 100%;
  }
  section.boxes .grid .row .box--text {
    width: 100%;
    padding: 20px;
  }
  section.boxes .grid .row .box--testimonials h3 {
    padding-left: 40px;
  }
  section.boxes .grid .row--text {
    order: 1;
  }
  section.boxes .grid .row--text .box--image {
    position: relative;
    width: 100%;
    height: auto;
  }
  section.boxes .grid .row--text .box--text {
    width: 100%;
    padding: 20px;
  }
  .grid-slider {
    padding: 0 30px;
  }
  section.cta .inset {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
  }
  section.cta .inset span {
    font-size: 1.2em;
    text-align: center;
  }
  footer#footer .inset {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  footer#footer .inset .box {
    text-align: center;
    width: 100%;
  }
  footer#footer .inset .box:last-child {
    text-align: center;
  }
  footer#footer .inset .box--social {
    justify-content: center;
    width: 100%;
  }
  footer#footer .inset .box--social ul {
    justify-content: center;
  }
}
/*# sourceMappingURL=style.less.css.map */