/* Voeg dit toe aan je CSS-bestand */
@font-face {
    font-family: 'MijnLettertype'; /* Geef je lettertype een naam */
    src: url('Montserrat-VariableFont_wght.ttf') format('ttf'), /* Pad naar het bestand */
         url('Montserrat-VariableFont_wght.ttf') format('ttf'); /* Fallback bestand */
    font-weight: lighter;  /* Geeft de gewicht van het lettertype aan (bijv. normaal, vet) */
    font-style: lighter;   /* Geeft de stijl van het lettertype aan (bijv. normaal, cursief) */
}


body {
    background-color: #f2f1ed !important; 
}


.logo-container {
    display: flex;
    justify-content: center;  
    align-items: center;      
    margin-top: 20px;         
}


.navbar {
    width: 100%;
    padding-top: 0px !important;
    border-bottom: 1px solid #144484;
}


.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}


.nav-link {
    color: #144484 !important;
    font-family: 'MijnLettertype', sans-serif !important;
    font-size: 20px !important;
    padding: 10px !important;
    font-weight: lighter !important;
    @media (max-width: 767px) {
        font-size: 16px !important;
    }
}

.nav-item {
    padding-left: 20px;
}

.nav_active{
    font-weight: bolder;
 }

/* block 1 */
.block1{
    padding-top: 75px;
}

.block1_h2{
    color: #144484;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: normal;
    font-size: 24px;
    @media (max-width: 767px) {
        font-size: 16px;
    }
}

.block1_p{
    color: #144484;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: lighter;
    font-size: 18px;
    @media (max-width: 767px) {
        font-size: 14px;
    }
}

/* block 2 */
.block2{
    padding-top: 95px;
    @media (max-width: 767px) {
        padding-top: 45px;
    }
}

.title_h2{
    color: #144484;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: normal;
    font-size: 24px;
    @media (max-width: 767px) {
        font-size: 16px;
    }
}

.text_p{
    color: #144484;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: lighter;
    font-size: 18px;
    @media (max-width: 767px) {
        font-size: 14px;
    }
}

.padding_text{
    padding-bottom: 125px;
}

.bottom_img{
    padding-bottom: 95px;
    display: flex;
    justify-content: center; 
    align-items: center;     
    height: 100vh;           
}



.license-info {
    font-size: 11px; 
    color: #144484; 
  }
  

  .license-info h3 {
    font-size: 11px; 
    color: #144484;
  }


  .license-item h4 {
    font-size: 11px; 
    color: #144484; 
  }
  
 
  .license-item p {
    font-size: 11px; 
    color: #144484;
  }
  

  .license-item a {
    color: #144484;
    text-decoration: none;
  }
  

  

/* footer */
footer{
    background-color: #144484 !important;
}

.footer-title{
    color: white;
    font-size: 18px;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: normal;
    @media (max-width: 767px) {
        font-size: 12px;
    }
}

.footer-text{
    color: white;
    font-size: 14px;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: normal;
    text-decoration: none;
    @media (max-width: 767px) {
        font-size: 10px;
    }
}

.footer_text{
    color: white;
    font-size: 14px;
    font-family: 'MijnLettertype', sans-serif;
    font-weight: normal;
    text-decoration: none;
    @media (max-width: 767px) {
        font-size: 10px;
    }
}

.footer_text:hover{
    color: white;
 
}

.footer_circle{
    background-color: #144484; /* Donkere achtergrondkleur */
  padding: 90px 0; /* Padding rondom de footer */
  padding-bottom: 10px;
  position: relative; /* Nodig voor de absolute positionering van de halve cirkel */
  border-top-left-radius: 40% 30%; /* Halve cirkel effect bovenaan */
  border-top-right-radius: 40% 30%; /* Halve cirkel effect bovenaan */
  overflow: hidden; /* Verbergt alles dat buiten de cirkel valt */
  display: flex;
    justify-content: center; /* Horizontaal centreren */
    align-items: center; /* Verticaal centreren */
    text-align: center; 
}