/* Algemeen */

html {
	background-color: #fff;
	}

body {
	background-color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	padding: 0;
	color: #1a1a1a;
	}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
		color: #2d2b27;
    }

/* Afbeeldingen */
img {
	padding: 0;
	max-width: 100%;
	height: auto;
	}

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left;
	}
	
a img {
	border: none;
	}

a {
	-webkit-transition: all 0.2s ease-in-out;
	-khtml-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	}

a:link, a:visited {
  outline: none !important;
}

blockquote {
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
	}

blockquote cite {
	margin: 5px 0 0;
	display: block;
	}

.center {
	text-align: center;
	}

.hidden {
	display: none;
	}

/* Logo */
.header .logo {
    z-index: 10000;
    width: 100%;
	text-align: left;
	padding: 25px 0 20px;
	position: relative;
	margin: 0;
    }

.header .logo img {
    max-width: 175px;
    width: 100%;
    }



/* Menu */
.navbar-nav > li:has(> ul) > a {
    position: relative;
}

.navbar-nav > li:has(> ul) > a::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 45%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: translateY(-40%) rotate(45deg); /* key fix */
}

header {
	margin-bottom: 0px;
	margin-top: 0;
	width: 100%;
	background: #3c6392;
	z-index: 3000;
	position: relative;
	}

.header {
	position: fixed;
	width: 100%;
	background: #00A2A3;
	height: 110px;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
	}

.header.affix {
	margin: 0 auto 0;
	position: fixed;
	top: 0;
	}

.customize-support .header.affix {
	top: 32px;
	}

.affix ~ .pagina {
	padding: 208px 30px 30px;
	}

nav {
    margin: 0;
    }

.navbar {
    padding: 0;
    left: 0;
    right: 0;
    }

.navbar-toggler {
	border: 1px solid #171717;
	padding: 8px 12px;
	position: absolute;
	top: 52px;
	right: 20px;
	z-index: 100;
	}

.navbar-collapse {
    margin-top: 30px;
	text-align: right;
    }

.navbar-collapse > ul {
    position: relative;
    z-index: 2000;
    margin: 0 0 -7px;
    padding: 0;
    list-style: none;
    display: inline-block;
    }

.navbar-collapse > ul > li {
    float: left;
    }

.navbar .navbar-collapse > ul > li > a {
    padding: 10px 5px;
	font-family: 'Montserrat', sans-serif;
		margin-bottom: 34px;
	margin-left: 40px;
    color: #FFF;
	font-weight: 300;
    font-size: 14px;
	display: block;
	background-color: transparent;
	text-transform: uppercase;
    }

.navbar .navbar-collapse > ul > li:first-child > a {
    margin-left: 0;
    }

.navbar .navbar-collapse > ul > li > a:hover,
.navbar .navbar-collapse > ul > li > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #171717;
		
    }

.navbar .navbar-collapse > ul > .active > a,
.navbar .navbar-collapse > ul > .active > a:hover,
.navbar .navbar-collapse > ul > .active > a:focus {
    background-color: transparent;
    color: #FFF;
	border-bottom: 1px solid #FFF;
    }

.navbar .navbar-collapse > ul > li.current-menu-item > a,
.navbar .navbar-collapse > ul > li.current-menu-parent > a {
	background-color: transparent;
	color: #171717;
	border-bottom: 1px solid #171717;
	}

/* Sub menu 2 */

.navbar .navbar-collapse > ul > li > ul {
	background-color: #fff;
	position: absolute;
	transform-origin: 50% 0;
  transform: scaleY(0) translateZ(0);
  transition: transform 0.3s, opacity 0.3s;
	padding-left: 0;
	z-index: -1;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(105,105,105,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(105,105,105,0.5);
	box-shadow: 0px 0px 5px 0px rgba(105,105,105,0.5);
	text-align: left;
	display: block;
	opacity: 0;
	}

.navbar .navbar-collapse > ul > li:hover > ul {
	max-height: 1000px;
	opacity: 1;
	transform: scaleY(1) translateZ(0);
	}

.navbar .navbar-collapse > ul > li > ul li {
	list-style: none outside none;
	border-top: 1px solid #171717;
	}

.navbar .navbar-collapse > ul > li > ul li:first-child {
	list-style: none outside none;
	border-top: 0;
	}

.navbar .navbar-collapse > ul > li > ul li a {
	-webkit-transition: all 0ms;
	-moz-transition: all 0ms;
	-ms-transition: all 0ms;
	-o-transition: all 0ms;
	transition: all 0ms;
	color: #171717;
	font-weight: normal;
	padding: 10px 25px;
	display: block;
	}

.navbar .navbar-collapse > ul > li > ul li a:hover, .navbar .navbar-collapse > ul > li > ul li a:focus {
	background-color: #00A2A3;
    color: #fff;
	text-decoration: none;
	}

.navbar .navbar-collapse > ul > li > ul li:before {
	color: #000;
	display: none;
	}


	
/* Lightbox */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
    transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	}
      
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
    -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
    -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
    -o-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
    transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
    -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
    -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
    -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
    transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	}

.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out; 
    -moz-transition: opacity 0.3s ease-out; 
    -o-transition: opacity 0.3s ease-out; 
    transition: opacity 0.3s ease-out;
	}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
	}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
	}

/* Home */

.home {
	overflow: hidden;
		padding-top: 110px;
	}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    width: 100%;
    }
	
.carousel-caption {
    font-size: 20px;
    top: 40%;
    padding-bottom: 0;
    text-align: right;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
	padding-top: 0;
    }
    
.carousel-caption p {
    padding: 20px 45px;
    color: #fff;
    margin: 0;
    display: inline-block;
    min-height: 75px;
    letter-spacing: 0.3px;
	text-align: left;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
    }

.carousel-caption span {
    display: block;
	font-size: 26px;
	font-weight: bold;
    }

/* Home Hero */

.evys-hero-home{
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 90px;
}

.evys-hero-home .hero-image{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.evys-hero-home .hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evys-hero-home .hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
    z-index: 1;
}

.evys-hero-inner{
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: #fff;
    text-align: left;
}

.evys-hero-inner .hero-klein{
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.evys-hero-inner h1{
    margin: 0 0 18px;
    color: #fff;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
}

.evys-hero-inner .hero-tekst{
    margin: 0 0 30px;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 540px;
}

.hero-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    border-radius: 40px;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .4px;
    transition: .3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.hero-btn:hover{
    text-decoration: none;
    transform: translateY(-3px);
}

.hero-btn.primary{
    background: rgba(255,255,255,.92);
    color: #222;
}

.hero-btn.primary:hover{
    background: #ffffff;
    color: #222;
}

.hero-btn.secondary{
    background: #00A2A3;
    color: #fff;
}

.hero-btn.secondary:hover{
    background: #008f90;
    color: #fff;
}

.evys-hero-home + .container{
    padding-top: 50px;
}

.evys-hero-home:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 22px;
    height: 22px;
    margin-left: -11px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    z-index: 3;
    opacity: .9;
    animation: scrollArrow 1.8s infinite;
}

@keyframes scrollArrow{
    0%{
        transform: translateY(0) rotate(45deg);
        opacity: .2;
    }
    50%{
        transform: translateY(8px) rotate(45deg);
        opacity: 1;
    }
    100%{
        transform: translateY(0) rotate(45deg);
        opacity: .2;
    }
}

@media screen and (max-width:991px){

    .evys-hero-home{
        min-height: 64vh;
        padding: 120px 0 70px;
    }

    .evys-hero-inner{
        max-width: 540px;
    }

    .evys-hero-inner h1{
        font-size: 42px;
    }

    .evys-hero-inner .hero-tekst{
        font-size: 16px;
    }

    .hero-btn{
        font-size: 16px;
        padding: 14px 32px;
    }
}

@media screen and (max-width:767px){

    .evys-hero-home{
        min-height: 58vh;
        padding: 110px 0 55px;
    }

    .evys-hero-home .hero-overlay{
        background: rgba(0,0,0,.36);
    }

    .evys-hero-inner{
        max-width: 100%;
        text-align: left;
    }

    .evys-hero-inner .hero-klein{
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .evys-hero-inner h1{
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .evys-hero-inner .hero-tekst{
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero-buttons{
        gap: 10px;
    }

    .hero-btn{
        font-size: 15px;
        padding: 13px 24px;
        width: auto;
    }
}

/* Home Categorien */

.home-categories {
	list-style: none;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 60px;
	}

.home-categories li {
	display: inline-block;
	color: #2d2b27;
	padding: 0 20px;
	font-weight: bold;
	}

.home-categories li a {
	display: inline-block;
	color: #2d2b27;
	padding: 5px;
}

.home-categories li.sale a {
	color: #49d0e3;
	text-transform: uppercase;
	}

/* Home - First */

.home-first img {
	padding-top: 50px;
	margin-bottom: 30px;
}

/* Home - Advies */

.home-advies {
	padding: 50px 0 45px;
	text-align: center;
}

.advies-inner{
    padding:55px 40px;
    background-position:center;
    background-size:cover;
    border-radius:24px;
}

.home-advies h2 {
	color: white;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 15px;
	letter-spacing: 3px;
	text-align: left;
}

.home-advies h3 {
	color: white;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 25px;
	letter-spacing: 3px;
	text-align: left;
}

.home-advies .advies-button{
    color:#222;
    font-size:18px;
    background:rgba(255,255,255,.92);
    padding:16px 42px;
    border-radius:40px;
    text-transform:none;
    font-weight:600;
    letter-spacing:.4px;
    display:inline-block;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}

.home-advies .advies-button:hover{
    background:#ffffff;
    transform:translateY(-3px);
}

.home-advies .col-sm-6{
    background:rgba(0,0,0,.34);
    backdrop-filter:blur(2px);
    padding:35px;
    border-radius:22px;
}

/* Home - Producten Slider */

.home-producten{
    position:relative;
    padding:65px 0;
}

.home-producten h2{
    color:#2d2b27;
    font-size:26px;
    text-transform:uppercase;
    margin-bottom:18px;
    padding:0;
    text-align:center;
    letter-spacing:3px;
}

.home-producten h3{
    color:#2d2b27;
    font-size:14px;
    margin-bottom:45px;
    padding:0;
    text-align:center;
    font-weight:normal;
    letter-spacing:3px;
}

/* product cards */
.product-inner{
    position:relative;
    text-align:center;
    overflow:hidden;
    border-radius:24px;
}

.product-inner a{
    display:block;
    position:relative;
    text-decoration:none;
}

.product-inner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

/* luxe overlay */
.product-inner:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.06));
    z-index:1;
    pointer-events:none;
}

/* hover zoom */
.product-inner:hover img{
    transform:scale(1.04);
}

/* button */
.product-button{
    position:absolute;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    z-index:2;
}

.product-button span{
    display:inline-block;
    background:rgba(255,255,255,.94);
    color:#222;
    padding:14px 36px;
    border-radius:40px;
    font-size:22px;
    font-weight:600;
    letter-spacing:.4px;
    box-shadow:0 10px 28px rgba(0,0,0,.12);
    transition:.3s ease;
    white-space:nowrap;
}

.product-inner:hover .product-button span{
    transform:translateY(-3px);
    background:#fff;
}

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

    .home-producten{
        padding:45px 0;
    }

    .product-inner{
        margin-bottom:20px;
    }

    .product-button{
        bottom:18px;
    }

    .product-button span{
        font-size:18px;
        padding:12px 26px;
    }
}
/* Home - Nieuwsbrief */

.home-nieuwsbrief {
	padding: 75px 0;
	text-align: center;
}

.nieuwsbrief-inner {
	padding: 40px 30px;
	background-position: center;
	background-size: cover;
}

.home-nieuwsbrief h2 {
	color: #2d2b27;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 15px;
	letter-spacing: 3px;
}

.home-nieuwsbrief h3 {
	color: #1a1a1a;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 25px;
	letter-spacing: 3px;
}

.home-nieuwsbrief .nieuwsbrief-button {
	color: #fff;
	font-size: 15px;
	background-color: #171717;
	padding: 25px 40px;
	border-radius: 60px;
	text-transform: uppercase;
	display: inline-block;
}

/* Nieuws slider */
.customer-logos > div > div {
	display: -ms-flexbox !important;
    display: flex !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
		margin: 0 -20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;  
}

[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.home-nieuws {
	padding: 50px 0 45px;
	position: relative;
}

.home-nieuws h2 {
	color: #2d2b27;
	font-size: 26px;
	text-transform: uppercase;
	margin-bottom: 60px;
	padding: 0;
	text-align: center;
	letter-spacing: 3px;
}

.home-producten:before {
	content: "";
	position: absolute;
	background-color: #f8f8f8;
	width: 100%;
	height: 30%;
	left: 0;
	top: 70%;
}

.home-first {
	padding: 0px 0px 10px;
}

.home-nieuws .slick-list{
    overflow:hidden !important;
}

.home-nieuws .slide{
    width:325px;
}

.home-nieuws .slick-slide{
    padding:0 12px 30px;
}
.home-nieuws .nieuws-inner{
    max-width:100%;
    margin:0 auto;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
    height:340px; /* vaste hoogte */
}

.home-nieuws .nieuws-inner a{
    display:block;
    height:100%;
    text-decoration:none;
    color:inherit;
    position:relative;
}

.home-nieuws .nieuws-inner img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.home-nieuws .nieuws-tekst{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    background:#fff;
    min-height:96px;
    padding:22px 20px;
    border-radius:20px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.home-nieuws .nieuws-tekst h3{
    margin:0;
    font-size:20px;
    line-height:1.35;
    font-weight:600;
    color:#2d2b27;
    text-transform:none;
    letter-spacing:0;
}

.home-nieuws .nieuws-inner:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(0,0,0,.10);
}

.home-nieuws .nieuws-inner:hover img{
    transform:scale(1.04);
}/* Slick Arrows*/

.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 40%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #fff;
		z-index: 10;
		border-radius: 100%;
}
.home-producten .slick-prev,
.home-producten .slick-next
{
    top: 50%;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    color: #d9d9d9;
		border: 2px solid #d9d9d9;
}
.slick-prev:before,
.slick-next:before
{
    font-size: 20px;
    line-height: 1;
    color: #000;
		border: 2px solid #d9d9d9;
		border-radius: 100%;
		width: 40px;
		height: 40px;
		vertical-align: middle;
		display: block;
		line-height: 35px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
    left: -40px;
}
.slick-prev:before
{
    content: '<';
}
.slick-next
{
    right: -40px;
}
.slick-next:before
{
    content: '>';
}

/* Pagina */

.pagina-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding-bottom: 20px;
}

.pagina-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pagina {
	padding: 110px 0 45px;
	position: relative;
	}

.nieuws, .contact {
	padding: 150px 0 45px;
	position: relative;
	}


.pagina h1, .nieuws h1, .contact h1 {
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 30px;
	font-weight: normal;
  padding: 0;
	position: relative;
	display: inline-block;
	line-height: 1.2;
	color: #555;
	}

.pagina h2, .nieuws h2, .contact h2 {
	font-size: 28px;
	margin-top: 0;
	margin-bottom: 24px;
	font-weight: normal;
  padding: 0;
	position: relative;
	display: inline-block;
	color: #555;
	}

.pagina .tekst li:before, .nieuws .tekst li:before {
	content: "-";
	display: inline-block;
	margin-left: -25px;
	width: 25px;
	color: #0098d8;
	}

.pagina .tekst li, .nieuws .tekst li {
	list-style: none outside none;
	margin-bottom: 5px;
	}

.pagina .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pagina a,
.nieuws a,
.contact a {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	}

.pagina a:hover, .pagina a:focus, .pagina a:active,
.nieuws a:hover, .nieuws a:focus, .nieuws a:active,
.contact a:hover, .contact a:focus, .contact a:active {
	color: #3c6392;
	font-weight: normal;
	text-decoration: underline;
	}

.pagina ul {
	margin-left: 0;
	margin-top: 15px;
	}
	
.pagina strong {
	font-weight: bold;
	}

.pagina .tekst > div > div:first-child {
	padding-right: 45px;
	}

.pagina .tekst > div > div:last-child {
	padding-left: 45px;
	}

.pagina .overonsfoto {
	font-size: 16px;
	margin-bottom: 30px;
	border-bottom: 1px solid #d0d0cf;
	padding: 0 120px;
	}

.pagina .row > div:last-child .overonsfoto {
	border-bottom: 0;
	margin-bottom: 0;
	}

.pagina .overonsfoto .afbeelding {
	margin-bottom: 20px;
	}

.pagina .overonsfoto .afbeelding img {
	max-width: 175px;
	width: 100%;
	}

.pagina .carousel {
	margin-bottom: 30px;
	}

.page-submenu {
	position: relative;
	}

.page-submenu:after {
	border-right: 1px solid #ccc;
	height: 100%;
	content: "";
	right: 15px;
	position: absolute;
	top: 0;
	}

.page-submenu ul {
    padding: 0 0 0 12px;
	}

.page-submenu ul li {
	list-style: outside none none;
	}

.page-submenu ul li::before {
    color: #000;
    content: "\203A";
    display: inline-block;
    font-size: 18px;
    margin-left: -12px;
    width: 20px;
	}

.page-submenu ul li.current_page_item a {
	font-weight: bold;
	}

/* Nieuwspagina */

.container.nieuws-overzicht{
    padding-top:150px;
}

.nieuws-overzicht .row{
    margin-top:20px;
}

.nieuws-item{
    margin-bottom:40px;
}

.nieuws-item .image{
    aspect-ratio:16/10;
    overflow:hidden;
    margin-bottom:15px;
}

.nieuws-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.nieuws-item h2{
    font-size:22px;
    margin-bottom:10px;
}

.nieuws-item a{
    text-decoration:none;
    color:inherit;
    display:block;
}

/* Contact */

.caldera-grid .row {
	margin-left: 0 !important;
	margin-right: 0 !important;
	}

.caldera-grid .row .single {
	padding-left: 0 !important;
	padding-right: 0 !important;
	}

.caldera-grid label {
	font-weight: normal !important;
	} 

.contact strong {
    width: 50px;
    display: inline-block;
	}

.contact em {
    width: 50px;
    display: inline-block;
	font-style: normal;
	}

.screen-reader-response {
	margin-top: 0;
	color: #dd0000;
	font-size: 16px;
	font-weight: bold;
	}

.wpcf7-not-valid-tip, .wpcf7-validation-errors {
	color: #dd0000;
	}

input[type=submit] {
	border: 0;
	background-color: #00A2A3;
	color: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	-khtml-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin-right: 5px;
	border-radius: 0;
	padding: 10px 30px;
	}

input[type=submit]:hover {
	color: #fff;
	background-color: #0089BF;
	
	}

.caldera-grid .form-control {
	background-color: #f8f8f8 !important;
	color: #666666 !important;
	border-radius: 0 !important;
	}
	
	
/* Footer */

.footer {
	color: #727272;
	font-size: 14px;
	padding: 75px 0 55px;
  background: #f8f8f8;
	
	}

.footer a, .footer a:hover, .footer a:active, .footer a:focus {
	color: #727272;
	font-family: 'Montserrat', sans-serif;
	}

.footer h4 {
	color: #575153;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	margin-bottom: 20px;
	margin-top: 0;
	text-transform: uppercase;
	}

footer .wp-block-latest-posts__post-title,
.site-footer .wp-block-latest-posts__post-title,
#colophon .wp-block-latest-posts__post-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 2.8em;
}
.footer strong {
	font-weight: bold;
	color: #000;
	}

.footer ul li:before {
	color: #727272;
	font-family: 'Montserrat', sans-serif;
	content: "\203A";
	display: inline-block;
	font-size: 18px;
	margin-left: -12px;
	width: 20px;
	}
	
.footer ul {
	padding: 0 0 0 12px;
	}

.footer ul li {
	list-style: outside none none;
	}


.footerbottom {
	padding: 30px 0;
	font-family: 'Montserrat', sans-serif;
	background-color: #fff;
	color: #727272;
	font-size: 14px;
	text-align: center;
	}

.footerbottom a {
	color: #727272;
	}

.footerbottom .copyright {
	margin-bottom: 30px;
	}

@media screen and (max-width:1199px){
	
	.navbar-inverse .navbar-collapse > ul > li > a {
		padding: 4px 16px;
		font-size: 19px;
		}
	
	.header .logo img {
		max-width: 180px;
		}
	
	.carousel-caption {
		font-size: 26px;
		}
	
	.carousel-caption p {
		min-height: 64px;
		}
	
	.submenu {
		min-height: 45px;
		}
	
	.home h1 {
		font-size: 30px;
		}
	
	.merkscroll div.scrollableArea img {
		max-width: 175px;
		max-height: 110px;
		}
	
	div.scrollableArea {
		height: 110px !important;
		}
	
	div.scrollingHotSpotRight, div.scrollingHotSpotLeft {
		height: 110px;
		}
	
	.pagina h1, .nieuws h1, .contact h1 {
		font-size: 30px;
		}
	
	.pagina h2, .nieuws h2, .contact h2 {
		font-size: 28px;
		}
	
	.pagina .overonsfoto {
		padding: 0 90px;
		}
	
	.nieuws-tekst h3 {
		font-size: 20px;
		}
	
}

@media screen and (max-width:991px){

	.navbar-inverse .navbar-collapse > ul > li > a {
		padding: 4px 14px;
		font-size: 17px;
		}
	
	.header .logo img {
		max-width: 150px;
		}
	
	.carousel-caption {
		font-size: 14px;
		top: 0%;
		text-align: left;
		}
	
	.carousel-caption span {
		font-size: 16px;
		}
	
	.carousel-caption p {
		padding: 15px 30px;
		}
	
	.submenu {
		min-height: 35px;
		}
	
	.home h1 {
		font-size: 26px;
		}
		
	.home-team .inner .image {
		width: 150px;
		height: 150px;
		border: 4px solid #3c6392;
		}
	
	.pagina h1, .nieuws h1, .contact h1 {
		font-size: 26px;
		}
	
	.pagina h2, .nieuws h2, .contact h2 {
		font-size: 24px;
		}
	
	.pagina .overonsfoto {
		padding: 0;
		}
	
	.nieuws-tekst h3 {
		font-size: 17px;
		}
	
	
	
}

@media screen and (max-width:767px){
	
	header .top, header .top a {
		font-size: 14px;
		}
	
	header .top .justify-content-end {
		display: block;
		}
	
	header .top .mail {
		float: left;
		padding: 0 0 0 20px;
		}
	
	.header .logo {
		margin: 0;
		padding: 55px 0 10px;
		z-index: 10;
		}
	
	.home-team .inner .image {
		width: 125px;
		height: 125px;
		border: 3px solid #3c6392;
		}
	
	.header .logo .rabbit {
		max-width: 110px;
		margin-top: -40px;
		margin-left: -5px;
		}
	
	.header.affix .logo .rabbit {
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
		}
	
	.header .logo img {
		max-width: 100px;
		}
	
	.header .container::after {
		height: 97px;
		top: 40px;
		}
	
	.home-diensten {
		padding: 30px 0 0;
		}
	
	.home-diensten h2 {
		margin-bottom: 30px;
		font-size: 28px;
		}
	
	.home-diensten a {
		margin-bottom: 30px;
		}
	
	.footerbottom {
		font-size: 14px;
		}
	
	.home-support {
		padding: 30px 0 30px;
		}
	
	.home-support h2 {
		font-size: 28px;
		margin-top: 20px;
		}
	
	.home-team {
		padding: 30px 0 0px;
		font-size: 13px;
		}
	
	.home-team h2 {
		margin-bottom: 40px;
		font-size: 28px;
		}
	
	.home-team .inner h3 {
		font-size: 15px;
		}
	
	.footer h4 {
		margin-top: 30px;
		}
	
	.footerbottom .gemaaktdoor {
		float: left;
		}
	
	.gemaaktdoor {
		display: none;
		}
	
	.carousel-inner > .item > img, .carousel-inner > .item > a > img {
		width: 120%;
		margin-left: -10%;
		max-width: 120%;
		}
	
	.contact h2 {
		margin-top: 20px;
		margin-bottom: 10px;
		}
	
	.contact h3 {
		font-size: 20px;
		margin-top: 0;
		}
	
	hr {
		margin-top: 15px;
		margin-bottom: 15px;
		}
	
	.page-submenu:after {
		border-right: 0;
		}
	
	.page-submenu h2 {
		margin-bottom: 0;
		}
	
	.navbar {
		background-color: #fff;
		margin: 0 -15px;
		}
	
	.navbar-collapse {
		margin-top: 0;
		}

    .navbar-collapse > ul {
        display: block;
        margin-bottom: 0;
        float: none;
		-webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
		-moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
		box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
        }
    
    .navbar-collapse > ul > li {
        border-top: 1px solid #eee;
		float: none;
		margin-bottom: 0;
        }
    
    .navbar-collapse > ul > li:first-child {
        border-top: 0;
        }
    
	.navbar .navbar-collapse > ul > li > a {
		margin-bottom: 0;
		margin-left: 0;
		padding: 10px 20px;
		text-align: center;
		color: black;
		}
	
    .navbar-inverse .navbar-collapse > ul > li > a {
        margin-left: 0;
        font-size: 15px;
		padding: 4px 0;
		display: block;
        }
    
	.navbar .navbar-collapse > ul > li > ul {
		position: relative;
		visibility: visible;
		text-align: center;
		z-index: 10;
		box-shadow: none;
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		opacity: 1;
		}
	
	.navbar .navbar-collapse > ul > li > ul > li, .navbar .navbar-collapse > ul > li > ul > li:first-child {
		border-top: 1px solid #eee;
		}
	
	.navbar .navbar-collapse > ul > li > ul li a:hover, .navbar .navbar-collapse > ul > li > ul li a:focus {
		background-color: #fff;
		color: #666;
		}

.navbar .navbar-collapse > ul > .active > a,
.navbar .navbar-collapse > ul > .active > a:hover,
.navbar .navbar-collapse > ul > .active > a:focus {
    background-color: transparent;
    color: #00A2A3;
	border-bottom: 1px solid #FFF;
    }

	
    .navbar-inverse {
        text-align: center;
        }
    
    .navbar-toggle > div {
        float: left;
        }
    
	.sr-only-menu {
		padding: 0 5px 0 0;
		overflow: hidden;
		border: 0;
		display: inline-block;
		font-size: 17px;
		}
	
    #nav-icon {
        height: 17px;
        width: 20px;
        position: relative;
        margin: 0 auto;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
		display: inline-block;
        }
      
    #nav-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
		color: #3c6392;
		background-color: #3c6392;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        }
      
    #nav-icon span:nth-child(1) {
        top: 0px;
        }
      
    #nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
        top: 7px;
        }
      
    #nav-icon span:nth-child(4) {
        top: 14px;
        }
      
    #nav-icon.open span:nth-child(1) {
        top: 3px;
        width: 0%;
        left: 50%;
        }
      
    #nav-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        }
      
    #nav-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        }
      
    #nav-icon.open span:nth-child(4) {
        top: 3px;
        width: 0%;
        left: 50%;
        }
}

/* WooCommerce checkout layout fix */
.woocommerce-checkout .col2-set {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.woocommerce .contact strong {
width: auto;}

.woocommerce ul.order_details li strong {
    display: block;
    font-size: 1.4em;
    text-transform: none;
    line-height: 1.5;
    width: fit-content;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
  max-width: none;
  flex: 1 1 0;
}

/* Mobile */
@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    display: block;
  }

  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    width: 100%;
  }
}

/* Restore WooCommerce fields */
.woocommerce-checkout .form-row {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: 48%;
  float: left;
}

.woocommerce-checkout .form-row-last {
  float: right;
}

.woocommerce-checkout .form-row-wide {
  clear: both;
  width: 100%;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-container {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent tiny checkbox/radio issues */
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
  width: auto !important;
  height: auto;
}

/* Fix labels */
.woocommerce-checkout label {
  display: inline-block;
  margin-bottom: 6px;
}

/* Notes field */
.woocommerce-checkout textarea {
  min-height: 100px;
}