@charset "UTF-8";
@font-face {
  font-family: "akkurat";
  src: url("/fonts/Akkurat regular.woff2") format("woff2"), url("/fonts/Akkurat regular.woff") format("woff"), url("/fonts/Akkurat regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "akkurat";
  src: url("/fonts/Akkurat Bold.woff2") format("woff2"), url("/fonts/Akkurat Bold.woff") format("woff"), url("/fonts/Akkurat Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "akkurat";
  src: url("/fonts/Akkurat Light.woff2") format("woff2"), url("/fonts/Akkurat Light.woff") format("woff"), url("/fonts/Akkurat Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "akkurat";
  src: url("/fonts/Akkurat italic.woff2") format("woff2"), url("/fonts/Akkurat italic.woff") format("woff"), url("/fonts/Akkurat italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "angie";
  src: url("/fonts/AngieSans Regular.woff2") format("woff2"), url("/fonts/AngieSans Regular.woff") format("woff"), url("/fonts/AngieSans Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "angie";
  src: url("/fonts/AngieSans Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "angie";
  src: url("/fonts/AngieSans BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "angie";
  src: url("/fonts/AngieSans Italic.woff2") format("woff2"), url("/fonts/AngieSans Italic.woff") format("woff"), url("/fonts/AngieSans BoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "akkurat", Arial, sans-serif;
  background-color: #fdfaf6;
  color: #685231;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

.activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.activity {
  flex: 0 1 100%;
}
@media (min-width: 767px) {
  .activity {
    flex: 0 1 calc(33.333333% - 10px);
  }
}

.activity__header {
  position: relative;
  display: block;
  border-bottom: 0 solid #d4bfaa;
  transition: border-bottom-width 0.3s;
  cursor: pointer;
  z-index: 10;
  overflow: hidden;
}
.activity__header::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.activity__header:hover .activity__image {
  transform: scale(1.1);
  transition: transform 0.5s;
}

.activity__toggle {
  display: none;
  visibility: hidden;
}

.activity__content.js-show {
  display: block;
}

.activity__content {
  display: none;
  position: relative;
  background-color: #d4bfaa;
  color: #3E311D;
  padding: 20px;
  margin-bottom: 20px;
  animation-duration: 1s;
  animation-name: slidein;
  border-top: 20px solid #fdfaf6;
}
.activity__content:after {
  content: "";
  display: table;
  clear: both;
}
.activity__content h2 {
  margin-top: 0;
}

@keyframes slidein {
  from {
    transform: translate3d(-3000px, 0, 0);
  }
  to {
    transform: none;
  }
}
.activity__title {
  display: block;
  background-color: #000000;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 8px;
  color: #ffffff;
}

.activity__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.activity__content__image {
  width: 100%;
  margin: 0;
  height: auto;
}
@media (min-width: 767px) {
  .activity__content__image {
    float: left;
    width: 200px;
    margin: 0 20px 20px 0;
  }
}

.activity__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.activity__close:hover svg {
  fill: #bfa58f;
}

.button {
  font-family: "akkurat", Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  background-color: #000000;
  color: #fdfaf6 !important;
  border-bottom: unset !important;
  padding: 10px !important;
  border: 0;
  margin-right: 10px;
}
.button ~ .button {
  margin-top: 10px;
}

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.button-group > * {
  margin: 0 !important;
}

.divider {
  position: relative;
}

.divider__line {
  margin: 75px 0;
  border: 1px solid #fdfaf6;
}
@media (min-width: 767px) {
  .divider__line {
    margin: 75px 0;
  }
}
.divider__line::before {
  background-image: url(/images/hethuisvanKaliter_IcoonK_RGB_Offwit.png);
  background-size: 75px 99px;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 75px;
  height: 99px;
  content: "";
  position: absolute;
  left: calc(50% - 75px);
  top: -49.5px;
  padding: 0 75px;
}

.section--sand .divider__line::before {
  background-image: url(/images/hethuisvanKaliter_IcoonK_RGB_Bruin02.png);
}

.section--sand .divider__line {
  border-color: #bfa58f;
}
.section--sand .divider__line::before {
  background-color: #fdfaf6;
}

.section--lightbrown .divider__line {
  border-color: #fdfaf6;
}
.section--lightbrown .divider__line::before {
  background-color: #d4bfaa;
}

.section--darkbrown .divider__line {
  border-color: #fdfaf6;
}
.section--darkbrown .divider__line::before {
  background-color: #bfa58f;
}

table.month td.day .day-content:hover {
  background-color: lightgreen !important;
  color: black;
  border-radius: 0 !important;
  font-weight: bold;
}
table.month td.day .day-content--booked {
  background-color: #EE1B49 !important;
  color: white;
  border-radius: 0 !important;
  font-weight: bold;
  cursor: pointer;
}
table.month td.day .day-content--booked:hover {
  background-color: #EE1B49 !important;
  color: white;
  border-radius: 0 !important;
  font-weight: bold;
  cursor: pointer;
}
table.month td.day.range .day-content:not(.day-content--booked) {
  background-color: lightgreen !important;
  color: black;
  border-radius: 0 !important;
  font-weight: bold;
}

table.month td.day.disabled .day-content:hover {
  background-color: unset !important;
  color: unset !important;
  border-radius: unset !important;
  font-weight: unset !important;
  cursor: not-allowed !important;
}

table.month td.day .day-content.day-content--booked:hover {
  cursor: default;
}

.calendar .calendar-header table th {
  font-size: 18px !important;
}

.month-container {
  margin-bottom: 20px;
}

.legende {
  display: flex;
  align-items: center;
}

.day-booked-example {
  display: inline-block;
  background-color: #EE1B49 !important;
  color: white;
  border-radius: 0 !important;
  font-weight: bold;
  cursor: pointer;
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

/* =========================================================
 * JS year calendar v0.1.0
 * Repo: https://github.com/year-calendar/js-year-calendar
 * =========================================================
 * Created by Paul David-Sivelle
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================= */
/* Main */
.calendar {
  direction: ltr;
  -webkit-touch-callout: none;
  user-select: none;
}
.calendar .calendar-rtl {
  direction: rtl;
}
.calendar .calendar-rtl .calendar-rtl table tr td span {
  float: right;
}
.calendar table {
  margin: auto;
  border-spacing: 0;
}
.calendar table td,
.calendar table th {
  text-align: center;
  width: 20px;
  height: 20px;
  border: none;
  padding: 4px 5px;
  font-size: 12px;
}
.calendar {
  /* Header */
}
.calendar .calendar-header {
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.calendar .calendar-header table {
  width: 100%;
}
.calendar .calendar-header table th {
  font-size: 22px;
  padding: 5px 10px;
  cursor: pointer;
}
.calendar .calendar-header table th:hover {
  background: #eeeeee;
}
.calendar .calendar-header table th.disabled, .calendar .calendar-header table th.disabled:hover {
  background: none;
  cursor: default;
  color: white;
}
.calendar .calendar-header table th.prev, .calendar .calendar-header table th.next {
  width: 20px;
}
.calendar .calendar-header .year-title {
  font-weight: bold;
  text-align: center;
  height: 20px;
  width: auto;
}
.calendar .calendar-header .year-neighbor {
  opacity: 0.4;
}
@media (max-width: 991px) {
  .calendar .calendar-header .year-neighbor {
    display: none;
  }
}
.calendar .calendar-header .year-neighbor2 {
  opacity: 0.2;
}
@media (max-width: 767px) {
  .calendar .calendar-header .year-neighbor2 {
    display: none;
  }
}
.calendar {
  /* Months */
}
.calendar .months-container {
  display: flex !important;
  flex-wrap: wrap;
}
.calendar .months-container .month-container {
  margin-bottom: 20px;
}
.calendar .months-container .month-container.month-2 {
  width: 16.66666667%;
}
.calendar .months-container .month-container.month-3 {
  width: 33.33333333%;
}
.calendar .months-container .month-container.month-4 {
  width: 33.33333333%;
}
.calendar .months-container .month-container.month-6 {
  width: 50%;
}
.calendar .months-container .month-container.month-12 {
  width: 100%;
}
.calendar table.month th.month-title {
  font-size: 16px;
  padding-bottom: 5px;
}
.calendar table.month th.day-header {
  font-size: 14px;
}
.calendar table.month tr td,
.calendar table.month tr th {
  padding: 0;
}
.calendar table.month tr td.hidden,
.calendar table.month tr th.hidden {
  display: none;
}
.calendar table.month td.week-number {
  cursor: default;
  font-weight: bold;
  border-right: 1px solid #eee;
  padding: 5px;
}
.calendar table.month td.day.round-left {
  border-radius: 8px 0 0 8px;
}
.calendar table.month td.day.round-right {
  border-radius: 0 8px 8px 0;
}
.calendar table.month td.day .day-content {
  border-radius: 4px;
  padding: 5px 6px;
}
.calendar table.month td.old,
.calendar table.month td.new,
.calendar table.month td.old:hover,
.calendar table.month td.new:hover {
  background: none;
  cursor: default;
}
.calendar table.month td.disabled,
.calendar table.month td.disabled:hover {
  color: #dddddd;
}
.calendar table.month td.disabled .day-content:hover,
.calendar table.month td.disabled:hover .day-content:hover {
  background: none;
  cursor: default;
}
.calendar table.month td.range .day-content {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.calendar table.month td.range.range-start .day-content {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.calendar table.month td.range.range-end .day-content {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.calendar {
  /* Loading */
}
.calendar .calendar-loading-container {
  position: relative;
  text-align: center;
  min-height: 200px;
}
.calendar .calendar-loading-container .calendar-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.calendar .calendar-spinner {
  margin: 20px auto;
  width: 80px;
  text-align: center;
}
.calendar .calendar-spinner > div {
  width: 16px;
  height: 16px;
  margin: 5px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1s infinite ease-in-out both;
}
.calendar .calendar-spinner > div.bounce1 {
  animation-delay: -0.32s;
}
.calendar .calendar-spinner > div.bounce2 {
  animation-delay: -0.16s;
}

/* Context menu */
.calendar-context-menu,
.calendar-context-menu .submenu {
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  display: none;
}

.calendar-context-menu .item {
  position: relative;
}
.calendar-context-menu .item .content {
  padding: 5px 10px;
  cursor: pointer;
  display: table;
  width: 100%;
  white-space: nowrap;
}
.calendar-context-menu .item .content:hover {
  background: #eee;
}
.calendar-context-menu .item .content .text {
  display: table-cell;
}
.calendar-context-menu .item .content .arrow {
  display: table-cell;
  padding-left: 10px;
  text-align: right;
}
.calendar-context-menu .item .submenu {
  top: -1px; /* Compensate for the border */
}
.calendar-context-menu .item .submenu:not(.open-left) {
  left: 100%;
}
.calendar-context-menu .item .submenu.open-left {
  right: 100%;
}
.calendar-context-menu .item:hover > .submenu {
  display: block;
}

.table-striped .calendar table.month tr td,
.table-striped .calendar table.month tr th {
  background-color: transparent;
}

table.month td.day .day-content:hover {
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.contact {
  margin-top: 20px;
  margin-left: 20px;
}

.contact__item {
  display: flex;
  align-items: center;
}

.contact__icon {
  margin-right: 20px;
  width: 20px;
}

.contact__item--no-icon {
  margin-left: 40px;
}

.contact-map {
  width: 100%;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
@media (min-width: 1000px) {
  .footer {
    padding: 40px;
  }
}
@media (min-width: 767px) {
  .footer {
    flex-direction: row;
  }
}

.footer__center {
  margin-top: 20px;
}
@media (min-width: 767px) {
  .footer__center {
    margin-top: unset;
  }
}

.footer__left,
.footer__center,
.footer__right {
  width: 100%;
  text-align: center;
}

@media (min-width: 767px) {
  .footer__left {
    text-align: left;
  }
  .footer__right {
    text-align: right;
  }
}
.footer__center {
  order: 1;
}
@media (min-width: 767px) {
  .footer__center {
    order: unset;
  }
}

.footer__logo {
  margin: 0 auto;
  max-width: 300px;
  height: auto;
}

.input-field {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.input-fields {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .input-fields {
    flex-direction: row;
    gap: 10px;
  }
}

.input-field__label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.input-field__input {
  display: block;
  width: 100%;
  font-family: "akkurat", Arial, sans-serif;
  font-size: 1rem;
  padding: 10px;
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 42px;
  border-radius: 0;
}

.input-field__input--textarea {
  height: 126px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4bfaa;
  padding: 10px;
  height: 75px;
}
@media (min-width: 767px) {
  .header {
    padding: 20px;
    height: 150px;
  }
}

.logo {
  margin: 0 auto;
  width: auto;
  max-height: 100%;
}

.image-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: 40px;
}
.image-gallery .image-gallery__item {
  position: relative;
  flex: 0 1 calc(50% - 5px);
}
@media (min-width: 767px) {
  .image-gallery .image-gallery__item {
    flex: 0 1 calc(33.3333333333% - 6.6666666667px);
  }
}
@media (min-width: 1000px) {
  .image-gallery .image-gallery__item {
    flex: 0 1 calc(25% - 7.5px);
  }
}
.image-gallery .image-gallery__item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.image-gallery .image-gallery__item--video {
  flex: 1 1 100%;
  order: 1;
}
.image-gallery .image-gallery__item--video::after {
  padding-bottom: 56.25%;
}
@media (min-width: 1000px) {
  .image-gallery .image-gallery__item--video {
    flex-basis: unset;
  }
}
.image-gallery .image-gallery__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-gallery-scroll {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  margin-bottom: 20px;
  margin-top: 40px;
}
.image-gallery-scroll .image-gallery__item {
  height: 200px;
  margin: 0 10px;
  scroll-snap-align: center;
}
.image-gallery-scroll .image-gallery__item:first-child, .image-gallery-scroll .image-gallery__item:last-child {
  margin: 0;
}
@media (min-width: 767px) {
  .image-gallery-scroll .image-gallery__item {
    height: 300px;
  }
}
.image-gallery-scroll .image-gallery__image {
  width: auto;
  height: 100%;
  scroll-snap-align: center;
}

.image-gallery-scroll ~ .image-gallery__controls {
  display: flex;
}

.image-gallery__controls {
  display: none;
  justify-content: space-between;
  align-items: center;
}
.image-gallery__controls a,
.image-gallery__controls a:visited,
.image-gallery__controls a:active,
.image-gallery__controls a:hover,
.image-gallery__controls a:focus {
  color: #685231;
  text-decoration: none;
  border-bottom: 1px solid #685231;
  padding-bottom: 1px;
}
.image-gallery__controls a:hover,
.image-gallery__controls a:focus {
  color: #685231;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 2px solid #d4bfaa;
}
.image-gallery__controls .image-gallery__button--previous {
  margin: 0;
}
.image-gallery__controls .image-gallery__button--next {
  margin: 0;
}

/*
.image-gallery-overlay.mobile .btn-previous,
.image-gallery-overlay.mobile .btn-next,
.image-gallery-overlay.keyboard .btn-previous,
.image-gallery-overlay.keyboard .btn-next {
	display: block !important;
}

.image-gallery-overlay .btn-previous,
.image-gallery-overlay .btn-next {
	width: 50% !important;
	height: 100vh !important;
	background-color: unset !important;
	border: 0 !important;
	margin: 10px !important;
	opacity: 0.9 !important;

}

.image-gallery-overlay .btn-next {
	background-position-x: right !important;;
}

.image-gallery-overlay .btn-previous {
	background-position-x: left !important;
}
*/
p a,
p a:visited,
p a:active,
p a:hover,
p a:focus,
footer a,
footer a:visited,
footer a:active,
footer a:hover,
footer a:focus {
  color: #685231;
  text-decoration: none;
  border-bottom: 1px solid #685231;
  padding-bottom: 1px;
}
p a:hover,
p a:focus,
footer a:hover,
footer a:focus {
  color: #685231;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 2px solid #d4bfaa;
}

.menu-toggle {
  display: none;
}

.menu-toggle:checked ~ .navigation {
  display: block;
}

.navigation {
  background-color: #d4bfaa;
  color: #fdfaf6;
  z-index: 99;
}
@media (max-width: 800px) {
  .navigation {
    display: none;
    position: fixed;
    top: 0;
    opacity: 0.9;
    height: 100vh;
    width: 100vw;
    padding-top: 40px;
  }
  .navigation .content {
    height: 100%;
  }
}

.menu-toggle-label {
  display: none;
}
@media (max-width: 800px) {
  .menu-toggle-label {
    display: flex;
  }
}
.menu-toggle-label {
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  color: #fdfaf6;
  position: absolute;
  right: 0;
  z-index: 999;
  font-size: 3rem;
}

.menu-toggle-label__icon {
  fill: #fdfaf6;
}

.menu {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0;
  padding: 10px 0;
}
@media (max-width: 800px) {
  .menu {
    height: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 75%;
  }
}

.menu__item {
  list-style: none;
  position: relative;
}
@media (max-width: 800px) {
  .menu__item {
    width: 100%;
  }
}

.menu__link {
  display: inline-block;
  font-family: "angie", Arial, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fdfaf6;
  text-decoration: none;
  padding-bottom: 5px;
  justify-content: space-around;
}
@media (max-width: 800px) {
  .menu__link {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
  .menu__link:hover {
    background-color: #fdfaf6;
    color: #bfa58f;
  }
}
.menu__link:hover::before {
  background-image: url(/images/hethuisvanKaliter_Icoon_RGB_Offwit.png);
  background-size: 50px 66px;
  display: inline-block;
  width: 50px;
  height: 66px;
  content: "";
  position: absolute;
  left: -20px;
  top: -33px;
}

.opener {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
  object-position: center center;
}

.pricing-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pricing-block__image {
  display: none;
}
@media (min-width: 1000px) {
  .pricing-block__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pricing-block__image img {
    width: 75%;
    height: auto;
    border-radius: 40px;
  }
}

.pricing-block__table,
.pricing-block__image {
  flex: 1 1 50%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table__row--head .pricing-table__price-cell {
  white-space: nowrap;
  padding-bottom: 20px;
}

.pricing-table__body .pricing-table__price-cell {
  text-align: center;
  white-space: nowrap;
}

.pricing-table__row {
  border-bottom: 1px solid #bfa58f;
}
.pricing-table__row td {
  padding-left: 10px;
  padding-right: 10px;
}
.pricing-table__row td:first-child {
  padding-left: 0;
}
.pricing-table__row td:last-child {
  padding-right: 0;
}

.pricing-table__header-col,
.pricing-table__row--head {
  padding: 20px 0;
  font-weight: bold;
}
@media (min-width: 1000px) {
  .pricing-table__header-col,
  .pricing-table__row--head {
    padding: 40px 0;
  }
}

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

.section--sand {
  background-color: #fdfaf6;
  color: #685231;
}
.section--sand p a,
.section--sand p a:visited,
.section--sand p a:active,
.section--sand p a:hover,
.section--sand p a:focus, .section--sand ul a,
.section--sand ul a:visited,
.section--sand ul a:active,
.section--sand ul a:hover,
.section--sand ul a:focus {
  color: #685231;
  text-decoration: none;
  border-bottom: 1px solid #685231;
  padding-bottom: 1px;
}
.section--sand p a:hover,
.section--sand p a:focus, .section--sand ul a:hover,
.section--sand ul a:focus {
  color: #685231;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 2px solid #d4bfaa;
}

.section--lightbrown {
  background-color: #d4bfaa;
  color: #3E311D;
}
.section--lightbrown p a,
.section--lightbrown p a:visited,
.section--lightbrown p a:active,
.section--lightbrown p a:hover,
.section--lightbrown p a:focus, .section--lightbrown ul a,
.section--lightbrown ul a:visited,
.section--lightbrown ul a:active,
.section--lightbrown ul a:hover,
.section--lightbrown ul a:focus {
  color: #3E311D;
  text-decoration: none;
  border-bottom: 1px solid #3E311D;
  padding-bottom: 1px;
}
.section--lightbrown p a:hover,
.section--lightbrown p a:focus, .section--lightbrown ul a:hover,
.section--lightbrown ul a:focus {
  color: #3E311D;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 2px solid #bfa58f;
}

.section--darkbrown {
  background-color: #bfa58f;
  color: #251E13;
}
.section--darkbrown p a,
.section--darkbrown p a:visited,
.section--darkbrown p a:active,
.section--darkbrown p a:hover,
.section--darkbrown p a:focus, .section--darkbrown ul a,
.section--darkbrown ul a:visited,
.section--darkbrown ul a:active,
.section--darkbrown ul a:hover,
.section--darkbrown ul a:focus {
  color: #251E13;
  text-decoration: none;
  border-bottom: 1px solid #251E13;
  padding-bottom: 1px;
}
.section--darkbrown p a:hover,
.section--darkbrown p a:focus, .section--darkbrown ul a:hover,
.section--darkbrown ul a:focus {
  color: #251E13;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 2px solid #d4bfaa;
}

.title,
h1, h2, h3, h4, h5, h6 {
  font-family: "angie", Arial, sans-serif;
  font-size: 2em;
}
.title:first-child,
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

p {
  line-height: 1.6em;
}

ul {
  line-height: 1.6em;
}

footer {
  line-height: 1.75em;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #bfa58f;
  margin-left: 20px;
  padding-left: 20px;
}

.subtext {
  font-size: 0.875em;
  font-style: italic;
  font-weight: normal;
}

.simple-list {
  padding-left: 20px;
}
@media (min-width: 1000px) {
  .simple-list {
    padding-left: 40px;
  }
}

@media (min-width: 1000px) {
  .simple-list--col2 {
    columns: 2;
  }
}

.simple-list--checkmark > li {
  list-style: none;
}
.simple-list--checkmark > li::before {
  content: "✓ ";
}

.simple-list--none > li {
  list-style: none;
}

.to-top {
  position: fixed;
  pointer-events: all;
  bottom: 20px;
  right: 20px;
  display: none;
  text-decoration: none;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0.25rem;
  border: 1px solid #bfa58f;
  transition: transform 80ms ease-in;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjYmZhNThmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHg9IjBweCIgeT0iMHB4Ij48Zz48cGF0aCBkPSJNMTIgMjRjLTYuNjE3IDAtMTItNS4zODMtMTItMTJzNS4zODMtMTIgMTItMTIgMTIgNS4zODMgMTIgMTItNS4zODMgMTItMTIgMTJ6bTAtMjJjLTUuNTE0IDAtMTAgNC40ODYtMTAgMTBzNC40ODYgMTAgMTAgMTAgMTAtNC40ODYgMTAtMTAtNC40ODYtMTAtMTAtMTB6TTE2IDE1Yy0uMjU2IDAtLjUxMi0uMDk4LS43MDctLjI5M2wtMy4yOTMtMy4yOTMtMy4yOTMgMy4yOTNjLS4zOTEuMzkxLTEuMDIzLjM5MS0xLjQxNCAwcy0uMzkxLTEuMDIzIDAtMS40MTRsNC00Yy4zOTEtLjM5MSAxLjAyMy0uMzkxIDEuNDE0IDBsNCA0Yy4zOTEuMzkxLjM5MSAxLjAyMyAwIDEuNDE0LS4xOTUuMTk1LS40NTEuMjkzLS43MDcuMjkzek0xNyA4aC0xMGMtLjU1MiAwLTEtLjQ0OC0xLTFzLjQ0OC0xIDEtMWgxMGMuNTUzIDAgMSAuNDQ4IDEgMXMtLjQ0NyAxLTEgMXpNMTIgMTljLS41NTIgMC0xLS40NDctMS0xdi04YzAtLjU1Mi40NDgtMSAxLTFzMSAuNDQ4IDEgMXY4YzAgLjU1My0uNDQ4IDEtMSAxeiI+PC9wYXRoPjwvZz48L3N2Zz4=");
  background-size: cover;
}

.to-top--show {
  display: inline-block;
}

/*# sourceMappingURL=main.css.map */
