html {
  font-size: 16px;
  background-color: var(--primarycolour);
  scroll-behavior: smooth;
}

html, body {
  background: linear-gradient(280deg, rgba(75,114,130,1) 25%, rgba(34,68,85,1) 65%, rgba(1,22,30,0.95) 125%);
  color: var(--secondarytextcolour);
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  height: auto;
  scroll-margin-top: 75px;
}

.disclaimer {
  font-size:0.75em!important;
}

.w-100 {
  width:100%;
}

.w-60 {
  width:60%;
}

.center {
  align-items: center;
  justify-content: center;
}

.p8 {
  padding:8px;
}

.max-width-1600 {
  width:100%;
  max-width:1600px;
}

.flex-row {
  display:flex;
  flex-direction:row;
  align-items: center;
  gap:12px;
}

.flex-column {
  display:flex;
  flex-direction:column;
  gap:8px;
}

/*bootstrap grid */
:root {
  --grid-columns: 12;
  --grid-gutter-width: 1rem;
  --grid-prefix: "bs-";
  --grid-breakpoints-sm: 576px;
  --grid-breakpoints-md: 768px;
  --grid-breakpoints-lg: 992px;
  --grid-breakpoints-xl: 1200px;
  --grid-breakpoints-xxl: 1400px;
}

/* Row styling */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--grid-gutter-width));
  margin-right: calc(-0.5 * var(--grid-gutter-width));
  margin-left: calc(-0.5 * var(--grid-gutter-width));
}

.row > * {
  padding-right: calc(0.5 * var(--grid-gutter-width));
  padding-left: calc(0.5 * var(--grid-gutter-width));
  margin-top: var(--grid-gutter-width);
}

/* Column classes */
.col {
  flex: 1 1 0%;
  max-width: 100%;
  box-sizing: border-box;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 { flex: 0 0 calc(100% / 12); max-width: calc(100% / 12); }
.col-2 { flex: 0 0 calc(200% / 12); max-width: calc(200% / 12); }
.col-3 { flex: 0 0 calc(300% / 12); max-width: calc(300% / 12); }
.col-4 { flex: 0 0 calc(400% / 12); max-width: calc(400% / 12); }
.col-5 { flex: 0 0 calc(500% / 12); max-width: calc(500% / 12); }
.col-6 { flex: 0 0 calc(600% / 12); max-width: calc(600% / 12); }
.col-7 { flex: 0 0 calc(700% / 12); max-width: calc(700% / 12); }
.col-8 { flex: 0 0 calc(800% / 12); max-width: calc(800% / 12); }
.col-9 { flex: 0 0 calc(900% / 12); max-width: calc(900% / 12); }
.col-10 { flex: 0 0 calc(1000% / 12); max-width: calc(1000% / 12); }
.col-11 { flex: 0 0 calc(1100% / 12); max-width: calc(1100% / 12); }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Offset classes */
.offset-1 { margin-left: calc(100% / 12); }
.offset-2 { margin-left: calc(200% / 12); }
.offset-3 { margin-left: calc(300% / 12); }
.offset-4 { margin-left: calc(400% / 12); }
.offset-5 { margin-left: calc(500% / 12); }
.offset-6 { margin-left: calc(600% / 12); }
.offset-7 { margin-left: calc(700% / 12); }
.offset-8 { margin-left: calc(800% / 12); }
.offset-9 { margin-left: calc(900% / 12); }
.offset-10 { margin-left: calc(1000% / 12); }
.offset-11 { margin-left: calc(1100% / 12); }

/* Breakpoints */
@media (min-width: 576px) {
  .col-sm { flex: 1 1 0%; max-width: 100%; }
  .col-sm-1 { flex: 0 0 calc(100% / 12); max-width: calc(100% / 12); }
  .col-sm-2 { flex: 0 0 calc(200% / 12); max-width: calc(200% / 12); }
  .col-sm-3 { flex: 0 0 calc(300% / 12); max-width: calc(300% / 12); }
  .col-sm-4 { flex: 0 0 calc(400% / 12); max-width: calc(400% / 12); }
  .col-sm-5 { flex: 0 0 calc(500% / 12); max-width: calc(500% / 12); }
  .col-sm-6 { flex: 0 0 calc(600% / 12); max-width: calc(600% / 12); }
  .col-sm-7 { flex: 0 0 calc(700% / 12); max-width: calc(700% / 12); }
  .col-sm-8 { flex: 0 0 calc(800% / 12); max-width: calc(800% / 12); }
  .col-sm-9 { flex: 0 0 calc(900% / 12); max-width: calc(900% / 12); }
  .col-sm-10 { flex: 0 0 calc(1000% / 12); max-width: calc(1000% / 12); }
  .col-sm-11 { flex: 0 0 calc(1100% / 12); max-width: calc(1100% / 12); }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md { flex: 1 1 0%; max-width: 100%; }
  .col-md-1 { flex: 0 0 calc(100% / 12); max-width: calc(100% / 12); }
  .col-md-2 { flex: 0 0 calc(200% / 12); max-width: calc(200% / 12); }
  .col-md-3 { flex: 0 0 calc(300% / 12); max-width: calc(300% / 12); }
  .col-md-4 { flex: 0 0 calc(400% / 12); max-width: calc(400% / 12); }
  .col-md-5 { flex: 0 0 calc(500% / 12); max-width: calc(500% / 12); }
  .col-md-6 { flex: 0 0 calc(600% / 12); max-width: calc(600% / 12); }
  .col-md-7 { flex: 0 0 calc(700% / 12); max-width: calc(700% / 12); }
  .col-md-8 { flex: 0 0 calc(800% / 12); max-width: calc(800% / 12); }
  .col-md-9 { flex: 0 0 calc(900% / 12); max-width: calc(900% / 12); }
  .col-md-10 { flex: 0 0 calc(1000% / 12); max-width: calc(1000% / 12); }
  .col-md-11 { flex: 0 0 calc(1100% / 12); max-width: calc(1100% / 12); }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}


@media (min-width: 992px) {
  .col-lg { flex: 1 1 0%; max-width: 100%; }
  .col-lg-1 { flex: 0 0 calc(100% / 12); max-width: calc(100% / 12); }
  .col-lg-2 { flex: 0 0 calc(200% / 12); max-width: calc(200% / 12); }
  .col-lg-3 { flex: 0 0 calc(300% / 12); max-width: calc(300% / 12); }
  .col-lg-4 { flex: 0 0 calc(400% / 12); max-width: calc(400% / 12); }
  .col-lg-5 { flex: 0 0 calc(500% / 12); max-width: calc(500% / 12); }
  .col-lg-6 { flex: 0 0 calc(600% / 12); max-width: calc(600% / 12); }
  .col-lg-7 { flex: 0 0 calc(700% / 12); max-width: calc(700% / 12); }
  .col-lg-8 { flex: 0 0 calc(800% / 12); max-width: calc(800% / 12); }
  .col-lg-9 { flex: 0 0 calc(900% / 12); max-width: calc(900% / 12); }
  .col-lg-10 { flex: 0 0 calc(1000% / 12); max-width: calc(1000% / 12); }
  .col-lg-11 { flex: 0 0 calc(1100% / 12); max-width: calc(1100% / 12); }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}


@media (min-width: 1200px) {
  /* Herhaal hetzelfde patroon voor .col-xl-* */
}

@media (min-width: 1400px) {
  /* Herhaal hetzelfde patroon voor .col-xxl-* */
}


 /* navbar incl. media queries */

 .nav-center ul {
  overflow-y: auto; 
}

.stickysticky {
  position: sticky; 
  top: 0; 
  z-index: 4;
}

nav {
  display: flex;
  color: white;
  justify-content: space-between;
  z-index: 4;
  transition: background-color 1s ease;
  width: 100%;
  padding: 16px 70px;
  align-items: center;
}

nav.scrolled {
background-color: var(--primarycolour);
width:100%;
}

.nav-content{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
max-width: 1600px; 
width:100%;
margin: 0 auto;
background-color:transparent;     
}

/* Logo stijlen */
.logo {
max-width: 200px;
max-height: 200px;
object-fit: contain;
margin-bottom:0;
}

.logo img {
max-width: 200px;
max-height: 40px;
}

/* Menu-list styling */
.nav-center {
flex-grow: 1;
display: flex;
justify-content: center;
}

ul {
display: flex;
list-style: none;
padding: 0;
margin: 0;
}

ul li {
margin-right: 20px;
}

ul li a {
color: var(--secondarytextcolour);
text-decoration: none;
transition: color 0.3s;
display: inline-block;
padding: 15px 12px;
position: relative;
}

ul li a:after {
background: none repeat scroll 0 0 transparent;
bottom: 0;
content: "";
display: block;
height: 2px;
left: 50%;
position: absolute;
background: currentColor;
transition: width 0.5s ease 0s, left 0.5s ease 0s;
width: 0;
}

ul li a:hover:after {
color: currentColor;
width: 75%; 
left: 12.5%; /*punt waar onderlijning begint t.a. link element, dus (100%-width / 2) */
}

/* Hamburger icon */
.checkbtn {
font-size: 30px;
color: var(--secondarytextcolour);
cursor: pointer;
display: none;
z-index: 2; 
}

#check {
display: none;
}

.nav-button {
border: 2px solid transparent;
background-color: var(--accent1-colour);
color:white;
}
.nav-button:hover{
background-color: transparent;
border: 2px solid var(--secondarytextcolour);
cursor:pointer;
}
.nav-button-mobile {
display: none!important;
}

.closebtn {
  position: absolute;
  top: 30px;
  right: 55px;
  font-size: 30px;
  color: var(--secondarytextcolour);
  cursor: pointer;
  display: none;
  z-index: 3;
}

a.nav-text {
  font-weight:600!important;
}

/*einde navbar*/

/*basis onderdelen */
.basis-row {
  display:grid!important;
  width:100%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:24px;
  max-width:1600px;
  padding:24px 0!important;
}

.basis-div {
  display:grid!important;
  width:100%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:24px;
  max-width:1600px;
  margin:2px;
}

.basis-kolom {
  width:auto;
  height:fit-content;
  padding:12px;
}

.basis-kolom h3, .basis-kolom h4, .basis-kolom h5, .basis-kolom p {
  margin-left: -12px;
}

.contactform-btn {
  margin: 12px 0;
  cursor:pointer;
}

#contactform {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.7s ease, visibility 0.7s ease;
}

#contactform[aria-hidden="false"] {
  max-height: 1000px;
  visibility: visible;
}

button#contactform-submit, .contactform-submit-btn {
  width: 25%;
  border: none;
  background-color: #124559;
  color: #fff;
  }
  
  button#contactform-submit:hover {
    background-color:#8baebd;
  }
/* einde basis onderdelen*/

 table {
  width: 100%;
  min-width: 300px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  text-align: left;
}

td {
  padding:8px 12px;
}

.hero, .articles, .direct-solliciteren, .open-sollicitatie, .procedure, .meer-informatie, .onze-verhalen, .over, .contact, .footer, .nieuwsbrief, .basis-row, .basis-sectie {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 50px 70px;
  position: relative;
  width: 100%;
}

.heading-group {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: 100%;
  max-width:1600px;
}

.line-1 {
  background-color: green;
  position: relative;
  width: 180px;
  height: 16px;
}

/* footer */ 
.footer {
  background-color: var(--primarycolour);
  height: auto;
  padding: 25px 70px;
  align-items: center;
  gap:24px;
  max-width:100%!important;
}

.footer p, .footer a, .footer h4 {
  color:var(--secondarytextcolour);
  text-align:left;
}

.container-footer {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  width: 100%;
  max-width: 1600px;
  color: var(--secondarytextcolour);
  align-items: stretch;
}

 .footer-container1 {
  display: flex;
  width: 33%;
}

.footer-container2 {
  display: flex;
  flex-direction: row;
  width: 67%;
  justify-content: space-around;
}

 .phone-mail-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  gap: 12px;
}

 .container-phone, .container-mail{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.container-openingstijden {
  min-width:300px;
  text-align:center!important;
  display:none!important;
}

.container-openingstijden h4 {
  padding-left: 12px;
}

.container-links h4, .socials-container h4 {
  margin-bottom:8px;
}

.container-social {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: flex-start;
}

.container-openingstijden,  .contactgegevens-container, .container-links, .socials-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.socials-container {
  gap:16px!important;
}

.voettekst {
  text-align:center;
}
/* einde footer */

/*hero*/
 .hero {
  height: 90vh;
  align-items: center;
  background-size: cover;
  background-position: center;
  justify-content: center;
  margin-top:-120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

 .hero-container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  width: 100%;
  max-width: 1600px;
  flex: 0 0 auto;
  padding-right:540px;
}

.hero-container p{
  font-size: var(--font-size-l);
}

 button, .button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 100px;
  transition: 0.5s ease;
}

.hero-btn {
  transition: 0.5s ease;
  background-color: var(--accent2-colour);
  border: 3px solid var(--accent2-colour);
  color:var(--secondarytextcolour);
}

.hero-btn:hover {
  background-color: transparent;
  border: 3px solid var(--secondarytextcolour);
}
/*einde hero*/
/*actie buttons*/

.actiebuttons {
  display: grid;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 50px 70px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
}

.actiebuttons.row {
  border: none !important;
  background-color: transparent!important;
  margin-top: 0;
}

 .actiebutton1 {
  display: flex;
  flex: 0 1 22%;
  padding:12px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
 }

.actiebutton1 i {
  width: 49px;
  height: 40px;
}

.actiebutton1 p {
  font-weight:600!important;
}

.fa-rocket, .fa-arrow-trend-up, .fa-people-group, .fa-dumbbell {
  display: block;
  transition: transform 0.7s ease-in-out, box-shadow 0.5s ease-in-out;
  position: relative;
}

.actiebutton1:hover .fa-rocket,.actiebutton1:hover .fa-arrow-trend-up {
  transform: translateY(-20px) rotate(-20deg);
}

.actiebutton1 .fa-people-group:hover,.actiebutton1 .fa-dumbbell:hover {
  transform:translateY(-20px);
}
/*einde actiebuttons*/


/*articles*/
.article-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  width:100%;
  max-width:1600px;
}

.article {
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative; 
  padding-bottom:40px;
  margin-bottom:24px;
  flex: 1 1 calc(25% - 20px);
    justify-content: flex-start;
    max-width: calc(25% - 20px);
  h4, h5 {
    text-align: left;
    color:var(--primarytextcolour);
  }
}

.uitgelichte-afbeelding {
  overflow: hidden;
  border-radius: 12px 12px 0px 0px;
  height: 200px;
  width: 100%;
}
.uitgelichte-afbeelding img {
  width:100%;
  height:100%;
  overflow: hidden;
  transition: 0.3s ease;
  object-fit: cover;
}

.uitgelichte-afbeelding img:hover {
  transform: scale(1.1);
}

.titels, .content {
  width:100%;
  padding:20px 24px;
  z-index:1;
}

.titels{
  background-color: var(--quaternarycolour);
  display:flex;
  flex-direction: column;
  gap:4px;
}

.content{
  display:flex;
  flex-direction: column;
  gap:24px;
  justify-content: space-between;
}

.btn-article {
  cursor: pointer;
  position: absolute; 
  text-align: center;
  border-radius: 100px;
  bottom: -20px; 
  left: 50%; 
  transform: translateX(-50%); 
  padding: 10px 20px;
  background-color: var(--accent1-colour); 
  color: var(--primarycolour);
  border:3px solid var(--accent1-colour);
  box-shadow: 0px 4px 12px #0000001f;
  transition: 0.3s ease;
  font-weight:600;
}

.btn-article:hover {
  background-color: var(--secondarycolour);
  border-color: var(--secondarycolour);
  color:white;
}

.btn-more-info {
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  padding: 10px 20px;
  background-color: var(--accent1-colour);
  color: var(--primarycolour);
  border: 3px solid var(--accent1-colour);
  transition: 0.3s ease;
}
.btn-more-info:hover {
  background-color: var(--secondarycolour);
  border-color: var(--secondarycolour);
  color:white;
}

.article table{
  margin-left:-12px;
}

.article p, .article h3, .article td{
  color:var(--primarytextcolour);
}

.article-omschrijving td {
  padding-left:0px;
}


.article-omschrijving {
  width: 75%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  gap: 24px;
  align-items: flex-start;
}

.article-omschrijving a{
  color:var(--accent2-colour);
}

.popup {
  display: none; 
  position: fixed;
  top: 50%;
  left: 0;
  transform:translateY(-50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 4;
  opacity: 0; 
  transition: opacity 0.4s ease; 
}

.popup.show {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: var(--quaternarycolour);
  border-radius: 12px;
  padding: 48px;
  width: 80vw;
  height:90vh;
  max-width: 1400px;
  transform: scale(0.8);
  transition: transform 0.4s ease; 
  position: relative; 
  display: flex;
  color:var(--primarytextcolour);
  flex-direction: column;
  overflow-y:scroll;
}

.article-popup-title {
  font-size:var(--font-size-xl);

}

.article-popup-subtitle {
  font-size:var(--font-size-m);
}
.popup-content.show {
  transform: scale(1); 
}

.close-btn {
  font-size: 2em;
  color: var(--primarytextcolour);
  float: right;
  cursor: pointer;
  margin: -10px -10px 10px 0; 
  background-color: transparent;
  border:none;
}

.close-btn:hover {
  color: var(--accent2-colour); 
}

.popup-text {
  display:flex;
  flex-direction: column;
  gap:16px;
}

.titles {
  display:flex;
  width:100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.container-content {
  width:100%;
  display:flex;
  flex-direction: row;
  gap:24px;
}

.article-omschrijving {
  form {
    width:100%;
  }
  input[type="text"], input[type="number"], input[type="email"], input[type="date"], textarea, select, .upload-bar {
    background-color: var(--secondarytextcolour);
  }
  .form-btn:hover{
      border-color: var(--accent2-colour);
      color:var(--accent2-colour);
  }
  .form-container{
    h4 {
      color:var(--accent2-colour);
      text-align: left;
      padding-bottom: 24px;
    }
  }
}

 /* bekijk meer knop articles*/

 .bekijk-meer {
  width:100%;
}

button.btn-more-articles {
  width:auto;
  background-color: #eddbd7;
  color:#124559;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

button.btn-more-articles:hover {
  background-color: #8baebd;
}

button.btn-more-articles::before {
  content: "Bekijk meer"; /* wijzig tekst van button */
}

button.btn-more-articles:hover {
  text-decoration: none;
}


/*more info*/
.more-info {
  width:25%;
  background-color: var(--secondarytextcolour);
  border-radius: 12px;
  padding:36px 24px;
  gap:24px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top:-56px;
}

.more-info-text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap:24px;
}

.more-info-text h3 {
  text-align: center;
}

.more-info .logo {
  display:flex;
  justify-content: center;
}

.more-info .logo img{
  max-height:60px;
  width:auto;
}

.more-info-text p, .more-info-text h5{
  text-align: center;
}
.article-image-box {
  width:100%;
  border-radius: 6px;
  overflow: hidden;
}

.article-image-box img {
width:100%;
height:100%;
object-fit: cover;
object-position: top;
}

.button-logo {
  display: flex;
  flex-direction: column;
  gap:12px;
  align-items: center;
}

.btn-article::before {
  content: "Meer informatie";
}

.art-form-title::before {
  content: "Solliciteer op deze functie";
}

.article-form .disclaimer::before {
  content: "* Verplicht veld."
}

.article-form .voornaam::before {
  content: "Voornaam *"
}

.article-form .achternaam::before {
  content: "Achternaam *"
}

.article-form .telefoon::before {
  content: "Telefoonnummer *"
}

.article-form .email::before {
  content: "E-mailadres *"
}

.article-form .cv-upload::before {
  content: "Upload hier je CV"
}

.article-form .file-name::before {
  content: "Bestand kiezen"
}

.article-form .upload-btn::before {
  content: ""
}

.article-form .motivatie-upload::before {
  content: "Upload hier eventueel je motivatiebrief"
}

.article-form .tekstbericht::before {
  content: "Uw bericht"
}

.article-form .form-btn::before {
  content: "Verstuur" 
}
/*gallery*/

.gallery img {
  max-width: 100%;
  vertical-align: top;
  border-radius:4px;
}

.gallery {
  display: flex;
  margin: 10px 0px;
  max-width: 600px;
  position: relative;
  padding-top: calc(400 / 600 * 100%);
  display:none;
}

@media screen and (min-width: 600px) {
  .gallery {
    padding-top: 400px;
  }
}

.gallery__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery__thumb {
  padding-top: 6px;
  margin: 8px;
  display: block;
}

.gallery__selector {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.gallery__selector:checked + .gallery__img {
  opacity: 1;
}

.gallery__selector:not(:checked) ~ .gallery__thumb > img {
  opacity: 0.6; 
}


.gallery__selector:checked ~ .gallery__thumb > img {
  box-shadow: 0 0 0 0px #0be2f6;
  transform: scale(1.15);
}
/*einde artikelen*/


/* direct solliciteren */
.direct-solliciteren p {
  text-align: left;
  width: 100%;
  max-width: 1600px;
}

/* forms */
.form-container{
  width:100%;
  max-width:1600px;
  h4 {
    text-align: left;
  }
}
.upload-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--secondarycolour);
  border-radius: 50px;
  background-color: var(--lightgrey);
}
.upload-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: white;
  border-radius: 50px;

}
.file-name {
  flex-grow: 1;
  padding-left: 15px;
  color: grey;
  text-align: left;
}

.upload-btn {
  background-color: #e9e9e9;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  color: #464646;
  text-align: center;
  white-space: nowrap;
  margin-bottom:0px!important;
}
.form-btn {
  background-color: var(--accent2-colour);
  transition: 0.5s ease;
  margin-top: 24px;
  border:3px solid var(--accent2-colour);
  color:var(--secondarytextcolour);
  width:25%;
  cursor: pointer;
}

.form-btn:hover{
  color: var(--secondarytextcolour);
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width:75%;
  max-width:1200px;
}


.col {
  flex: 1;
  margin-right: 10px;

}

.col-3 {
  flex: 1 1 25%;
  margin-right: 10px;
}

.col-6 {
  flex: 1 1 50%;
  margin-right: 0px;
}

.col-9 {
  flex: 1 1 75%;
  margin-right: 10px;
}

.col:last-child {
  margin-right: 0;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom:0.5em;
  font-size: 0.875em;
}

.bold {
  font-weight:bold;
}

.italic {
  font-style: italic;
}

input[type="text"], input[type="number"], input[type="email"], input[type="date"], textarea, select{
  width: 100%;
  padding: 10px;
  border: 0px solid grey;
  border-radius: 50px;
  box-sizing: border-box;
  color:grey;
  background-color: white;
}

textarea {
  height: 200px;
  overflow:hidden;
  border-radius: 12px!important;
  overflow:auto;
}

label i {
  margin-right: 10px;
}

/*open sollicitatie*/
.open-sollicitatie {
  align-items: center;
  max-width:100%!important;
  color:var(--primarytextcolour);
  background-color: var(--quaternarycolour);
}

.open-sollicitatie p {
  max-width:1200px;
}

.open-sollicitatie label {
  text-align: left;
}

.open-sollicitatie-btn {
  background-color: var(--primarycolour);
  border: 3px solid var(--primarycolour);
  color:var(--secondarytextcolour);
  width:fit-content;
  cursor:pointer;
  margin:24px 0;
}

.open-sollicitatie-btn:hover {
  background-color:transparent;
  border: 3px solid var(--primarycolour);
  color:var(--primarycolour);
}

/*meer informatie*/

#mi-container{
  display:flex !important;
  flex-direction:row  !important;
  width:100% !important;
  gap:48px;
  max-width:1600px;
}

.actiebuttons-mi {
  display: flex;
  flex-direction: column;
  background-color: var(--tertiarycolour);
  border-radius: 12px;
  height: 100%;
  padding: 50px;
  gap:48px;
}

.actiebuttons-mi .actiebutton1 {
  flex-direction: row;
}

/*accordion sectie */
.accordion {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width:500px;
    padding:12px 0;
}

.accordion-item {
  flex: 1; 
  margin: 6px 0; 
}

.accordion-button {
  background-color: var(--tertiarycolour);
  border: none;
  border-radius:100px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items:center;
  color: var(--primarycolour);
}

.accordion-button h4 {
  font-size: 1.125em!important;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease, opacity 0.7s ease, padding 0.7s ease;
  padding: 0 15px;
  border-radius: 24px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  margin-top: 24px;
}

.accordion-content.open {
  max-height: 2000px; 
  opacity: 1;
  padding: 10px 15px;
  margin-bottom:24px;
}

span.icon {
  transition:0.3s ease;
}
span.icon.open {
  transform: rotate(45deg);
}

/* onze verhalen */
.onze-verhalen {
  overflow:clip!important;
}

.onze-verhalen h3 {
  text-align: left;
  width:100%;
  max-width:1600px;
}
.story-container {
  display:flex;
  flex-direction: column;
  gap:48px;
  min-width:400px;
}

.story {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin:24px 0px;
}

.rechts{
  flex-direction: row-reverse;
}

.visitekaartje-icons {
  gap:8px;
  word-break: break-word;
}

.visitekaartje-icons p {
  text-decoration:none!important;
  -webkit-touch-callout: none; /* Verwijdert interactief gedrag op iOS */
  -webkit-user-select: none;  /* Verhindert selectie */
  user-select: none;
  color:inherit!important;
  }

.review {
  display:flex;
  height: fit-content;
  position: relative;
  width: 80%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, .4) 0%, rgba(153, 153, 153, 0.2) 63.5%);
  border-radius: 200px;  
  border: 0px solid rgba(255, 255, 255, 0.2);
  overflow:hidden;
  gap:50px;
  box-shadow:rgba(0, 0, 0, 0.1) 0px 20px 40px;
  opacity: 1;
  transition: opacity 0.5s ease;
  padding:24px 0px;
}

.review-right {
  display:flex;
  flex-direction:row-reverse;
}

.review-right .review-content{
  padding-left:100px;
}

.review-img img {
  width: auto;
  height:316px;
  opacity:0.8;
  position:relative;
  bottom:-34px;
}

.review-content{
  display:flex;
  flex-direction: column;
  justify-content: space-around;
  padding:24px;
}
.review-content p, .review-content h3, .review-content h4{
  text-align: left;
  max-width:80%;
}

.witruimte {
  width:20%;
}

/*over*/
.over {
  overflow: clip!important;
}

.over h3, .over h2 {
  max-width:1600px;
  text-align: left;
  width:100%;
}
.background-img {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-0%,-50%);
  width: 800px;
  height: auto;
  overflow: hidden;
}

.background-img img{
  width:500px;
  z-index: 3;
  object-fit: cover;
  opacity: 0.5;
}

.img-text {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
  max-width:1600px;
}

.img-text p{
  width: 45%;
}
.img-box{
width:650px;
height:450px;
overflow:hidden;
border-radius: 12px;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity: 0.95;
}

/* contact */

.background-img-contact {
  position: absolute;
  width: 30%;
  top:50%;
  transform: translatey(-50%);
  left:60%;
  height: auto;
  overflow: hidden;
  margin-left:-4%;
}

.background-img-contact g{
  fill:#aec3b047;
}

.contact-card {
  width:100%;
}

.glass-card {
  height: 100%;
  width:750px;
  background-color: rgba(255,255, 255,0.06);
  display:flex;
  justify-content: center;
  align-items: center;
  margin:auto;
  padding: 48px 48px;
  backdrop-filter: blur(7px);
  border-radius: 20px;
  border:1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
  20px 6px 40px rgba(18, 69, 89,0.1),
  inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.descr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width:100%;
  gap:28px;
}

.descr div {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
}


.descr img{
  width: 200px;
  height:auto;
}

.descr td{
  padding-left:0px;
}
.contact-details{
  flex-direction: row!important;
  gap: 24px;
}
/* procedure */
.procedure {
  align-items: center;
}

.card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width:100%;
  max-width:1600px;
}

.pr-card {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(25% - 24px);
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 12px 12px 30px rgb(12, 49, 64, 0.2);
}

.pr-imgbox {
  width: 100%;
  height: 250px;
}

.pr-imgbox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pr-textbox {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items:center;
  transition: height 0.7s ease; 
  position: absolute;
  bottom: 0; 
  width: 100%;
  padding: 24px;
  gap: 12px;
}

.pr-textbox p {
  text-align: center;
  justify-content: center;
  
}

.pr-textbox .number {
  font-size: 3em!important;
  margin-top: 25px;
  margin-bottom:-12px;
}

.pr-card:hover .pr-textbox {
  height: 350px;
}

.extra-text {
  opacity: 0; 
  visibility: hidden; 
  text-align: left!important;
  transition: opacity 0.5s ease, visibility 1.5s ease;
}

.pr-card:hover .extra-text {
  opacity: 1;
  visibility: visible; 
}

.card1{
  background-color: var(--accent1-colour);
  color:var(--primarytextcolour);
}

.card2{
  background-color: var(--tertiarycolour);
  color:var(--primarytextcolour);
}

.card3{
  background-color: var(--secondarycolour);
}

.card4{
  background-color: var(--primarycolour);
}

/* open sollicitatie form*/
.open-sol-form {
  width: 100%;
  max-height: 0; 
  overflow: hidden; 
  visibility: hidden; 
  transition: max-height 0.7s ease, visibility 0.7s ease; 
  max-width:1600px;
}

.open-sol-form[aria-expanded="true"] {
  max-height: 1000px; 
  visibility: visible; 
}

.open-sol-form input[type="text"], 
.open-sol-form input[type="number"], 
.open-sol-form input[type="email"], 
.open-sol-form input[type="date"], 
.open-sol-form textarea, 
.open-sol-form select {
  background-color: var(--secondarytextcolour);
}

.open-sol-form .upload-bar {
  background-color: var(--secondarytextcolour);
}

.upload-container {
  border: 0;
}

.open-sol-form {
.form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  p {
    text-align: left!important;
    width:100%;
  }
}
.form-btn {
  align-self: left;
  width: 25%;
  font-weight:600;
}
.form-btn:hover {
  border: 3px solid var(--accent2-colour);
  color: var(--accent2-colour);
  font-weight:600;
}
}

/*banner-slider*/
.banner-slider {
  overflow:hidden;
  white-space: nowrap;
  position: relative;
  width:100%;
  padding: 24px 0px;
  display:flex;
  justify-content: center;
  flex-direction: row;
 }
 
 .banner-slider .section-title {
  margin-bottom:48px;
 }
 
 .banner-slider:before,
 .banner-slider:after {
  position: absolute;
 top:0;
  width:250px;
  height:100%;
  content: "";
  z-index:2; 
 }
 
 .banner-slider:before{
 background: linear-gradient(to left, rgba(255,255,255,0), white); 
 left:0;
 display:none;
 }
 .banner-slider:after{
  background: linear-gradient(to right, rgba(255,255,255,0), white); 
  right:0;
  display:none;
  }
 
 .banner-slider:hover .logos-slide{
  animation-play-state: paused;
 }
 
 .logos-slide {
  animation: 35s slide infinite linear;
  display:inline-block;
 }
 
 .logos-slide img{
  height: 60px;
  margin: 0 40px;
 }
 
 @keyframes slide {
  from{
   transform: translateX(0);
 
  }
  to {
   transform: translateX(-100%);
  }
 }
 /*einde keurmerken*/
/*einde banner-slider*/

/* media query mobile*/
@media (max-width: 767px) {

 .hero, .actiebuttons, .articles, .direct-solliciteren, .open-sollicitatie, .meer-informatie, .onze-verhalen, .over, .contact, .footer, .procedure, .nieuwsbrief, .basis-row, .basis-sectie {
    gap: 48px;
    padding: 50px 35px;
  }

  /*navbar*/
  nav {
    padding:16px 35px;
  }

  nav label{
    line-height:0;
  }

  .no-scroll {
    overflow: hidden; /* Voorkomt dat de body scrolt */
    height:100vh;
    position: fixed;
    width:100%;
  }
.logo {
  max-height:50px;
}
  .li-btn {
    display:block;
  }

  .nav-button-mobile {
    display: flex;
    background-color: var(--accent2-colour);
    border: 2px solid var(--accent2-colour);
    padding:16px 24px;
    width:100%;
    margin: 24px 0px
  }
  ul li a:hover:after {
    display:none;
  }

  .checkbtn {
    display: block;
    order: 1;
    margin-right: 20px;
  }

  .nav-center {
    position: relative;
    background-color:inherit;
  }

  .nav-center ul {
    position: fixed;
    top: 77px!important;
    right: -100%;
    background-color: inherit;
    opacity: 0.98;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    transition: all 0.3s ease;
    z-index: 3; 
    padding:24px 35px;
  }

  ul li {
    margin: 20px 0;
  }

  ul li a {
    font-size: 20px;
  }

   /* Wanneer de checkbox input is aangevinkt (hamburger is geklikt) */
   #check:checked ~ .nav-center ul {
    right: 0;
  }

  /* Zorg dat de reguliere button verborgen blijft in mobiele versie */
  .nav-button {
    display: none;
  }

  .nav-button-mobile:hover {
    background-color:transparent;
    border: 2px solid var(--accent1-colour);
    color: var(--accent1-colour);
  }

  .closebtn {
    display: block; /* Maak zichtbaar in mobiele weergave */
  }

  .nav-content {
    background-color: inherit;
  }

  a.nav-text, .mobile-button-item .nav-button {
    font-weight: 600!important;
  }
  /*einde navbar */

  /*hero*/
  .hero {
    height:auto;
    margin-top: -34px;
  }

  .hero-container {
    max-width: 100%;
    padding-right:0;
    h2 {
      text-align: left;
    }
    p{
      font-size: var(--font-size-m);
    }
}
  /*einde hero*/

  /*usp's*/
  .actiebuttons {
    flex-direction: column;
  }
  
  /*articles*/
  .article {
    flex:none;
    width:100%;
    max-width: calc(100% - 20px);
  }

  .btn-article {
    width:55%;
  }

  .popup-content {
    width:90vw;
  }

  .popup-text {
    flex-direction: column;
  }

  .article-omschrijving, .more-info {
    width:100%;
    gap:16px;
  }

  .article-container {
    gap:48px!important;
    justify-content: center;
  }

  .container-content {
    flex-direction: column;
  }

  .more-info {
    margin:0;
  }

  .more-info .button-logo {
    width:100%;
  }

  /*einde articles*/


  /*direct solliciteren */
  .row {
    flex-direction: column;
  }

  .col-6, .col, .form-btn {
    width:100%;
    max-width:100%;
  }

  .col-6 {
    max-width:100%;
  }

  form, .open-sol-form .form-btn {
    width:100%;
  }
  /* einde direct solliciteren*/
  /*open sollicitatie*/
  .open-sollicitatie {
    text-align:left!important;
  }
  /*einde open sollicitatie*/

  /*sollicitatie procedure*/
  .card-container {
    flex-direction: column;
}

.pr-card {
  height:500px;
  flex:none;
  width: 100%;
}

.pr-imgbox, .pr-textbox {
  height:50%;
}

/* einde sollicitatie procedure*/

/*meer informatie */

#mi-container {
  flex-direction: column!important;
}

.mi-content {
  flex-direction: column;
}

.actiebuttons-mi {
width:100%;
align-items: flex-start;
}

.actiebutton1 {
  gap:48px;
}

.accordion {
  min-width:200px;
}

.accordion-content.open {
  padding: 24px 12px;
}

  .accordion-item {
    margin: 12px 0; 
  }

  .meer-informatie p.btn-m {
    text-align: left;
}
/*einde meer informatie */


/* onze verhalen */
.onze-verhalen h3{
  text-align: left;
}
.review {
  height: auto;
  width: 100%;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 50px;
  overflow:visible;
  margin-top:40px;
}

.story-container {
  min-width:100px;
}

.story {
  flex-direction: column;
}

.review-img img {
  height: 250px;
  opacity: 1;
  padding-bottom:24px;
}

.witruimte {
  display:none;
}

.review-img img {
  bottom: 0;
}
.review-content {
  padding: 0px;
  gap:24px;
  p{
    max-width:100%;
  }
}

 .review-content h3, .review-content h4 {
  text-align: center;
  max-width: 100%;
}

.review-right .review-content {
    padding-left: 0px;
}
/* einde onze verhalen */
/*over*/
.over .background-img {
  display:none;
}

.over h3 {
  max-width: 100%;
}

.img-text {
  flex-direction: column;
  p {
    width: 100%;
  }
}
.img-box {
  width: 100%;
  height: 300px;
}
/*einde over */

/*contact */
.glass-card {
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.descr, .descr div {
  align-items: center;
}

.descr {
  gap:36px;
table {
  align-items: center;
}
}
.background-img-contact {
  width: 100%;
  top:0;
  transform: none;
  left: 0;
  height: 100%;
  margin-left:0px;
  margin-top:50px;
}

/*banner slider */
.banner-slider:before, .banner-slider:after {
  width:0px;
  }
  
.banner-slider {
  gap:48px;
  padding:50px 35px;
}

/*einde banner-slider*/

button#contactform-submit, .contactform-submit-btn {
  width:100%;
}

/*einde contact*/

  h1 {
    font-size: var(--font-size-xxl);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  h3 {
    font-size: var(--font-size-l);
  }
  h4 {
    font-size: var(--font-size-m);
    font-weight: 600;
  }


  .btn-m{
    font-size: 1.0em!important;
  }

  /*footer*/
  .container-footer, .footer-container2, .footer-container1 {
    flex-direction: column;
    align-items: center;
    width:100%;
    gap:36px;
  }

  .container-openingstijden, .contactgegevens-container, .container-links, .socials-container {
    align-items: center;
    gap: 16px;
}
.footer p, .footer a, .footer h4 {
  text-align: center;
}

.phone-mail-container {
  align-items: center;
}

.footer .phone-mail-container i{
  display:none;
}
  /* einde footer */
}

  /* tablet */
@media (min-width: 768px) and (max-width:1200px) {

  /*navbar*/
  .no-scroll {
    overflow: hidden; /* Voorkomt dat de body scrolt */
    height:100vh;
    position: fixed;
    width:100%;
  }

  nav {
    padding:24px 70px;
  }

  .nav-content {
    padding: 24px 70px;
  }
  .checkbtn {
    display: block;
    order: 1;
    margin-right: 20px;
  }

  .nav-center {
    position: relative; /* Zorg ervoor dat het uitklapmenu absoluut gepositioneerd is binnen deze container */
    background-color:inherit;
  }

  .nav-center ul {
    position: fixed;
    top: 142px!important;
    right: -100%;
    background-color: inherit;
    opacity: 0.98;
    width: 100%;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    transition: all 0.3s ease;
    z-index: 3; 
    gap:36px;
  }

  ul li {
    margin: 20px 0;
  }

  ul li a {
    font-size: 1.75em;
  }

   /* Wanneer de checkbox input is aangevinkt (hamburger is geklikt) */
   #check:checked ~ .nav-center ul {
    right: 0;
  }

  /* Zorg dat de reguliere button verborgen blijft in mobiele versie */
  .nav-button {
    display: none;
  }

  .mobile-button-item .nav-button {
    width: 50%!important;
    margin: auto!important;
}

  /* Button voor mobiele versie zichtbaar maken */
  .nav-button-mobile {
    display: block;
    background-color: var(--accent2-colour);
    border: 2px solid var(--accent2-colour);
    padding:16px 24px;
    width:100%;
  }

  .nav-button-mobile:hover {
    background-color:transparent;
    border: 2px solid var(--accent1-colour);
    color: var(--accent1-colour);
  }

  .closebtn {
    display:block;
      top: 30px;
      right: 90px;
  }

  .li-btn {
    display:flex;
  }

  ul li a:after {
    display:none;
  }

  body.no-scroll .checkbtn {
    padding-right: 16px;
}

.nav-content{
  background-color: inherit;
}

a.nav-text, .nav-button {
  font-weight: 600 !important;
  font-size: 1.5em !important;
  }

  /*einde navbar*/
    /*basis sectie */

  .basis-row {
    grid-template-columns: 1fr;
  }


  /*hero*/
  .hero {
    margin-top:-190px;
  }

  .hero-container {
    gap: 48px;
    padding-right:0;
}
  /*einde hero*/

  /*articles*/
  .article {
    max-width: calc(100% - 20px);
  }

  .popup-text {
    flex-direction: column;
    align-items: center;
    gap:48px;
  }

  .article-omschrijving {
    width:100%;
    gap:12px;
  }

  .more-info {
    width:100%;
    margin:0;
  }

  .article-container {
    gap:48px;
  }

  .article-image-box {
    width: 50%;
    border-radius: 6px;
    overflow: hidden;
    justify-content: center;
    display: flex;
  }

  .container-content {
    flex-direction: column;
  }


  /*direct solliciteren*/
  form {
    width:100%;
  }

  .open-sol-form {
    .form-container {
align-items: flex-start;
}
  }

  /*sollicitatie procedure */
  .pr-card {
    flex: 0 1 calc(50% - 24px);
  }

  .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
}

  /*einde sollicitatie procedure */
  /*meer informatie*/

  #mi-container {
    flex-direction: column!important;

  }
  .mi-content {
    flex-direction: column;
    width:100%;
  }
  
  .actiebuttons-mi {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 24px;
    gap: 0px;
    flex-wrap: nowrap;
}

.accordion {
  min-width:100px;
}

  
  .accordion-content.open {
    padding: 24px 12px;
  }
  
    .accordion-item {
      margin: 12px 0; 
    }

    .actiebutton1 {

      flex: 0 1 50%;
      padding: 24px 12px;
      align-items: center;
      justify-content: space-around;
      flex-direction: column;
      gap: 12px;
    }
      /*einde meer informatie */

      /*onze verhalen */
      .witruimte {
        display:none;
      }

      .story {
        width: 100%;
    }

    .review {
      height: auto;
      width: 100%;
      gap: 12px;
      opacity: 0.8;
      align-items: flex-end;
      padding: 12px 0px;
      border-radius:80px;
  }
  .review-img img {
    width: auto;
    height: 300px;
    opacity: 0.8;
    margin-bottom: -16px;
    margin-left:-40px;
}

.review-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 12px;
  margin-left: -24px;
  gap:12px;
}

.review-content p, .review-content h3, .review-content h4 {
  max-width: 100%;

}

.review-right .review-img img{
  margin-right:-40px;
}

.review-right .review-content {
  padding-left: 72px;
  width: 100%;
  margin-right: -60px;
  p{
    max-width:80%;
  }
}
/*einde onze verhalen */

    /*banner-slider*/
    .banner-slider:before, .banner-slider:after {
      width:100px;
     }
    /*einde abnner-slider*/

/*over*/
.img-text {
  flex-direction: column;
  p{
    width:100%;
  }
}
.over h3 {
  max-width: 100%;
}
/*einde over*/

/*contact*/
.glass-card {
  width: 100%;
}

.background-img-contact {
  position: absolute;
  width: 80%;
  left:0;
}
.over .background-img {
  display: none;
}
/*einde contact*/
}

/* CUSTOM CSS */

/* .btn-more-info {
  background-color: var(--accent1-colour);
  border: 3px solid var(--accent1-colour);
  color: var(--primarycolour);
}

.btn-more-info:hover {
  background-color: var(--accent1-colour);
  border: 3px solid var(--accent1-colour);
  color: white;
} 
  */
  
.form-btn, button#contactform-submit, button#contactform-submit:hover  {
    background-color: #C4A77D;
    border: 3px solid #C4A77D;
    color: var(--secondarytextcolour);
    font-family: 'Montserrat'!important;
}


#upload-field-1, #upload-field-2, .more-info {
  display:none;
}

.art-form-title::before {
  content: "Vraag vrijblijvend een offerte of meer informatie aan via onderstaand formulier.";
}

.article-form p.disclaimer {
  margin-top: 12px;
}

.fa-location-dot:before, .fa-map-marker-alt:before {
  content: "\e533"!important;
}

.nav-button {
  font-family: "Montserrat"!important;
}

label.cv-upload, .upload-container, label.motivatie-upload {
  display: none;
}

div#contactform {
  margin-top: 24px;
}

.background-img img {
  opacity: 0.2!important;
}

.hero {
  height: 80vh!important;
}

/* custom css mobile  */
@media (max-width: 767px) {
.logo {
  max-height: 200px;
}

}









