/*** CUSTOM CSS FOR Lightly by Jaydot, April 2020 ***/
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*** BREAKPOINTS ***
|---480---767|768---979|980---1200|
    max   max min   max min   min
hamburger verschijnt bij 797
***/

/*** ROOT SETTINGS, VARS ***/
:root {
  --lichtblauw: #009EE0;
  --donkblauw: #2A368A;
  --zwblauwwit: #EBF6FC;
  --zwlichtgrijs:  #F0F1F1;
  --zwlichtstblauw: #EEEDF5;
  --zwart: #808080;
  --lpaars: #c0bbdb;
  --lblauw: #bbe4f8;
  --lgrijs: #c5c6c8;
    
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  
  scroll-behavior: smooth;
 
}

.clearfix {
  clear: both;
}

/* row fluid geen padding op grotere schermen */
@media (min-width: 980px) {
.container-fluid {
  padding:0;
}
}

/*** BODY FONT ***/
body {
	font-family: 'Roboto', sans-serif;
	color: var(--donkblauw);
  	font-size: 16px;
  	line-height: 150%;
}
body.site {
  background-color: transparent;
  border-top: none;
  padding: 0 10px;
}
@media (min-width: 768px){
  .body.site {
    padding: 0;
  }
}
.nadruk {
  color: var(--lichtblauw);
  font-weight: bold;
}
  

.body .container{
  border: none;
  padding: 0;	
  -webkit-box-shadow: none;
  box-shadow: none;
}


/*** KOPPEN ***/
h1,h2,h3,h4,h5,h6 {font-family: Roboto, sans-serif; font-weight: 600; color: var(--lichtblauw); margin: 0.5em 0; text-rendering: optimizelegibility;}
h1 {font-size: 1.3em; text-transform: uppercase;}
h2 {font-size: 1.1em; text-transform: uppercase;}
h3 {font-size: 1em; margin: 1em 0 .25em 0; color: var(--donkblauw);}
h4 {font-size: 1.1em; text-transform: uppercase; color: var(--zwart); margin-top: 1em; line-height: 140%;}

/*maar koppen op foon wat kleiner */
@media (max-width: 991px){
h1 {font-size: 1.2em;}
h2 {font-size: 1.1em;}
h3 {font-size: 1.1em;} 
}
/* h6 in gebruiken als "teaser" ***/
h6 {
  font-size: 16px;
  color: var(--donkblauw);
  font-style: italic;
}

/*** LINKS ***/
a:link, a:visited{
	color: var(--lichtblauw);
	text-decoration: underline;
}
a:hover{
	color: var(--donkblauw);
	text-decoration: overline;
}

/*** MENU CODERING ***/

.navigation {
  padding: 0;
  border: none; 
  margin-bottom: 0;
 }

/* toppers moet sticky */
#toppers {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 150;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 8px solid;
  -o-border-image: -o-linear-gradient(left, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
  border-image: -webkit-gradient(linear, left top, right top, color-stop(33%, rgba(192,187,219,1)), color-stop(33%, rgba(187,228,248,1)), color-stop(66%, rgba(187,228,248,1)), color-stop(66%, rgba(197,198,200,1)));
  border-image:  linear-gradient(90deg, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
  border-image-slice: 1;
  margin-bottom: 1rem;
}

.navbar, .nav-collapse {
  float: right;
}

/* de nav-outer */
#nav-outer{
  width: 100%;
  top: 0;
}
#nav-outer:after{
  clear: both;
}
/* ** media klein scherm ** */
@media (max-width: 797px){
  #nav-outer{
    position: relative;
  }
}
/* **eind media** */

#topnav{
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
  text-align: right;
  font-size: .8em;
  letter-spacing: 1px;
}
/*** hack (via csstricks) om topnav hoogte te geven ondanks floating children ***/
#topnav:after {
  content: "";
  display: table;
  clear: both;
}

#topnav.container{
  width: 200px;
  padding: 0 3em 0 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#topnav .nav>li>a {
    color: var(--donkblauw);
    text-decoration: none;
    padding: 0 2px;
    line-height: 1.5em;
    position: relative;
    display: block;
    text-shadow: none;
}

/*** op groot scherm geen hamburger ***/
@media (min-width: 797px){
  
  #topnav {
    display: none;
  }
  

/* bottom to top sliding bottom border */
#topnav .nav li:after{
    content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0px;
	width: 100%;
	background: transparent;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
  }
  #topnav .nav li:hover:after{
    height: 5px;
	background: var(--lichtblauw);
  }
}

#topnav .nav > li > a:link, #topnav .nav > li > a:visited{
  color: var(--donkblauw);
  text-decoration: none;
}

#topnav .nav > li > a:hover{
  color:  var(--lichtblauw);
  background: none;
}
#topnav .nav > li.active > a {
    color: var(--lichtblauw);
  	text-decoration: none;
}
.nav > li.active >  a:after{
  border-bottom: 2px solid var(--lichtblauw);
}

/*** HAMBURGER KNOP ***/
/*achtergrond hamburgerknop active */
#topnav .btn-navbar{
  background: white;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#topnav .btn-navbar:hover, #topnav .btn-navbar:active, #mainnav .btn-navbar:focus {
  background: var(--lblauw);
}

#topnav .icon-bar {
  margin-bottom: 4px;
  width: 40px;
  height: 4px;
  background-color: var(--donkblauw);
}
/* hamburger rechts */
.navbar.pull-left{
  float: right;
}
/***** EINDE MENU CODERING *****/

/* OPSOMMINGEN */
.colorbull {
  list-style: none;
}
.colorbull li {
  margin-top: 0.7em;
  line-height: 150%;
}
.colorbull ul {
  padding-left: 1.5em;
}
.colorbull li::before {
  content: "";
  display: inline-block;
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: var(--lichtblauw);
  margin: 0 1em 0 -1.5em;
}
/*** DOWNLOAD BUTTON ***/

/*** variatie op download button en indeling ***/
.variatie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.variatie p {
  width: 80%;
  padding: 1em 0;
}
/* maar buttons kleiner op groot scherm */
@media (min-width:797px){
  .variatie p {
    width: 45%;
  }
}


.btn-download2 {
  width: 100%;
  background: var(--zwblauwwit);
  color: var(--donkblauw);
  font-size: 1.2em;
  font-weight: normal;
  padding: 1em;
  border: solid var(--lichtblauw) 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.btn-download2 a {
  text-decoration: none;
}

.btn-download2:hover {
  border: solid var(--donkblauw) 1px;
  background: var(--lpaars);
}


/* end downloadbutton */

/*** STYLING BOVENSTE BALK "TOPONE" ***/
#nav-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#topone {
  background-color: white;
  color: var(--donkblauw);
  font-size: .8em;
  padding: .5em 1em;
  width: 100%;
  z-index: 101;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#topone p {
  margin-bottom: 0;
}
#topone>.moduletable {
  width: 100%;
}

.topregel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--donkblauw);
  text-transform: uppercase;
}
.topmenuutje {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-content: space-between;
  display: none;
}
.topmenuutje a:link, .topmenuutje a:visited{
	color: var(--donkblauw);
	text-decoration: none;
}
.topmenuutje a:hover{
	color: var(--lichtblauw);
}
.topfoon {
 -ms-flex-item-align: end;
  align-self: flex-end;
}
/*topmenuutje alleen groot scherm */
@media (min-width:797px){
  .topmenuutje {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*** ACHTERGROND AFBEELDINGEN HEADERS ***/
.custom.hdr {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 3em;
}
.custom.hdrhome {
  background-image: url('/images/headers/hd-blur-groot.jpg');
}
/*homepage andere header voor hele grote schermen*/
@media (min-width: 1800px){
.custom.hdrhome {
  background-image: url('/images/headers/hd-homegroot.jpg'); 
}
}
/*end grote header*/
.custom.hdrscan {
  background-image: url('/images/headers/hd-wijs.jpg');
}
.custom.hdrover {
  background-image: url('/images/headers/hd-mannen.jpg');
}
.custom.hdrvoorwie {
  background-image: url('/images/headers/hd-lampjes.jpg');
}
.custom.hdragro {
  background-image: url('/images/headers/hd-dak.jpg');
}
.custom.hdrdetail {
  background-image: url('/images/headers/hd-lampjes.jpg');
}
.custom.hdrinstall {
  background-image: url('/images/headers/hd-bogen.jpg');
}
.custom.hdrvve {
  background-image: url('/images/headers/hd-flats.jpg');
}
.custom.hdrkant {
  background-image: url('/images/headers/hd-lokaal.jpg');
}
.custom.hdrpark {
  background-image: url('/images/headers/hd-blur.jpg');
}
.custom.hdrshop {
  background-image: url('/images/headers/hd-dak2.jpg');
}
.custom.hdrcont {
  background-image: url('/images/headers/hd-huis.jpg');
}
.custom.hdrfaq {
  background-image: url('/images/headers/hd-gras.jpg');
}
.custom.hdrrev {
  background-image: url('/images/headers/hd-stad.jpg');
}
.custom.hdrbeurs {
  background-image: url('/images/headers/hd-lichtjes.jpg');
}
.custom.hdrnieuws {
  background-image: url('/images/headers/hd-bol.jpg');
}


/*** STYLING MENUKNOPPEN IN HEADERS ***/
.hdr-wrapper.container {
  background-color: transparent;
  padding-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hdr-logo, .hdr-tekst {
  width: 50%;
  margin: auto;
  padding-bottom: 1em;
  color: white;
  font-size: 2.8em;
  line-height: 130%;
  font-weight: bold;
  text-align: center;
}
.custom.hdrhome .hdr-logo img {
  width: 60%;
}
.hdr-tekst {
  width: 80%;
}
.hdr-logo img, .hdr-tekst {
  margin: auto;
}
/* hdr knoppen alleen groot scherm */
.hdr-nav {
  display: none;
}
.hdrnav-knoppen {
  width: 9%;
  padding-bottom: 1em;
  font-size: 1em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hdrnav-knoppen.active {
  color: var(--lichtblauw);
  border-bottom: 8px solid white;
}
@media (min-width:797px){
.hdr-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;  }
}

/*** STYLING SIDEBAR (WELL) ***/
.well {
  background-color: var(--zwblauwwit);
  padding: 1em;
}

/*** STYLING TEKST en BLOKKEN OP HOMEPAGE ***/

h1.voorpagkop {
  font-size: 2.5em;
  color: var(--donkblauw);
  text-align: center;
  text-transform: none;
  font-weight: normal;
}
p.voorpagtxt {
  font-size: 1.1em;
  line-height: 140%;
  text-align: center;
}
p.voorpagetxt-extramarge {
  margin-bottom: 3em;
}
.custom.botpostwee, .custom.botposdrie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.balkje {
  height: 1rem;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 8px solid;
  -o-border-image: -o-linear-gradient(left, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
   border-image: -webkit-gradient(linear, left top, right top, color-stop(33%, rgba(192,187,219,1)), color-stop(33%, rgba(187,228,248,1)), color-stop(66%, rgba(187,228,248,1)), color-stop(66%, rgba(197,198,200,1)));
  border-image:  linear-gradient(90deg, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
  border-image-slice: 1;
  margin-bottom: 1rem;
}
.custom.botposdrie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.homevlak {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-width: 350px;
  padding: 3em;
  background-size: contain;
}
.homevlak img {
  width: 35%;
   -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}
.homevlak2 {
  width: 100%;
-webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 350px;
  padding: 2em;
}
.homevlak2 img {
  width: 50%;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}
.homevlak img:hover {
  width: 37%;
}
.homevlak2 img:hover {
  width: 54%;
}
.homevlak p, .homevlak h3 {
  text-align: center;
  color: white;
}

.homevlak h3, .homevlak2 h3 {
  padding-top: 1em;
}
.homevlak2 p, .homevlak2 h3 {
  color: var(--donkblauw);
  text-align: center;
}
.vlakwie {
  background-image: url('/images/homeknop/home-vlak1.jpg');
}
.vlaknieuw {
  background-image: url('/images/homeknop/home-vlak2.jpg');
}
.vlakscan {
  background-image: url('/images/homeknop/home-vlak3.jpg');
}
/*** blokken op groot scherm ***/
@media (min-width: 797px){
  .homevlak {
    width: 33.3%
  }
  .homevlak2 {
    width: 40%;
  }
}


/*** STYLING EXTRA TEXTBLOK op OVER PAG***/
.extrablok {
  background-color: var(--zwblauwwit);
  padding: 1em;
  font-size: 1em;
  line-height: 140%;
  margin: 2em 0;
}

/*** STYLING NIEUWSPAGINA ***/
.icon-calendar {
  display: none;
}
dd {
  font-size: .8em;
  font-style: italic;
  margin: 0;
}

/*** HERE WE GO: DE CONTACTPAGINA... ***/
.contwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
 }
.cont h4 {
	color: var(--lichtblauw);
}
.cont {
    width: 24vw;
	min-width: 350px;
	background-size: contain;
 }
.cont img {
	 width: 10vw;
 }
.cont-hdr {
    padding: 2em;
}
.cont-hdr h3, .cont-hdr p{
  color: white;
  text-align: center;
}
.cont-hdr h3 {
  margin-top: 1em;
}

.contbel-hdr {
    background-image: url('/images/contpag/vlak-bel.jpg');
}
.contmail-hdr {
    background-image: url('/images/contpag/vlak-mail.jpg');
}
.contschrijf-hdr {
    background-image: url('/images/contpag/vlak-schrijf.jpg');
}
.contshop-hdr {
    background-image: url('/images/contpag/vlak-shop.jpg');
}
.contbel-blok {
  padding: 2em;
}
.contbel-txt .contbel-blok, .contshop-txt .contbel-blok {
	background-color: var(--zwlichtstblauw);
}
.contmail-txt .contbel-blok {
	background-color: var(--zwblauwwit);
}
.contschrijf-txt .contbel-blok {
	background-color: var(--zwlichtgrijs);
}
.contwrapper h4, .contwrapper p {
	width: 100%;
	margin: auto;
}
.bloklijnll {
	border-bottom: 8px solid var(--lpaars);
}
.bloklijnlm {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
	border-bottom: 8px solid;
    -o-border-image: -o-linear-gradient(left, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%);
    border-image: -webkit-gradient(linear, left top, right top, color-stop(33%, rgba(192,187,219,1)), color-stop(33%, rgba(187,228,248,1)));
    border-image: linear-gradient(90deg, rgba(192,187,219,1) 33%, rgba(187,228,248,1) 33%);
    border-image-slice: 1;
}
.bloklijnrm {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
	border-bottom: 8px solid;
    -o-border-image: -o-linear-gradient(left, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
    border-image: -webkit-gradient(linear, left top, right top, color-stop(66%, rgba(187,228,248,1)), color-stop(66%, rgba(197,198,200,1))); 
    border-image: linear-gradient(90deg, rgba(187,228,248,1) 66%, rgba(197,198,200,1) 66%);
    border-image-slice: 1;
}
.bloklijnrr {
	border-bottom: 8px solid  var(--lgrijs);
}

/*** FOOTER STYLING ***/
.devoeter {
  background-color: var(--donkblauw);
  padding: 2em 1em .5em 1em;
  font-size: .8em;  
}
.voetereen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
}
.voetmail {
  color: var(--lichtblauw);
  font-weight: bold;
}
.voetlinks {
  width: 75%;
  margin: auto;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.voetlinks a:link, .voetlinks a:visited {
  color: white;
  text-decoration: none;
}
.voetlinks a:hover, .voetlinks a:focus {
  color: var(--lichtblauw);
  font-size: 1em;
}
.grootscherm {
  display: none;
}
.voetertwee {
  color: white;
  font-size: .7em;
}
.voetertwee p {
  margin-bottom: 0px;
}

@media (min-width: 768px){
 
  .voetlinks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .grootscherm {
    display: block;
  }
}


