/* https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  font-style: normal;
  font-weight: 600;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Gazpacho";
  src: url(../assets/fonts/Gazpacho/Gazpacho-Black.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Poppins-Semibold";
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf) format("truetype");
}
.noscroll {
  overflow: hidden;
  height: 100vh;
}

.lazy-load {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-out;
}

.lazy-load.loaded {
  opacity: 1;
  transform: translateY(0);
}

html, body {
  background-color: #F1E2D3;
}

*::selection {
  color: #FFFAF4;
  background-color: #CF703B;
}

h4, h3, h2, h1, p {
  color: #212121;
}

h1, h2 {
  font-family: "Gazpacho";
}

ul, li, a, h3, h4, p {
  font-family: "Poppins-Regular";
  text-decoration: none;
}

h3 {
  font-size: 1.75rem;
}
@media only screen and (min-width: 992px) {
  h3 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 992px) {
  h2 {
    font-size: 3rem;
  }
}

h1 {
  color: #CF703B;
  font-size: 3rem;
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 4rem;
  }
}

ul, li, p {
  font-size: 1.125rem;
}
@media only screen and (min-width: 992px) {
  ul, li, p {
    font-size: 1.25rem;
  }
}
ul strong, li strong, p strong {
  font-family: "Poppins-Semibold";
}

.maincontainer {
  padding-top: 85px;
}

.pagetitle {
  text-align: center;
  margin: 80px 0px 100px;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .pagetitle {
    margin: 120px 0px 100px;
  }
}

.privacybeleidpage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.privacybeleidpage__textwrapper {
  max-width: 1200px;
  padding: 0 15px;
}
@media only screen and (min-width: 992px) {
  .privacybeleidpage__textwrapper {
    padding: 0 40px;
  }
}
.privacybeleidpage__textwrapper h3 {
  font-family: "Poppins-Semibold";
  margin-bottom: 10px;
}

.button {
  position: relative;
  background-color: #CF703B;
  padding: 15px 20px;
  font-family: "Poppins-Medium";
  font-size: 1.125rem;
  text-align: center;
  border-radius: 8px;
  color: #FFFAF4;
  z-index: 10;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .button {
    font-size: 1.25rem;
    padding: 20px 30px;
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  background-image: url("/assets/images/dots2.svg");
  width: 72px;
  height: 53px;
  transform: scale(0) rotate(-130deg);
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.button::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-image: url("/assets/images/dots2.svg");
  width: 72px;
  height: 53px;
  transform: scale(0);
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  transform: scale(1.15) rotate(2deg);
}
.button:hover::before {
  top: -30px;
  right: -35px;
  transform: scale(0.8) rotate(-130deg);
}
.button:hover::after {
  bottom: -30px;
  left: -30px;
  transform: scale(0.8);
}

.navbarcontainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 10px 15px 10px 15px;
  background-color: #F1E2D3;
  border-bottom: 1px solid #212121;
}
@media only screen and (min-width: 992px) {
  .navbarcontainer {
    justify-content: center;
  }
}
.navbarcontainer__button {
  position: relative;
  display: none;
  font-family: "Poppins-Medium";
  font-size: 1.5rem;
  text-decoration: none;
  color: #212121;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .navbarcontainer__button {
    display: block;
  }
}
.navbarcontainer__button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease-out, transform-origin 0s;
}
.navbarcontainer__button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbarcontainer__button:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: right;
}
.navbarcontainer__button--mobile {
  display: block;
  font-family: "Gazpacho";
  font-size: 2rem;
  color: #212121;
}
.navbarcontainer__logo {
  width: 135px;
  height: 65px;
  object-fit: cover;
}
.navbarcontainer__mobilemenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #F1E2D3;
  z-index: 50;
  padding: 85px 15px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  color: #212121;
}
@media only screen and (min-width: 992px) {
  .navbarcontainer__mobilemenu {
    display: none;
  }
}
.navbarcontainer__mobilemenu div {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .navbarcontainer__mobilemenu div {
    gap: 25px;
  }
}
.navbarcontainer__mobilemenu div a svg {
  width: 34px;
  height: 34px;
  transition: all 0.15s ease-out;
  fill: #212121;
}
@media only screen and (min-width: 768px) {
  .navbarcontainer__mobilemenu div a svg {
    width: 40px;
    height: 40px;
  }
}
.navbarcontainer__mobilemenu div a svg:hover {
  margin-top: -3px;
  margin-bottom: 3px;
}

.hamburger {
  width: 60px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  transform: scale(0.6);
}
@media only screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background-color: #212121;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  top: 36px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

.herocontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-image: url("/assets/images/keuken_bw.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(100vh - 85px);
  min-height: 650px;
  padding: 0 40px 0;
}
@media only screen and (min-width: 992px) {
  .herocontainer {
    background-attachment: fixed;
  }
}
.herocontainer__openingstijden {
  margin-top: 40px;
  color: #FFFAF4;
  text-align: center;
}
.herocontainer__openingstijden strong {
  font-family: "Poppins-Semibold";
}
.herocontainer__openingstijden span {
  display: none;
}
@media only screen and (min-width: 768px) {
  .herocontainer__openingstijden span {
    display: inline-block;
  }
  .herocontainer__openingstijden #br {
    display: none;
  }
}
.herocontainer__title {
  color: #CF703B;
  font-size: 25vw;
  text-align: center;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .herocontainer__title {
    font-size: 20vw;
  }
}
@media only screen and (min-width: 992px) {
  .herocontainer__title {
    font-size: 170px;
  }
}
.herocontainer__title span {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .herocontainer__title span {
    transform: translateY(100%);
    opacity: 0;
    animation: rise 0.3s ease-out forwards;
  }
}
.herocontainer__title span:nth-child(n) {
  animation-delay: calc(0.05s * var(--i));
}
@keyframes rise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.herocontainer__button {
  margin-top: 120px;
}
@media only screen and (min-width: 992px) {
  .herocontainer__button {
    margin-top: 150px;
  }
}

.event-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding: 0 15px 0;
}
@media only screen and (min-width: 992px) {
  .event-block {
    padding: 0 40px 0;
    margin-top: 120px;
  }
}
.event-block--eventpage {
  margin-top: 20px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) {
  .event-block--eventpage {
    margin-top: 40px;
    margin-bottom: 150px;
  }
}
.event-block__title {
  text-align: center;
  margin-bottom: 25px;
  z-index: 10;
}
.event-block__text {
  text-align: center;
  max-width: 650px;
  line-height: 150%;
  z-index: 10;
}
.event-block__cardcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1390px;
  margin: 50px 0 40px;
  z-index: 10;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .event-block__cardcontainer {
    flex-direction: row;
    align-items: start;
  }
}
.event-block__cardgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1390px;
  margin: 50px 0 40px;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .event-block__cardgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .event-block__cardgrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.event-block__eventcard {
  width: 100%;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
  .event-block__eventcard {
    width: 25vw;
    max-width: 450px;
    flex-direction: column;
  }
}
.event-block__eventcard__img {
  width: 100%;
  height: 150px;
  border-radius: 16px 16px 0px 0px;
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .event-block__eventcard__img {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
  }
}
.event-block__eventcard__textcontainer {
  width: 100%;
  background-color: #FFFAF4;
  border-radius: 0px 0px 16px 16px;
  padding: 20px 40px;
}
@media only screen and (min-width: 992px) {
  .event-block__eventcard__textcontainer {
    min-height: 240px;
    border-radius: 0px 0px 16px 16px;
  }
}
.event-block__eventcard__textcontainer h3 {
  font-family: "Poppins-Semibold";
  margin: 20px 0 10px;
  line-height: 150%;
}
.event-block__eventcard__textcontainer__details {
  display: flex;
  gap: 20px;
}
.event-block__eventcard__textcontainer__details div, .event-block__eventcard__textcontainer__details p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .event-block__eventcard__textcontainer__details div, .event-block__eventcard__textcontainer__details p {
    font-size: 1.125rem;
  }
}
.event-block__eventcard__textcontainer__details div span, .event-block__eventcard__textcontainer__details p span {
  font-size: 1.5rem;
}
.event-block__notavailable {
  grid-column: 1/-1;
  width: 100%;
  margin: 40px 0px;
  text-align: center;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .event-block__notavailable {
    font-size: 1.125rem;
  }
}
.event-block .background-texture {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .event-block .background-texture {
    width: auto;
  }
}

.overons-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  margin-top: 150px;
  margin-bottom: 200px;
}
@media only screen and (min-width: 768px) {
  .overons-block {
    margin-top: 200px;
  }
}
@media only screen and (min-width: 992px) {
  .overons-block {
    flex-direction: row;
    gap: 40px;
    margin-bottom: 250px;
  }
}
.overons-block__scrollcontainer {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media only screen and (min-width: 768px) {
  .overons-block__scrollcontainer {
    display: none;
  }
}
.overons-block__scrollcontainer::-webkit-scrollbar {
  display: none;
}
.overons-block__scrollcontainer img {
  flex: 0 0 80%;
  height: 40vh;
  object-fit: cover;
  scroll-snap-align: center;
}
.overons-block__imgcontainer {
  display: none;
  gap: 40px;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .overons-block__imgcontainer {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer {
    flex-direction: column;
    gap: 80px;
  }
}
.overons-block__imgcontainer img {
  object-fit: cover;
  width: 60%;
  height: 30vh;
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer img {
    margin-left: 40px;
    width: 25vw;
    height: 17vw;
  }
}
@media only screen and (min-width: 1200px) {
  .overons-block__imgcontainer img {
    margin-left: 80px;
  }
}
.overons-block__imgcontainer img:nth-child(2) {
  width: calc(40% - 40px);
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer img:nth-child(2) {
    margin-left: 0;
    margin-right: 40px;
    width: 25vw;
    height: 34vw;
  }
}
@media only screen and (min-width: 1200px) {
  .overons-block__imgcontainer img:nth-child(2) {
    margin-right: 80px;
  }
}
.overons-block__imgcontainer--second {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer--second {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer--second img {
    margin-right: 40px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .overons-block__imgcontainer--second img {
    margin-right: 80px;
  }
}
.overons-block__imgcontainer--second img:nth-child(2) {
  width: calc(40% - 40px);
}
@media only screen and (min-width: 992px) {
  .overons-block__imgcontainer--second img:nth-child(2) {
    margin-right: 0;
    margin-left: 40px;
    width: 25vw;
  }
}
@media only screen and (min-width: 1200px) {
  .overons-block__imgcontainer--second img:nth-child(2) {
    margin-left: 80px;
  }
}
.overons-block__textcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  flex: 1;
  padding: 0 15px;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .overons-block__textcontainer {
    padding: 0;
  }
}
.overons-block__textcontainer svg {
  width: 80px;
  height: 80px;
}
.overons-block__textcontainer p {
  max-width: 400px;
  margin-bottom: 20px;
}
.overons-block .background-texture {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: 70vw;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .overons-block .background-texture {
    top: 120px;
    width: 50vw;
  }
}
@media only screen and (min-width: 992px) {
  .overons-block .background-texture {
    top: -50px;
    width: auto;
    max-width: 40vw;
  }
}

.textimage-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0px 15px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) {
  .textimage-block {
    flex-direction: row;
    padding: 0px;
    margin-bottom: 140px;
  }
}
@media only screen and (min-width: 992px) {
  .textimage-block {
    gap: 40px;
  }
  .textimage-block--right {
    flex-direction: row-reverse;
  }
}
.textimage-block img {
  object-fit: cover;
  z-index: 10;
  width: 100%;
  aspect-ratio: 7/5;
}
@media only screen and (min-width: 768px) {
  .textimage-block img {
    aspect-ratio: 5/3;
  }
}
@media only screen and (min-width: 992px) {
  .textimage-block img {
    width: calc(50vw - 40px);
    aspect-ratio: 5/5;
  }
}
@media only screen and (min-width: 1200px) {
  .textimage-block img {
    aspect-ratio: 5/4;
  }
}
.textimage-block__textcontainer {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .textimage-block__textcontainer {
    max-width: 30vw;
  }
  .textimage-block__textcontainer p {
    margin-bottom: 20px;
  }
}
.textimage-block__wrapper {
  position: relative;
}
.textimage-block__wrapper__waves {
  position: absolute;
  z-index: 0;
  width: 50vw;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .textimage-block__wrapper__waves {
    width: auto;
  }
}

.socials-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 180px;
  margin-bottom: 140px;
}
@media only screen and (min-width: 992px) {
  .socials-block {
    margin-top: 240px;
    margin-bottom: 200px;
  }
}
.socials-block__title {
  text-align: center;
  margin-bottom: 25px;
  z-index: 10;
  padding: 0 15px 0;
}
@media only screen and (min-width: 992px) {
  .socials-block__title {
    padding: 0px;
  }
}
.socials-block__text {
  text-align: center;
  max-width: 500px;
  line-height: 150%;
  z-index: 10;
  padding: 0 15px 0;
}
@media only screen and (min-width: 992px) {
  .socials-block__text {
    padding: 0px;
  }
}
.socials-block__socials {
  display: flex;
  gap: 15px;
  z-index: 10;
  margin: 30px 0px 60px 0px;
}
.socials-block__socials a svg {
  width: 40px;
  height: 40px;
  transition: all 0.15s ease-out;
}
.socials-block__socials a svg:hover {
  margin-top: -3px;
  margin-bottom: 3px;
}
.socials-block .background-texture {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .socials-block .background-texture {
    width: auto;
  }
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  margin-top: 140px;
}
@media only screen and (min-width: 992px) {
  .footer {
    display: grid;
    grid-template: 1fr 1fr auto/1fr 1fr;
    margin-top: 200px;
  }
}
.footer div {
  background-color: #F1E2D3;
  padding: 20px 15px;
  border-top: 1px solid black;
}
@media only screen and (min-width: 992px) {
  .footer div {
    padding: 20px 40px;
    border-left: 1px solid black;
  }
}
.footer div h2 {
  margin-bottom: 20px;
}
.footer div:first-child, .footer div:last-child {
  border-left: none;
}
@media only screen and (min-width: 992px) {
  .footer__contact {
    grid-area: 1/1/3/1;
  }
}
.footer__contact div {
  display: flex;
  gap: 15px;
  z-index: 10;
  margin: 30px 0px 60px 0px;
  padding: 0;
  border-top: none;
  border-left: none;
}
.footer__contact div a svg {
  width: 40px;
  height: 40px;
  transition: all 0.15s ease-out;
}
.footer__contact div a svg:hover {
  margin-top: -3px;
  margin-bottom: 3px;
}
.footer__samenwerking div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: none;
  border-left: none;
  padding: 0;
}
.footer__samenwerking div a img {
  max-height: 40px;
  height: 7vw;
}
@media only screen and (min-width: 992px) {
  .footer__samenwerking div a img {
    height: 2vw;
  }
}
.footer__samenwerking div a:last-child img {
  max-height: 90px;
  height: 14vw;
}
@media only screen and (min-width: 992px) {
  .footer__samenwerking div a:last-child img {
    height: 5vw;
  }
}
.footer__samenwerking div:last-child {
  margin-top: 40px;
  gap: 0;
}
@media only screen and (min-width: 992px) {
  .footer__samenwerking div:last-child {
    gap: 20px;
  }
}
.footer__samenwerking div:last-child a, .footer__samenwerking div:last-child p {
  font-size: 1.125rem;
}
.footer__samenwerking div:last-child a {
  position: relative;
}
.footer__samenwerking div:last-child a:hover {
  text-decoration: underline;
}
.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .footer__bottom {
    grid-area: 3/1/3/3;
    gap: 20px;
  }
}
.footer__bottom__logo {
  max-height: 17vw;
}
.footer__bottom__name {
  font-family: "Gazpacho";
  font-size: 11.5vw;
  line-height: 90%;
  text-wrap: nowrap;
}
@media only screen and (min-width: 992px) {
  .footer__bottom__name {
    font-size: 13.3vw;
  }
}
.footer__bottom__nielshosdesign {
  position: absolute;
  bottom: 5px;
  right: 15px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .footer__bottom__nielshosdesign {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  .footer__bottom__nielshosdesign {
    right: 40px;
  }
}

@media only screen and (min-width: 992px) {
  .contactpage {
    display: flex;
    height: calc(100vh - 85px);
  }
}
.contactpage__textcontainer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1600px) {
  .contactpage__textcontainer {
    flex: 0.5;
  }
}
.contactpage__textcontainer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 450px;
  padding: 120px 15px;
}
@media only screen and (min-width: 992px) {
  .contactpage__textcontainer__wrapper {
    padding: 0 40px;
    gap: 80px;
  }
}
.contactpage__textcontainer__openingstijden {
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .contactpage__textcontainer__openingstijden {
    font-size: 1.125rem;
  }
}
.contactpage__textcontainer__contactinfo p {
  margin-bottom: 20px;
}
.contactpage__textcontainer__socials {
  display: flex;
  gap: 15px;
  z-index: 10;
  margin-top: 20px;
}
.contactpage__textcontainer__socials a svg {
  width: 40px;
  height: 40px;
  transition: all 0.15s ease-out;
}
.contactpage__textcontainer__socials a svg:hover {
  margin-top: -3px;
  margin-bottom: 3px;
}
.contactpage__maps {
  background-color: #90DAEE;
  flex: 1;
  height: 400px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .contactpage__maps {
    height: auto;
  }
}