/* Color */
/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightbox-fade-in 0.3s ease-in-out;
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lightbox-image {
  max-width: 1000px;
  max-height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-size: 18px;
  padding: 15px 0;
  text-align: center;
  max-width: 80%;
  margin-top: 15px;
  opacity: 0.9;
}

.lightbox-close span {
	    position: relative;
    bottom: 3px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background: #033372;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  background-color: #0449a4;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #033372;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  opacity: 0.7;
}
.lightbox-nav:hover {
  background-color: #0449a4;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Project Images Styles */
.afbeeldingen {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.afbeeldingen a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 30%;
}
.afbeeldingen a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.afbeeldingen a:hover::after {
  opacity: 1;
}
.afbeeldingen a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 51, 114, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.afbeeldingen a img {
  width: 100%;
  height: 250px !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.afbeeldingen p {
  display: none; /* Hide captions in the grid view */
}

@media only screen and (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev {
    left: -50px;
  }
  .lightbox-next {
    right: -50px;
  }
  .lightbox-close {
    top: -35px;
    right: -10px;
  }
  .afbeeldingen {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 850px) and (orientation: landscape) {
	.projecten-archive .container .projecten-grid .project-item {
		max-width: 100% !important;
	}
}

.lightbox-overlay.active {
	padding: 0 30px;
}

@media only screen and (max-width: 576px) {
  .lightbox-nav {
    top: auto;
    bottom: -60px;
    transform: none;
	  font-size: 12px;
  }
  .lightbox-nav:hover {
    transform: scale(1.1);
  }
  .lightbox-prev {
    left: 50%;
    margin-left: -60px;
  }
  .lightbox-next {
    right: 50%;
    margin-right: -60px;
  }
  .lightbox-caption {
    margin-bottom: 50px;
  }
	
	.projecten-archive .container .projecten-grid {
		flex-direction: column;
	}
	
	.projecten-archive .container .projecten-grid .project-item {
		width: 100% !important;
	}
}

@media only screen and (max-width: 870px) { 
	.single-project .container .article-intro {
		flex-direction: column;
	}
}

@media only screen and (max-width: 970px) and (min-width: 570px) { 
	.afbeeldingen a {
		width: 48%;
	}
}

@media only screen and (max-width: 569px) { 
	.afbeeldingen a {
		width: 100%;
	}
}

.titel-container-projecten {
  background-color: #033372;
}

.titel-container-projecten-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
	margin-top: 50px;
}
.titel-container-projecten-inner h1 {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-size: 42px;
}
.titel-container-projecten-inner svg {
  max-width: 12px;
  fill: white;
}

.titel-container-projecten-inner a {
  width: 20px;
  height: 20px;
}

.projecten-archive .container {
  max-width: 1400px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.projecten-archive .container .projecten-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  padding: 100px 0;
  justify-content: space-between;
}
.projecten-archive .container .projecten-grid .project-item {
  width: 45%;
  max-width: 600px;
  flex: 45%;
  margin-bottom: 50px;
}
.projecten-archive .container .projecten-grid .project-item a:hover {
  text-decoration: unset;
}
.projecten-archive .container .projecten-grid .project-item h2 {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 36px;
}
.projecten-archive .container .projecten-grid .project-item p {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 300;
  font-size: 20px;
}
.projecten-archive .container .projecten-grid .project-item img {
  height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 900px) and (min-width: 600px) {
  .projecten-archive .container .projecten-grid .project-item h2 {
    font-size: 30px;
  }
  .projecten-archive .container .projecten-grid .project-item img {
    height: 280px;
  }
}
@media only screen and (max-width: 599px) {
  .projecten-archive .container .projecten-grid .project-item h2 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 20px;
  }
  .projecten-archive .container .projecten-grid .project-item img {
    height: 200px;
  }
}
.projecten-informatie-inner {
  width: 90%;
  gap: 5%;
  max-width: 2000px;
  margin-left: auto;
  background: #033372;
  padding: 80px 70px;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.projecten-informatie-inner-c1 {
  width: 50%;
}

.projecten-informatie-inner-c2 {
  width: 50%;
}

.titel-algemeen-project {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 0%;
  text-transform: uppercase;
  max-width: 480px;
}

.btn.btn-primary {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0%;
  margin-top: 40px;
}

.beschrijving-dungedrukt-project-algemeen,
.beschrijving-dikgedrukt-project-algemeen {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: white;
  max-width: 515px;
}

.beschrijving-dikgedrukt-project-algemeen {
  font-weight: 700;
  margin-top: 40px;
}

@media only screen and (max-width: 1200px) and (min-width: 900px) {
  .titel-algemeen-project {
    font-size: 62px;
    line-height: 70px;
  }
  .beschrijving-dungedrukt-project-algemeen,
  .beschrijving-dikgedrukt-project-algemeen {
    font-size: 18px;
  }
}
@media only screen and (max-width: 899px) and (min-width: 600px) {
  .titel-algemeen-project {
    font-size: 52px;
    line-height: 58px;
    max-width: 100%;
  }
  .beschrijving-dungedrukt-project-algemeen,
  .beschrijving-dikgedrukt-project-algemeen {
    font-size: 18px;
    max-width: 100%;
  }
  .projecten-informatie-inner {
    flex-direction: column;
    gap: 50px;
	  width: 95%;
	  padding: 50px 30px;
  }
  .projecten-informatie-inner-c1,
  .projecten-informatie-inner-c2 {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .titel-algemeen-project {
    font-size: 46px;
    line-height: 52px;
    max-width: 100%;
  }
  .beschrijving-dungedrukt-project-algemeen,
  .beschrijving-dikgedrukt-project-algemeen {
    font-size: 18px;
    max-width: 100%;
  }
  .projecten-informatie-inner {
    flex-direction: column;
    gap: 50px;
    width: 100%;
    padding: 80px 30px;
  }
  .projecten-informatie-inner-c1,
  .projecten-informatie-inner-c2 {
    width: 100%;
  }
}
/* Single page */
.single-project .container .article-intro {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: space-between;
}
.single-project .container .article-intro h1 {
  font-family: "Saira Condensed", sans-serif;
  margin-bottom: 10px;
  line-height: 55px;
}
.single-project article .article-c1,
.single-project article .article-c2 {
  flex: 50%;
}
.single-project article img {
  height: unset;
}
.single-project article .article-c2 p {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

.overige-informatie {
  max-width: 1400px;
  padding: 0 30px;
  margin: 0 auto;
}
.overige-informatie h3 {
  font-family: "Saira Condensed", sans-serif;
  margin: 30px 0 20px;
  line-height: 40px;
  font-size: 38px;
}
.overige-informatie .informatie {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

.single-project {
  padding-bottom: 80px;
}
.single-project a {
  color: #FF6C02;
  font-family: "Roboto", sans-serif;
}
.single-project a:hover {
  text-decoration: underline;
}
.single-project ul, .single-project ol {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
.single-project .locatie {
  display: flex;
  gap: 10px;
}
.single-project .locatie svg {
  width: 14px;
}

.project-content {
  margin-top: 30px;
}

.overige-informatie .btn.btn-primary svg {
  width: 20px;
  fill: white;
  margin-right: 10px;
}

.projectSingle_backTo_wrapper {
	    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.projectSingle_backTo_wrapper svg { 
	    width: 16px;
    margin-right: 10px;
    position: relative;
    top: 1.2px;
    fill: white;
}

/*# sourceMappingURL=style.css.map */