.site-header {
    height: 8rem;
    left: 0; 
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.site-header > div {
    align-items: center;
    color: #4a494a;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-weight: 300;
    position: relative;
}

.site-header a {
    color: inherit;
}

/* xs zoek en menu knoppen */
.site-header .zoek-knop,
.site-header .menu-knop {
    align-self: stretch;
    background-color: #4a494a;
    color: #fff;
    border-bottom: 1px solid #f4f4f4;
    font-size: 2.5rem;
    height: 8rem;
    width: 8rem;
}

.site-header .menu-knop {
    border-left: 1px solid #f4f4f4;
}

.site-header .zoek-knop a,
.site-header .menu-knop a { 
    align-items: center;
    display: flex;
    height: 100%;    
    justify-content: center;
}
.site-header .menu-knop a:hover,
.site-header .menu-knop a:focus,
.site-header .menu-knop .active,
.site-header .zoek-knop a:hover,
.site-header .zoek-knop a:focus,
.site-header .zoek-knop .active {
    color: #00e23e;
    cursor: pointer;
    text-decoration: none;
    transform: scale(1.2);
}

/* logo */
.site-header .logolink {
    background-color: #4a494a;
    border-bottom: 1px solid #f4f4f4;
    color: #fff;
    flex: 1;
    height: 8rem;
    padding: 1rem;
}

.site-header .logolink a {
    display: block;
}

.site-header .logolink img {
    display: block;
    max-height: 6rem;
    width: auto;
}

/* menus */
.site-header .primair-menu,
.site-header .secundair-menu {
    width: 100%;
}

.site-header .primair-menu > ul,
.site-header .secundair-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.site-header .primair-menu > ul > li,
.site-header .secundair-menu li {
    list-style-type: none;
    margin: 0;
}

/* primair-menu */
.site-header .primair-menu {
    font-weight: 600;
    left: 15px;
    right: 15px;
    text-transform: uppercase;  
    width: calc(100% - 30px);
}

.site-header .primair-menu.ng-hide {
    opacity:0;
}

.site-header .primair-menu > ul > li {
    border-bottom: 1px solid #f4f4f4;
}

.site-header .primair-menu > ul > li > a {
    background-color: #fff;
    display: block;
    padding: .8em 1em .6em;
}


/* secundair-menu */
.site-header .secundair-menu {
    font-weight: 600;
    text-transform: uppercase;
}

.site-header .secundair-menu.ng-hide {
    opacity: 0;
}
.site-header .secundair-menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.site-header .secundair-menu li {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    flex: 1;
    text-align: center;
}

.site-header .secundair-menu li a {    
    background-color: #4a494a;   
    color: #fff;
    display: inline-block;
    height: 100%;
    padding: 1rem 0;
    width: 100%;
    transition: background-color 0.2s linear;
}
.site-header .secundair-menu li a:hover,
.site-header .secundair-menu li a:focus {
    color: #00e23e;
    cursor: pointer;
}

.site-header .secundair-menu .fa {
    display: inline-block;
    margin-right: 5px;
}

/* zoekbalk */
.site-header .zoekbalk {
    background-color: #fff;
    border-bottom: 1px solid #4a494a;
    color: #4a494a;
    left: 15px;
    height: 8rem;
    position: fixed;
    top: 0;
    transition:all linear 0.5s;   
    width: calc(100% - 30px);
}
 
.site-header .zoekbalk.ng-hide {
    opacity:0;
}

.site-header .zoekbalk form {
    background-color: #fff;
    color: #4a494a;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1rem;
    position: relative;
}

.site-header .zoekbalk input {
    background-color: transparent;
    border: 0;
    color: #4a494a;
    flex: 1;
    font-weight: 500;
    height: 6rem;
    padding: 0 7rem 0 2rem;
	width: 100%;
}

.site-header .zoekbalk form .fa {
	color: #4a494a;
    display: block;
    font-size: 2rem;
    height: 6rem;
    line-height: 3;
    text-align: center;
    width: 5rem;
}

.site-header .zoekbalk button {
    background-color: transparent;
    border: 0;
    color: #4a494a;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.site-header .zoekbalk form a,
.site-header .zoekbalk button {
    transition:all linear 0.5s;  
}
.site-header .zoekbalk form a:hover,
.site-header .zoekbalk form a:focus,
.site-header .zoekbalk button:hover,
.site-header .zoekbalk button:focus {
    text-decoration: none;
    transform: scale(1.2);
}

.site-header .zoekbalk input::-webkit-input-placeholder {
	color: rgba(255,255,255,.671);
    font-weight: 300;
}

.site-header .zoekbalk input:-moz-placeholder {
	color: rgba(255,255,255,.671);
    font-weight: 300;
}

.site-header .zoekbalk input::-moz-placeholder {
	color: rgba(255,255,255,.671);
    font-weight: 300;
}

.site-header .zoekbalk input:-ms-input-placeholder {
	color: rgba(255,255,255,.671);
    font-weight: 300;
}


@media screen and (max-width: 991px) {
    .site-header .primair-menu {
        background-color: rgba(0,0,0,.3);
        height: 100%;
        position: fixed;
        top: 12rem;
        transition:all linear 0.5s;    
        z-index: 2;
    }    
    
    .site-header .secundair-menu {
        transition:all linear 0.5s;  
        z-index: 2;
    }    
}

@media screen and (min-width: 768px) {
    .site-header .primair-menu {
        left: auto;
        right: auto;   
    }
    
    .site-header .logolink {
        padding-left: 5rem;
    }
}

@media screen and (min-width: 992px) {
    .site-header {
        height: 10rem;
    }
    
    .site-header > div {
        display: -ms-grid;
        -ms-grid-columns: auto 1fr;
        -ms-grid-rows: auto 1fr;
        display: grid;
        grid-template-columns: auto 1fr;
    	grid-template-rows: auto 1fr;
    }
    
    .site-header .logolink {
        -ms-grid-column: 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row-start: 1;
    	grid-row-end: 3; 
        align-items: center;
        border-bottom: 0;
        display: flex;
        flex: 0 1 auto;
        height: 10rem;
        padding-right: 5rem;
    }
        
    .site-header .primair-menu {
        -ms-grid-column: 2;
        -ms-grid-row: 2;
        grid-column-start: 2;
        grid-row-start: 2;
        align-self: stretch;
        background-color: #4a494a;
        color: #fff;
        font-size: 1.8rem;
        padding-right: 5rem;
        position: relative;
    }
        
    .site-header .secundair-menu {
        -ms-grid-column: 2;
        -ms-grid-row: 1;
        grid-column-start: 2;
        grid-row-start: 1;
        align-self: stretch;
        background-color: #4a494a;
        color: #fff;
        font-size: 1.2rem;
        font-weight: normal;
        padding-right: 5rem;
    }
    
    .site-header .zoekbalk {
        -ms-grid-column: 2;
        -ms-grid-row: 1;
        grid-column-start: 2;
        grid-row-start: 1;
        height: 3.5rem;
        left: auto;
        margin-right: 5rem;
        position: relative;
        top: auto;
    }
    
    .site-header .zoek-knop,
    .site-header .menu-knop {
        display: none;
    }    
    
    .site-header .logolink img {
        margin: 0;
    }

    .site-header .zoekbalk,
    .site-header .primair-menu, 
    .site-header .secundair-menu {
        width: auto;
    }
    
    .site-header .primair-menu ul {
        align-items: flex-end;        
        display: flex;
        height: 100%;
        position: absolute;
        right: 5rem;
        text-align: center;
        top: 1.5rem;
        width: calc(100% - 5rem);
    }
    
    .site-header .primair-menu > ul > li {
        border: 0;
        flex: 1;
        position: relative;
    }
    
    .site-header .primair-menu > ul > li > a,
    .site-header .secundair-menu li a {
        background-color: transparent;
        border: 0;   
        color: inherit;
        display: block;
        padding: 0;
    }
    
    .site-header .primair-menu > ul > li > a {
        border-bottom: 15px solid #00e23e;
        padding-bottom: 1rem;
    }
    
    .site-header .primair-menu > ul > li a:hover, 
    .site-header .primair-menu > ul > li a:focus {
        font-weight: inherit;
        text-decoration: underline;
    }
    
    .site-header .primair-menu > ul > li a::after {
        transition: all linear 0.5s;   
    }
    
    .site-header .primair-menu li.active a::after,
    .site-header .primair-menu > ul > li a:hover::after,
    .site-header .primair-menu > ul > li a:focus::after {
        border: 1rem solid transparent;
        border-bottom-color: #00e23e;    
        bottom: 15px; 
        content: "";
        left: 50%;
        position: absolute;               
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }    
    
    .site-header .secundair-menu > ul {
        align-items: center;
        font-weight: 300;
        height: 3.5rem;
    }
    
    .site-header .secundair-menu li {
        border: 0;
        display: inline-block;
        flex: 0 1 auto;
        padding: 0 1rem;
    }
    
    .site-header .secundair-menu li a {
        padding: 0 1rem;
    }
    
    .site-header .secundair-menu li.active a {
        padding: .9rem 1rem;
    }
    
    .site-header .secundair-menu .telnr {
        flex: 1;
        font-weight: bold;
        text-align: left;
    }
    
    .site-header .secundair-menu .fa {
        font-size: 1.2em;
    }
    
    .site-header .secundair-menu .zoek-icoon .fa {
        font-weight: 700;
    }
    
    .site-header .zoekbalk {
        border-bottom: 0;
    }

    .site-header .zoekbalk form {
        height: 100%;
        margin: 0;
    }
    
    .site-header .zoekbalk form .fa {
        height: 100%;
        line-height: 1.6;
    }
    
    .site-header .zoekbalk form button {
        padding: 0;
    }
    
    .site-header .zoekbalk input {
        height: 100%;
    }
    
    .site-header .zoek-knop a:hover,
    .site-header .zoek-knop a:focus,
    .site-header .zoek-knop .active {
        transform: none;
    }   
    
    .site-header a .fa:before {
        display: inline-block;
    }
    

    
}


@media screen and (min-width: 1100px) {
    .site-header .primair-menu {
        font-size: 2rem;
    }
@media screen and (min-width: 992px) {
    
    .home .portaalcontent-container {
        padding-top: 0;
    }
    
}
.cta .content {    
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    line-height: 1.7;
    padding: 4rem 15px;     
    position: relative;
    text-align: center;
}

.cta .item a {    
    color: inherit;
}

.cta .item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.cta .item p {
    flex: 1;
    font-weight: normal;
}

.cta .item .knop {
    margin-top: 1rem;
}


@media screen and (max-width: 767px) {
    .cta .content {
        background-image: none !important;
    }
}

@media screen and (min-width: 768px) {
    .cta .content {
        background-size: auto 80%;
        padding: 4rem;
    }
    
    .cta .item {
        margin-left: auto;
        margin-right: auto;
        width: 66%;
    }
}

@media screen and (min-width: 992px) {
    .cta .content {
        padding: 6rem 4rem;
    }
    
    .cta .item {
        width: 50%;
    }
}


@media screen and (min-width: 1200px) {
    .cta .content {
        padding: 8rem 4rem;
    }
    .cta .item {
        width: 40%;
    }
}
.site-footer {  
    color: #fff;
    padding: 0;
}

.site-footer a {
    color: #fff;
}

.site-footer .content {
    padding: 5rem 15px;
    position: relative;
}

.site-footer .logolink {
    margin-bottom: 1rem;
}


.site-footer .logolink a {
    display: inline-block;
}

.site-footer ul {
    margin: 0 0 .5rem;
}
.site-footer a:not(.knop):not(.fa) {   
    color: inherit;
}

.site-footer a:focus:not(.knop):not(.fa),
.site-footer a:hover:not(.knop):not(.fa) {
    text-decoration: underline;
}

.site-footer .knop {
    padding-left: 3rem;
    padding-right: 3rem;
}
/* snellinks */
.site-footer .snellinks {
    font-size: .95em;
    font-weight: 400;
    padding: 3rem 15px;
}

.site-footer .snellinks:before {
    background-color: #00e23e;
    height: 1px;
    position: relative;
    top: -3rem;
    width: 100%;
}
.site-footer .snellinks h2 {
    color: #fff;
    font-size: inherit;
    margin: 0 0 .7rem;    
    text-transform: uppercase;    
}

.site-footer .snellinks ul {
    color: #00e23e;
    margin: 0;
    padding-bottom: 2rem;
}

.site-footer .snellinks ul a {
    display: inline-block;
    padding: 0;
}

.site-footer .contact a:not(.knop) {
    text-decoration: underline;
}

.site-footer .contact a:not(.knop):hover,
.site-footer .contact a:not(.knop):focus {
    text-decoration: none;
}

.site-footer .contact .knop {
    margin-top: 2rem;
}
/* copyright regel */
.site-footer .copyright {
    color: #4a494a;
    font-size: .95em;
    font-weight: 400;
    padding: 1rem 15px;
}

.site-footer .copyright ul {
    font-weight: 300;
    text-transform: uppercase;
}



@media screen and (min-width: 768px) {
    .site-footer {
        padding: 0 15px;
    }
    
    .site-footer .content,
    .site-footer .copyright,
    .site-footer .snellinks {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    
    .site-footer .socialmedia-volgen {
        text-align: right;
    }
    
    .site-footer .snellinks ul {
        padding-bottom: 0;
    }
    
    .site-footer .copyright > div:nth-child(2) {
        text-align: right;
    }
}
