/*
---------------------------
ALGEMEEN
---------------------------
*/

#page-container {
    position: relative;
    z-index: 2;
    /* 	padding: 0 40px 0px 40px; */
    background: #fff;
}

@media (max-width: 1600px) {
    #page-container {
        margin: 0 0px 0px 0px;
    }
}

.section-wrapper {
    display: block;
    position: relative;
}

.row {
    max-width: 74em;
    z-index: 2;
}

.row.narrow {
    max-width: 70em
}

.row.wide {
    max-width: 80em
}

.row.wider {
    max-width: 92.5em
}


/* Section Up */

.section-up-small {
    margin-top: -40px;
    z-index: 100;
}

.section-up-medium {
    margin-top: -80px;
    z-index: 100;
}

.section-up-large {
    margin-top: -120px;
}

.max-width {
    max-width: 88em;
    margin: auto;
}

.header-placeholder {
    display: block;
    height: 170px;
}

@media (max-width: 1600px) {
    .row.wider {
        max-width: 82.5em
    }
}

@media (max-width: 1440px) {
    .row.wider {
        max-width: 78em
    }
}

@media (max-width: 1320px) {
    .row.wider {
        max-width: 90%
    }
}

@media (max-width: 1024px) {
    .row {
        max-width: 62rem
    }
    .row.wider {
        max-width: 96%
    }
    .row.narrow {
        max-width: 94%
    }
}

@media (max-width: 640px) {
    .section-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 440px) {
    .section-wrapper {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}

.section-shape {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 99;
}

.section-shape.top-right {
    top: -60px;
    right: 0;
    border-width: 0 0 100px 130px;
    border-color: transparent transparent #f7f5f4 transparent;
}

.up .section-shape.top-right {
    top: 0;
}


/* Primary */

.bg-primary .section-shape.top-right {
    border-color: transparent transparent #1a3d78 transparent;
}


/* Secondary */

.bg-secondary .section-shape.top-right {
    border-color: transparent transparent #1c93a7 transparent;
}


/* Dark */

.bg-dark .section-shape.top-right {
    border-color: transparent transparent #0d1626 transparent;
}


/* Light */

.bg-light .section-shape.top-right {
    border-color: transparent transparent #f7f5f4 transparent;
}


/* White */

.bg-white .section-shape.top-right {
    border-color: transparent transparent #ffffff transparent;
}

.section-shape.bottom-left {
    bottom: -60px;
    left: 0;
    border-width: 100px 130px 0 0;
    border-color: #f7f5f4 transparent transparent transparent;
}


/* Primary */

.bg-primary .section-shape.bottom-left {
    border-color: #1a3d78 transparent transparent transparent;
}


/* Secondary */

.bg-secondary .section-shape.bottom-left {
    border-color: #1c93a7 transparent transparent transparent;
}


/* Dark */

.bg-dark .section-shape.bottom-left {
    border-color: #0d1626 transparent transparent transparent;
}


/* Light */

.bg-light .section-shape.bottom-left {
    border-color: #f7f5f4 transparent transparent transparent;
}


/* White */

.bg-white .section-shape.bottom-left {
    border-color: #ffffff transparent transparent transparent;
}

@media (max-width: 1024px) {
    .section-shape.top-right {
        top: -40px;
        border-width: 0 0 60px 90px;
    }
    .section-shape.bottom-left {
        bottom: -40px;
        border-width: 60px 90px 0 0;
    }
    .up .section-shape.top-right {
        top: 30px;
    }
}


/*
---------------------------
TOPBAR 
---------------------------
*/

#topbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    z-index: 999 !important;
    background: #fff;
    box-shadow: 0px 0px 23px rgba(0, 0, 0, 0.17);
    -webkit-transition: transform 0.6s ease-in-out;
    -moz-transition: transform 0.6s ease-in-out;
    -ms-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    will-change: height;
}

#topbar:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    will-change: opacity;
}

#topbar.small:before {
    opacity: 1;
}


/* On scroll */

#topbar.small {
    transform: translateX(0%) translateY(-120px);
}

#topbar .inner {
    display: block;
    max-width: 74em;
    height: 100%;
    position: relative;
    margin: auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#topbar.small .inner {
    /* 	max-width: 100%; */
}

@media (max-width: 1280px) {
    #topbar .inner {
        max-width: 74em;
    }
}

@media (max-width: 1024px) {
    #topbar .inner {
        max-width: 60em;
    }
}

@media (max-width: 970px) {
    #topbar .inner {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    #topbar {}
    #topbar .inner {
        max-width: 100%;
    }
}

@media (max-width: 440px) {
    #topbar {}
    #topbar.small {}
}


/* Logo */

.logo {
    width: 340px;
    height: 64px;
    display: block;
    position: absolute;
    bottom: 62px;
    left: .5rem;
    margin-left: 0px;
    text-align: center;
    z-index: 998 !important;
    background: url('https://www.kremersand.com/themes/kremer/images/logo_kremer.png') no-repeat center;
    background-size: contain;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*
	.logo-icon {
		position: absolute;
		bottom:0;
		left:0;
		visibility: hidden;
		opacity: 0;
		width: 50px;
		height: 50px;
		background:  url('../images/icon.svg') no-repeat center;
		background-size: 40px auto;
		-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition:all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	}
	.small .logo-icon  {
		visibility: visible;
		opacity: 1;
	}
*/

@media (max-width: 1024px) {
    .logo {}
}

@media (max-width: 970px) {
    .logo {
        left: 1rem;
        width: 280px;
        height: 80px;
    }
}

@media (max-width: 320px) {
    .logo {
        width: 210px;
    }
}

.topbar-sitelinks {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: 32px;
    text-align: right;
    z-index: 98;
}

.topbar-sitelinks ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-sitelinks ul.first {
    margin-right: 20px;
}

.topbar-sitelinks ul li {
    display: inline-block;
    padding: 4px 10px;
    margin: 0;
}

.topbar-sitelinks ul li a {
    float: left;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 24px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.50);
    text-transform: uppercase;
}

.topbar-sitelinks ul li a:hover {
    color: #fff;
}


/* Social */

.topbar-sitelinks .social a {
    position: relative;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.50);
    background: transparent !important;
}

.topbar-sitelinks .social a:hover {
    color: #fff !important;
}

.topbar-sitelinks .social {
    padding: 4px 0px;
}

.topbar-sitelinks .social a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1rem;
}

.topbar-extra {
    position: absolute;
    bottom: 76px;
    right: 0;
}

.phone {
    float: left;
    font-size: 20px;
    font-weight: 700;
    padding: 0.3rem;
    margin-right: 20px;
    color: #1a3d78;
}

.phone i {
    position: relative;
    top: 4px;
    font-size: 24px;
}


/* Searchbox */

.searchfield {
    float: left;
    width: 280px;
    position: relative;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.searchfield .icon-search {
    position: absolute;
    top: 0;
    left: 10px;
    height: 40px;
    line-height: 40px;
    color: #1c93a7;
    font-size: 1.2rem;
}

.searchfield .search-input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(174, 172, 170, 0.46);
    background-color: rgba(255, 255, 255, 0.66);
    border-radius: 0px;
    padding-left: 2rem;
    font-size: 1rem;
    box-shadow: none !important;
    margin: 0;
}

.searchfield .search-input:focus {
    border-color: rgba(174, 172, 170, 1);
}

.searchfield .search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0 1rem;
    height: 100%;
    font-size: 1.2rem;
    opacity: 0;
    color: #fff;
    background-color: #1c93a7;
    border-radius: 0 0px 0px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.searchfield .search-button:hover {}

.searchfield .search-input:focus+.search-button {
    opacity: 1;
}


/* Language button */

a.language-button {
    float: right;
    margin-left: 20px;
    height: 40px;
    width: 50px;
    line-height: 40px;
    background: none;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    background-position: center;
    border: 1px solid rgba(174, 172, 170, 0.46);
    z-index: 998;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a.language-button:hover {
    border-color: #1a3d78;
}

a.language-button img {}

a.language-button.nl {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAAvCAYAAABe1bwWAAABuklEQVRoQ+2bTUsCURSG32MtahMEmquW/gdr1cpUaFFobZI+NFq3i/5AtmodVAi6iamEFmF/oPwPI7S1VKJFCUFzwgnBhYPcWV7eWQ3M3AvvM88588Edwcj2ni+mI4gcApoURRwiMnrcun1VVcEbIE0P3sWCc9UYZvSDv67szszFpiuAbFkX3iiQ3nzjc2/Rcfo+mG6uVBWRbaM5LD1ZVWvR28uC9HL7KcjUk6U5w8XS31Xp5kp3IrIRbgY7Rym0Lr38QQdA1M6I4VIptD0Ao+GGWz3KI5iA60swBGNW+jSGxtAYMwI0xowXewyNMTTmq//DJ98xzIRgxptEMEE9hsbQGKPuy1JiKRkJAxpDY2iMGQEaY8aLPYbG0BgzAjTGjJdkz1r87DDuswPBBLxEEgzBGDUZ9piguxJLiaXEUjIiwFIyw8XmG2yM2wGEa/BGAKlqTzLl1r0I1s1Es/tsVdQlc+qmJCJc5ztyrT3VtL8yPFt2q+DK8H80qrXH40TBB7N09Dw7H49VILJpd5FMSqfOR7uz83K+/P8vwXDLlN01AYqAJCGIT5rGiuM6+PtEm56H68ZJ4mGY6Q/sgs6OzrF6dQAAAABJRU5ErkJggg==');
}

a.language-button.du {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAAvCAYAAABe1bwWAAABsUlEQVRoQ+2bTUsCURSG3zNttDaBgav+h62aJhhtoIVptkkiIvpNbSLQTYUJLSIVrJ3+jyASEVyk7uaEQ4KBQ9xZ3t5ZDcy9A+8zzz3zwRnB0ubmiwXHca4gkoNqVkRk+bht+6qqEBlAtR+G4fVbq/myyBgFd103tZbO3ELkxLbwRnlU76bjj/NerzeLwHhBqSaQU6OTWDpYofXuc6Mq3kHZF0HL0pyJYqkiL15QagjkKNEZLJ2kiqZ4QXkowJalGRPFUuBT9oOyJppt96SQYGIuMMEQjNnapzE0hsaYEaAxZrxYY2iMoTGj40s++a5gJgSz2iSCiasxNIbGGFVfLiUuJSNhQGNoDI0xI0BjzHixxtAYGmNGgMaY8WKNiTNm2vH4PWbV9xiCiXm7JhiCMaq+QmNoDI0xIsDbtRku1pg4YyadvaFA2IO3BEiBkUza3qMIimai2T066tr8anu+wz7fX1c6hBaizvBp26tBwM7wOQxFfd3vViMw7/c76cxmav4vQcXuRfJHOsXDaDw72678/EuwGD5p7R7CcS4AyQmQ/Q+QFBgA2ofiZsN/fVpk/gaSkrL94ouaMgAAAABJRU5ErkJggg==');
}

a.language-button.uk {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAAvCAYAAABe1bwWAAAJ+0lEQVRoQ+2b+VuNWxvHv8+e9y5NKhGiDCkadQ7hkKnEKSkN2hUNjnMdQ/6K90cOr/OiJJVKA9UhmY55ONIgGpApkiZF2mO7572enU3LlvauHedcV/unfbXWvte9Pute67mf9b2j0O+TU1jtl5ZX+4tSoZpHA+MoClT/dkN9L8kKVZt6E7r5qyYtcg6q2/0icgw1NGGHpkFTQDOLjVuBq6Yd2BLlWaLpoJ740yUbBSZWvFTB6mVhnT7LsSetCpXVLSPiDGP0nwKG8cXBzgw7Ezwx8X4pJDlFxyTKtk2TcnOlajBtIfHpFEWJme8sa0uI4iNxsUOEpIxKvJcoDQ7onwCGx2NjQ5AT1s0WQXowDapnL9TzpGk6wzIvOYp6X3R2pSKn6AwtlxMA+IvnQ742EPty6nD99kuDwvneYObMskLiRleYX70E2cmzgKr30/woCnzfpb7UvpSy/I3LbdepjmRBWVVDAGCZjoFoYzhKuePxR2oF2jukBgH0vcCIhFzERrjAd0IPJAfToWoijwv2pAkQbo7CyUeqE5RveHbrOCtjy62x7nDpfAZJWi7o990EAK6nKxAZiuTiZzh76Sloenh8vgeYeZ4TsC3CCYJTxZBfuMrsmU+T4HAgXOeP5rne2JVcjgf1b15TvuHHPvZYutAOW9Y6gJVzHIqbd4jZU0IBRJHBeGDriN3JZXj1+v2Q6XxLMGYmfPwa44753DeQJGeit6OT8Jsz3R78eDGySzuR+2cdenqYbUX3EmCYX5ia8LEl2h0L+B2QJB9F75vPDDlOAy9OjIzrrThR/BAqlf7h863ArPhpChICHcA6lgfFzTJyoQV8CCOC8MR+DnYnlaGh8R3Z3j9i+rd4uY3Htg3OMDpzGvJzV4jQo7hcCIJXo9HlB3XoPX5OwhsslEYazDgrI2yP98Ds9ieQpOdpHw2uzmBHhyP1QiP+PPuYeRJpuawVMf17CIUcxIa7wG9iLyQHmMOqmTDAtpsI4eZoFNTKkJFfDYVCNRgTdftIgaEoCmv9piPKZzy+9DChxhhBFBOGKhM77D1UhpY2yYD+fhWM5ldOMyyRGOsGqxtXIC0qIR9vLBYE/svQsXgpdh+pwr3a1kHhjAQYu4mm2BnvgSn1dyHNLsTn6QdvgRdUIUE4UPAYf117PqiPOoFhrHC5LIQHOiHEzRjy5HT0PCaNs8ZZQZQgxvlWPg5l3kX3VxJDQ4LhcFgIXzsLoR4mkCVloKf+KZlyjDWHUfwGXJOZY39aBd6+I/O1gQjpDEZjYMokUyQyK/OgAtKcItByBZkcLfGGLGAN9mXX4cadxi+OaygwjtPHYmesG6xvX4e0oATo6SF9WfETuv1W4b+Z1bhd0TRolPTvoDcY5seavRztY4Oew5lQ3q8jV8nUBKLYCPzNGoc/UsvR0Skj2ocLRijgICZ0DlbbU5DsT4eqkZw0e4INRJvFKHnJQkp2FaTSfsB0xDMkMBrbNtZG2Bb34fRnEsNu8jDjebmBjghB0qnnOHf5U2I4HDCeLjbYLp6NMefPQlZykUzU2CwIA/zQ5r0Yuw9XoPpBm44YtLsNC4zGnDpfCLAHKzsPir/LyXxAJIRIHIxamxn4PakMTS3dQ3oqmRjzkBDlhiVj3qM7KQO9bW+IcTgOduAniHH8bjcyT9RAqez3/jMEPAYBw4w7aIY5azq4sZHIuNqKBLGr2lVd72P+s/cWfg2eDk5+IRRXb5HgeVwIwwLR4OihzqmeNuiXUxns8B0M/o8efe8kwmLtdxKKxySGayAMWqUXGMW12+hOPQb6XRcxPNd5JjibIpF+5TUKTj9Cb6/+WfiAYOgvpX2Dzd5A7bpGjIGG08sMNQrmy7yo9vUJhos/vdbkn915FMwA6zMKZhSMflt3NGJGI2Y0YvQjMBox+vEaTfAGipjRzHeAzHcglUC/wOvrPXWymfp2z66uHNJjhaAVpO7NWzQPPesCYWY7Vq+XyIf1bZh0rxSy/JOkTUZOXbYIUn9/7BnCLd3X5miQawfmPlgtkLuNgfxgmvZ9sKUFjBLEuNxljIPplchJWqsXmNXiXAStmgHxIisoDh1FT+0jYk4sczOI4jfghtIC+49UoFPHe90RBeM80xI7Ng2gIFAUBL5L0LXCF3sy7qOs6rXal6He4I23NsKOzXMxq+kBJBn5oCWkls6b54nesGDs11EJGBEwHzWnSXSf5vSqb9KaD9t2PERbonDqCY0jOfcglX26dx0qGMY2RQErl0xFvL8dqKw8KEoriXEpIxFE0etxf6w99iSXo7mV1OF1PSKGtJXUKmWkM4xKtFVKMAJ5oC9aflyIXSmVqHvUruXLcMBojJmbCbB1kwe8VM2QpGSh9y0psXJnO4K9cQPSLjWhsKT+i2qjwSJGo2svFL7tu3dt7yBsc6ZNhSBBjJzyd8guqP0gkGsPbwgwGqvec23xW7gjBEUnIb90g5SS+TwIQwPwbIa7+trz+cu3ugYMdI4YnwWTsSVoGth5J6C4XkqGL58PYVgAnk1308kBQ4JhHDEWcREX6YpllnJImAVrJtXQvovyaORVdCGroGbABes/qUHBWFuKsC3OE65dz/vuXbs+q51xcQI7JgLpF5tQUPJIp5A1NBjNhFycrJEY4wKzSxcgO32BlJI/SCst8xfh98N3UfPw69LKgGAYUW3NCgdsWm4LVXo2lJXVBjvkRgoM4yBTWycOdsbaWYK+2rrnZJmcRowrfkEhNZt8KAwaMZNtTbAj3hMOT+9BmnUCtIzUe3nzmcdiCJIKH+PclWc671tNx5EEoxlj2lRzJMa6w7bqNmT5p0Ar+yWbTGLIyLe+q7A3sxqlldryLRExHDYL6wMcEe5lBnnKUfQ8ePzFROqm0gL/G0Yi9S3AMI6z2RSCV8/EBm9LKA5loKeunpyPBZMYRuKazAwH0isJwV9dgwdQljMdLJAY5w6bspuQHi/WFsiXLYLM3x97s2twq+yV3lHS/wffCoxmzAk2xkiM98TMxjpIjuaDlpJaOs+7r0Rkf0E9Ll5vAA20UwHRucdjQl2C1kxjQ5qUAVUDWaHAtrGG6JconHnFQUpWFSTS4df9fmswmsTQz8cesavsQGXmQHHnLnlmGjNFRaGoMrVjEsMTVGND+0qzv86fkRVf0BLIBWtWoGORD3an3tWpIEjXMPoeYDS+jTUX4rdYD8yVv4IkNRu9bz9TN12cwBKH+WlVhqv35pRJ6hKy4/clyDxeA4VStxKyfwMYjY8LfpiIraGO4BUUQn755kfXP1aGM395sX69UESbplJ8Xqgw5Ge8nOOFXUllehcd/pvAqBNDIx4SIl3hYyH9kBi25UqozpiP/0ugmVD3k8afj95oiSsofjhP1Ytxuk5U337fcyt97isNutndyfrW9o1zUmwnWxVp2v8P6NTf2cMY2HkAAAAASUVORK5CYII=');
}

@media (max-width: 970px) {
    .phone {
        float: left;
        font-size: 17px;
        font-weight: 700;
        padding: 0.2rem;
        margin-right: 20px;
        color: #1a3d78;
    }
    .phone i {
        position: relative;
        top: 4px;
        font-size: 24px;
    }
    .searchfield {
        float: left;
        width: 180px;
    }
    a.language-button {
        margin-right: 20px;
        margin-left: 10px;
    }
}

@media (max-width: 640px) {
    .topbar-extra {
        width: 100%;
        left: 0;
        bottom: 0;
        border-top: 1px solid #e7e3e3;
        padding: 0.4rem 0.5rem;
    }
    .searchfield {
        float: left;
        width: calc(100% - 120px);
    }
    a.language-button {
        float: right;
        margin-left: 10px;
        margin-right: 10px;
    }
    .phone {
        float: right;
        margin-right: 0px;
        height: 40px;
        width: 50px;
        line-height: 40px;
        border: 1px solid rgba(174, 172, 170, 0.46);
        text-align: center;
    }
    .phone i {
        position: relative;
        top: 0px;
    }
    .phone span {
        display: none;
    }
}


/*
---------------------------
SECTION TITLES
---------------------------
*/

.section-title-wrapper {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
}

.section-title-wrapper.text-center {
    padding-left: 0rem;
}

@media (max-width: 970px) {
    .section-c2a .section-title-wrapper {
        padding-left: 1rem;
    }
}

@media (max-width: 440px) {
    .section-title-wrapper {
        padding-left: 0rem;
        padding-bottom: 1rem;
    }
    .section-c2a .section-title-wrapper {
        padding-left: 0rem;
    }
}

.section-icon {
    display: inline-block;
    width: 48px;
    height: 46px;
    line-height: 52px;
    border-radius: 5px;
    font-size: 2.1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #a19e9c;
    letter-spacing: 0px;
}

.section-title-wrapper.text-center .section-intro {
    padding-left: 0px;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .section-intro {
    color: #ffffff !important;
}

.section-title {
    font-size: 1.6rem;
    display: block;
    text-transform: uppercase;
}

.section-title.small {
    font-size: 32px;
}

.section-title.medium {
    font-size: 44px;
}

.section-title.large {
    font-size: 56px;
    line-height: 1.2;
}

.section-title em {
    font-style: normal;
    color: #0060a2;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .section-title {
    color: rgba(255, 255, 255, 1) !important;
}

.section-lead {
    display: block;
    padding-top: 1rem;
}

.section-lead p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #0e1727;
}

.section-lead.large p {
    font-size: 1.425rem;
    font-weight: 500;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .section-lead p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.section-more {
    float: right;
    margin-right: 1rem;
    background: #1a3d78;
    border: 0 !important;
}

.section-more:hover {
    background: #11284e;
}

.section-button {
    margin-top: 1rem;
}

.section-button span {
    display: inline-block;
    margin-right: 5px;
}

.section-button i {}

.section-footer {
    padding-top: 1rem;
}


/* Section Icon */

.bg-section-icon {
    position: absolute;
    bottom: -40px;
    left: calc(50% - 160px);
    width: 320px;
    height: 380px;
    margin-left: 27rem;
    /* 	transform: translateX(27rem) translateY(0%); */
    background: url('../images/icon.svg') no-repeat bottom center;
    background-size: contain;
    z-index: 6;
}

@media (max-width: 970px) {
    .section-title {
        font-size: 1.6rem;
    }
    .section-title.medium {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .section-title.small {
        font-size: 26px;
    }
    .section-title.medium {
        font-size: 1.6rem;
    }
    .section-title.large {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    .section-lead p {
        font-size: 1rem;
    }
}


/* Section Icons */

.bg-icons-right,
.bg-icons-light-right,
.bg-icons-left,
.bg-icons-light-left {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 660px;
    height: 100px;
    background: url('https://www.kremersand.com/themes/kremer/images/icon-mania-right.gif') no-repeat bottom right;
    background-size: contain;
    z-index: 1;
}

.bg-icons-light-right,
.bg-icons-light-left {
    width: 660px;
    height: 100px;
    background-image: url('https://www.kremersand.com/themes/kremer/images/icon-mania-light-right.gif');
}

.bg-icons-left,
.bg-icons-light-left {
    right: auto;
    left: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media (max-width: 1440px) {
    .bg-icons-right,
    .bg-icons-light-right,
    .bg-icons-left,
    .bg-icons-light-left {
        width: 660px;
        height: 90px;
    }
}

@media (max-width: 767px) {
    .bg-icons-right,
    .bg-icons-light-right,
    .bg-icons-left,
    .bg-icons-light-left {
        width: 70%;
        height: 80px;
    }
}


/* Section background image */

.bg-section-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 	background-position: 50% 50%; */
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.bg-section-image.bg-repeat {
    background-position: top left;
    background-size: 20% auto;
    background-repeat: repeat;
    z-index: 1;
}


/* Shades */

.shade-left:after,
.shade-right:after,
.shade-left-right:after {
    position: absolute;
    top: 0;
    bottom: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    opacity: 0.8;
}

.shade-right:after {
    right: 0;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=1);
}

.shade-left:after {
    left: 0;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=1);
}

.shade-left-right:after {
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);
}


/*
---------------------------
INTRODUCTION
---------------------------
*/

.introduction-title-wrapper {
    position: relative;
}

.introduction-label {
    font-weight: 700;
}

.introduction-title {
    line-height: 1.1;
    position: relative;
    font-size: 220%;
}

.introduction-title span {
    display: inline-block;
}

.introduction-text {
    padding-top: 0.5rem;
}

.introduction-text p {
    font-size: 1.3rem;
}

.introduction-button {
    margin-top: 10px;
}

.introduction-link i {
    margin-left: 5px;
}

.introduction a img.portrait {
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .introduction-title-wrapper {
        padding-left: 1.5rem;
    }
    .introduction-title {
        font-size: 2rem;
    }
    .introduction-text {
        padding-right: 2rem;
    }
    .introduction-text p {
        font-size: 0.96rem;
        line-0height: 1.6;
    }
}

@media (max-width: 640px) {
    .introduction-title-wrapper {
        padding: 1rem;
    }
    .introduction-title {
        font-size: 1.8rem;
    }
    .introduction-text {
        padding: 1rem;
    }
}


/*
---------------------------
CALL TO ACTION
---------------------------
*/

.c2a-wrapper.text-right {
    text-align: left !important
}

.c2a-wrapper {
    padding: 0 4rem 0 3rem;
}

.c2a-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 1rem;
    position: relative;
    padding-left: 2px;
}

[class*=" bg-"]:not(.bg-white):not(.bg-lighter):not(.bg-secondary) .c2a-label {
    color: rgba(255, 255, 255, 1) !important;
}

.c2a-label:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    content: '';
    height: 120px;
    width: 1px;
    background: #eb6209;
    transform: translateX(-50%) translateY(-30%);
}

.float-left .c2a-label:before,
.float-right .c2a-label:before {
    display: none;
}

.c2a-title {
    margin-bottom: 1.4rem;
    line-height: 1.2;
}

.c2a-title.large {
    font-size: 3.2rem;
    line-height: 1.1;
    max-width: 80%;
}

.c2a-title.medium {
    font-size: 2.4rem;
    line-height: 1.2;
}

.c2a-title span {
    display: inline-block;
}

.c2a-text {
    padding-top: 1rem;
    padding-left: 0rem;
}

.c2a-text p {
    font-size: 1rem;
    line-height: 1.7;
}

[class*=" bg-"]:not(.bg-white):not(.bg-lighter):not(.bg-secondary) .c2a-text p {
    color: rgba(255, 255, 255, 1) !important;
}

.c2a-button {
    margin-top: 1rem;
}

.actionbar .c2a-button {}


/*
-----------------------------
Actionbar
-----------------------------
*/

.actione {
    margin: 0 1rem;
}

.actionbar {
    padding: 1.6rem 2rem 1.7rem;
    text-align: center;
    position: relative;
}

.actionbar:before {
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    background: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 4;
}

.actionbar .actionbar-title {
    position: relative;
    top: 5px;
    display: inline-block;
    font-size: 1.8rem;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .actionbar .actionbar-title {
    color: rgba(255, 255, 255, 1) !important;
}

.actionbar .actionbar-button {
    margin-left: 1rem;
}

@media (max-width: 1024px) {
    .actionbar .actionbar-button {
        margin-top: 1rem;
        margin-left: 0rem;
    }
}


/*
---------------------------
IMAGE BLOCKS
---------------------------
*/


/*
-----------------------------
Actionbar
-----------------------------
*/


/*
---------------------------
INTRODUCTION
---------------------------
*/


/*
---------------------------
USP BOX
---------------------------
*/

.usp-box {
    padding: 1rem 1rem 1rem 1rem;
    margin-bottom: 2rem;
}

.usp-icon {
    width: 100%;
    min-height: 160px;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.usp-icon.icon-small {
    font-size: 1.8rem;
}

.usp-icon.icon-medium {
    font-size: 3.3rem;
}

.usp-icon.icon-large {
    font-size: 6.2rem;
}

.usp-icon img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
}

.usp-icon i {
    position: relative;
    top: 5px;
}

.usp-section {
    padding-top: 0.3rem;
}

.usp-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usp-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .usp-icon.icon-small {
        font-size: 1.4rem;
    }
    .usp-icon.icon-medium {
        font-size: 2.8rem;
    }
    .usp-icon.icon-large {
        font-size: 5.4rem;
    }
}

@media (max-width: 970px) {
    .usp-icon.icon-small {
        font-size: 1.2rem;
    }
    .usp-icon.icon-medium {
        font-size: 2.2rem;
    }
    .usp-icon.icon-large {
        font-size: 4.6rem;
    }
}

@media (max-width: 400px) {
    .usp-box {
        padding-bottom: 1rem;
    }
    .usp-icon {
        font-size: 3.2rem;
        margin-left: 0.6rem;
    }
}


/*
---------------------------
BRANDS
---------------------------
*/

.brands {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

.brands .brands-item {
    padding: 1rem 0.5rem;
}

.brands .brands-item img {
    height: 66px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.4
}

.brands .brands-item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.detail-brands {
    display: block;
}

.detail-brands .detail-brands-item {
    float: left;
    width: 160px;
    height: 80px;
    padding: 0;
}

.cert_kiwaISO9001,
.cert_kiwaK76752,
.cert_bmc {
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cert_kiwaISO9001 {
    background-image: url('../images/kiwaISO9001.jpg');
}

.cert_kiwaK76752 {
    background-image: url('../images/kiwaK76752.jpg');
}

.cert_bmc {
    background-image: url('https://www.kremersand.com/themes/kremer/images/bmc.jpg');
}

@media (max-width: 970px) {
    .brands .brands-item {
        padding: 1rem 1.3rem;
    }
}

@media (max-width: 640px) {
    .brands {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }
    .brands .brands-item {
        width: 33% !important;
        padding: .6rem 0.5rem;
        align-items: none;
    }
}


/*
---------------------------
TEXT BOX
---------------------------
*/

.textbox {
    padding-top: 0px;
    border-radius: 0px;
    position: relative;
    margin-bottom: 30px;
    min-height: 100px;
}

.textbox-image {
    overflow: hidden;
    position: relative;
    display: block;
}

.textbox-image a {
    display: block;
}

a.textbox-image,
.textbox-image img {
    border-radius: 0px;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.textbox-image:hover img,
.textbox-image a:hover img {
    opacity: 0.9;
}

.textbox-image-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    display: none;
}

.textbox-section {
    display: block;
    padding: 1rem 1.5rem;
}

.textbox-section.with-button {
    padding-bottom: 3rem;
}

.textbox.team .textbox-section {
    padding: 15px 0rem;
}

.textbox-section .textbox-label {
    font-size: 1.1rem;
    display: block;
    position: relative;
    margin-left: 1px;
    margin-bottom: 5px;
}

.textbox-section .textbox-title {
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700;
}

.textbox-section .textbox-title.title-small {
    font-size: 1.1rem;
}

.textbox-section .textbox-title.title-medium {
    font-size: 1.4rem !important;
}

.textbox-section .textbox-title a {
    color: #0060a2;
    position: relative;
}

.textbox-section p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.textbox-section.bg-white .textbox-intro p {
    color: #6e6b69 !important;
}

.textbox-section .textbox-date {
    position: relative;
    top: -3px;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 0.86rem;
    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 700;
}

.textbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.textbox-footer .textbox-button {
    width: 100%;
    border: 0 !important;
    background: rgba(0, 0, 0, 0.08) !important;
}

.textbox-footer .textbox-button:hover {
    background-color: rgba(0, 0, 0, 0.14) !important;
}


/* Social */

.textbox-social {
    display: block;
    padding-top: 1rem;
}

.textbox-social ul li {
    display: inline-block;
}

.textbox-social ul li a {
    float: left;
    position: relative;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 0px;
    background-color: #6e6e6e;
}

.textbox-social ul li a i {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

.twitter,
.twitter:hover {
    background-color: #658bca !important;
}

.facebook,
.facebook:hover {
    background-color: #44569c !important;
}

.instagram,
.instagram:hover {
    background: rgb(243, 165, 88);
    background: -moz-linear-gradient(45deg, rgba(243, 165, 88, 1) 0%, rgba(187, 46, 123, 1) 55%, rgba(127, 70, 174, 1) 100%) !important;
    background: -webkit-linear-gradient(45deg, rgba(243, 165, 88, 1) 0%, rgba(187, 46, 123, 1) 55%, rgba(127, 70, 174, 1) 100%) !important;
    background: linear-gradient(45deg, rgba(243, 165, 88, 1) 0%, rgba(187, 46, 123, 1) 55%, rgba(127, 70, 174, 1) 100%) !important;
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f3a558', endColorstr='#7f46ae', GradientType=1);
}

.linkedin,
.linkedin:hover {
    background-color: #2f78b9 !important;
}

.googleplus,
.googleplus:hover {
    background-color: #cf4836 !important;
}

.youtube,
.youtube:hover {
    background-color: #c8312e !important;
}

@media (max-width: 1024px) {
    .textbox-section .textbox-title {
        font-size: 1rem;
    }
    .textbox-section p {
        font-size: 0.96rem;
        line-height: 1.7;
    }
}

@media (max-width: 970px) {
    .textbox-section .textbox-title {
        font-size: 1rem !important;
    }
    .textbox-section {
        padding: 10px 0.7rem !important;
    }
    .text-center .textbox-section {
        padding: 10px 0.5rem !important;
    }
    .textbox-section.with-button {
        padding-bottom: 4rem !important;
    }
    .textbox-section p {
        font-size: 0.86rem;
        line-height: 1.7;
    }
    .textbox-footer .textbox-button {
        padding-left: 0.7rem;
    }
}

@media (max-width: 640px) {
    .textbox-section .textbox-title.title-medium {
        font-size: 1.1rem !important;
    }
}

.text.button:hover {}


/* Centered */

.text-center .textbox-section {
    padding: 1rem 1.5rem;
}


/* List */

.textbox-list li a {
    padding-left: 0;
    font-weight: 400;
    display: block;
    padding: 0.3375em 0em 0.3375em 1.3rem;
    font-size: 0.96rem !important;
    letter-spacing: 0px;
    position: relative;
    line-height: 1.1;
}

.textbox-list ul li a:hover {}


/*
---------------------------
SECTION TABS (vertical)
---------------------------
*/

.tabs {
    position: relative;
    margin-left: -1.4rem;
    background: transparent;
    border: 0;
    z-index: 89;
}

.tabs-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tabs-title>a {
    color: #fff;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-left: 3.5rem;
}

.tabs-title>a:hover {
    color: #fff;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.tabs-title>a:before {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateX(0%) translateY(-50%);
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1c93a7;
    content: "\e409";
    font-size: 2rem;
}

.tabs-title>a:focus,
.tabs-title>a[aria-selected=true] {
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    color: #0e1727;
    font-weight: 700;
}

.tabs-title>a[aria-selected=true]:after {
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 58px 86px 0 0;
    border-color: #fff transparent transparent transparent;
}

.section-tabs .tabs-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    bordeR: 0;
}

.tabs-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 88;
}

.tabs-panel-caption {
    position: absolute;
    bottom: 2rem;
    right: 5rem;
    padding: 2rem;
    display: block;
    width: 400px;
    z-index: 88;
}

.tabs-panel-caption-title {
    color: #fff;
    font-size: 1.4rem;
}


/* Section background image */

.bg-tabs-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 768px) {
    .tabs-panel-caption {
        position: absolute;
        bottom: 2rem;
        right: 1rem;
        padding: 1rem;
        display: block;
        width: 340px;
    }
}

@media (max-width: 640px) {
    .bg-tabs-image {
        display: none;
    }
    .section-tabs .tabs-content {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        border: 0;
    }
    .tabs-panel {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        z-index: 88;
    }
    .section-tabs .accordion .accordion-content {
        padding-top: 1rem;
        background: rgba(0, 0, 0, 0.15) !important;
        border: 0px solid #e6e6e6;
    }
    .section-tabs .accordion-title {
        border: 0;
        background: transparent;
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .section-tabs .is-active .accordion-title {
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
        color: #0e1727 !important;
        font-weight: 700;
        background: #fff !important;
    }
    .section-tabs .accordion-title:hover {}
    .section-tabs :last-child:not(.is-active)>.accordion-title {
        border: 0;
    }
    .section-tabs .accordion-title:before {
        color: #fff;
    }
    .section-tabs .is-active .accordion-title:before {
        color: #0e1727;
    }
    .section-tabs .accordion .accordion-content .button {
        padding-right: 2.5rem !important;
    }
    .tabs-panel-caption {
        right: auto;
        padding: 1rem 0rem;
        width: auto;
        display: block;
        position: relative;
        top: 0px;
    }
    .tabs-panel-caption-title {
        display: none;
    }
    .tabs-title>a[aria-selected=true]:after {
        display: none;
    }
}


/*
---------------------------
TEXT WRAPPER
---------------------------
*/

#page-content {
    padding-top: 2rem;
}

#content {
    padding: 0 3rem 0 1rem;
}

@media (max-width: 970px) {
    #content {
        padding: 0 1rem 0 1rem;
    }
}

@media (max-width: 400px) {
    #content {
        padding: 0 0.4rem 0 0.4rem;
    }
}

.text-wrapper {
    position: relative;
}

.large-5 .text-wrapper {
    padding-top: 2rem;
    padding-left: 1.5rem;
}

.text-wrapper-intro {
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #a19e9c;
}

.text-wrapper-title {
    font-size: 28px;
    line-height: 1.1;
    text-transform: uppercase !important;
}

.text-wrapper-title.small {
    font-size: 1.1rem;
}

.text-wrapper-title.medium {
    font-size: 40px;
}

.text-wrapper-title.huge {
    font-size: 48px;
}

.text-wrapper-title.sub {
    font-size: 1.8rem !important;
}

.text-wrapper-subtitle {
    font-size: 1.2rem;
}

.text-wrapper-lead {
    padding-top: 10px;
}

.text-wrapper-lead p {
    font-size: 1.125rem;
    font-weight: 500;
}

.text-wrapper-text {
    padding-top: 20px;
}

.text-wrapper-text p {
    font-size: 1.125rem;
}

.modal-body .text-wrapper-content {
    padding-top: 1rem;
    padding-bottom: 2rem;
}


/* Quotyy */

.text-wrapper blockquote {
    float: right;
    max-width: 50%;
    padding-bottom: 0px;
    letter-spacing: 0;
    border-left: 0;
    padding-left: 0rem;
    margin-bottom: 20px;
    position: relative;
    font-style: none;
    margin: 0em 0 1.25rem;
    text-align: left;
    margin-left: 40px;
    padding: 0em 0rem 0 3rem;
    border-right: 0px solid #ddd;
    border-left: 0px solid #ddd;
}

.text-wrapper blockquote:before {
    position: absolute;
    top: -25px;
    left: 0;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMzIDI1IiBoZWlnaHQ9IjI1cHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAzMyAyNSIgd2lkdGg9IjMzcHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxnPjxwYXRoIGQ9Ik0xOC4wMDYsNi41MzhjMC0xLjk3MywwLjY2Mi0zLjU1NCwxLjk4OC00Ljc0M2MxLjMyNi0xLjE5LDIuOTc3LTEuNzg1LDQuOTQ3LTEuNzg1ICAgYzIuNTE3LDAsNC40ODgsMC43OTksNS45MTYsMi4zOTdDMzIuMjg1LDQuMDA0LDMzLDYuMTMsMzMsOC43ODJjMCwyLjcxOS0wLjQyNCw1LjAzMi0xLjI3NSw2LjkzNiAgIGMtMC44NSwxLjkwMy0xLjg2OSwzLjQ4My0zLjA2MSw0Ljc0M2MtMS4xODgsMS4yNTgtMi40MywyLjI0NC0zLjcyMywyLjk1OGMtMS4yOTEsMC43MTQtMi40MTMsMS4yMzktMy4zNjUsMS41ODFsLTMuMjY1LTUuNTA4ICAgYzEuMzYtMC41NDUsMi41MTctMS40MTIsMy40NjgtMi42MDJjMC45NTMtMS4xOSwxLjQ5Ni0yLjQ2NSwxLjYzMy0zLjgyNGMtMS4zNTksMC0yLjYwMi0wLjU5Ny0zLjcyNC0xLjc4NiAgIEMxOC41NjYsMTAuMDksMTguMDA2LDguNTA5LDE4LjAwNiw2LjUzOHogTTAuMzU5LDYuNTM4YzAtMS45NzMsMC42NjMtMy41NTQsMS45ODktNC43NDNDMy42NzQsMC42MDQsNS4zMjQsMC4wMSw3LjI5NSwwLjAxICAgYzIuNTE4LDAsNC40ODgsMC43OTksNS45MTYsMi4zOTdjMS40MjksMS41OTcsMi4xNDMsMy43MjMsMi4xNDMsNi4zNzVjMCwyLjcxOS0wLjQyNCw1LjAzMi0xLjI3NSw2LjkzNiAgIGMtMC44NSwxLjkwMy0xLjg2OSwzLjQ4My0zLjA2LDQuNzQzYy0xLjE4OCwxLjI1OC0yLjQzMSwyLjI0NC0zLjcyNCwyLjk1OEM2LjAwNCwyNC4xMzMsNC44ODMsMjQuNjU4LDMuOTMsMjVsLTMuMjY0LTUuNTA4ICAgYzEuMzYtMC41NDUsMi41MTYtMS40MTIsMy40NjctMi42MDJjMC45NTMtMS4xOSwxLjQ5Ny0yLjQ2NSwxLjYzMy0zLjgyNGMtMS4zNTksMC0yLjYwMi0wLjU5Ny0zLjcyMy0xLjc4NiAgIEMwLjkyLDEwLjA5LDAuMzU5LDguNTA5LDAuMzU5LDYuNTM4eiIgZmlsbD0iIzIzMUYyMCIvPjwvZz48L3N2Zz4=');
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .text-wrapper.contact {
        padding-right: 1rem;
    }
    .text-wrapper-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    .text-wrapper-title.title-small {
        font-size: 1.2rem;
    }
    .text-wrapper-title.medium {
        font-size: 30px;
    }
    .text-wrapper-title.title-huge {
        font-size: 36px;
    }
    .text-wrapper-title.sub {
        font-size: 1.6rem !important;
    }
    .text-wrapper blockquote {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
        padding-left: 0;
    }
}

.text-wrapper blockquote p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700 !important;
    color: #1a3d78;
}

.text-wrapper blockquote p strong {
    color: #888;
    font-size: 0.86rem;
    font-weight: 400;
    font-style: normal;
}


/* List */

.text-wrapper-content ul {
    list-style: none;
    margin: 0;
}

.text-wrapper-content ul li {
    color: #0e1727;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.26rem 1rem 0.26rem 2rem;
    position: relative;
}

.text-wrapper-content ul li:before {
    position: absolute;
    top: .6rem;
    left: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url('../images/check.svg') no-repeat left;
    background-size: contain;
}


/* Files */

ul.files li {
    color: #0e1727;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.46rem 1rem 0.46rem 0rem;
    position: relative;
}


/* checkList */

.text-wrapper-list {
    background: #fff;
    padding: 2rem 2.5rem 2rem 2rem;
}

.text-wrapper-list ul {
    list-style: none;
    margin: 0;
}

.text-wrapper-list ul li {
    color: #0e1727;
    font-size: 1.225rem;
    font-weight: 600;
    padding: 0.46rem 1rem 0.46rem 2.5rem;
    position: relative;
}

.text-wrapper-list ul li:before {
    position: absolute;
    top: .6rem;
    left: 0;
    content: '';
    width: 28px;
    height: 28px;
    background: url('../images/check.svg') no-repeat left;
    background-size: contain;
}

@media (max-width: 940px) {
    .text-wrapper-list ul li {
        font-size: 1rem;
    }
}


/* Accordion */

.accordion {
    margin-top: 1.5rem;
    background: none;
}

.accordion-title {
    font-size: 1rem;
    color: #1c93a7;
    font-weight: 600 !important;
    background: #fff;
}

.accordion-title:before {
    right: 1.2rem;
    font-weight: 400;
    font-size: 1.3rem;
    margin-top: -0.7rem;
    color: rgba(0, 0, 0, 0.28);
}

.is-active .accordion-title {
    color: #1c93a7;
}

.is-active .accordion-title:before {
    right: 1.2rem;
}

.accordion-title:focus,
.accordion-title:hover {
    color: #1c93a7;
    background-color: rgba(0, 0, 0, 0.04) !important;
}

.accordion .accordion-content {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    color: #1c93a7;
}

@media (max-width: 540px) {
    .accordion-title {
        padding: 0.7rem;
        padding-right: 2.5rem;
        font-size: 1rem;
        line-height: 1.1;
    }
    .accordion .accordion-content {
        padding: 1rem 0.7rem;
    }
    .accordion .accordion-content p {
        font-size: 0.96rem;
    }
}


/* Pages (onderliggende pagina's) */


/* Pagebox */

.pagebox {
    width: 100%;
    display: block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.09);
    margin: 0 0px;
    padding: 1rem 1rem;
    min-height: 60px;
    border-radius: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a.pagebox:hover {
    border-color: rgba(0, 0, 0, 0.3);
}

.pagebox .pagebox-image {
    position: relative;
    display: block;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pagebox .pagebox-image img {}

a.pagebox:hover .pagebox-image:after {
    opacity: 0.6;
}

.pagebox .pagebox-description {
    display: block;
    text-align: left !important;
    padding: 1rem 0;
    letter-spacing: 0px;
    width: 100%;
    position: relative;
}

.pagebox .pagebox-description .pagebox-date {
    font-size: 0.86rem;
    display: block;
    color: rgba(75, 75, 94, 0.65);
    font-size: 13px;
}

.pagebox .pagebox-description .pagebox-title {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.1;
    padding: 0em;
    margin: 0 0 5px 0px;
}

.pagebox .pagebox-description .pagebox-title small {
    display: block;
    line-height: 1.2;
}

.pagebox .pagebox-description p {
    display: block;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.pagebox .pagebox-button {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    font-size: 2rem;
    transform: translateX(0px) translateY(0%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.pagebox:hover .pagebox-button {
    transform: translateX(5px) translateY(0%);
}

@media (max-width: 500px) {
    .pagebox {
        padding: 1rem;
        min-height: 40px;
    }
    .pagebox .pagebox-description .pagebox-title {
        font-size: 1rem;
        padding-top: 0;
        margin: 0 0 5px 0px;
    }
    .pagebox .pagebox-description {
        padding-top: 0;
    }
    .pagebox .pagebox-description p {
        font-size: 0.86rem;
    }
}


/*
-------------------------------
 CAROUSEL (slick)
-------------------------------
*/

.objects-carousel .column {
    outline: 0;
}

.slick-slide {
    outline: 0 !important;
}

.slick-slider .slick-dots {
    bottom: -35px;
    opacity: 1;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.slick-slider:hover .slick-dots {
    opacity: 1;
}


/* Slick Arrows */

.slick-prev,
.slick-next {
    z-index: 99 !important;
}


/*
.slick-prev:before,
.slick-next:before {
	color: #000;
}
*/

.slick-prev {
    left: 0px;
}

.slick-prev:before {
    content: '◀';
}

.slick-next {
    right: 0px;
}

.slick-next:before {
    content: '▶';
}

.slick-slider .slick-arrow {
    background-color: rgba(0, 0, 0, 0.14);
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.slick-slider:hover .slick-arrow {
    opacity: 1;
}


/* Slick Dots */

.slick-dots li button {
    width: 10px;
    height: 11px;
    padding: 0px;
    margin: 0;
    border-radius: 0;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 5px;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    font-size: 0.76rem;
    color: rgba(0, 0, 0, 0.31);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.slick-dots li.slick-active button:hover:before {
    opacity: .2;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #34a8b9;
}


/* Objects overview */

.object {
    width: 100%;
    display: block;
    position: relative;
    border: 0px solid #fff;
    margin: 10px 0px 30px;
    padding: 1rem 1.5rem;
    min-height: 400px;
    border-radius: 0 !important;
    z-index: 99;
}

.object:hover {}

.large-up-3 .object {
    min-height: 200px;
}

@media (max-width: 768px) {
    .object {
        min-height: 200px;
    }
    .object:hover {
        transform: translateY(0px)
    }
}

.object:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.1);
    border-radius: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.medium-up-2 .object:after,
.large-up-2 .object:after {
    width: 104%;
    height: 104%;
    left: -2%;
}

.object:hover:after {
    opacity: 1
}

.object .object-image {
    position: relative;
    display: block;
    z-index: 2;
    border-radius: 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 200px;
    margin: 0px auto;
}

.object .object-image img {
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.object .object-image .object-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 1em 0em;
}

.object .object-image .object-image-title {
    display: block;
    font-size: 1.2em;
    line-height: 1.1;
    margin: 0 0 0 0px;
    z-index: 3;
}

.object .object-image .object-image-label {
    position: absolute;
    top: 0px;
    left: -10px;
    /* 	transform:translateX(-50%); */
    display: inline-block;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    padding: 0.6em 1em;
    margin-bottom: 0px;
    border-radius: 0px;
    text-transform: uppercase;
    z-index: 8;
}

@media (max-width: 1280px) {
    .object .object-image .object-image-label {
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .object .object-image .object-image-label {
        letter-spacing: 1px;
        width: 90%;
        text-align: center;
        padding: 0.6em 1em;
    }
}

@media (max-width: 440px) {
    .object .object-image .object-image-label {
        letter-spacing: 2px;
        width: 70%;
    }
}

.object .object-image .object-image-discount {
    position: absolute;
    top: 15px;
    right: -10px;
    bottom: auto;
    left: auto;
    border-radius: 1000px;
    width: 90px;
    height: 90px;
    -ms-transform: rotate(7deg);
    /* IE 9 */
    -webkit-transform: rotate(7deg);
    /* Chrome, Safari, Opera */
    transform: rotate(7deg);
    background: rgba(35, 34, 38, 0.81);
    z-index: 8;
    line-height: 1;
    text-align: center;
    padding-top: 15px;
    font-size: 0.8rem;
    font-style: italic;
}

.object .object-image .object-image-discount span {
    font-size: 1.6rem;
    display: inline-block;
    padding-bottom: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .object .object-image .object-image-discount {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
    }
    .object .object-image .object-image-discount span {
        font-size: 1.2rem;
    }
}


/*
.object .object-image .object-image-discount:after {
	position: absolute;
	top:-5px;
	left:-5px;
	right:-5px;
	bottom:-5px;
	border: 1px solid #001750;
	border-radius: 1000px;
	content:'';
}
*/

.object .object-image .object-image-discount.bg-white:after {
    border-color: #fff;
}

.object .object-section {
    display: block;
    text-align: left !important;
    padding: 1.5em 1.5rem 5em 0rem;
    letter-spacing: 0px;
    width: 100%;
}

.object .object-section.center {
    text-align: center !important;
    padding-left: 2.5em;
    padding-right: 2.5em;
    padding-bottom: 4.5em;
}

.object-label {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    padding-bottom: 5px;
    letter-spacing: 0px;
}

.object .object-section .object-title {
    position: relative;
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
    padding: 0em 0rem;
    margin: 0 0 0 0px;
    letter-spacing: 0px;
}

@media (max-width: 768px) {
    .object .object-section.center {
        text-align: center !important;
        padding-left: 1em;
        padding-right: 1em;
        padding-bottom: 4em;
    }
    .object .object-section .object-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {}

.object .object-section .object-lead {
    position: relative;
    margin-top: 10px;
    display: block;
}

.object .object-section .object-lead p {
    display: block;
    font-size: 0.96rem;
    color: #626468;
    margin: 0;
}

.object .object-footer .object-from-price {
    float: left;
    display: inline-block;
    width: 40%;
    line-height: 1.2;
}

.object .object-footer .object-from-price .price {
    text-decoration: line-through;
}

.object .object-footer .object-price .price,
.object .object-footer .object-link .link {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-left: 0px;
}

.object .object-footer .object-price .price span {
    font-size: 1rem;
}

.object .object-footer i {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    margin-left: 5px;
}

.object .object-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 0px solid #e5e5e2;
    padding: 1.5rem;
}

.object .object-button {
    position: absolute;
    top: 10px;
    right: 0%;
    width: 40%;
    display: block;
    font-size: 1.1rem !important;
    padding: 0.5em 1em 0.5em 0em !important;
    margin: 0em;
    letter-spacing: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: #fff !important;
    z-index: 44;
}

.object .object-button:hover {
    color: #fff !important;
    background: #58c0da;
    padding: 0.5em 1.2em 0.5em 1.2em !important;
}


/* Object Detail */

.object-detail {}

.object-detail-image {
    padding: 0rem 1.3rem 1rem;
    border: 1px solid #eee;
    margin-bottom: 60px;
}

.object-detail .object-detail-title {
    font-size: 1.6rem;
}

.object-detail .object-detail-section {
    padding: 0 3rem;
}

.object-detail .object-detail-section .object-detail-lead {
    height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    margin-top: 5px;
}

.object-detail .object-detail-section .object-detail-lead p {
    display: block;
    font-size: 1.1rem;
    color: #626468;
    margin: 0;
    text-overflow: ellipsis;
}

.object-detail .object-detail-price {}

.object-detail .object-detail-price .price-from {
    text-decoration: line-through;
}

.object-detail .object-detail-price .price {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-left: 0px;
}

.object-detail .object-detail-price .price span {
    font-size: 1rem;
}

.product-detail .product-slides {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0.5rem
}

.product-slides-nav {
    margin: 10px 0;
    border: 0px solid #eee;
    border-radius: 5px;
    padding: 0rem .5rem;
}

.product-slides-nav .slick-slide {
    border-radius: 3px;
    padding: 3px;
    border: 2px solid #fff;
}

.product-slides-nav .slick-current {
    border: 2px solid #1c93a7;
}


/*
---------------------------
FILTERS (Left Side)
---------------------------
*/

.mobile-filters-button {
    display: none;
    font-size: 0.86rem;
    margin-top: 0;
    padding-left: 1.5rem;
    margin-bottom: 10px;
    border-radius: 5px !important;
    z-index: 8;
    position: relative;
}

.mobile-filters-button i {
    font-size: 1.2rem;
}

.filter-title-wrapper {
    padding-left: 0rem;
    padding-bottom: 1rem;
}

.filter-title {
    font-size: 1.4rem;
    display: block;
    text-transform: uppercase;
}

.filters-wrapper .accordion {
    margin-top: .8rem;
}

.filters-wrapper .accordion-item {}

.filters-wrapper .accordion-title {
    font-size: 1rem;
    color: #000;
    font-weight: 600 !important;
    background: #fff;
}

.filters-wrapper .accordion-title:before {
    right: 1.2rem;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: -0.7rem;
    color: rgba(0, 0, 0, 0.28);
}

.filters-wrapper .accordion-title:hover:before {
    color: rgba(0, 0, 0, 1);
}

.filters-wrapper .is-active .accordion-title {
    color: #000;
}

.filters-wrapper .is-active .accordion-title:before {
    right: 1.1rem;
    margin-top: -0.8rem;
    color: #1c93a7;
}

.filters-wrapper .accordion-title:focus,
.filters-wrapper .accordion-title:hover {
    color: #000;
    background-color: #fff !important;
}

.filters-wrapper .accordion .accordion-content {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    color: #1c93a7;
}

.filterbox {
    display: block;
    padding: 1rem 0;
}

.filterbox .filterbox-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.filterbox .filterbox-list li {
    position: relative;
    padding: 4px 0;
}

.filterbox label {
    margin: 0;
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.6;
    color: #0a0a0a;
    cursor: pointer;
}

.filterbox label.text {
    padding-left: 1.8rem;
    position: relative;
}

.filterbox label.text span {
    position: absolute;
    right: 0;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .filterbox {
        padding: 0rem 0 0 1.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-filters-button {
        display: inline-block;
    }
    .filterbox {
        position: absolute;
        background: #fff;
        box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.12);
        border-radius: 10px;
        display: none;
        z-index: 999 !important;
        padding: 0.7rem 1.5rem;
    }
    .filterbox.expanded {
        display: block;
    }
    .filterbox.expanded .filterbox-title {
        display: none;
    }
}


/*
---------------------------
FILTERS (Right Side)
---------------------------
*/


/* Selected filters */

.filters-info-wrapper {
    display: block;
    padding: 0rem 0;
}

.filters-count {
    float: left;
    font-weight: 700;
}

.filters-count-badge {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 33px;
    text-align: center;
    color: #fff;
    border-radius: 100px;
    margin-right: 4px;
}

.filters-tags {
    float: left;
    padding-left: 2rem;
}

.filters-tags .filters-tag {
    position: relative;
    padding: 0.36rem 3rem 0.3rem 1rem;
    margin-right: 5px;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
    color: #0c0c0c;
    display: inline-block;
    font-weight: 700;
}

.filters-tags .filters-tag .close-button {
    top: 5px;
    font-size: 1.2rem;
    color: #666;
    right: 12px;
}

.filters-reset {
    position: relative;
    display: inline-block;
    float: right;
    padding: 0.6rem 1rem 0.3rem 1rem;
    font-weight: 400;
    z-index: 9;
    cursor: pointer;
}

.filters-reset i {
    display: none;
    position: relative;
    top: 1px;
}

@media (max-width: 540px) {
    .filters-count {
        display: none;
    }
    .filters-tags {
        float: left;
        padding-left: 0rem;
    }
    .filters-tags .filters-tag {
        padding: 0.3rem 2rem 0.3rem 1rem;
        margin-right: 3px;
        font-size: 0.76rem !important;
    }
    .filters-tags .filters-tag .close-button {
        top: 3px;
        font-size: 1.1rem;
        color: #004185;
        right: 10px;
    }
    .filters-reset {
        display: none;
        float: right;
        padding: 0.4rem 0rem 0.3rem 0rem;
        font-weight: 700;
        font-size: 1rem;
    }
    .filters-reset span {
        display: none;
    }
    .filters-reset i {
        display: inline-block;
    }
}


/* Quotes */

.quote-wrapper {}

.quote-wrapper blockquote {
    text-align: center;
    border-left: 0;
    max-width: 50%;
    margin: auto;
    padding: 1rem 0;
}

.quote-wrapper blockquote p {
    color: #0e1727;
    font-weight: 400;
    font-style: italic;
    font-size: 1.7rem;
    line-height: 1.3;
}

.quote-wrapper blockquote footer {
    margin: auto;
    line-height: 1;
    margin-top: 2rem;
    font-size: 1rem;
    text-align: left;
    width: 220px;
    font-weight: 600;
}

.quote-wrapper blockquote footer span {
    font-weight: 400;
}

.quote-wrapper .quote-image {
    float: left;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    margin-left: 30px;
}

@media (max-width: 900px) {
    .quote-wrapper blockquote {
        max-width: 75%;
    }
}

@media (max-width: 640px) {
    .quote-wrapper blockquote {
        max-width: 90%;
        font-size: 1rem;
    }
}


/* Foto Overzicht
------------------------------- */

.photo .caption {
    font-size: 0.8rem;
    line-height: 1.1;
    color: #888 !important;
    text-align: center;
    width: 100%;
    display: block;
    font-style: italic;
    padding-top: 0px;
}

.photo {
    display: inline-block;
    margin: 0px 0 10px 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
    width: 50%;
}

.box-wrapper.case .photo {
    border-bottom: 0px solid #d90024;
}

.photo.left {
    float: left;
    margin-right: 30px;
}

.photo.right {
    float: right;
    margin-left: 50px;
}


/* Round */

.photo a.round {
    border-radius: 100%;
    overflow: hidden;
}


/* Sizes */

.photo-25 {
    width: 25%;
}

.photo-33 {
    width: 31.5%;
}

.photo-50 {
    width: 50%;
}

.photo-75 {
    width: 75%;
}

.photo-100 {
    width: 100%;
    margin-bottom: 1em;
    margin-left: 0 !important;
}

@media (max-width: 500px) {
    .photo {
        width: 33%;
    }
}

.photo a {
    overflow: hidden;
    border-radius: 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.photo a:hover {}

.photo a img {
    margin: 0px 0px 0px 0px;
    border: 0px;
    padding: 0px;
    display: block;
    max-width: 100%;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 7;
}

.photo a:hover img {
    padding: 0px;
    border: 0px solid #ddd;
    /*
	opacity: .8;
  	filter: alpha(opacity=80);
*/
}

.photo a:hover img.grayscale {
    -webkit-filter: grayscale(0%) !important;
    filter: none !important;
}

.photo a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0px;
    margin-left: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 0px;
    text-align: center;
    font-family: icomoon;
    content: '\e145';
    background: #34a8b9;
    color: #fff;
    z-index: 99;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.4rem;
    -webkit-transition: opacity 0.3s ease-out;
    /* Saf3.2+, Chrome */
    -moz-transition: opacity 0.3s ease-out;
    /* FF4+ */
    -ms-transition: opacity 0.3s ease-out;
    /* IE10? */
    -o-transition: opacity 0.3s ease-out;
    /* Opera 10.5+ */
    transition: opacity 0.3s ease-out;
}

@media (max-width: 970px) {
    .photo a:after {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.photo a.round:after {
    border-radius: 100%;
}

.photo a:hover:after {
    opacity: 1;
}

.photo a.item-more:after {
    background: rgba(0, 163, 230, 0.9);
}

.photo.right {
    float: right;
    margin: 20px 0px 20px 40px;
}

.photo-wide {
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    position: relative;
}

.photo-wide img {
    margin: 0px 0px 0px 0px;
    border: 0px;
    padding: 0px;
    display: block;
    max-width: 100%;
    opacity: 1;
    filter: alpha(opacity=100);
}

.photo-slides a.gallery-item {
    margin-bottom: 0em;
}

.gallery {
    padding-top: 30px;
}

.photo-gallery {
    display: block;
    margin: 25px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
}

.photo-gallery.with-padding {
    margin: 0;
    padding: 2rem 3rem;
}

@media (max-width: 1024px) {
    .photo-gallery.with-padding {
        padding: 2rem 1rem 2rem 0;
    }
}

@media (max-width: 970px) {
    .photo-gallery.with-padding {
        padding: 2rem 0rem;
    }
}

.photo-gallery img {
    border-radius: 0;
    margin: 0px 0px 0px 0px;
    border: 0px;
    padding: 0px;
    display: block;
    max-width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.photo-gallery a,
a.gallery-item {
    overflow: hidden;
    border-radius: 0;
    display: block;
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.photo-gallery img {
    margin-bottom: 30px;
}

.photo-gallery a img,
.photo-slides img {
    margin-bottom: 0px;
}


/* Round */

.photo-gallery a.round {
    border-radius: 100%;
    overflow: hidden;
}

.photo-gallery a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0px;
    margin-left: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 0px;
    text-align: center;
    font-family: icomoon;
    content: '\e145';
    background: #34a8b9;
    color: #fff;
    font-size: 1.4rem;
    z-index: 9;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: opacity 0.3s ease-out;
    /* Saf3.2+, Chrome */
    -moz-transition: opacity 0.3s ease-out;
    /* FF4+ */
    -ms-transition: opacity 0.3s ease-out;
    /* IE10? */
    -o-transition: opacity 0.3s ease-out;
    /* Opera 10.5+ */
    transition: opacity 0.3s ease-out;
}

@media (max-width: 970px) {
    .photo-gallery a:after {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.photo-gallery a.round:after {
    border-radius: 100%;
}

.photo-gallery a:hover:after {
    opacity: .8;
}

.photo-gallery a:hover img {
    padding: 0px;
}

.photo-gallery:hover img.grayscale {
    -webkit-filter: grayscale(0%) !important;
    filter: none !important;
}

.collapse.photo-gallery a,
.collapse.photo-gallery a.gallery-item,
.collapse.photo-gallery img {
    border-radius: 0 !important;
    margin-bottom: 0px;
}

.collapse.photo-gallery {
    margin-top: 0;
}


/*
---------------------------
IMAGE BANNERS
---------------------------
*/

.imagebox {
    float: left;
    width: 100%;
    display: block;
    position: relative;
    border: 0px solid #fff;
    border-radius: 0px !important;
    overflow: hidden;
    min-height: 260px;
    margin-bottom: 25px;
    position: relative;
    z-index: 98 !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0)
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .section-intro {
    color: #ffffff !important;
}

[class*=" section-up-"] .imagebox {
    box-shadow: 0px 10px 43px rgba(0, 0, 0, 0.16);
}

a.imagebox:hover {
    z-index: 99 !important;
    /*
	-webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
*/
}

.collapse .imagebox {
    margin-bottom: 0;
    /* 	 box-shadow: 0 5px 22px rgba(0, 0, 0, 0.1); */
}

a.imagebox {
    cursor: pointer;
}

.object.with-shadow:hover:after {
    opacity: 1
}

.collapse .imagebox:hover:after {
    height: 20px;
    opacity: 0;
}

.imagebox .imagebox-image {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 2;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.imagebox .imagebox-image:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: #000;
    content: '';
    -webkit-transition: opacity 0.6s ease-in-out;
    -moz-transition: opacity 0.6s ease-in-out;
    -ms-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}

a.imagebox:hover .imagebox-image {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imagebox .imagebox-image.bright:after {
    opacity: 0;
}

a.imagebox:hover .imagebox-image:after {
    opacity: 0.3;
}

.imagebox .imagebox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

a.imagebox:hover .imagebox-overlay {
    opacity: .6;
}


/* Shade */

.imagebox .image-shade-top,
.imagebox .image-shade-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    opacity: .4;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.imagebox .image-shade-bottom {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#07080f07080f00', endColorstr='#cc1b222a', GradientType=0);
}

a.imagebox:hover .image-shade-top,
a.imagebox:hover .image-shade-bottom {
    opacity: 0.8;
}

.imagebox .imagebox-description {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: 4;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.imagebox:hover .imagebox-description {
    opacity: 1;
}

.imagebox .imagebox-description .imagebox-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: block;
    color: rgba(255, 255, 255, 0.25);
    font-size: 3.6rem;
    line-height: 1;
    padding: 0em 0em 0 0;
    margin-bottom: 0px;
    border-radius: 0px;
}

.imagebox .imagebox-description .imagebox-title-wrap {
    position: absolute;
    top: 0;
    left: 0rem;
    width: 100%;
    padding: 1rem 2.5rem 0rem 1rem;
}

.imagebox .imagebox-description .imagebox-title-wrap:before {
    position: absolute;
    top: -40px;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    z-index: 9;
    border-style: solid;
    border-width: 55px 0 0 65px;
    border-color: transparent transparent transparent #007bff;
}


/* Primary */

.imagebox .imagebox-description .imagebox-title-wrap.bg-primary:before {
    border-color: transparent transparent transparent #17366f;
}


/* Secondary */

.imagebox .imagebox-description .imagebox-title-wrap.bg-secondary:before {
    border-color: transparent transparent transparent #1c92a7;
}


/* Color3 */

.imagebox .imagebox-description .imagebox-title-wrap.bg-color3:before {
    border-color: transparent transparent transparent #a19e9c;
}


/* Dark */

.imagebox .imagebox-description .imagebox-title-wrap.bg-dark:before {
    border-color: transparent transparent transparent #0e1727;
}

.imagebox-description.text-center .imagebox-title-wrap {
    text-align: center;
    padding: 0rem 2rem 0rem 1rem;
}


/* Top */

.imagebox .imagebox-description .imagebox-title-wrap.top {
    top: 0;
    left: 0rem;
    padding: 1rem 2rem 2rem 1.5rem;
    transform: translateX(0) translateY(0%);
}


/* Bottom */

.imagebox .imagebox-description .imagebox-title-wrap.bottom {
    top: auto;
    bottom: 0;
    left: 0rem;
    padding: 2.5rem 5rem 1rem 1.5rem;
    transform: translateX(0) translateY(0%);
}

@media (max-width: 940px) {
    .imagebox .imagebox-description .imagebox-title-wrap.bottom {
        top: auto;
        bottom: 0;
        left: 0rem;
        padding: 2.5rem 1.5rem 1rem 1.5rem;
        transform: translateX(0) translateY(0%);
    }
}

.imagebox .imagebox-description .imagebox-label {
    display: block;
    font-size: 0.86rem;
    line-height: 1;
    font-weight: 400;
    padding: 0em 0em 0 0;
    margin-bottom: 10px;
    color: #fff;
}

.imagebox .imagebox-description .imagebox-label i {
    position: relative;
    top: 2px;
    font-size: 1rem;
}

.imagebox .imagebox-description .imagebox-title {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    font-size: 1.3rem;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    padding: 0em 0 5px;
    max-width: 100%;
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1)
}

a.imagebox:hover .imagebox-description .imagebox-title {}

.imagebox .imagebox-description p {
    margin-top: 1rem;
    visibility: hidden;
    opacity: 0;
    color: #fff;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.imagebox .imagebox-description.visible p {
    visibility: visible;
    opacity: 1;
}

[data-whatinput='mouse'] a.imagebox:hover .imagebox-description p {
    visibility: visible;
    opacity: 1;
}

.imagebox .imagebox-button {
    position: absolute;
    bottom: 0rem;
    right: 0%;
    width: 100%;
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 1rem 0.6rem;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.imagebox .imagebox-button i {
    position: relative;
    top: 1px;
}

.imagebox:hover .imagebox-button {
    visibility: visible;
    opacity: 1;
}


/* Centered */

.imagebox .imagebox-description.text-center .imagebox-title-wrap {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
    padding: 6rem 2rem 3rem 2rem;
}


/* Imagobox Heights */

.height-small .imagebox {
    height: 200px;
}

.height-medium .imagebox {
    height: 280px;
}

.height-large .imagebox {
    height: 360px;
}


/* List */

.imagebox-list ul {
    list-style: none;
    margin: 0;
    margin-top: 1rem;
}

.imagebox-list ul li {
    color: #fff;
    font-size: 1.3rem;
}

.imagebox-list ul li i {
    color: #3cb7b8;
}


/* Zijbalk */

#sticky {
    left: 0 !important;
}

.side-content #sidebar {
    width: 100%;
    display: block;
    padding: 0.9rem 0 0em;
}

.side-content .page-title {
    font-size: 1.4em;
    padding-left: 1em;
    padding-bottom: 10px;
}

#sidebar .sticky {
    width: 100%;
}

@media (max-width: 970px) {
    .side-content {
        padding: 0 1.5rem 0em;
    }
}

@media (max-width: 767px) {}

@media (max-width: 540px) {
    .side-content {
        padding: 0 1.8rem 0em;
    }
}

.side-content .text-wrapper {
    padding: 1.5rem 1rem;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.side-content .text-wrapper .indent {
    padding-right: 0rem;
}

.side-content .text-wrapper .text-wrapper-title {
    font-size: 20px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 0;
}

.side-content .text-wrapper .text-wrapper-title.sub {
    font-size: 1rem !important;
}

.side-content .text-wrapper-lead {
    padding-top: 10px;
}

.side-content .text-wrapper .text-wrapper-lead p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.side-content .text-wrapper .text-wrapper-content p {
    line-height: 1.5;
    font-size: 1rem;
}


/*
---------------------------
SUB NAVIGATION
---------------------------
*/

.mobile-subnav-button {
    display: none;
    padding-left: 3rem;
    float: left;
    margin-left: 2rem;
}

.mobile-subnav-button i {
    top: 8px;
    left: 0.5rem;
    right: auto;
    color: #a8a8a8 !important;
}

#mobile-subs {
    display: none;
}

@media (max-width: 970px) {
    .mobile-subnav-button {
        display: inline-block;
    }
    #mobile-subs {
        position: absolute;
        top: 75px;
        left: 2rem;
        min-width: 200px;
        background: rgb(28, 147, 167);
        background: -moz-linear-gradient(-45deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
        background: -webkit-linear-gradient(-45deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
        background: linear-gradient(135deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1c93a7', endColorstr='#168b9f', GradientType=1);
        z-index: 999;
        box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
        border-radius: 0px;
        padding: 0rem 0rem 0 0rem;
    }
    #mobile-subs.expanded {
        display: block;
    }
    #mobile-subs.expanded .subnav .subnav-headline {
        display: none;
    }
}

.subnav {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    padding: 1.2rem 1rem;
    margin: 0rem 0 30px;
    background: rgb(28, 147, 167);
    background: -moz-linear-gradient(-45deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
    background: linear-gradient(135deg, rgba(28, 147, 167, 1) 0%, rgba(22, 139, 159, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1c93a7', endColorstr='#168b9f', GradientType=1);
}

#mobile-subs .subnav {
    border: 0;
    margin-bottom: 0;
}

.subnav .subnav-headline {
    font-size: 1.1rem;
    position: relative;
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.subnav ul {
    padding: 0px 0px;
    margin: 0px;
    list-style: none;
}

.subnav ul li {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
    padding: 0px 0 0px 0;
    margin: 0px 0 0px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 16px;
}

.subnav ul li:last-child {
    border: 0 !important;
}

.subnav ul li a:not(.button) {
    padding-left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    display: block;
    padding: 0.8375em 1em 0.8375em 1.6rem;
    font-size: 1.125rem !important;
    letter-spacing: 0px;
    position: relative;
    line-height: 1.1;
}

.subnav ul li a:not(.button):hover {
    color: #fff;
}

.subnav ul li a:before {
    position: absolute;
    left: 0px;
    top: 14px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: '\e408';
    font-size: 1.5rem;
    margin-right: 0px;
    color: rgba(255, 255, 255, 0.62);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.subnav ul li a:hover:before {
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
    color: #fff;
}

.subnav ul li.item-breadcrumb a:before {
    color: #34a8b9;
}

.subnav ul li.item-breadcrumb a:not(.button) {
    color: #fff;
    font-weight: 600;
}

.subnav ul li.invisible {
    visibility: visible;
    display: block;
}

@media (max-width: 970px) {
    .subnav ul li a:not(.button) {
        padding-left: 0 !important;
        padding-right: 2rem;
        font-size: 1rem !important;
    }
    .subnav ul li a:before {
        left: auto;
        top: 11px;
        right: -3px;
        content: '\e409';
    }
}


/* Tweede niveau */

.subnav ul li ul {
    margin: 0;
    padding: 0;
    margin-top: 0px;
    padding-left: 0px;
    padding-bottom: 20px;
}

.subnav ul li ul li {
    border: 0px solid #eeedec;
}

.subnav ul li ul li>a:not(.button) {
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 16px !important;
    padding: 0.3em 0rem 0.3em 10px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.subnav ul li ul li>a:not(.button):hover {
    color: rgba(255, 255, 255, 1) !important;
    background: none !important;
}

.subnav ul li ul li a:before {
    display: none;
}

.subnav ul li ul li>a:not(.button):hover:before {
    color: #fff !important;
}

.subnav ul li ul li.item-breadcrumb>a:not(.button),
.subnav ul li ul li.item-breadcrumb>a:not(.button):hover {
    background: none !important;
    color: rgba(255, 255, 255, 1) !important;
}

.subnav ul li ul li.item-leaf>a:not(.button) {
    font-weight: 700 !important;
}


/* Derde niveau */

.subnav ul li ul ul {
    margin: 0;
    padding: 0;
    margin-top: 0px;
    padding-left: 15px;
    padding-bottom: 10px;
}

.subnav ul li ul ul li {
    border: 0px solid #eeedec;
}

.subnav ul li ul ul li>a:not(.button) {
    font-weight: 400 !important;
    color: rgba(78, 78, 81, 1) !important;
    font-size: 14px !important;
    padding: 0.3em 0rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.subnav ul li ul ul li>a:hover {
    background: none !important;
    color: #22257a !important;
}

.subnav ul li ul li>a:hover {
    background: none !important;
    color: #22257a !important;
}

.subnav ul li ul ul li a:before {
    top: 5px;
    color: rgba(78, 78, 81, 1) !important;
}

.subnav ul li ul ul li.item-breadcrumb>a,
.subnav ul li ul li.item-breadcrumb>a:hover {
    background: none !important;
    color: #22257a !important;
}


/* Blogs */

.blogs ul li {
    border-bottom: 0px solid rgba(0, 0, 0, 0.08);
    padding: 0px 0 0px 0;
    margin: 0px 0 0px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blogs ul li:last-child {
    border: 0 !important;
}

.blogs ul li a {
    padding-left: 0;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    display: block;
    padding: 1.1em 1em 0.9375em 0rem;
    font-size: 0.96rem !important;
    letter-spacing: 0px;
    position: relative;
    line-height: 1.1;
}

.blogs ul li a:hover {
    color: #000;
}

.blogs ul li a .blog-title {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.blogs ul li a .blog-date {
    display: block;
    padding: 6px 0 0;
    font-size: 0.86rem;
    color: rgba(0, 0, 0, 0.4);
}


/*
---------------------------
SUBNAVIGATIE BALK
---------------------------
*/

.whatsub {
    width: 100%;
    clear: both;
    display: block;
    z-index: 3;
    padding: 0rem 0em 0rem;
    height: 70px;
    position: relative;
    margin-top: -70px;
    background: rgba(29, 29, 29, 0.9);
    text-align: center;
}

.whatsub:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    content: '';
    z-index: 1;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
}

.whatsub ul {
    height: 70px;
    display: inline-block;
    margin: 0 auto;
    padding: 0 0rem;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.whatsub ul li {
    display: inline-block;
    margin: 0;
    text-align: center;
    position: relative;
    padding: 0em 1em;
}

.whatsub ul li:last-child {
    border: 0;
}

.whatsub ul li a {
    position: relative;
    height: 56px;
    line-height: 70px;
    font-weight: 500;
    display: block;
    padding: 0rem 0.5rem 0rem 0.1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.whatsub ul li a:hover {
    color: #fff;
}

.whatsub ul li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 4px;
    border-radius: 0px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    /*
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
*/
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.whatsub ul li a:hover:before,
.whatsub ul li.item-breadcrumb a:before {
    visibility: visible;
    width: 99.7%;
}

.whatsub ul li a:after {
    position: absolute;
    right: -6px;
    bottom: 2px;
    content: '';
    width: 1.5px;
    height: 0px;
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

.whatsub ul li a:hover:after,
.whatsub ul li.item-breadcrumb a:after {
    opacity: 1;
    height: 18px;
}

@media (max-width: 940px) {
    .whatsub {
        margin-top: -50px;
        height: 50px;
        text-align: left;
    }
    .whatsub ul {
        height: 50px;
        text-align: left;
    }
    .whatsub ul li a {
        text-align: center;
        height: 40px;
        line-height: 50px;
        font-size: 0.66rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 767px) {
    .whatsub {
        display: none;
    }
}


/* Breadcrumbs */

#breadcrumbs {
    position: relative;
    z-index: 99;
}

.breadcrumbs-wrapper {
    background: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 1rem 0 1rem 0;
}

.breadcrumbs {
    display: block;
    padding: 0 0;
    overflow: hidden;
    margin-left: 1.1rem !important;
    list-style: none;
    border-style: solid;
    border-width: 0px;
    background: none;
    border-color: rgba(0, 0, 0, 0.04);
    border-radius: 0px;
}

.breadcrumbs>* a {
    color: #a9acad;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.76rem;
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.breadcrumbs>* a:hover {
    color: #000;
    text-decoration: none;
}

.breadcrumbs li:not(:last-child):after {
    color: #a9acad;
    content: "\e409";
    margin: 0 .75rem;
    position: relative;
    top: 1px;
    opacity: 1;
    font-size: 0.86rem;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.breadcrumbs {
    margin-bottom: 0;
}

@media (max-width: 970px) {
    .breadcrumbs {
        padding-left: 1em;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        padding: 1.3rem 1rem 0rem 0.7rem;
    }
}

@media (max-width: 500px) {
    .breadcrumbs {
        display: none;
    }
    .breadcrumbs-wrapper {
        padding-left: 0em;
        display: none;
    }
}


/* Newsletter & Social */

.newsletter {
    display: block;
}

.newsletter:before,
.newsletter:after {
    display: table;
    content: " ";
}

.newsletter:after {
    clear: both;
}

.section-newsletter-wrapper {
    padding: 2rem 2.5rem 1.5rem;
}

.section-newsletter-wrapper .section-newsletter-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
}

.newsletter-input {
    font-size: 1.1rem;
    height: 48px;
    line-height: 48px;
    padding: 0rem 1rem;
    border: 0px solid #c3cddb;
    box-shadow: none !important;
    margin: 0
}

.newsletter-input:focus {
    border: 0;
}

.newsletter-button {
    height: 48px;
}

.section-social-wrapper {
    padding: 2rem 2.5rem;
    background: #fff;
}

.section-social-wrapper .section-social-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-social-wrapper ul {
    list-style: none;
    margin: 0;
}

.section-social-wrapper ul li {
    display: inline-block;
    margin: 0;
}


/* Social */

.section-social-wrapper .social a {
    float: left;
    position: relative;
    width: 48px;
    height: 48px;
    color: #fff;
    overflow: hidden;
    margin: 0 5px 0 0;
}

.section-social-wrapper .social a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.4rem;
}

@media (max-width: 1024px) {
    .section-social-wrapper .section-social-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-newsletter-wrapper {
        padding: 2rem 1.5rem 1.5rem;
    }
    .section-social-wrapper {
        padding: 2rem 1.5rem;
        background: #fff;
    }
}


/*
---------------------------
FOOTER  
---------------------------
*/

#footer-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 0px;
    padding: 0rem 0 0rem;
}

.footer-content {
    padding: 0rem 0rem 2rem 1rem;
}

.footer-content.first {
    padding-left: 1.5rem;
}

.follow-title {
    display: block;
}

@media (max-width: 970px) {
    .footer-content.first {
        padding-left: 1rem;
        padding-right: 2rem;
    }
    .footer-content {}
}

@media (max-width: 640px) {
    .footer-content.first {}
}

.footer-content.first .footer-title {}

.footer-content .footer-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0px;
}

.footer-content p {
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6) !important;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .footer-content p {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-content p a:hover {}

.footer-content p strong {
    margin-right: 5px;
}


/* List items */

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer-content ul li {
    padding: 0;
}

.footer-content ul li a {
    position: relative;
    padding-left: 0rem;
    font-size: 1rem;
    padding: .2rem 0;
    display: inline-block;
}

.footer-list ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-list ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-list.socialist ul li a {
    padding: .54rem 0;
    padding-left: 40px;
}

.footer-list.socialist ul li a:after {
    display: none;
}

.footer-list.socialist ul li a i {
    position: absolute;
    top: 4px;
    left: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 100px;
    background: #000;
    color: #fff;
}


/* Bottom */

.copyright {
    display: block;
    font-size: 1rem;
    padding-top: 0.3rem !important;
    padding-left: 1.5rem;
}

.footer-links {
    display: block;
    padding-top: 0.3rem;
    padding-left: 0rem !important;
}

.footer-links a {
    display: inline-block;
    margin: 0 8px 0 8px;
    font-size: 1rem;
    position: relative;
    color: #363637;
}

.footer-links a:hover {
    color: #34a8b9 !important;
}

.footer-bottom {
    background: #fff;
    padding: 2rem 0;
    margin-top: 0rem;
}

@media (max-width: 970px) {
    .social {
        border-top: 1px solid rgba(238, 238, 238, 0.35);
    }
    .social .footer-title {
        text-align: center;
        display: none;
    }
    .footer-list.socialist ul {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .footer-list.socialist ul li {
        display: inline-block;
        padding: 0 1rem;
    }
    .footer-list.socialist ul li a i {
        position: absolute;
        top: 4px;
        left: 0;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-radius: 100px;
        background: #000;
        color: #fff;
    }
}

@media (max-width: 640px) {
    .footer-list.socialist ul li a span {
        display: none;
    }
    .copyright {
        text-align: center;
    }
    .footer-links {
        padding-top: 10px;
        text-align: center;
    }
    .footer-links a {
        margin: 0 5px;
    }
    .footer-logos {
        text-align: center;
    }
    .footer-bottom {
        background: #fff;
        padding: 2rem 0 1rem;
        margin-top: 0rem;
    }
}


/* Add Noise */

.addnoise {
    float: right;
    width: 125px;
    height: 25px;
    color: #a2aaae !important;
    font-style: italic;
    font-size: 11px;
    margin-right: 1rem;
    background: url('../images/addnoise.svg') no-repeat top;
    background-size: contain;
    opacity: 0.5;
    filter:grayscale(100%);
}

.addnoise:hover {
    opacity: 1;
    filter:grayscale(0%);
}

@media (max-width: 640px) {
    .addnoise {
        position: relative;
        right: 50%;
        margin: auto;
        margin-right: -50px;
        margin-top: 20px !important
    }
}


/*
---------------------------
TOOLTIPS
---------------------------
*/

.has-tip {
    border: 0;
    font-weight: normal;
    position: relative;
    display: inline-block;
    cursor: pointer;
}


/*
---------------------------
SLIDE OUT BOX
---------------------------
*/

#slidebox {
    width: 520px;
    min-height: 200px;
    padding: 2rem;
    background-color: #fff;
    position: fixed;
    bottom: 500px;
    right: 1.5rem;
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
    border-radius: 5px;
    z-index: 99;
    box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#slidebox.slidebox-bg {
    padding-right: 10%;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.white-popup #slidebox {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    padding: 2rem 3rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.white-popup #slidebox.slidebox-bg {
    padding-right: 25%;
}

#slidebox a.close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -14px;
    right: -14px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 32px;
    background-color: #9197a7 !important;
    opacity: 1;
}

#slidebox a.close:hover {
    background-color: #777d8c !important;
}

#slidebox .intro.question {
    display: none;
}

#slidebox .intro.search {
    display: block;
}

#slidebox .intro p {
    color: #767d8f;
}

#slidebox .button {
    margin-top: 10px;
}

#slidebox .title {
    margin: 0px 20px 0px 0px;
}

#slidebox .searchbox {
    position: relative;
    top: auto;
    right: auto;
}

#slidebox .searchbox .search-input {
    width: 100%;
    border: 1px solid #c3cddb;
    background-color: rgba(255, 255, 255, 0.66);
    border-radius: 5px;
    padding-left: 1.5rem;
    font-size: 0.86rem;
    margin: 0;
    box-shadow: none !important;
}

#slidebox .searchbox .search-input:focus {
    border-color: rgba(0, 59, 118, 1);
}

#slidebox .searchbox .search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0 1rem;
    height: 100%;
    font-size: 1.2rem;
    opacity: 1;
    background: #c3cddb;
    border-radius: 0 5px 5px 0;
    color: #fff;
}

#slidebox .searchbox .search-button:hover {
    opacity: 1;
    background-color: #b5b9c4;
}

#slidebox .searchbox .search-input:focus+.search-button {
    background-color: rgba(0, 59, 118, 1);
}

#slidebox .search-tags {
    padding-top: 1rem;
    display: block;
}

#slidebox .tags-label {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#slidebox .search-tags a {
    font-size: 0.86rem;
}


/* Slidebox Small */

#slidebox.small {
    width: 200px;
    min-height: 80px;
    padding: 0rem;
    right: 0rem;
    border-radius: 5px 0 0 5px;
}

#slidebox.small:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

#slidebox.small .border-bottom {
    border-radius: 0px 0 0 5px;
}

#slidebox.small a.close {
    display: none;
}

#slidebox.small .title {
    font-size: 1.3rem;
    margin: 0px 10px 0px 0px;
    padding: 1rem 1rem 0;
}

#slidebox.small .intro.question {
    display: block;
    font-size: 0.86rem;
    padding: 0rem 1rem 0;
}

#slidebox.small .intro.question p {
    font-size: 0.86rem;
}

#slidebox.small .intro.search {
    display: none;
}

#slidebox.small .searchbox {
    display: none;
}

#slidebox.small .search-tags {
    display: none;
}

@media (max-width: 767px) {
    #slidebox {
        bottom: 200px;
    }
    #slidebox .searchbox {
        display: block;
    }
    .white-popup #slidebox {
        width: 100%;
        position: relative;
        bottom: auto;
        right: auto;
        min-height: 120px;
        padding: 1rem 1rem;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    }
    .white-popup #slidebox.slidebox-bg {
        padding-right: 5%;
    }
}


/*
---------------------------
FLOATING ARROW ANIMATIONS
---------------------------
*/

floating-arrow-wrapper {
    position: relative;
    z-index: 999 !important;
}

.going-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    height: 64px;
    width: 64px;
    background: transparent;
    text-align: center;
    z-index: 9999 !important;
    border: 0px solid rgba(255, 255, 255, 0);
    border-radius: 100px;
    outline: 0;
    font-size: 1.6em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.going-down i {
    color: #fff;
    line-height: 64px;
    text-shadow: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

.going-down:hover {}

.going-down:hover i {
    color: #fff
}

.going-down:hover {}

.going-down:active {}

@media (max-width: 970px) {}

@media (max-width: 600px) {
    .going-down {
        right: 1rem;
        bottom: 15px;
        font-size: 1.3em;
        height: 48px;
        width: 48px;
    }
    .going-down i {
        line-height: 48px;
    }
}

@media (max-width: 320px) {
    .going-down {
        right: 0.6rem;
        bottom: 10px;
        font-size: 1.3em;
        height: 48px;
        width: 48px;
    }
    .going-down i {
        line-height: 48px;
    }
}

.floating-arrow {
    -webkit-animation-name: floating-arrow;
    animation-name: floating-arrow;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes floating-arrow {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
    65% {
        -webkit-transform: translate(-50%, 15px);
        transform: translate(-50%, 15px)
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@keyframes floating-arrow {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
    65% {
        -webkit-transform: translate(-50%, 15px);
        transform: translate(-50%, 15px)
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}