/* fonts */
@font-face {
    font-family: 'flandersartsans';
    font-weight: normal;
    font-weight: 400;
    src: local('flandersartsans'), url('assets/fonts/FLANDERSARTSANS-REGULAR.TTF')  format('truetype');
}

@font-face {
    font-family: 'flandersartsans';
    font-weight: 200;
    src: local('flandersartsans'), url('assets/fonts/FLANDERSARTSANS-LIGHT.TTF')  format('truetype');
}

@font-face {
    font-family: 'flandersartsans';
    font-weight: 300;
    src: local('flandersartsans'), url('assets/fonts/FLANDERSARTSANS-REGULAR.TTF')  format('truetype');
}

@font-face {
    font-family: 'flandersartsans';
    font-weight: 500;
    src: url('assets/fonts/FLANDERSARTSANS-MEDIUM.TTF')  format('truetype'),;
}

@font-face {
    font-family: "flandersartsans";
    font-weight: 800;
    src: local('flandersartsans'), url('assets/fonts/FLANDERSARTSANS-BOLD.TTF')  format('truetype');
}


@font-face {
    font-family: 'Flanders Art Sans Medium';
    src: url('FlandersArtSans-Medium.eot');
    src: url('FlandersArtSans-Medium.eot?#iefix') format('embedded-opentype'), 
         url('FlandersArtSans-Medium.woff') format('woff'), 
         url('FlandersArtSans-Medium.ttf')  format('truetype'),
         url('FlandersArtSans-Medium.svg#7ebdc43021fbf6b8f40b21819190e2b4') format('svg'); /* Legacy iOS */
         
    font-style:   normal;
    font-weight:  400;
  }


* {
    box-sizing: border-box;
}


body {
    font-size: 16px;
    margin: 0px;
    width:100%;
    height:100%;
    overflow: -moz-scrollbars-vertical;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'flandersartsans', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* main */
.main {
    /* background: rgba(255, 255, 255, 1); */
    opacity: 1;
    position:relative;
    z-index: 1;
    padding-bottom: 76px;
}

.bg-right {
    height: 100%;
    background-size: cover;
    float: right;
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.bg-line {
    height: 100%;
}

.bg-image {
    /* width: 50%; */
    height:100%;
    background: url("assets/images/background-lg.jpg");
    width: 100%;;
    background-size: cover;
    float: right;
    opacity: 1;
    position: absolute;
    top: 0px;
    z-index: -1;
    pointer-events: none;
    
}

.menu-container-mobile{
    display:none;
}

.main-left {
    /* position: absolute; */
    width: 50vw;
    min-width: 70%;
    height:calc(100vh - 180px);
    /* top: 50%;
    transform: translate(0, -50%); */
    margin-left: 2em;
    padding: 2em 2em;
    overflow:hidden;
    right:-40px;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.menu {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    grid-gap: 5px;
    max-width: 250px;
}



.button {
    width: 100%;
    height: 100px;
    margin: 3px;
    text-align: center;
    opacity: 1;
    overflow: hidden;
    color: #004475;
    border: 1px solid rgba(194, 226, 254, 1);
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    background-color: #C2E2FE;
     cursor: pointer;
}

.button label {
    font-size: 2em;
    font-weight: 700;
     cursor: pointer;
}


h1 {

    color: rgba(0, 68, 117, 1);
    font-weight: Bold;
    line-height: 1;
    font-size: 3.6em;
    opacity: 1;
    text-align: left;

}

.content {
    max-width: 440px;
    width:100%;
    color: rgba(0, 68, 117, 1);
    font-weight: Light;
    font-size: 17px;
    opacity: 1;
    text-align: left;
    margin:0;
}


h2 {
    /* width: 305px; */
    color: rgba(0, 68, 117, 1);
    font-weight: 700;
    line-height: 1.25rem;
    opacity: 1;
    text-align: left;
    font-size:1em;
}

/* header */
.header {
 
    align-items: center;
    top: 0px;
    width: 100%;
    background: #004475;
    display: flex;
    gap: 1em;
    padding: 1em 2em;
    z-index: 1;
}

.logo{
    height: 32px;
}
.logo-vdab {
    height: 36px;
}

.logo-horeca {
    height: 46px;
}
.logo-esf {
    height: 50px;
}


/* footer */
.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: #C2E2FE;
    display: flex;
    gap: 1em;
    padding: .2em 2em;
    z-index: 9999;
}

.footer p,
.footer p a {
    color: #004475;
    margin: .5em 0em;

}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


@media only screen and (max-width: 480px) {
    .header{
        display:flex;
        padding: 1em 1em;
        justify-content: flex-start;
    }
    .logo{
        height: 24px;
    }
    .logo-vdab {
        height: 28px;
    }
    
    .logo-horeca {
        height: 36px;
    }
    .logo-esf {
        height: 24px;
    }
    .main{
        background-color: transparent;
        background-image:url("assets/images/background-sm.jpeg");
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-size: cover;
        background-position-y: -200px;
        min-height: calc(100vh - 0px);
        padding-bottom: 0px;
    }

    .bg-image {
        width: 100%;
        height: 55vh;
        background: none;
        background-size: cover;
        float: right;
        opacity: 1;
        overflow:hidden;
        top: 60px;
        z-index:-1;
        right:0;
        left:0;
        
    }

    .main-left {
        margin-left: 0px;
        /* position: relative; */
        transform:translate(0,0);
        padding: 1em 0em;
        width:calc(100% - 2em);
        max-width:calc(100% - 2em);
        /* overflow-x: hidden; */
        /* background-image: linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,0)); */
        height:100%;
        position: initial;
        /* top:auto; */
     
    }

    h1{
        font-size: 1.75rem;
        line-height: 1;
        padding: 0em .5em;
        max-width:100%;
        /* color:#fff; */
    }

    .content{
        max-width: 100vw;
        padding: 0em 1em;
        /* color:#fff; */
    }


    .menu-container{
        display:none;
        
    }

    .menu-container-mobile{
        display:inline-block;
        width:100vw;
        border-radius: 1em 1em 0 0; 
        background:#fff;
        padding: .5em 1em;
        min-height:300px;
    }

    .menu{
        width: calc(100vw - 1em);
        padding: 0 2em 0 0;
    }

    .footer{
        padding: 0em 1em;
    }

    footer p{
        padding:0em;
    }

    .button label{
        font-size:1.1em;
    }

    .button {
        /* max-height: 70px;
        font-size:.8em;
        padding:1em;
        width:70px;
        display: flex;
        align-content: center;
        align-items: center; */
    }
    
    bg-image{
        height:50%;
        background-color: red;
    }

}


@media only screen and (max-height: 575.98px) and (orientation: landscape) {
    .header{
        /* position:relative; */
    }
    .logo{
        height: 24px;
    }
    .logo-vdab {
        height: 28px;
    }
    
    .logo-horeca {
        height: 36px;
    }
    .logo-esf {
        height: 48px;
    }
    

    .bg-image {
        width: 100%;
        height: calc(100% );
        background: url("assets/images/background-sm-landscape.jpeg");
        background-size: cover;
        float: right;
        opacity: 1;
        position: absolute;
        top: 60px;
        z-index:-1;
        background-position: 0 -100px;
        /* right:0;
        left:0; */
        
    }

    .main{
        background: url("assets/images/background-sm-landscape.jpeg");
        background-size: cover;
        min-height: 100%;
        background-position: 154px center;
        background-repeat: no-repeat;
        

    }

    .main-left {
        margin-left: 0px;
        min-width:300px;
        /* position:relative; */
        
        /* top: 80px; */
        transform:translate(0,0);
        padding: 1em 1em 100px 1em;
        width:calc(50vw);
        /* max-width:calc(100vw - 2em); */
        /*background-image: linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,0));*/
        height:100%;
        
    }

    h1{
        font-size:1.5em;
        line-height: 1;
        padding: 0em .5em;
        max-width:100%;
        color:#004475;
        margin-bottom: 0;
    }
    .main{
        display:flex;
        min-height: 90vh;
        padding-left: 1em;
        padding-right: 1em;
    }
    .content{
        max-width: 100vw;
        padding: 0em 1em;
        color:#004475;
    }


    .menu-container{
        display:none;
        
    }

    .menu-container-mobile{
        display:inline-block;
        width:50vw;
        border-radius: 1em 1em 0 0; 
        background:#fff;
        padding: .5em 1em;
        margin-top: 2em;
        margin-bottom: -2em;
        
    }

    .menu{
        width:100%;
        padding: 0 0em 0 0;
    }

    .footer{
        padding: 0em 1em;
    }

    footer p{
        padding:0em;
    }

    .button label{
        font-size:1.1em;
    }

    .button {
        /* max-height: 70px; */
    }
}

