html{
    height: auto;
    width: 100%;
    text-align: center;
}
body{
    display: inline-block;
    position: relative;
    padding: 0px;
    margin: 0px;
    max-width: 1050px;
    height: auto;
}
a, p, ul {
    font-family: "Roboto";
    font-weight: 400;
    text-align: justify;
}
h1 {
    font-family: "Paytone One";
    font-weight: 300;
    color:#FFAE00;
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 120px;
    text-align: left;
}
h2 {
    font-family: "Paytone One";
    font-weight: 300;
    color:#FFAE00;
    font-size: 40px;
    margin-bottom: 10px;
    text-align: left;
    
}
.main{
    grid-area: main; 
    background-color: #EDEDED;
    width: calc(100% - 40px);
    margin: 0px;
    padding: 20px;
    height: auto;
}
.side{
    grid-area: side; 
    background-color: #D9D9D9;
    width: calc(100% - 40px);
    height: auto;
    margin: 0px;
    padding: 20px;
    height: auto;
}
.main_container{
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas:
        'side   main'
        ;
    align-items: stretch;
    height: auto;
    width: 100%;
    overflow: auto;
}
.empty{
    background-color: #D9D9D9;
    width: calc(40% - 40px);
    height: 200px;
    float: left;
    padding: 20px;
}
.title_div{
    background-color: #EDEDED;
    width: calc(60% - 40px);
    height: 200px;
    float: left;
    margin: 0px;
    padding: 20px;
}
.img_header{
    width: 100%;
    object-fit: cover;
    height: 200px;
    margin: 0px;
    padding: 0px;
}
.header_img{
    width: 100%;
    height: 200px;
    float: left;
}
.header_profiel_img{
    position: absolute;
    margin-top: 70px;
    margin-left: 71px;
}
.header_logo_img{
    position: absolute;
    margin-top: 105px;
    right : 70px;
}
.img_profiel{
    border-radius: 50%;
    width: 275px;
    height: 275px;
}
.img_logo{
    width: 200px;
    height: 200px;
}
.sub_title{
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}
.main_article_title, .side_article_title{
    font-size: 20px;
    margin-top: 20px;
}
.opleidingen{
    margin-top: 50px;
    text-align: left;
}
.main_article_div{
    margin-top: 20px;
}
.main_article_sub_title{
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 9px;
    margin-top: 30px;
    text-align: left;
}
.main_article_sub2_title{
    font-style: italic;
    margin-top: 9px;
    margin-left: 7px;
    margin-bottom: 2px;
    font-size: 15px;
}
.main_article_text{
    margin-top: 2px;
}
.main_article_ul{
    list-style-type: square;
    font-size: 12px;
    padding-left: 20px;
    padding-top: 0px;
    margin-top: 4px;
}
.main_message_window{
    z-index: -1;
    background-color: #BAB6A4;
    opacity: 0.0;
    padding: 10px;
    max-width: 1000px;
    width: calc(100% - 10px);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed;
    max-height: 100%;
    overflow: hidden
}
.main_message_window_container{
    overflow: auto;
    max-height: calc((var(--vh, 1vh) * 100) - 200px);
}
.main_message_window_container::-webkit-scrollbar{
    width: 5px
}
.main_message_window_container::-webkit-scrollbar-track {
    background: white; 
}
.main_message_window_container::-webkit-scrollbar-thumb {
    background: lightgray; 
}
.main_message_window_container::-webkit-scrollbar-thumb:hover {
    background: darkgray; 
}
.side_article_vaardigheden_ul_title{
    font-weight: bold;
    margin-bottom: 5px;
}
.side_article_vaardigheden_ul{
    margin-top: 5px;
    padding-left: 20px;
}
.side_article_vaardigheden_div{
    float: left;
    width: auto;
    margin-right: 10px;
}
.side_article_cursussen_ul{
    width: 100%;
    list-style-type: none;
    padding-left: 0px;
}
.vaardigheden{
    overflow:auto; 
}
/* 
  //////////////////////////////////////////////
 //////////////////////WIDGET//////////////////
//////////////////////////////////////////////
Set the div for displaying widget 
*/
.widget_header{
    margin-top: 0px;
    font-size: 30px;
    margin-top: 0px;
    font-variant: small-caps
}
.widget_container{
    position: fixed;
    bottom: 20px;
    left: calc(((100vw - 1050px)/2) + 20px);
    overflow: auto;
    max-width: 350px;
}
.widget_link{
    float: left;
    background-color: #B5B9A8;
    opacity: 0.95;
    padding: 5px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    margin: 10px;
    margin-left: 0px;
}
.widget_content{
    background-color: #B5B9A8;
    overflow: auto;
    padding: 20px;
    opacity: 0.0;
    max-height: calc(100vh - 150px);
    max-height: calc((var(--vh, 1vh) * 100) - 150px);
}
.widget_content::-webkit-scrollbar{
    width: 5px
}
.widget_content::-webkit-scrollbar-track {
    background: #B5B9A8; 
}
.widget_content::-webkit-scrollbar-thumb {
    background: lightgray; 
}
.widget_content::-webkit-scrollbar-thumb:hover {
    background: darkgray; 
}
.widget_close_button{
    position: absolute;
    background-color: #B5B9A8;
    right: 0px;
    top: 0px;
    height: 18px;
    width: 20px;
    cursor: pointer;
    padding-top: 2px;
}
.widget_close_button:hover{
    background-color: red;
}
/* 
  //////////////////////////////////////////////
 //////////////////////Widget phone////////////
//////////////////////////////////////////////
*/
.widget_phone_link:link { 
    color: #000000; 
    text-decoration: none;
}
.widget_phone_link:visited { 
    color: #000000; 
    text-decoration: none;
}
.widget_phone_link:hover { 
    color: #FFAE00; 
    text-decoration: none;
    font-weight: bold;
}
.widget_phone_link:active { 
    color: #000000; 
    text-decoration: none;
}
/* 
  //////////////////////////////////////////////
 //////////////////////Widget email////////////
//////////////////////////////////////////////
*/
.widget_email_form_input{
    width: calc(100% - 5px);
}
.widget_email_form_div{
    float: left;
    text-align: left;
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.widget_email_form_error_container{
    background-color: lightcoral;
    right: -5px;
    top: -30px;
    position: absolute;
    z-index: 1;
    overflow: auto;
    border-radius: 10px;
}
.widget_email_form_error{
    margin: 0px;
    padding: 5px;
    text-align: right;
    font-size: 12px;
}
.widget_email_form_input{
    background-color: #B5B9A8;
    opacity: 0.95;
    border: 0;
    border-bottom: 2px black dotted;
    margin-top: 10px;
    font-family: "Roboto";
    font-weight: 400;
    resize: none;
}
.widget_email_label{
    font-family: "Roboto";
    font-weight: 400;
}
.widget_email_form_checkbox{
    font-family: "Roboto";
    font-weight: 400;
}
.widget_email_button{
    background-color: #FFAE00; 
    border: none;
    color: white;
    padding: 10px;
    font-family: "Roboto";
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    float: left;
    width: 100%;
    margin-top: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.widget_email_button:hover{
    background-color: #885d00 ;
    font-weight: bold;
    cursor: pointer;
}
.widget_email_privacy_link{
    text-decoration: underline;
}
.widget_email_privacy_link:hover{
    cursor: pointer;
}
/* 
  ///////////////////////////////////////////////////
 //////////////////////Privacy statement////////////
///////////////////////////////////////////////////
*/
.privacy_statement_article{
    text-align: left;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: black;
}
.privacy_statement_header{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    color: black;
    font-size: 30px;
    font-weight: bold
}
.privacy_statement_sub{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    color: black;
    font-size: 20px;
    font-weight: bold;
}
.privacy_statement_supersub{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    color: black;
    font-size: 15px;
}
.privacy_statement_paragraph{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    color: black;
    font-size: 12px;
}
.privacy_statement_close_button{
    position: absolute;
    background-color: #BAB6A4;
    right: 0px;
    top: 0px;
    height: 18px;
    width: 20px;
    cursor: pointer;
    padding-top: 2px;
}
.privacy_statement_close_button:hover{
    background-color: red;
}
/* 
  ///////////////////////////////////////////////////
 //////////////////////Portfolio////////////////////
///////////////////////////////////////////////////
*/
.portfolio_container{
    width: calc(100% - 40px);
    height: auto;
    overflow: auto;
    background-color: #EDEDED;
    margin: 0px;
    padding: 20px;
}
.portfolio_filters{
    width: 100%;
    height: auto;
    overflow: auto;
}
.portfolio_filter_close_button_tag{
    background-color: #D9D9D9;
    right: 0px;
    top: 0px;
    height: 18px;
    width: 20px;
    cursor: pointer;
    padding-top: 2px;
}
.privacy_statement_close_button_tag:hover{
    background-color: red;
}
.portfolio_tag{
    float: left;
    background-color: #D9D9D9;
    text-align: center;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}
.portfolio_tag:hover{
    background-color: #9e9e9e;
}
.portfolio_tag_filtered{
    float: left;
    background-color: #D9D9D9;
    text-align: center;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}
.portfolio_tag_filtered:hover{
    background-color: #9e9e9e;
}
.portfolio_article_link{
    float: left;
    background-color: #D9D9D9;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    width: calc((100% - 60px) / 3);
}
.portfolio_article_link:hover{
    background-color: #9e9e9e;
}
.portfolio_img_wrapper{
    overflow: hidden; 
}
.portfolio_img{
    height: 250px;
}
.portfolio_article_link img {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    vertical-align: middle;
}
.portfolio_article_link img:hover {
    -webkit-transform:scale(1.1); /* Safari and Chrome */
    -moz-transform:scale(1.1); /* Firefox */
    -ms-transform:scale(1.1); /* IE 9 */
    -o-transform:scale(1.1); /* Opera */
    transform:scale(1.1);
}
.portfolio_title{
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}
.portfolio_article_sub_title{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.portfolio_article_sub2_title{
    font-style: italic;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 15px;
}
.responsibility { 
    grid-area: article_responsibility;
    background-color: #D9D9D9;
    padding: 10px;
}
.image_one { 
    grid-area: article_image_one; 
}
.image_two { 
    grid-area: article_image_two; 
}
.participant { 
    grid-area: article_participant;
    background-color: #D9D9D9;
    padding: 10px;
}
.task { 
    grid-area: article_task;
    background-color: #D9D9D9;
    padding: 10px;
}
.image_three { 
    grid-area: article_image_three; 
}

.portfolio_article_grid{
    display: grid;
    grid-template-areas:
        'article_responsibility    article_responsibility  article_image_one'
        'article_image_two         empty                   article_image_one'
        'article_image_two         article_participant     article_participant'
        'article_task              article_task            article_image_three'
        'article_task              article_task            article_image_three'
        ;
    grid-gap: 10px;
    padding: 10px;
}
.grid-container > div {
    background-color: #D9D9D9;
  }
.article_participant_container{
    float: left;
    width: 30%;
}
.article_image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.center{
    text-align: center;
}
.bold{
    font-weight: bold;
    padding: 5px;
    font-size: 15px;
}
.portfolio_filter_close_button{
    position: absolute;
    background-color: #D9D9D9;
    right: 0px;
    top: 0px;
    height: 18px;
    width: 20px;
    cursor: pointer;
    padding-top: 2px;
}
.portfolio_filter_close_button:hover{
    background-color: red;
}
/* 
  //////////////////////////////////////////////
 //////////////////////Screen 900px////////////
//////////////////////////////////////////////
*/
@media screen and (max-width: 900px){
    body{
        position: unset;
        padding: 0px;
        margin: 0px;
        max-width: 1050px;
        height: auto;
    }
    .main_container{
        display: unset;
    }
    .main{
        width: calc(100% - 40px);
        height: auto;
    }
    .side{
        width: calc(100% - 40px);
        height: auto;
    }
    .empty{
        width: calc(100% - 40px);
        height: 275px;
    }
    .title_div{
        width: calc(100% - 40px);
        height: auto;
    }
    .header_profiel_img{
        position: absolute;
        width: 100%;
        margin: auto;
        margin-top: 70px;
    }
    .header_logo_img{
        position: absolute;
        width: 100%;
        margin: auto;
        margin-top: 405px;
        right : 0px;
    }
    .side_article_vaardigheden_div{
        float: left;
        min-width: 150px;
        margin-right: 10px;
    }
    .privacy_statement_container{
        min-width: 500px;
    }
    .portfolio_article_link{
        width: calc((100% - 40px) / 2);
    }
    .fontsize{
        font-size: 20px;
    }
    .portfolio_title{
        font-size: 30px;
    }
}
/* 
  //////////////////////////////////////////////
 //////////////////////Screen 600px////////////
//////////////////////////////////////////////
*/
@media screen and (max-width: 600px){
    .portfolio_center_wrapper{
        width: 100%;
        height: 100%;
        text-align:center;
    }
    .portfolio_article_link{
        display:inline-block;
        float: none;
        width: calc(100% - 40px);
        max-width: 300px;
    }
    .article_participant_container{
        float: left;
        width: 50%;
    }
    .portfolio_article_grid{
        grid-template-areas:
            'article_responsibility'
            'article_image_one'
            'article_participant'
            'article_image_two'
            'article_task'
            'article_image_three'
            ;
    }
}
/* 
  //////////////////////////////////////////////
 /////////////////////Screen 1050px////////////
//////////////////////////////////////////////
*/
@media screen and (max-width: 1050px){
    .widget_container{
        left: 20px;
    }
    .main_message_window{
        width: calc(100% - 40px);
    }
}