@font-face{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(/stylesheets/roboto_regular.woff2?l=1) format('woff2');
}

html, body{
    margin: 0 auto;
    padding: 0;
    height: 100%;

    font-family: 'Roboto', Arial, sans-serif;
    font-size: 12px;
    color: white;
    letter-spacing: 0.1em;
}

    @supports (-moz-appearance:none) {
        body{
            scrollbar-width: auto;
            scrollbar-color: #888 transparent;
        }
    }

    body::-webkit-scrollbar{ width: 10px; }
    body::-webkit-scrollbar-track{ background: transparent; }
    body::-webkit-scrollbar-thumb{ background: #888; border-radius: 8px; }

a{
    text-decoration: none;
    color: white;
}





header{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    padding: 20px 5%;
    z-index: 10;
    background-color: #253F58;
    box-sizing: border-box;
}

    header .title{
        float: left;
        overflow: hidden;
        height: 40px;
    }

        header .title a{
            display: block;
            height: 100%;
        }

        header .title img{
            display: block;
            float: left;
            height: 100%;
            padding: 0;
            border: 0;
        }

        header .title div{
            float: left;
            margin-left: max(1vw, 10px);
            line-height: 40px;
            font-size: 25px;
        }

    header nav{
        float: right;
        overflow: auto;
    }

        header nav .tekst{
            overflow: auto;
        }

        @media only screen and (max-width: 768px) {
            header nav .tekst { display: none; }
        }

        header nav .tekst a.menu{
            position: relative;
            display: block;
            float: left;
            margin: 0 15px;
            line-height: 40px;
            font-size: 15px;
        }

            header nav .tekst a.menu:after{
                content: "";
                position: absolute;
                bottom: 5px;
                left: 0;
                height: 2px;
                width: 100%;
                background-color: white;
                transition: transform .25s;
                transform: scaleX(0);
            }

                header nav .tekst a.menu:hover:after{
                    transform: scaleX(1);
                }

        header nav .tekst a.button{
            display: block;
            float: left;
            width: auto;
            padding: 0 20px;
            line-height: 38px;
            border-radius: 10px;
            margin-left: 10px;
            background-color: #2882C0;
            border: 1px solid #2882C0;
        }

        header nav .icon{
            position: relative;
            overflow: auto;
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #253F58;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            transition-delay: 0.3s;
            z-index: 20;
        }

            @media only screen and (max-width: 768px) {
                header nav .icon { display: block; }
            }

            header nav .icon div{
                position: absolute;
                right: 9px;
                background-color: white;
                height: 2px;
                width: 22px;
                transition: .25s ease-in-out;
            }

                header nav .icon div:nth-child(1){ top: 13px; }
                header nav .icon div:nth-child(2){ top: 19px; }
                header nav .icon div:nth-child(3){ top: 25px; }

                header nav .icon.actief div:nth-child(1){
                    top: 20px;
                    transform: rotate(45deg);
                }

                header nav .icon.actief div:nth-child(2){
                    width: 0;
                    opacity: 0;
                }

                header nav .icon.actief div:nth-child(3){
                    top: 20px;
                    transform: rotate(-45deg);
                }

        header nav .full_menu{
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            transition: all 1s ease-in-out;
            z-index: 15;
            display: flex;
            align-items: center;
        }

            header nav .icon.actief + .full_menu{
                top: 0;
            }

            header nav .full_menu .menu{
                overflow: auto;
                height: auto;
                width: 100%;
                margin: 0 20px;
            }

                header nav .full_menu .menu a{
                    display: block;
                    font-size: 20px;
                    line-height: 80px;
                    border-bottom: 1px solid #e5e7eb;
                }

                    header nav .full_menu .menu a span{
                        position: relative;
                    }

                        header nav .full_menu .menu a span:after{
                            content: "";
                            position: absolute;
                            bottom: -5px;
                            left: 0;
                            height: 2px;
                            width: 100%;
                            background-color: white;
                            transition: transform .25s;
                            transform: scaleX(0);
                        }

                            header nav .full_menu .menu a span:hover:after{
                                transform: scaleX(1);
                            }

            header nav .full_menu .buttons{
                position: absolute;
                bottom: 20px;
                width: 100%;
                display: flex;
                justify-content: center;
            }

                header nav .full_menu .buttons a{
                    display: block;
                    float: left;
                    width: auto;
                    padding: 0 20px;
                    line-height: 38px;
                    border-radius: 10px;
                    margin-left: 20px;
                    background-color: #2882C0;
                    border: 1px solid #2882C0;
                }

                header nav .full_menu .buttons a:first-child{
                    margin-left: 0;
                }

main{
    position: relative;
    background-color: #80B4D8;
    z-index: 5;
}

    main .vlak{
        height: auto;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        overflow: auto;
    }

        main .vlak .container{
            position: relative;
            width: 95%;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

main .vlak.contact{
        background-color: #000000;
        text-align: left;
    }

        main .vlak.contact h3{
            padding: 40px 0 20px 40px;
            font-size: 36px;
        }

        main .vlak.contact .container > div{
            overflow: auto;
            margin-bottom: 20px;
        }

            main .vlak.contact .container > div > div{
                float: left;
                width: 25%;
                min-width: 250px;
            }

        main .vlak.contact h4{
            font-size: 20px;
        }

        main .vlak.contact a{
            text-decoration: underline;
            color: #00a2e2;
            font-size: 14px;
        }

        main .vlak.contact .copyright{
            margin: 2% 0 1% 0;
            color: #a5a5a5;
            text-align: center;
            font-size: 0.8em;
            height: 15px;
        }

    @media only screen and (max-width: 768px){
        main .vlak.contact .container > div > div{ width: 50%; min-width: auto; }
        main .vlak.contact h3{ font-size: 4.7vw; }
        main .vlak.contact h4{ font-size: 3vw; margin-bottom: 5%; }
        main .vlak.contact a{ font-size: 95%; }
    }