body{
	color: #fff;
  overflow-y:auto;
}

/*  OVERLAY PATTERN  */
#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
  background:rgba(20, 0, 51,0.8);
}

/* -------------------------------------------------------------------------------------- */
/* ----------------------- Algemene styling voor alle paragrafen ------------------------ */

P, ul {
  width: 60%;            /* Gebruik 60% van de schermbreedte */
  margin: 0 auto 1.5rem; /* Centreer horizontaal en voeg wat ruimte onderaan toe */
  text-align: left;      /* Tekst links uitlijnen */
  line-height: 1.6;      /* Betere leesbaarheid */
  font-size: 1.1rem;     /* Iets grotere tekst voor comfort */
}

/* Responsiveness voor kleinere schermen */
@media (max-width: 992px) {
  p {
    width: 80%; /* Op tablets iets breder */
  }
}

@media (max-width: 768px) {
  p {
    width: 90%; /* Op mobiele apparaten bijna volledige breedte */
    font-size: 1rem; /* Kleinere tekst voor mobiel */
  }
}

/* ------------------------------------------------------------------------------- */
/* ------------------ Algemene styling voor alle titels -------------------------- */

h2 {
	width: 60%;
	text-align: center;
	margin: 0 auto;
}


svg{
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  right:0;
  z-index:0;
}

/* -------SECTIONS CSS---------- */
section {
	padding:200px 0;
  text-align:center;
  min-height:110vh;
}
  section:last-of-type{
    padding-bottom:300px;
  }
.bg-dark{
  color:#fff;
  background:rgba(0,0,0,0.8) !important;
}
.navbar-nav li a{
  border-radius:30px;
  transition:all 0.5s ease-in;
}
.navbar-nav li.active a{
  background:#f06;
  color:#fff !important;
}


@media(max-width:768px){
  section:first-of-type{
    padding-top:80px;
  }
  .navbar-nav{
    padding:0px;
  }
  
.navbar-nav li a{
   padding-left:20px !important;
  }
}

@media(min-width:768px){
  section:first-of-type{
    padding-top:100px;
  }
  .navbar{
}
  .navbar-theme{
  background:none !important;
}
  .navbar-brand{
    display:none;
  }
.navbar-nav li a{
  color:#fff;
  margin:0;
  padding:10px 20px !important;
}

}
.btn-theme{
	background-color:#f06;
	border:1px solid rgb(255,20,147);
  color:#fff;
}
.color-theme{
  color:#f06;
}

#home-slides{
  margin:20px 0;
}

.btn-next{
	width:50px;
	height:50px;
	border:1px solid #fff;
	border-radius:50%;
	cursor: pointer;
	color: #CCC;
	font-size:20px;
	line-height:50px;
	margin:20px auto;
	animation:blink 1s ease-in-out alternate infinite;
}
.btn-next:hover{
	color:#FFF;
}

@keyframes blink {  
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

