:root {
  scroll-behavior: smooth;
  --white: #fff;
  --dark-text: #222222;
  --light: #01b2de;
  --mid: #018cb3;
  --dark: #035376;
  --shadow: #b1b1b1;
  --quote-bg-color-1: var(--mid);
  --quote-bg-color-2: var(--dark);
  --quote-bg-color-3: var(--light);

  --test: #062b4c;
  --test: #2269d1;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.header-logo {
  height: 120px;
  margin: 20px;
}

ul {
  list-style-position: inside;
}

.hamburger,
.close {
  border: none;
  cursor: pointer;
  position: absolute;
  font-size: 40px;
  top: 50px;
  right: 40px;
  text-decoration: none;
  color: var(--dark-text);
}

.navbar {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  list-style: none;
  background: white;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

li a {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  padding-bottom: 0.5rem;
  color: var(--dark-text);
  font-size: 20px;
}

.content {
  margin: 0 20px;
}

.row {
  margin: 30px 0;
  box-sizing: border-box;
}

.content h1 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 20px;
  text-wrap: wrap;
}

.content h2 {
  font-size: 20px;
  color: var(--mid);
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-center {
  text-align: center;
}

.content p,
ul {
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 15px;
}

ol {
  list-style-position: inside;
  color: var(--dark-text);
  font-size: 18px;
}

.full-width {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  height: 100%;
}

.full-width img {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.image-text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255) !important;
  text-shadow: 4px 4px 8px var(--shadow);
  text-align: center;
  white-space: nowrap;
  width: 100%;
  font-size: 20px !important;
}

.image-slogan {
  font-weight: bold;
  position: absolute;
  top: 55%;
  color: rgb(255, 255, 255) !important;
  text-shadow: 4px 4px 8px var(--shadow);
  text-align: center;
  width: 100%;
  font-size: 16px !important;
}

.image-shadow {
  filter: brightness(60%);
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.button {
  align-items: center;
  background-color: var(--light);
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  height: 35px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid var(--light);
}

.text-align-center {
  text-align: center;
}

.button:hover {
  background-color: transparent;
  color: var(--light);
}

.quote-color-1 {
  --accent-color: var(--dark);
  --text-color: var(--white);
  --text-color-author: var(--white);
}

.quote-color-2 {
  --accent-color: var(--light);
  --text-color: var(--white);
  --text-color-author: var(--white);
}

.quote-color-3 {
  --accent-color: var(--mid);
  --text-color: var(--white);
  --text-color-author: var(--white);
}

.quote-color-4 {
  --accent-color: var(--light);
  --text-color: var(--dark-text);
  --text-color-author: var(--white);
}

.quote {
  box-sizing: border-box;
  margin: 5px 0;
  padding: 1rem;
  color: var(--text-color, --dark-text);
  font-weight: 600;
  display: grid;
  gap: 1rem;
}

.quote-background-1 {
  background-color: var(--quote-bg-color-1, white);
  box-sizing: border-box;
}

.quote-background-2 {
  background-color: var(--quote-bg-color-2, white);
  box-sizing: border-box;
}

.quote-background-3 {
  background-color: var(--quote-bg-color-3, white);
  box-sizing: border-box;
}

.quote-background-4 {
  background-color: var(--white, white);
  box-sizing: border-box;
}

.quote::before {
  content: "";
  margin: 5px;
  height: 3rem;
  width: calc(3rem * 1.1);
  background-image: radial-gradient(
      circle at bottom right,
      transparent calc(3rem / 4 - 1px),
      var(--accent-color, black) calc(3rem / 4) calc(3rem / 2),
      transparent calc(3rem / 2 + 1px)
    ),
    linear-gradient(var(--accent-color, black), var(--accent-color, black));
  background-size: calc(3rem / 2) calc(3rem / 2);
  background-position: top left, bottom left;
  background-repeat: space no-repeat;
}

.quote > .author {
  color: var(--text-color-author, white);
  background-color: var(--accent-color, black);
  justify-self: end;
  font-size: 0.75em;
  padding: 0.5em 1em;
  margin: 5px;
  border-radius: 0.25rem;
}

.slogan-container {
  color: var(--dark-text);
  overflow: hidden;
}

#slogan {
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

footer {
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

footer p {
  padding: 10px;
}

footer a {
  color: var(--white);
}

.ervaring-container {
  position: relative;
  height: auto;
  min-height: 230px;
  margin-top: 20px;
  margin-bottom: 250px;
}

.ervaring {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.ervaring.visible {
  opacity: 1;
  z-index: 2;
}

.icon {
  margin: 0 5px;
}

a {
  color: var(--dark-text);
}

.contact-form-parent {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.contact-form-child {
  flex: 1;
}

.form-input {
  padding: 5px;
  box-sizing: border-box;
  width: 100%;
  min-width: 100px;
  border: 1px solid var(--dark-text);
  font-size: 14px;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  min-height: 180px;
  border: 1px solid var(--dark-text);
  font-size: 14px;
}

.error {
  color: red !important;
  font-size: 15px !important;
  margin-bottom: 0 !important;
  height: 20px !important;
}

.top-button-position {
  position: absolute;
  top: 79%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-row {
  margin-bottom: 15px;
}

.top-image {
  max-height: 500px;
  object-fit: cover;
}

.img-Rogier {
  border-radius: 100%;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.icon-container {
  padding: 20px;
}

.diensten-icon {
  height: 150px;
  width: auto;
}

.button-booking {
  margin-top: 20px;
}

.fs-20{
  font-size: 20px !important;
}

@media screen and (min-width: 375px) {
  .top-image {
    max-height: 400px;
  }

  .form-input,
  textarea {
    font-size: 16px;
  }

  .ervaring-container {
    margin-bottom: 240px;
  }

  .row {
    margin: 50px 0;
  }
}

@media screen and (min-width: 425px) {
  .top-image {
    max-height: 400px;
  }

  .image-text {
    font-size: 30px !important;
  }

  .image-slogan {
    font-size: 20px !important;
  }

  .button {
    font-size: 20px;
  }

  .content h1 {
    font-size: 32px;
  }

  .content h2 {
    font-size: 22px;
  }

  .content p,
  ul {
    font-size: 20px;
  }

  footer p {
    font-size: 18px;
  }

  li a {
    font-size: 23px;
  }

  .ervaring-container {
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 768px) {
  .top-image {
    max-height: 460px;
  }

  .image-text {
    font-size: 40px !important;
    top: 45%;
  }

  .image-slogan {
    font-size: 24px !important;
    top: 58%;
  }

  .top-button-position {
    top: 73%;
  }

  .content h1 {
    font-size: 40px;
  }

  .content h2 {
    font-size: 30px;
  }

  .content p,
  ul {
    font-size: 22px;
  }

  .flex-container {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-child {
    width: 50%;
  }

  .img-Rogier {
    border-radius: 100%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .quote {
    font-size: 20px !important;
  }

  .header-logo {
    margin-left: 50px;
  }

  .row {
    margin: 80px 0;
  }

  .ervaring-container {
    margin-bottom: 160px;
  }
}

@media screen and (min-width: 1100px) {
  .top-image {
    max-height: 400px;
  }

  .image-text {
    font-size: 55px !important;
    top: 35%;
  }

  .image-slogan {
    font-size: 30px !important;
    top: 55%;
  }

  .top-button-position {
    top: 75%;
  }

  .content h1 {
    font-size: 43px;
  }

  .content h2 {
    font-size: 33px;
  }

  .content p,
  ul {
    font-size: 23px;
  }

  .content {
    max-width: calc(100% - 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 150px;
  }

  .author {
    margin-right: 150px !important;
  }

  .ervaring-container {
    margin-bottom: 130px;
  }

  .footer p,
  .footer a {
    font-size: 20px;
  }
}

@media screen and (min-width: 1300px) {
  .top-image {
    max-height: 350px;
  }

  .image-text {
    font-size: 55px !important;
    top: 40%;
  }

  .image-slogan {
    font-size: 35px !important;
    top: 55%;
  }

  .top-button-position {
    top: 78%;
  }

  .content {
    max-width: calc(100% - 400px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 200px;
  }

  .author {
    margin-right: 200px !important;
  }

  .ervaring-container {
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 1500px) {
  .content {
    max-width: calc(100% - 500px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 250px;
  }

  .author {
    margin-right: 250px !important;
  }

  .ervaring-container {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1600px) {
  .content {
    max-width: calc(100% - 600px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 300px;
  }

  .author {
    margin-right: 300px !important;
  }

  .ervaring-container {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1700px) {
  .content {
    max-width: calc(100% - 700px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 350px;
  }

  .author {
    margin-right: 350px !important;
  }

  .ervaring-container {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 1800px) {
  .content {
    max-width: calc(100% - 900px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 450px;
  }

  .author {
    margin-right: 450px !important;
  }

  .ervaring-container {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 2100px) {
  .content {
    max-width: calc(100% - 1200px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 600px;
  }

  .author {
    margin-right: 600px !important;
  }

  .ervaring-container {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 2400px) {
  .content {
    max-width: calc(100% - 1500px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 750px;
  }

  .author {
    margin-right: 750px !important;
  }

  .ervaring-container {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 3000px) {
  .content {
    max-width: calc(100% - 2000px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote {
    padding-left: 0;
    padding-right: 0;
  }

  .quote::before {
    margin-left: 1000px;
  }

  .author {
    margin-right: 1000px !important;
  }

  .ervaring-container {
    margin-bottom: 100px;
  }
}
