@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap");
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  text-decoration: none;
  font-style: normal;
}
html {
  font-size: 93.7%;
  scroll-behavior: smooth;
  overflow-y: scroll;
  height: -webkit-fill-available;
}
body {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
a, button {
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
:root {
  --white-100: hsl(180, 20%, 100%);
  --white-400: hsl(180, 20%, 95%);
  --yellow: hsl(54, 45%, 75%);
  --green-300: hsl(172, 22%, 43%, 5%);
  --green-200: hsl(172, 22%, 43%, 20%);
  --green: hsl(172, 22%, 43%);
  --brown-300: hsl(51, 6%, 35%, .3);
  --brown-400: hsl(51, 6%, 35%);
  --brown-500: hsl(51, 6%, 22%);
  --brown-600: hsl(51, 6%, 15%);
  --blue-200: hsl(187, 42%, 97%);
  --blue-300: hsl(187, 42%, 70%);
  --blue-500: hsl(187, 42%, 55%);
  --blue-600: hsl(187.2, 74.9%, 39%);
  --shadow:  0px 7px 14px -7px var(--brown-300);
  --shadow2:  0px 8px 7px -4px rgba(0, 0, 0, 0.288);
}
.sanna {
  color: #bb1f1f;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--brown-500);
}
.material-symbols-outlined {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0.15rem 0 0 0.2rem;
}
a {
  color: var(--blue-600);
  font-weight: 300;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
a:hover {
  color: var(--blue-300);
}
em {
  font-style: italic;
}
strong {
  font-weight: 500;
  letter-spacing: 0.02rem;
}
p {
  font-family: "Mulish", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
}
p:empty {
  display: none;
}
p:not(:last-child, p.has-medium-font-size) {
  padding-bottom: 1rem;
}
@media only screen and (min-width: 750px) {
  p {
    line-height: 1.6;
  }
}
h1, h2, h3 {
  line-height: 1.2;
}
h1 {
  font-size: clamp(1.5rem, 7vw, 2rem);
  font-weight: 200;
}
h2 {
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
h3 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  padding-bottom: 0.3rem;
}
h4 {
  font-weight: 400;
}
.has-small-font-size {
  font-size: 0.85rem;
  padding-top: 0;
}
a.has-small-font-size {
  letter-spacing: 0.03rem;
  padding-bottom: 0.3rem;
}
.has-medium-font-size {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  padding: 0.3rem 0;
}
.has-large-font-size {
  font-size: clamp(1.3rem, 1.8vw, 1.43rem);
  font-weight: 200;
  padding-top: 0rem;
}
body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--blue-200);
}
header {
  position: fixed;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  background-color: var(--blue-200);
  z-index: 99;
}
@media only screen and (min-width: 750px) {
  header {
    position: absolute;
  }
}
main {
  width: 100%;
  flex-grow: 1;
  margin-top: 10rem;
  margin-bottom: 4rem;
  position: relative;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
main#home {
  margin-top: 6rem;
}
@media only screen and (min-width: 750px) {
  main#home#home {
    margin-top: 9rem;
  }
}
@media only screen and (min-width: 750px) {
  main {
    margin-top: 14rem;
  }
}
footer {
  flex-shrink: 0;
  width: 100%;
  background-color: var(--brown-500);
}
footer * {
  font-size: 0.9rem;
  color: var(--yellow);
  font-weight: 400;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
img {
  object-fit: cover;
  border-radius: 3px;
}
.bck-img {
  position: relative;
}
.bck-img:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  background-image: url(../img/svg/logo-circel-kaal.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.container {
  width: 100%;
  max-width: 75rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.content {
  width: 100%;
}
.content .left-side h1, .content .middle-side h1 {
  margin-bottom: 1rem;
}
.content .left-side h1:before, .content .middle-side h1:before {
  content: "";
  position: relative;
  top: 3px;
  left: 0;
  background-image: url(../img/svg/logo-huisje-g.svg);
  background-repeat: no-repeat;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
}
@media only screen and (min-width: 878px) {
  .content .left-side h1:before, .content .middle-side h1:before {
    top: 5px;
    display: inline-block;
  }
}
@media only screen and (min-width: 878px) {
  .content {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .content .left-side {
    flex-basis: 60%;
  }
  .content .left-side.legals {
    flex-basis: 100%;
  }
  .content .left-side h1 ~ * {
    margin-left: 2.2rem;
  }
  .content .right-side {
    flex-basis: 32%;
    min-width: 17rem;
    padding-top: 2rem;
  }
  .content .middle-side {
    max-width: 75%;
    margin: auto;
    text-align: center;
  }
  .content .middle-side.legals {
    max-width: 80%;
    text-align: left;
  }
}
@media only screen and (min-width: 878px) and (min-width: 878px) {
  .content-wrapper {
    margin-left: 2.5rem;
  }
}
@media only screen and (min-width: 878px) and (min-width: 878px) {
  .content .right-side {
    margin-left: 0;
    padding-top: 0;
  }
}
.logo {
  width: 8.9rem;
  height: 100%;
  position: relative;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.logo-titel {
  font-size: 1.8rem;
  font-weight: 600;
}
.logo-titel_blauw {
  color: var(--blue-500);
}
.logo-titel_bruin {
  color: var(--brown-500);
  margin-bottom: 0.3rem;
}
@media only screen and (min-width: 750px) {
  .logo-titel {
    font-size: 2.1rem;
  }
}
.logo-single {
  width: 4rem;
  margin-bottom: 0.3rem;
}
@media only screen and (min-width: 750px) {
  .logo {
    width: 11.4rem;
  }
}
.head-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  height: 3.5rem;
  position: relative;
  top: 0.5rem;
}
@media only screen and (min-width: 750px) {
  .head-wrapper {
    height: 5rem;
    transform: translateY(0.4rem);
  }
}
.head-balk {
  width: 100%;
  height: 3.5rem;
  background-color: var(--brown-500);
  border-bottom: 18px solid var(--blue-300);
}
@media only screen and (min-width: 750px) {
  .head-balk {
    height: 3.8rem;
  }
}
main ul:not(ul.page), main ol, .card ul:not(ul.page), .card ol {
  font-family: "Mulish", sans-serif;
  font-size: 1.05rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
main ul:not(ul.page) > li, main ol > li, .card ul:not(ul.page) > li, .card ol > li {
  padding-left: 0.3rem;
}
main ul:not(ul.page) > li::marker, main ol > li::marker, .card ul:not(ul.page) > li::marker, .card ol > li::marker {
  color: var(--blue-500);
}
main ul:not(ul.page) > li:not(:last-child), main ol > li:not(:last-child), .card ul:not(ul.page) > li:not(:last-child), .card ol > li:not(:last-child) {
  padding-bottom: 0.5rem;
}
main ul:not(ul.page) > li > ul, main ol > li > ul, .card ul:not(ul.page) > li > ul, .card ol > li > ul {
  padding-left: 1.3rem;
  padding-bottom: initial;
}
main ul:not(ul.page) > li > ul > li, main ol > li > ul > li, .card ul:not(ul.page) > li > ul > li, .card ol > li > ul > li {
  list-style: square;
}
main ul:not(ul.page) > li > ul > li > ul > li, main ol > li > ul > li > ul > li, .card ul:not(ul.page) > li > ul > li > ul > li, .card ol > li > ul > li > ul > li {
  list-style: disclosure-closed;
}
main ol > li > ul > li, .card ol > li > ul > li {
  color: green;
  list-style: lower-alpha;
}
main ol > li > ul > li > ul li, .card ol > li > ul > li > ul li {
  color: firebrick;
  list-style: upper-roman;
}
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.page_btn, .page_numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem;
  cursor: pointer;
}
.page_btn > a, .page_numbers > a {
  font-size: 0.9rem;
  font-weight: 300;
}
.page_numbers {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 1px solid var(--green);
  background-color: var(--white-100);
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.page_numbers:hover {
  color: var(--brown-500);
  background-color: var(--green);
}
.page_numbers.active {
  background-color: var(--green);
}
.page_numbers a {
  padding: 1rem;
}
#home .container {
  align-items: stretch;
  max-width: 65rem;
}
@media only screen and (min-width: 700px) {
  #home .container.content {
    display: flex;
    justify-content: space-between;
  }
  #home .container .left-side, #home .container .right-side {
    flex-basis: 45%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-top: 0;
  }
}
#home p {
  font-size: 0.95rem;
  line-height: 1.5;
}
#home .hero {
  width: 100%;
  text-align: center;
  padding-top: 4rem;
}
#home .hero-huisjes {
  content: "";
  position: relative;
  min-width: 12rem;
  max-width: 19.5rem;
  height: 1.4rem;
  display: block;
  background-image: url(../img/svg/logo-huisje-y.svg);
  background-repeat: repeat no-repeat;
  margin: auto;
}
#home .hero-intro {
  padding-top: 1.5rem;
}
#home .hero-intro .titel {
  font-size: 1.6rem;
  font-weight: 200;
  font-style: italic;
  padding-bottom: 0.6rem;
}
#home .hero-intro p {
  font-size: 1rem;
  font-weight: 400;
}
#home .hero-image {
  padding-top: 3rem;
}
#home .hero-image img {
  border-radius: 3px;
  width: 53rem;
  border: 1px solid var(--green);
  background-color: white;
  padding: 0.5rem;
  margin: auto;
  z-index: 1;
}
#home .hero-bck {
  position: absolute;
  top: 0;
  left: 0;
  height: 41%;
  width: 100%;
  background-color: var(--white-100);
  border-bottom: 1px solid var(--green);
  z-index: -1;
}
#home .hero-bck.contact {
  height: 56.5%;
}
@media only screen and (min-width: 735px) {
  #home .hero-bck.contact {
    height: 47.25%;
  }
}
.leesmore {
  font-size: 0.9rem;
  max-width: 8rem;
  border-radius: 3px;
  border: 1px solid var(--green);
  background-color: var(--white-400);
  padding-top: 0.1rem;
  margin-top: 1.3rem;
}
.leesmore a {
  display: flex;
  align-items: center;
  color: var(--brown-500);
  font-weight: 300;
}
.leesmore a::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  content: "";
  position: relative;
  top: 0;
  left: 0;
}
.leesmore:hover a {
  color: var(--blue-500);
  text-decoration: none;
}
#home .hero-image.contact img {
  width: 25rem;
}
.contact-gegevens {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding-top: 3rem;
}
@media only screen and (min-width: 750px) {
  .contact-gegevens {
    align-items: flex-start;
    justify-content: space-between;
    max-width: 80%;
    margin: auto;
  }
}
.contact-gegevens p {
  padding-bottom: 0 !important;
}
.contact-gegevens a {
  display: block;
  font-size: 0.95rem;
  font-weight: 300;
}
.contact-gegevens h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
@media only screen and (min-width: 750px) {
  .contact-gegevens h3 {
    white-space: nowrap;
  }
}
.contact-gegevens div {
  text-align: left;
  width: 15rem;
}
.contact-gegevens div:not(:last-child) {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 735px) {
  .contact-gegevens div:not(:last-child) {
    padding-bottom: 0rem;
  }
}
@media only screen and (min-width: 750px) {
  .contact-gegevens div {
    flex-basis: 30%;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: -100%;
  min-width: 75%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  overflow-y: auto;
  visibility: hidden;
  background-color: var(--brown-500);
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.navbar.active {
  left: 0rem;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 750px) {
  .navbar {
    position: relative;
    left: 0;
    height: 2.6rem;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    background-color: transparent;
    transform: translateY(1.78rem);
  }
}
.menu {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  margin-top: 3rem;
}
.menu-item {
  position: relative;
  display: block;
}
.menu-item.current-menu-parent > a {
  color: var(--blue-300);
}
.menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: inherit;
  white-space: nowrap;
  color: var(--yellow);
  text-decoration: none;
  cursor: pointer;
  padding: 0.8rem 2rem;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.menu-item > a:hover {
  color: var(--blue-500);
  text-decoration: none;
}
@media only screen and (min-width: 750px) {
  .menu-item > a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--yellow);
    padding: 0.46rem 0.8rem;
  }
  .menu-item > a:hover {
    box-shadow: inset 0px -5px 0px 0px var(--yellow);
    color: var(--blue-500);
  }
}
.menu-dropdown > a::after {
  font-family: "Material Symbols Outlined";
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  content: "";
  position: relative;
  top: 1px;
  left: 5px;
}
@media only screen and (min-width: 750px) {
  .menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 2.4rem;
    padding: 0;
    margin: 0;
  }
  .menu-item:nth-of-type(2) > .submenu {
    min-width: 15rem;
  }
  .menu-item:nth-of-type(3) > .submenu {
    min-width: 15.5rem;
  }
  .menu-item:nth-of-type(4) > .submenu {
    min-width: 13rem;
  }
  .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.submenu {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 0;
  opacity: 1;
  overflow: hidden;
  visibility: visible;
  padding-left: 1rem;
  background-color: var(--brown-500);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.submenu-item {
  display: block;
  margin-top: 0.3rem;
}
.submenu-item:last-child {
  margin-bottom: 0.5rem;
}
.submenu-item.current-menu-item a {
  color: var(--yellow);
}
.submenu-link {
  display: block;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--blue-300);
  cursor: pointer;
  padding: 0.3rem 2rem;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.submenu-link:hover {
  color: var(--blue-500);
  text-decoration: none;
}
@media only screen and (min-width: 750px) {
  .submenu {
    position: absolute;
    top: 2.5rem;
    left: -0.05rem;
    min-width: 12rem;
    height: auto;
    max-height: inherit;
    padding: 1rem;
    opacity: 0;
    overflow: visible;
    visibility: hidden;
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: var(--shadow2);
  }
  .submenu-link {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
  .submenu-link:hover {
    color: var(--yellow);
  }
}
.burger {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  opacity: 1;
  user-select: none;
  visibility: visible;
  transform: translateY(1.65rem);
}
.burger:hover .burger-line {
  background: var(--blue-500);
}
.burger-line {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 3px;
  background: var(--yellow);
}
.burger-line:nth-child(1) {
  top: 5px;
}
.burger-line:nth-child(2) {
  top: 14px;
}
.burger-line:nth-child(3) {
  top: 23px;
}
@media only screen and (min-width: 750px) {
  .burger {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  background-color: var(--brown-300);
}
.overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 750px) {
  .overlay {
    visibility: hidden;
  }
}
.footer-contact {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem auto;
}
@media only screen and (min-width: 750px) {
  .footer-contact {
    margin: 1.8rem auto;
  }
}
.footer-left {
  width: 100%;
  max-width: 22rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 750px) {
  .footer-left {
    margin-bottom: 0rem;
  }
}
.footer-adres {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footer-adres-left, .footer-adres-right {
  margin: 0.4rem 0;
  letter-spacing: 0.02rem;
  line-height: 1.6;
  flex-basis: 10rem;
}
.footer-adres-left {
  white-space: nowrap;
}
.footer-right {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100%;
  max-width: 22rem;
  min-height: 4rem;
}
@media only screen and (min-width: 720px) {
  .footer-right {
    min-height: 6rem;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 800px) {
  .footer-right {
    max-width: 23.5rem;
  }
  .footer-right .logo-single {
    width: 7rem;
  }
}
.footer a {
  color: var(--blue-300);
}
.footer a:hover {
  color: var(--yellow);
}
.footer .disclamer {
  width: 100%;
}
@media only screen and (min-width: 380px) {
  .footer .disclamer {
    white-space: nowrap;
  }
}
@media only screen and (min-width: 700px) {
  .footer .disclamer {
    transform: translate(1rem, 0rem);
  }
}
.footer .disclamer-list li {
  display: inline-block;
}
.footer .disclamer-list li:not(:last-child):after {
  content: "|";
  margin: 0 0.2rem;
}
.footer-made {
  background-color: var(--blue-300);
}
@media only screen and (min-width: 878px) {
  .footer-made {
    text-align: right;
  }
}
.footer-made span {
  display: block;
  padding: 0.3rem 0;
}
@media only screen and (min-width: 700px) {
  .footer-made span {
    padding: 0.3rem 0.8rem 0.3rem 0;
  }
}
.footer-made span a:hover {
  color: var(--brown-500);
}
.footer-made span, .footer-made a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.03rem;
  color: var(--blue-600);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.1rem, 1fr));
  align-items: start;
  gap: 3rem 1rem;
  width: 100%;
  margin-top: 3.6rem;
}
.card {
  max-width: 85%;
  height: auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--green);
  border-radius: 3px;
  background: var(--green-300);
}
.card.fotos .card--bottom {
  padding-top: 0;
}
.card.fotos .triangle, .card.fotos .triangle:after {
  content: none;
  border-bottom: none;
}
.card h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  font-weight: 200;
  padding-top: 0px;
}
.card.agenda .card--bottom {
  padding-top: 0.5rem;
}
@media only screen and (min-width: 878px) {
  .card.agenda {
    order: 2;
  }
}
@media only screen and (min-width: 484px) {
  .card {
    min-width: 17rem;
    max-width: 21rem;
  }
}
.card--single, .card--top, .card--bottom, .card--list {
  padding: 0.5rem;
}
.card--top {
  cursor: pointer;
}
.card--bottom {
  padding-top: 1.3rem;
  display: none;
  border-top: 1px solid var(--green);
}
.card--single img {
  width: 100%;
  border: none;
}
.card--container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 0.5rem;
}
.card .single {
  display: initial;
}
.card .single img {
  width: 100%;
  border: none;
}
.card .double__left, .card .double__right {
  flex-basis: 45%;
}
.card .double-hover {
  filter: grayscale(0);
}
.card .double-hover:hover {
  filter: grayscale(1);
}
.card .mixed__left {
  flex-basis: 75%;
}
.card .mixed__right.wp-block.column {
  flex-basis: 20%;
}
.card .mixed-reverse {
  flex-flow: row-reverse;
  padding-bottom: 0.5rem;
}
.card--foto {
  border: 1px solid var(--green);
  border-radius: 3px;
}
.card--foto img {
  height: 5.5rem;
}
.card--foto-logos {
  flex-basis: 47%;
  display: block;
  margin: 0.5rem 0;
}
.card--foto-logos:hover {
  filter: grayscale(1);
}
.icon:before {
  content: "";
  font-family: "Material Symbols Outlined";
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--brown-500);
  position: relative;
  top: -1px;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.icon-mail:before {
  content: "";
}
.icon-video:before {
  content: "";
}
.icon-phone:before {
  content: "";
}
.icon-right {
  position: relative;
}
.icon-right:after {
  content: "";
  font-family: "Material Symbols Outlined";
  font-size: 1.9rem;
  font-weight: 150;
  line-height: 1;
  color: var(--brown-500);
  margin-right: 1rem;
  position: absolute;
  top: 1.3rem;
  right: 0;
}
.icon-right .title--bold {
  padding-top: 0.3rem;
}
.triangle, .border-bt:not(:last-child) {
  position: relative;
  border: none;
}
.triangle:not(.border-bt):after, .border-bt:not(:last-child):not(.border-bt):after {
  content: "";
  position: absolute;
  left: 50%;
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  color: var(--green);
  line-height: 0.7;
  transform: translateX(-50%) rotate(90deg);
}
.gallery_grid {
  display: grid;
  grid-gap: 0.7rem;
  grid-template-rows: repeat(auto-fill, minmax(70px, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
}
.gallery_grid--vertical, .gallery_grid--medium, .gallery_grid--small, .gallery_grid--big {
  display: none;
  visibility: hidden;
}
.gallery_grid img {
  height: 100%;
}
@media only screen and (min-width: 584px) {
  .gallery_grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
  .gallery_grid--vertical, .gallery_grid--medium, .gallery_grid--small, .gallery_grid--big {
    display: initial;
    visibility: visible;
  }
  .gallery_grid--vertical {
    grid-row: span 2;
    grid-column: span 1;
  }
  .gallery_grid--horizontal {
    grid-row: span 1;
    grid-column: span 2;
  }
  .gallery_grid--medium {
    grid-row: span 2;
    grid-column: span 1;
  }
  .gallery_grid--small {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery_grid--big {
    grid-row: span 3;
    grid-column: span 3;
  }
}
.gallery_grid {
  display: grid;
  grid-auto-columns: minmax(50px, 1fr);
  grid-auto-flow: column;
  grid-gap: 0.7rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery_grid img {
  height: 100%;
}
@media only screen and (min-width: 584px) {
  .gallery_grid--vertical, .gallery_grid--medium, .gallery_grid--small, .gallery_grid--big {
    display: initial;
    visibility: visible;
  }
  .gallery_grid--vertical {
    grid-row: span 2;
    grid-column: span 2;
  }
  .gallery_grid--horizontal {
    grid-column: span 2;
  }
  .gallery_grid--medium {
    grid-row: span 2;
    grid-column: span 3;
  }
  .gallery_grid--small {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery_grid--big {
    grid-row: span 4;
    grid-column: span 4;
  }
}
#huiskamer .gallery_grid > div:nth-last-of-type(-n+3) {
  display: none;
}
.kalender {
  margin-top: 0.5rem;
}
.kalender_dag, .kalender_taak {
  padding: 0.5rem 0 1rem 0;
}
.kalender_datum, .kalender_koken {
  padding: 0.6rem 0;
}
.kalender_week {
  display: block;
  border-width: 0px 0 1px 0;
  border-style: solid;
  border-color: var(--yellow);
}
.kalender_week:first-child {
  border-width: 1px 0 1px 0;
}
@media only screen and (min-width: 450px) {
  .kalender_week {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
}
.kalender_maand {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  border-width: 0px 0 1px 0;
  border-style: solid;
  border-color: var(--blue-500);
}
.kalender_maand:last-child {
  border: none;
}
.kalender_maand .title--bold, .kalender_maand .title--small {
  font-size: 0.85rem;
  padding: 0;
}
.kalender_datum {
  min-width: 4rem;
}
@media only screen and (min-width: 450px) {
  .kalender_dag {
    min-width: 8rem;
  }
  .kalender_taak {
    flex-grow: 1;
  }
}
#totop {
  position: fixed;
  bottom: 10.5rem;
  right: -5rem;
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  background-color: var(--blue-500);
  background-image: url(../img/svg/arrows.svg);
  background-repeat: no-repeat;
  background-position: -18px 11px;
  background-size: 3.5rem;
  border: 1px solid var(--yellow);
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#totop.show {
  right: 1rem;
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=main.css.map */