html {
    font-family: Effra, sans-serif;
    background: #FAFAFA;
    scroll-behavior: smooth;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

body {
    padding: 0px 120px;
}

h1 {
    font-size: 7em;
    font-weight: 600;
}

h2 {
    font-size: 3em;
    font-weight: 600;
}

h3 {
    font-size: 2em;
    font-weight: 600;
}

p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #000;
}

i {
    font-style: italic;
    font-weight: 400;
    color: #454545;
}

/* Header */

header {
    padding: 24px 0px;
    border-bottom: solid 1px #9E9E9E;
    display: flex;
    justify-content: space-between;
    right: 120px;
    left: 120px;
    position: fixed;
    z-index: 10;
    background: #fafafa;
}

header img {
    height: 40px;
}

header nav {
    margin-top: 12px;
}

header nav a{
    font-size: 22px;
    margin-left: 32px;
    font-weight: 300;
    padding-bottom: 2px;
}

header nav a:hover {
    font-weight: 400;
    border-bottom: 1px solid #80BC00;
}

.button {
    padding: 11px 18px 11px 19px;
    border: solid 2px #80BC00;
    border-radius: 16px;
    display: inline-block;
    transition: 0.2s;
}

.button img {
    height: 24px;
    width: 24px;
    display: inline-block;
    margin-top: 2px;
}

.button p {
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    margin-right: 6px;
    transition: 0.3s;
}

.button:hover {
    border: solid 2px #000;
}

.button:hover p {
    margin-right: 16px;
}

.subtitle {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 24px;
    margin-top: 6px;
 }

 footer {
     display: flex;
     gap: 10%;
     border-top: solid 1px #9E9E9E;
     padding: 64px 0px;
     background: #FAFAFA;
 }

 footer p {
     font-size: 18px;
     line-height: 1.6;
 }

 footer #socialIcons{
     display: flex;
     gap: 12px;
 }

 footer img {
     width: 32px;
 }



 /* menu icon */

 .menu-icon {
    cursor: pointer;
    position: relative;
    user-select: none;
    display: none;
    float: right;
    margin-top: 16px;
    }

.navicon {
    background-color: #4A4B4D;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 28px;
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
    background: #4A4B4D;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.menu-icon .navicon:before {
top: 9px;
}

.menu-icon .navicon:after {
    top: -9px;
}

.formulier {
    width: 75%;
}

/* menu btn */

.mobileMenu {
    clear: right;
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s ease-out;
    display: none;
}

.menu-btn {
    display: none;
    }


.menu-btn:checked ~ .mobileMenu {
    max-height: 240px;
}

.menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}











 @media (max-width: 1400px) {
    h1 {
        font-size: 6em;
    }
}

 @media (max-width: 1300px) {
    body {
        padding: 0px 80px;
    }

    header {
        right: 80px;
        left: 80px;
    }

    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 980px) {
    body {
        padding: 0px 40px;
    }

    header {
        right: 40px;
        left: 40px;
    }

    h1 {
        font-size: 4em;
    }

    footer {
        display: block;
        text-align: center;
    }

    footer div {
        margin-bottom: 40px;
    }

    #socialIcons {
        justify-content: center;
    }

    footer img {
        width: 50px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 0px 24px;
    }

    header nav{
        display: none;
    }

    header {
        right: 24px;
        left: 24px;
        display: block;
    }

    p {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.5;
    }

    .menu-icon {
        display: block;
    }

    .mobileMenuButtons {
        padding-top: 40px;
    }

    .mobileMenu {
        display: block;
    }

    .mobileMenu a p {
        display: block;
        text-align: center;
        font-size: 1.5em;
        line-height: 2;
    }

}