    /** MAIN SETTINGS */
    * {
        box-sizing: border-box;
    }

    ::selection {
        background: #bababa;
    }

    select::-ms-expand {
        display: none;
    }

    html {
        margin: 0 auto;
        max-width: 1500px;
    }

    body {
        font-family: 'Lato', sans-serif;
        margin: 0;
        padding: 0;
    }

    h1 {
        font-family: 'Lobster', cursive;
    }

    h2 {
        border-bottom: 2px solid black;
        font-family: 'Lobster', cursive;
        letter-spacing: 1.7px;
    }
    
    h3 {
        margin: 0;
        font-family: 'Lobster', cursive;
    }

    h4 {
        display: block;
        margin: 0;
        font-size: 18px;
    }

    button {
        border: 0;
        background-color: rgb(144, 180, 197);
        padding: 12px;
        border-radius: 10px;
        transition: all .2s;
        font-size: 18px;
        color: black;
        font-family: 'Lobster', cursive;
        margin-left: 25px;
    }

    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    button:active {
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    button:focus {
        outline: 0;
    }

    .price-bold {
        margin: 0;
        font-family: 'Lobster', cursive;
    }

    .preload * {
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
    }

/** HEADER */
    header {
        font-size: 24px;
        overflow: hidden;
        padding: 10px 80px;
        position: fixed;
        z-index: 1;
        background-color: white;
        width: 100%;
        /*width: inherit;*/
        border-bottom: 2px solid #ADCCDB;
        top: 0;
        left: 0;
    }

    #header-logo {
        float: left;
        width: 150px;
    }

    #header-nav {
        float: right;
        margin-top: 30px;
    }

    .header-a {
        text-align: center;    
        text-decoration: none;
        padding: 12px;
        color: black;
        border-radius: 40px;
        margin: 0px 5px;
        transition: 0.3s;
    }

    .header-a:hover {
        background-color: #ADCCDB;
        color: white;
    }

    .icon {
        display: none;
      }

/** MAIN */
    main {
        margin-top: 100px;
    }

    /** BANNER */
    #main-banner {
        background: url('../images/banner.jpg');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center; 
        width: 100%;
        height: 650px;
    }

    /** COVID-19 */
    #main-covid-container {
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    #main-covid-block {
        background-color: rgb(144, 180, 197);
        flex: 1 1 auto;
        align-self: center;
        max-width: 60%;
        width: 60%;
        padding: 10px;
        margin: 5px;
        border-radius: 5px;
        box-shadow: 2px 3px 5px #a1a0a0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    #main-covid-title {
        flex: 1 1 auto;
        align-self: center;
        display: block;
        margin: 0;
        text-align: center;
    }

    #main-covid-table {
        flex: 1 1 auto;
        align-self: center;
    }
        
    /** OVER MIJ SECTION */
    #main-about-container {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    #main-about-left, #main-about-right {
        flex: 1 1 auto;
        max-width: 35%;
    }

    #main-about-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #main-about-left-img {
        width: 90%;
        height: auto;
        border-radius: 3px;
    }

    #main-about-right {
        text-align: center;
        padding: 20px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #main-about-right > p {
        background-color: #ADCCDB;
        padding: 5px;
        border-radius: 5px;
        color: black;
        box-shadow: 2px 3px 5px #a1a0a0;
        margin: 5px;
    }
    
    /** LOVE YOUR FEET SECTION */
    #main-intro-container {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .main-header {
        text-align: center;
        display: block;
        font-size: 48px;
    }

    #main-intro-left, #main-intro-right {
        flex: 1 1 auto;
        max-width: 33%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 5px;
        background-color: #ADCCDB;
        border-radius: 5px;
        box-shadow: 2px 3px 5px #a1a0a0;
    }

    /** PRIJSLIJST SECTION */
    .main-prices-container {
       display: flex;
       flex-direction: column;
       justify-content: center;
       margin-top: 40px;
       width: 100%;           
    }

    .main-prices-block {
        flex: 1 1 auto;
        align-self: center;
        min-width: 60%;
        width: 60%;
        padding: 10px;
        margin: 5px;
        background-color: #ADCCDB;
        border-radius: 5px;
        box-shadow: 2px 3px 5px #a1a0a0;
        display: flex;
        justify-content: center;
    }

    .main-prices-left, .main-prices-right {
        flex: 1 1 auto;
        padding: 10px;
    }

    .main-prices-left {
        text-align: left;
        max-width: 90%;
    }

    .special {
        max-width: 100%;
    }

    .main-prices-right {
        text-align: right;
        max-width: 10%;
    }

/** FOOTER */
footer {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ADCCDB;
    color: black;
    margin-top: 50px;
}

#footer-left, #footer-middle, #footer-right {
    flex: 1 1 auto;
    max-width: 33%;
    padding: 10px;
    text-align: left;
}

.footer-table {
    text-align: left;
}

tr {
    border: 2px solid black;
}

#footer-provoet {
    width: 150px;
    margin-top: 10px;
}

#footer-bottom {
    background-color: rgb(144, 180, 197);
    text-align: center;
    padding: 15px;
    color: black;
}

#footer-bottom > a {
    text-decoration: none;
    color: black;
}

#footer-bottom > a:hover {
    color: white;
}

/** Contact form */
input[type=text], input[type=email], input[type=date], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: none;
  }
  
  input[type=submit] {
    border: 0;
    background-color: rgb(144, 180, 197);
    padding: 12px;
    border-radius: 10px;
    transition: all .2s;
    font-size: 18px;
    color: black;
    font-family: 'Lobster', cursive;
    margin-left: 25px;
  }
  
  input[type=submit]:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  input[type=submit]:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  input[type=submit]:focus {
    outline: 0;
  }
  
  .content-container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 20px;
  }

  .message-box-event {
      width: 100%;
      border-radius: 5px;
      background-color: #9cf06c;
      padding: 20px;
      margin-top: 20px;
  }

/** FIXED BUTTON */
#button-fixed {
    border: 1px solid white;
    border-radius: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    background-color: #ADCCDB;
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
}

/** Recaptcha response */
#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}