:root {
    --primaryColor: #002f65;
    --secondaryColor: #026cb6;
	--thirdColor:#00a8cb;
    --white: #FFFFFF;
	--black: #000;
	--grey: #dbdbdb;
    --titleFont: "Futura Medium BT", "Open Sans", Arial, sans-serif;
}
@media (min-width: 1500px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1488px;
	}
}
@font-face {
    font-family: "Futura Medium BT";
    src: url("/front/fonts/Futura_Medium_BT.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
.language-switcher {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  z-index: 9999;
}

.language-switcher button {
  background: #f0f0f0;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.language-switcher button:hover {
  background: #ddd;
}

.language-switcher button.active {
  background: #007BFF;
  color: white;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-light-trans {
  background-color: rgba(var(--bs-light-rgb), 0.8);
}
.socialIcons li {
	border: 0.01rem solid var(--primaryColor);
	display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 5px;
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 5px;
    transition: all 0.3s ease;
    padding: 0;
    font-size:16px;
}
.footersocialIcons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.footersocialIcons li {
    border: 0.01rem solid var(--primaryColor);
    width: 38px;
    height: 38px;
    margin: 0 5px;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 16px;
    display: flex; /* Dit mag blijven voor centreren van icoon binnen li */
    align-items: center;
    justify-content: center;
}
.navbar-nav .nav-link, .navbar .social-mute a {
    font-size: 24px!important;
}
.navbar {
  --bs-navbar-padding-y: 0;
}

.my-link {
  border-bottom: 4px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.my-link:hover,
.my-link:active,
.my-link:focus {
  border-bottom-color: var(--secondaryColor);
}
.bg-grey {
	background: var(--grey);
}
.footersocialicons {
	border: 0px;
}
h1, .h1 {
  color: var(--primaryColor);
}
h2, .h2 {
  color: var(--secondaryColor);
}
h3, .h3 {
  color: var(--thirdColor)!important;
}
.icon-img {
	max-width: 180px;
	height: auto;
}
.pagina-banner { 
	overflow: hidden; 
}
.banner-text {
	max-width: 70%; 
}
.banner-title { font-size: 3rem; font-weight: 700; line-height: 1.2; }
.banner-subtitle { font-size: 1.5rem; font-weight: 400; }
.banner-title, .banner-subtitle { text-shadow: 0 2px 8px rgba(0,0,0,.35); }
@media (max-width: 768px) {
  .banner-text { max-width: 100%; }
  .banner-title { font-size: 2rem; }
  .banner-subtitle { font-size: 1.2rem; }
}
.product-card-img {
    width: 100%;
    height: 180px;           /* vaste hoogte voor alle kaarten */
    object-fit: contain;     /* of "cover", afhankelijk van wens */
    background: #f9fafb;     /* subtiele achtergrondkleur */
    padding: .5rem;          /* witruimte rond afbeelding */
    border-bottom: 1px solid #f1f5f9;
}
.product-card-check {
    position: absolute;
    top: .6rem;       /* i.p.v. bottom */
    right: .6rem;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid #e5e7eb;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: .9rem;
    transform: scale(.95);
    transition: all .15s ease;
    color: transparent;
}
.product-card-body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;      /* verticaal centreren */
    justify-content: center;  /* horizontaal centreren */
    text-align: center;
    padding: 1rem;
}

.product-card-title {
    font-size: .95rem;
    font-weight: 600;
    color: #111827;
    margin: 0;                /* geen extra marge */
    line-height: 1.3;         /* compactere regelhoogte */
    word-break: break-word;   /* breekt lange woorden netjes af */
}
/* Optioneel: laat overlap buiten de banner toe. 
   Wil je géén overlap? Zet overflow: hidden; */
.pagina-banner { overflow: visible; }

.text-justify {
	text-align: justify;
}

/* Basis: mobiel (sm en kleiner) — zet de afbeelding gewoon onder de tekst */
@media (min-width: 992px) {
	.block-img {
		position: static;          /* staat in natuurlijke flow op mobiel */
		display: block;
		margin: 16px auto 0;       /* centreren onder de tekst */
		width: clamp(140px, 70vw, 320px);
		height: auto;
		object-fit: contain;
	}
}
/* Tablet (md ≥ 768px): absolute positie rechts, licht overlappend */
@media (min-width: 768px) {
    .block-img {
        position: absolute;
        right: 0;
        bottom: -100px;              /* laat een stukje onder de banner uitsteken */
        width: min(42vw, 262px);    /* schaalt met viewport, maar niet te groot */
    }
    .banner-text {
        max-width: 58%;             /* ruimte vrijhouden voor de afbeelding rechts */
    }
}

/* Desktop (lg ≥ 992px): iets kleiner beeldhoek en meer overlapruimte */
@media (min-width: 992px) {
    .block-img {
        bottom: -128px;
        width: min(34vw, 460px);
    }
    .banner-text {
        max-width: 52%;
    }
}

/* XL (≥ 1200px): nog wat compacter rechts */
@media (min-width: 1200px) {
    .block-img {
        width: min(28vw, 520px);
    }
}
a {
	color: var(--secondaryColor);
	text-decoration: none;
	font-weight: 500;
}
a:hover {
	color: var(--thirdColor);
	font-weight: 700;
}

a .widget:hover {
	color: var(--thirdColor);
	font-weight: 600;
}
.widget-title {
	color: var(--secondaryColor);
}
.widget-subitem a {
	color: var(--black);
}
.widget-subtitle a {
	color: var(--secondaryColor);
	font-weight: 600;
}
.list-unstyled > li.widget-subtitle:nth-of-type(2) {
    margin-top: 15px;
}
@media (max-width: 1402.98px){
	.navbar-nav .nav-link, .navbar .social-mute a {
		font-size: 18px !important;
	}
}
@media (max-width: 1199.98px){
	.navbar-nav .nav-link, .navbar .social-mute a {
		font-size: 14px !important;
	}
}
@media (max-width: 991.98px) {
  :root {
    --nav-bg: #ffffff;
    --nav-link: #222;
    --nav-link-muted: #666;
    --nav-accent: #0d6efd;
    --nav-hover-bg: rgba(13, 110, 253, 0.08);
    --card-radius: 14px;
    --gap: 10px;
  }
  /* Paneel dat uitklapt (mobiel menu) */
  .navbar-collapse {
    background: var(--nav-bg);
    border-radius: var(--card-radius);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    padding: 12px;
    margin-top: 8px;
  }
  .navbar-nav .nav-link,
  .navbar .social-mute a {
    font-size: 18px !important;
    line-height: 1.25;
  }
  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .navbar-nav .nav-link {
    display: block;
    padding: 12px 14px;
    color: var(--nav-link);
    border-radius: 10px;
    font-weight: 600;
  }
  .navbar-nav .nav-link:hover {
    background: var(--nav-hover-bg);
    text-decoration: none;
  }
  .navbar-nav .nav-link:active {
    transform: translateY(1px);
  }
  /* ===== Social icons links naast elkaar ===== */
  .topHeadersocial.socialIcons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    margin-top: 6px;
  }
  .topHeadersocial.socialIcons li {
    list-style: none;
  }
  .topHeadersocial.socialIcons li a {
    display: inline-grid;
    place-items: center;
    height: 40px;
    border-radius: 50%;
    color: var(--nav-link);
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  }
  .topHeadersocial.socialIcons li a i {
    font-size: 18px;
    line-height: 1;
  }
  .topHeadersocial.socialIcons li a:hover {
    background: var(--nav-hover-bg);
    box-shadow: 0 6px 16px rgba(0,0,0,.10);
  }
  .topHeadersocial.socialIcons li a:active {
    transform: translateY(1px);
  }
  @media (prefers-reduced-motion: reduce) {
    .navbar-nav .nav-link,
    .topHeadersocial.socialIcons li a {
      transition: none;
    }
  }
}
@media (max-width: 991.98px){
	.navbar-brand img {
		height: 50px !important;
	}
}
@media (max-width: 1112.98px){
	.carousel-caption h1 {
		font-size: 1.9rem !important;
	}
}
@media (max-width: 874.98px){
	.carousel-caption h1 {
		font-size: 1.4rem !important;
	}
}
@media (max-width: 874.98px){
	.carousel-caption h1 {
		padding-top: 2.5rem;
		font-size: 1.2rem !important;
	}
}
@media (max-width: 767.98px){
	h2 {
		font-size: 1.3rem !important;		
	}
	.btn-group-lg>.btn, .btn-lg {
    --bs-btn-font-size: 1.0rem;
}
@media (max-width: 552.98px){
	.carousel-caption h1 {
		padding-top: 18.5rem;
		font-size: 0.999rem !important;
		color: var(--thirdColor) !important;
	}
	.carousel-inner {
		overflow: unset;
	}
	h2:not(.carousel-caption h1) {
		font-size: 1.3rem !important;
		margin-top: 1.5rem !important;
	}
	h2.banner-subtitle:not(.carousel-caption h1) {
		margin-top: 0 !important;
	}
}
@media (max-width: 463.98px){
	.banner-text {
        max-width: 100%;
        padding-top: 10rem !important;
        text-align: center !important;
		color: black !important;
	}
	.banner-text h1, .banner-text h2 {
		color: black !important;
	}
	.mobile {
		margin-top: 8.5rem !important;
	}
	.mobile-dflex {
		display: block !important;
	}
}
@media (max-width: 459.98px){
	.carousel-caption h1 {
		padding-top: 15.5rem;
		font-size: 0.9rem !important;
	}
}
@media (max-width: 380.98px){
	.mobile {
		margin-top: 9.5rem !important;
	}
	.mobile-dflex {
		display: block !important;
	}
}	
@media (max-width: 430.98px){
	h2:not(.carousel-caption h1) {
		font-size: 1.0rem !important;
		margin-top: 1.5rem !important;
	}
	/* Verberg de reCAPTCHA-container volledig */
	.rc-anchor,
	.rc-anchor-invisible,
	.rc-anchor-light,
	.rc-anchor-invisible-hover-hovered {
	  display: none !important;
	  visibility: hidden !important;
	  opacity: 0 !important;
	  height: 0 !important;
	  width: 0 !important;
	  overflow: hidden !important;
	}
}
@media (max-width: 767.98px) {
  .card-img-top:not(.mobile-img) {
    width: 60%;      /* maakt de afbeelding 80% van de containerbreedte */
    height: auto;    /* zorgt dat de verhouding behouden blijft */
    margin: 0 auto;  /* centreert de afbeelding als het een block-element is */
    display: block;  /* maakt centreren met margin mogelijk */
  }
}
@media (max-width: 767.98px) {
	.block-img {
		position: absolute;
		bottom: -72px !important;
		width: min(34vw, 262px) !important;
		right: 0;
	}
}
@media (max-width: 463.98px) {
	.h2-mobile:not(.carousel-caption h2) {
		font-size: 1.041rem !important;
	}
	.icon-img {
		width: 5rem;
	}
	.icon-text {
		font-size: 1rem;
	}
}
@media (max-width: 576.98px) {
	.fs-5 {
		font-size: 0.95rem !important;
	}
	.display-6 {
		font-size: calc(0.75rem + 1.5vw);
		/* font-weight: 300; */
		/* line-height: 1.2; */
}
@media (max-width: 767.98px) {
  .fix-img-mobile:not(.mobile-img) {
    width: 100% !important;
  }
}
@media (max-width: 643.98px) {
  .language-switcher  {
    top: 12%;
	right: 0 !important;
	left: unset;
  }
	.language-switcher button {
    padding: 6px 12px;
	font-size: 12px;
  }
}