/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* height of sticky header */
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 100px; /* height of sticky header */
  }
}

:root {
  --primary: #134633;
  --primaryLightMin: #cad312;
  --primaryLight: #b6be10;
  --primaryLight2: #9da40e;
  --primaryLightShade: #8B9600;
  --primaryLightShade2: #778000;
  --primaryLightWhite: #F5F3CB;
  --complementary: #461326;
  --complementaryDark: #3c1020;
  --complementaryLight: #6E1E3C;
  --complementaryLightDark: #641b36;
  --complementaryBg: #fdf7f9;
  --complementaryBgDark: #faeaef;
  --background: #f5f5f5;
  --header: #383838;
  --headerDark: #262626;
  --headerLight: #525252;
  --grey: #262626;
  --white: rgba(255, 255, 255, 0.9);
  --black: rgba(0, 0, 0, 0.9);
  --primaryLightMin50: rgba(201, 211, 18, .85);
  --primaryLightShade50: rgba(139, 150, 0, .85);
  --complementaryLight50: rgba(110, 30, 59, .95);
  --complementary50: rgba(70, 19, 38, .95);
  --fullOpacity: rgba(0,0,0,0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,ol,p,h1,h2,h3,h4,h5,h6,body {
  margin:0;
  padding:0;
}

h1, h2, h3, h4 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  color: var(--complementary);
}

h1 {
  height: 100%;
  padding: 10px 0;
}

h2 {
  font-size: 34px;
  /* font-size: clamp(24px, 3.4vw, 34px); */
  font-size: clamp(24px, 3.4vw, 40px);
  padding-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-size: clamp(14px, 2vw, 24px);
  padding-bottom: .5em;
}

h4 {
  font-size: 16px;
  font-weight: 900;
  padding-bottom: .5em;
}

h6 {
  font-family: 'Dancing Script', cursive;
  font-size: 21px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

.a-clean:hover {
  text-decoration: none;
  color: inherit;
}

p + h3 {
  margin-top: 30px;
}

p + p,
ul + p {
  margin-top: 15px;
}

ul {
  list-style-position: inside;
}

.tight-spacing {
  letter-spacing: -0.05em;
}

.hidden {
  display: none;
}

body, p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6;
}

.width-container {
  max-width: 75rem;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.padding-box {
  padding: 0 60px;
}

section {
  padding: 45px 0;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
  gap: 30px 20px;
}
.grid h3 {
  line-height: 1;
}
.grid p {
  font-size: 15px;
  margin-top: .5em;
}
.three-per-row {
  grid-template-columns: repeat(3, 1fr);
}
.five-per-row {
  grid-template-columns: repeat(5, 1fr);
}
.three-per-row h3 {
  font-size: 20px;
  font-size: clamp(18px, 3vw, 26px);
}

.five-per-row .item,
.three-per-row .item {
  display: flex;
  flex-direction: column;
}

.five-per-row .item p,
.three-per-row .item p {
  margin-bottom: 20px;
}

.five-per-row .item .button-container,
.three-per-row .item .button-container {
  margin-top: auto;
}

.item p + p {
  margin-top: 20px;
}

.item .button-container {
  margin-top: 20px;
}

footer .item:last-child {
  display: flex;
  justify-content: flex-end;
}

.photogrid-container {
  padding-top: 30px;
  padding-bottom: 0;
}

.radius-box {
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

.photogrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 192px;
  gap: 30px;
}
.photogrid .img-container:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.alert {
  position: absolute;
  top: clamp(60px,10vw,100px);
  width: 100%;
  z-index: 9;
  background-color: #f4f4f4;
  box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 20%), 0px 0px 6px inset rgb(0 0 0 / 50%);
}
.alert-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.alert i {
  padding-right: 5px;
}

.banner {
  height: 0;
  padding-bottom: 30%;
  position: relative;
}

.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.ratio-landscape {
  padding-bottom: 26%;
}

.button-container {
  display: flex;
  flex-flow: row wrap;
  gap: 15px 20px;
  margin-bottom: 15px;
}

.button {
  font-size: 15px;
  font-weight: 500;
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, var(--complementaryLight);
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, linear-gradient(to bottom, var(--complementaryLight) 5%, var(--complementary) 100%);
  display: inline-block;
  padding: 0 50px 0 30px;
  border-radius: 30px;
  text-decoration: none;
  height: 34px;
  line-height: 34px;
  width: auto;
  white-space: nowrap;
  color: white;
  cursor: pointer;
	text-shadow:0px 1px 0px rgba(0,0,0,.25);
  box-shadow: 0px 1px 0px 0px rgba(0,0,0,.5);
}

.button:hover {
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, var(--complementaryLight);
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, linear-gradient(to bottom, var(--complementaryLightDark) 5%, var(--complementaryDark) 100%);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,.5);
}
/* .button:hover {
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, var(--complementaryLight);
  text-shadow:0px 1px 0px rgba(0,0,0,.5);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,.5);
} */

.link {
  color: var(--complementary);
}

.link:hover {
  text-decoration: underline;
}

.cta {
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, var(--primaryLight);
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, linear-gradient(to bottom, var(--primaryLight) 5%, var(--primaryLightShade) 100%);
}

.cta:hover {
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, var(--primaryLight);
  background: url("assets/img/icons/pijlen.png") no-repeat right 3px top 0px, linear-gradient(to bottom, var(--primaryLightMin) 5%, var(--primaryLightShade) 100%);
}

.list-big {
  font-size: 16px;
  padding-right: 30px;
  width: 40%;
}

.list-small {
  font-size: 15px;
}

.list-item:not(:last-child) {
  border-bottom: 1px solid var(--complementaryBgDark);
}

.list-item h4,
.gmaps-container h4 {
  font-size: 16px;
}

.list-item:not(:last-child) h4 {
  padding-bottom: 0;
}

.list-big > .list-item {
  padding: 15px 0;
}

.list-big > .list-item:first-child {
  padding: 0 0 15px 0;
}

.list-small .list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--header);
  background: linear-gradient(to right, var(--header) 5%, var(--headerDark) 100%);
  /* border-bottom: 4px solid var(--complementaryLight); */
  border-bottom: 2px solid var(--primaryLight2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  height: clamp(60px,10vw,100px);
  align-items: center;
}

.logo img {
  height: 100%;
}

header .book-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-size: clamp(12px, 3vw, 14px);
}

.menu-icon {
  display: none;
}

.nav-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 60px;
  top: clamp(60px,10vw,100px);
  bottom: 0;
  right: 0;
  left: 0;
  /* background-color: rgba(0,0,0,.5); */
  /* background: var(--primaryLight);
	background:linear-gradient(to bottom, var(--primaryLightMin50) 5%, var(--primaryLightShade50) 100%); */
  
  background-color: var(--complementaryLightDark);
  background: linear-gradient(to bottom, var(--complementary50) 5%, var(--complementaryLight50) 100%);

  transform: scale(1,0);
  transform-origin: top;
  transition: transform .15s ease-in-out .15s, color .15s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  font-size: 20px;
  font-weight: 500;
  color: var(--fullOpacity);
}
.mobile-menu a,
.mobile-menu a:visited,
.mobile-menu a:active,
.mobile-menu a:hover {
  color: white !important;
  text-decoration: none;
}

.menu-icon .menu-close {
  display: none;
}
.menu-icon .menu-open {
  display: block;
}

.nav-toggle:checked ~ .mobile-menu {
  transform: scale(1,1);
  transition: transform .15s ease-in-out, color .15s ease-in-out .15s;
  color: white;
}

.nav-toggle:checked ~ .menu-icon .menu-close {
  display: block;

}
.nav-toggle:checked ~ .menu-icon .menu-open {
  display: none;
}

.sub-mobile-menu {
  font-size: 18px;
  font-weight: 300;
}

.book-button {
	box-shadow: 0px 1px 0px 0px rgba(0,0,0,.5);
	background: var(--primaryLight);
	background:linear-gradient(to bottom, var(--primaryLightMin) 5%, var(--primaryLightShade) 100%);
	/* background:linear-gradient(to bottom, var(--primaryLight) 5%, var(--primaryLightShade) 100%); */
  height: 80px;
  width: 80px;
	border-radius: 50%;
	border:2px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:white;
	text-decoration:none;
	text-shadow:0px 1px 0px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}
.book-button:hover {
	background:var(--primaryLight);
	background:linear-gradient(to bottom, var(--primaryLight) 5%, var(--primaryLightShade) 100%);
	/* background:linear-gradient(to bottom, var(--primaryLightMin) 5%, var(--primaryLightShade) 100%); */
	text-shadow:0px 1px 0px rgba(0,0,0,.5);
	box-shadow: 1px 2px 3px 0px rgba(0,0,0,.5);
}
/* .book-button:active {
	position:relative;
	top:1px;
} */
/* .book-button {
	box-shadow: 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:15px;
	border:2px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:14px;
	font-weight:bold;
	padding:12px 16px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.book-button:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.book-button:active {
	position:relative;
	top:1px;
} */




main {
  /* background: linear-gradient(to right, black 0%, var(--grey) 50%, black 100%); */
}

/* .socials {
  color: var(--white);
  display: flex;
  flex-flow: row nowrap;
  font-size: 26px;
  font-size: clamp(20px, 3vw, 26px);
} */

/* .socials li + li {
  margin-left: .5em;
}

.hover-white a {
  color: var(--white);
}

.hover-white a:hover {
  color: white;
} */

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}

.header-right img {
  height: 45px;
}

nav {
  color: var(--primary);
  display: flex;
}

nav a {
  position: relative;
  font-size: 16px;
  font-size: clamp(10px, 1.33vw, 16px);
  font-weight: 500;
  letter-spacing: .025em;
  text-shadow: 1px 1px black;
  padding: .5em 1em;
  color: var(--white);
  opacity: .925;
}

nav > a:last-child {
  margin-right: -1em;
}

nav a:hover {
  opacity: 1;
  color: white;
  transform-origin: center;
  transition: color .25s ease-in-out, opacity .25s ease-in-out;
  z-index: 1;
}

nav a::before {
  content: '';
  display: block;
  height: 4px;
  background: white;
  position: absolute;
  bottom: 4px;
  left: 1em;
  right: 1em;
  transform: scale(0,1);
  transform-origin: center;
  transition: transform ease-in-out .25s;
}
nav a:hover::before {
  transform: scale(1,1);
}

.dropdown {
  position: relative;
  height: 100%;
  display: flex;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: -46px;
  background-color: var(--header);
  border-bottom: 2px solid var(--primaryLight2);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: inline-block;
}


.banner-text {
  color: white;
  font-size: 64px;
  font-size: clamp(28px, 5vw,64px);
  text-shadow: 1px 1px black;
}

.banner .banner-text {
  position: absolute;
  bottom: 25%;
}

.why {
  background-color: var(--complementaryLightDark);
  background: linear-gradient(to bottom, var(--complementaryLight) 5%, var(--complementary) 100%);
  padding: 60px 0;
  margin: 45px 0;
}

.why .flex {
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
}

.why ul {
  font-size: 18px;
  font-size: clamp(14px, 1.5vw, 18px);

  padding: 20px 8px;
  color: white;
  list-style: none;
  /* background-color: var(--complementaryBg); */
}

.why ul i {
  padding-right: 15px;
}

.why-text {
  width: 50%;
  padding-right: 30px;
}

.why .banner-text {
  font-size: 48px;
  font-size: clamp(36px, 4vw, 48px);
}

.why .button-container {
  margin: 15px 0 0 8px;
}

.why-img {
  width: 30%;
  border-radius: 50%;
  overflow: hidden;
}

.intro .flex {
  align-items: flex-end;
}

.intro img {
  width: 33%;
  filter: drop-shadow(-5px 5px 20px rgba(0,0,0,0.3));
  margin-top: 45px;
}

.intro .text {
  padding-left: 10%;
  padding-bottom: 45px;
}

.intro p {
  font-size: 18px;
}
.over .intro p {
  font-size: 16px;
}

.intro .button-container {
  margin-top: 30px;
}

.home .intro .flex {
  border-bottom: 4px solid var(--primaryLight);
}

.over {
  margin-bottom: -45px;
}

.over .intro {
  padding: 45px 0 0 0;
}

.gmaps-container {
  width: 60%;
}

.gmaps-container .gmaps-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 605px;
  /* padding-top: 470px;  ALS KOPJE GEGEVENS WEGGAAT  */
}

.gmaps-container .gmaps-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* .quote-and-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
} */
.quote-and-img {
  display: flex;
  position: relative;
  gap: 30px;
}


.dotted-line {
  position: relative;
}

.dotted-line::after {
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  bottom: -1px;
  height: 1px;
  background-color: var(--complementaryLight);
  background: repeating-linear-gradient(to right, var(--complementaryLight) 0,
    var(--complementaryLight) 2px, rgba(255,255,255,0) 2px,
    rgba(255,255,255,0) 4px);
    background: repeating-linear-gradient(to right, var(--complementaryLight) 0,
    var(--complementaryLight) 2px, rgba(255,255,255,0) 2px,
    rgba(255,255,255,0) 4px);
}

.behandelingen .dotted-line {
  padding-bottom: 15px;
}
.behandelingen .dotted-line::after,
.behandeling .dotted-line::after {
  bottom: -45px;
}

.list-fares-container {
  width: 67%;
}
.list-fares ul {
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 15px;
  /* position: relative; */
}
.list-fares li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}
.list-fares li span:last-child {
  padding-left: 15px;
  flex-shrink: 0;
}
/* .list-fares::after {
  content: 'Contracten met alle zorgverzekeraars';
  position: absolute;
  bottom: 0;
  font-size:12px;
  font-weight: 100;
  padding-left: 32px;
} */

.tarieven .flex {
  gap: 45px;
  margin-top: 30px;
}
.tarieven p {
  font-size: 16px;
  width: 85%;
}

.tarieven .book-button {
  margin: 45px auto 0;
}
.tarieven .button-container {
  justify-content: center;
  margin: 45px 0 0;
}

.tarieven .bg-img-container {
  width: 33%;
}

.list-fares-container p {
  font-size: 12px;
}

.bg-list {
  background-color: var(--complementaryBg);
  border-radius: 30px;
  padding: 30px 30px 5px;
}

.quote-box {
  background-color: var(--complementaryBg);
  font-size: 18px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  padding: 1em 2em 1em 60px;
  position: relative;
}
.quote-box::after {
  position: absolute;
  content: ',,';
  color: var(--complementary);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.05em;
  left: 8px;
  top: -96px;
}

/* .quote-and-img .quote-box-container {
  grid-column: 1 / 3;
} */
.quote-and-img .quote-box-container {
  width: 67%;
}

.quote-box-container .button-container {
  margin-top: 45px;
  margin-left: 60px;
}

.behandelingen .quote-and-img,
.behandeling .quote-and-img {
  padding-top: 9px;
}

.img-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.bg-img-container {
  background: url("assets/img/IMG_2958.JPG") center / cover;
  border-radius: 30px;
}

.ratio-container {
  position: relative;
  display: flex;
  height: 0;
  width: 100%;
  padding-bottom: 60%;
}

.ratio-container.contain img {
  object-fit: contain;
}

.ratio-container.landscape {
  padding-bottom: 66.66%;
}
.ratio-container.panorama {
  padding-bottom: 30%;
}
.ratio-container.portrait {
  padding-bottom: 150%;
}
.ratio-container.square {
  padding-bottom: 100%;
}

.ratio-container img,
.img-container img,
.fade-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom img {
  width: 150%;
  height: 150%;
  margin-left: -25%;
  margin-top: -25%;
}

/* .round-img-container {
  display: flex;
  align-items: flex-end;
} */
.round-img-container {
  width: 33%;
  margin: 0 auto;
}


.round-img-container .ratio-container {
  border-radius: 50%;
  overflow: hidden;
}

.behandeling .round-img-container {
  width: 20%;
}

.corner-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: .25em .5em;
  background: rgba(0,0,0,.8);
  box-shadow: 1px 1px 0 1px rgb(0 0 0 / 50%);
  /* text-transform: uppercase; */
  /* text-shadow: 1px 1px 3px rgba(0,0,0,.3); */
}

.shortlist {
  padding-left: 60px;
  font-size: 18px;
  font-size: clamp(15px, 2vw, 18px);
}
.shortlist ul {
  list-style: none;
  font-weight: 500;
}

.shortlist i {
  color: var(--complementary);
  padding-right: .5em;
}

.shortlist .li-small {
  font-size: 14px;
  padding-left: 30px;
}

.shortlist .li-small i {
  font-size: 9px;
}

.quote-and-img .shortlist {
  margin-top: 30px;
}

.information,
.information p {
  font-size: 16px;
}

.information a {
  font-weight: 500;
}

.information p:first-child::first-letter {
  /* color: var(--complementary); */
  /* font-size: 200%; */
  /* font-size: 34px; */
  /* font-size: clamp(24px, 3.4vw, 40px); */
}
.information p:first-child::first-letter {
  font-weight: bold;
  line-height: 1;
  color: white;
  background-color: var(--complementary);
  border-radius: 2px;
  box-shadow: 3px 3px 0 var(--complementaryLight);
  font-size: 250%;
  padding: 2px 3px 6px 3px;
  margin-right: 6px;
  float: left;
}

/* .information p:first-child::first-letter {
  font-weight: bold;
  line-height: 1;
  color: var(--complementary);
  border: 1px solid var(--complementary);
  border-radius: 2px;
  box-shadow: 3px 3px 0 var(--complementaryLight);
  font-size: 200%;
  padding: 3px 3px 6px 3px;
  margin-right: 6px;
  float: left;
} */


.intake form {
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto 0 0;
  padding: 5px 20px 20px;
  background-color: var(--complementaryBg);
  border-radius: 30px;
}

.intake form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.intake form input[type="radio"] + label,
.intake form input[type="checkbox"] + label {
  display: inline;
  font-weight: unset;
}

.intake form label {
  margin-top: 20px;
}

.intake form input[type="text"],
.intake form input[type="date"],
.intake form input[type="tel"],
.intake form input[type="email"],
.intake form textarea {
  width: 100%;
  padding: 10px;
  /* margin-bottom: 20px; */
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.intake form textarea {
  height: 100px;
}

.intake form .button {
  display: block;
  margin-top: 20px;
  margin-left: auto;
}

.required-message {
  color: red;
  font-size: 12px;
  display: none;
}

footer {
  padding-top: 45px;
  margin-top: 45px;
  background-color: var(--complementaryBg);
  border-top: 2px solid var(--complementaryLight);
}

footer .grid {
  grid-template-columns: 3fr 2fr 2fr 3fr;
  gap: 30px;
}

footer h3 {
  font-size: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
}

footer h4 {
  font-weight: 600;
}

footer .grid p {
  font-size: 14px;
  margin-top: unset;
}

footer .grid .item:first-child b {
  font-weight: inherit;
}

footer .grid .item:last-child p + p {
  margin-top: 20px;
}

footer ul {
  list-style: none;
}

footer .grid a:not(.button) {
  font-weight: 700;
  color: var(--complementaryLight);
}

footer .grid a:not(.button):hover {
  font-weight: 700;
  color: var(--complementary);
}

footer .flex {
  justify-content: center;
  padding-bottom: 30px;
}

footer .widgets {
  margin-top: -25px;
}

footer .widgets >*+* {
  margin: 0 0 0 30px;
}

.footer-text {
  font-size: 10px;
  background: var(--complementary);
  color: var(--white);
  text-align: center;
  padding: 10px;
}

footer .panorama-logos {
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}

footer .panorama-logos .czn-logo {
  flex-basis: 330px;
}

footer .panorama-logos .physitrack-logo {
  flex-basis: 200px;
}

footer .panorama-logos .rbcz-logo {
  flex-basis: 180px;
}

footer .panorama-logos .vbag-logo {
  flex-basis: 210px;
}

footer .panorama-logos img {
  width: 100%;
}

.zkn-widget-type-2 .zkn-widget-body, .zkn-widget-type-4 .zkn-widget-body {
  height: unset !important;
}

@media only screen and (max-width: 75rem) {
  .photogrid {
    grid-auto-rows: 16vw;
  }
  .photogrid,
  .quote-and-img {
    gap: 2.5vw;
  }
  .grid {
    gap: 30px 15px;
  }
  .photogrid-container {
    padding-top: 2.5vw;
  }
  
}

@media only screen and (max-width: 1024px) {
  footer .flex {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1000px) {
  header .book-button {
    height: 8vw;
    width: 8vw;
  }
}

@media only screen and (max-width: 970px) {
  footer .grid {
    gap: 30px;
  }
}


@media only screen and (max-width: 900px) {
  .five-per-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .five-per-row h3 {
    font-size: 24px;
    font-size: clamp(14px, 3.33vw, 24px);
  }
  /* .quote-and-img {
    grid-template-columns: repeat(1, 1fr);
  }
  .quote-and-img .quote-box-container {
    grid-column: 1 / 2;
  } */
  
  header .book-button {
    height: 40px;
    width: unset;
    border-radius: 20px;
    padding: 0 1em;
  }
  nav a {
    padding: 0.5em;
  }
  nav > a:last-child {
    margin-right: -0.5em;
  }
  h1 {
    padding-top: 0;
  }
  .why .flex {
    flex-direction: column;
  }
  .why-text {
    width: auto;
    padding: 0 0 30px;
    margin: 0 auto;
  }
  .why .button-container {
    justify-content: center;
    margin: 15px 0 0 0;
  }
  .why-img {
    width: 50%;
    min-width: 300px;
  }

  .tarieven section {
    padding-bottom: 15px;
  }
  .tarieven p {
    width: 100%;
  }
  .tarieven .flex {
    flex-direction: column;
  }
  .list-fares-container {
    width: 100%;
  }
  .tarieven .bg-img-container {
    width: 100%;
    height: 40vw;
  }

  footer .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  footer .item:last-child {
    justify-content: unset;
  }
  footer h3 {
    /* font-size: clamp(14px, 3vw, 20px); */
    font-size: 20px;
  }
}

@media only screen and (max-width: 798px) {
  .gmaps-container .gmaps-frame {
    padding-top: 629px;
    /* padding-top: 494px;  ALS KOPJE GEGEVENS WEGGAAT  */
  }
}

@media only screen and (max-width: 768px) {
  .menu-icon {
    display: block;
    color: white;
    font-size: 20px;
  }
  nav {
    display: none;
  }
  .kngf {
    display: none;
  }
  .header-right {
    justify-content: center;
  }
  .width-container {
    padding: 0 10px;
  }
  .over .intro {
    padding: 30px 0 0 0;
  }
  .intro .flex {
    flex-direction: column-reverse;
  }

  .intro img {
    margin: -90px auto 0 15px;
  }
  .intro .button-container {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 60px;
  }
  .intro .button + .button {
    margin-left: 0;
  }
  .intro .text {
    padding: 0 10px;
  }

  .quote-and-img {
    flex-direction: column;
    gap: 30px;
  }

  .quote-and-img .quote-box-container {
    width: 100%;
  }
  .quote-and-img .round-img-container {
    max-width: 400px;
    width: 100%;
    padding: 0 30px;
  }
  .alert {
    position: unset;
  }
  .shortlist .li-small {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 660px) {
  footer .widgets {
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
  }
  footer .widgets >*+* {
    margin: 30px 0 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .three-per-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .three-per-row h3 {
    font-size: 20px;
    /* font-size: clamp(16px, 3vw, 20px); */
  }

  footer .grid {
    gap: 30px;
  }

  footer .flex.panorama-logos {
    margin-top: 0;
    flex-direction: column;
  }
  footer .panorama-logos .rbcz-logo {
    margin-top: 15px;
  }

  footer .panorama-logos .czn-logo {
    flex-basis: unset;
    width: 75vw;
    max-width: 300px;
  }
  footer .panorama-logos .physitrack-logo {
    flex-basis: unset;
    width: 45vw;
    max-width: 180px;
  }
  footer .panorama-logos .rbcz-logo {
    flex-basis: unset;
    width: 40vw;
    max-width: 160px;
  }
  footer .panorama-logos .vbag-logo {
    flex-basis: unset;
    width: 45vw;
    max-width: 180px;
  }
}

@media only screen and (max-width: 540px) {
  h1 {
    padding-top: 7px;
  }
  .quote-box {
    padding: 2em 2em 1.5em;
  }
  .quote-box-container .button-container {
    margin-left: 30px;
  }
  .padding-box {
    padding: 0 30px;
  }

  .shortlist {
    padding-left: 2em;
  }
  .contact .flex {
    flex-direction: column;
  }
  .list-big,
  .gmaps-container {
    width: 100%;
  }
  .five-per-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .items-container h3 {
    font-size: 20px;
    /* font-size: clamp(16px, 3vw, 20px); */
  }

  .five-per-row h3 {
    font-size: 24px;
    font-size: clamp(14px, 4.44vw, 24px);
  }

  .list-fares li {
    padding: 0.5em 1em;
  }
  .bg-list {
    padding: 30px 15px 5px;
  }

  .home .tight-spacing {
    letter-spacing: unset;
  }
}

@media only screen and (max-width: 450px) {
  .three-per-row,
  .five-per-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .five-per-row h3 {
    font-size: 24px;
  }
  footer .grid {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
  footer .item:last-child {
    justify-content: center;
  }
  .items-container .button-container,
  footer .button-container {
    justify-content: center;
  }
  .gmaps-container .gmaps-frame {
    padding-top: 90vw;
  }
  .intake form {
    border-radius: 15px;
  }
  .intake form .button {
    margin-right: auto;
  }
  
}

