/* MAIN CSS FILE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    font-size: 16px;
    max-width: 100vw;
    font-family: Optima,Segoe,Segoe UI,Candara,Calibri,Arial,sans-serif;
	overflow-x: hidden;
}

body {
	position: relative;
	overflow-x: hidden;
	width: 100%;
}

/* Red and green icons */
.fa-check {
    color: green;
}

.fa-remove {
    color: red;
}

#logo {
    margin-left: 10px;
    margin-right: 0;
}

/* Navbar */
#mainnav ul {
    list-style: none;
}

#mainnav > ul > li {
    font-weight: bold;
    padding-left: 6px;
    padding-right: 6px;
}


#mainnav ul li {
    position: relative;
}
.header #mainnav > ul > li > a {
    line-height: 100px;
}

#mainnav > ul > li > a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: black;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#mainnav > ul > li > a:hover {
    color: rgb(139, 139, 139);
}



#mainnav ul.submenu {
    position: absolute;
    left: 0;
    top: 150%;
    width: 300px;
    text-align: left;
    background-color: #222222;
    z-index: 9999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#mainnav ul.submenu li:first-child {
    border-top: none;
}

#mainnav ul.submenu > li {
    border-top: 1px solid #333333;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#mainnav ul li ul li {
    margin-left: 0;
}

#mainnav ul.submenu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 0 0 0 20px;
    line-height: 45px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}



#mainnav ul.submenu > li > a:hover {
    color: rgb(208, 208, 208);
    
}

#mainnav ul li:hover > ul.submenu {
    top: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
}

#mainnav {
    padding: 30px;
}

#navbar {
    display: flex;
    justify-content: space-between;
    height: 86px;
}

#navbar-contact {
    cursor: pointer;
    font-size: 16px; 
    border: none;
    outline: none;
    padding: 8px 15px 10px 15px !important;
    margin-top: -5px;
    background-color: red;
    border-radius: 16px;
    transition: 0.3s;
}

#navbar-contact:hover {
    background-color: darkred;
}


#menu {
    display: flex;
    
}

.mobile-submenu-links {
    display: none;
}

/* Hamburger icon */
.hamburger {
    display: none;
    padding-top: 4%;
    padding-right: 4%;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: red;
}











/* Footer */
footer {
    background-color: #1c3b52;
}

.footer-content {
    display: flex;
    justify-content: space-evenly;
    padding: 2% 2% 2% 2%;
    
}

.footer-menu, .footer-adres, .footer-form {
    padding: 3% 4% 0% 4%;
}

.footer-menu ul, .footer-adres ul {
    list-style: none;
    
}

.footer-menu a, .footer-adres li {
    color: #9099a1;
    font-size: 18px;
    padding-bottom: 15px;
    list-style: none;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu li {
    padding-bottom: 8px;
    list-style: none;
}

.footer-menu a:hover {
    color: #bac7d3;
}

.footer-menu h3, .footer-adres h3, .footer-form h3 {
    color: #b2bfcc;
    padding-bottom: 25px;
    font-size: 20px;
}

#footer-menu-contact {
    color: red;
}
#footer-menu-contact:hover {
    color: rgb(175, 2, 2);
}

#footer-adres-mail {
    color: red;
    transition: 0.3s;
    text-decoration: none;
}

#footer-adres-mail:hover {
    color: rgb(175, 2, 2);
    cursor: pointer;
}


/* Footer pictures */
.footer-pictures {
    
    padding: 2%;
    display: flex;
    flex-direction: column;
}

.footer-pictures img {
    width: 144px;
    height: 100px;
    margin: 0% 5% 15% 5%;
}

.footer-pictures img:hover {
    cursor: pointer;
}

#KIWA-img {
    height: 150px;
    width: 100px;
}

hr {
    width: 95%;
    margin: auto;
    background-color: #9099a1;
    border: 1px solid #9099a1;
    margin-top: 2%;
}


/* footer extra info */
.footer-extra-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.footer-extra-info p {
    color: #9099a1;
    padding: 10px 20px 10px 20px;
}

.footer-extra-info a {
    text-decoration: none;
    color: #9099a1;
    padding-right: 10px;
    transition: 0.3s;
}

.footer-extra-p:hover {
    color: #bac7d3;
    cursor: pointer;
}






/* SMALLER/LARGER SCREENS */

/* Tablet menu LARGE screen sizes/SMALL laptops */
@media only screen and (max-width: 1254px) {
    #logo {
        max-height: 75px;
    }

    #mainnav {
        padding-left: 20;
        padding-top: 25px;
    }

    #mainnav > ul > li > a {
        font-size: 14px;
    }
}




/* Tablet menu MEDIUM screen size */
@media only screen and (max-width: 1140px) {
    #logo {
        max-height: 100%;
    }
    #menu {
        flex-direction: column;
    }

    #mainnav ul.submenu {
        display: none;
    }

    .submenu-btn {
        display: none;
    }

    .mobile-submenu-links {
        display: block;
    }

    #mainnav {
        padding: 4%;
        position: absolute;
        overflow-y:scroll;
        overflow-x:hidden;
        z-index: 120;
        right: -100%;
        top: 0%;
        bottom: 0%;
        flex-direction: column;
        justify-content: flex-start;
        background-color: #191716;
        width: 37vw; 
        height: 60vh;
        transition: 0.3s;
    }

    #navbar {
        height: 80px;
    }

    #mainnav > ul > li {
        padding-bottom: 10px;
    }
	
	#mainnav > ul > li:nth-child(14) {
        margin-bottom: 12px !important;
    }

    #mainnav > ul > li > a {
        color: rgb(232, 232, 232);
        font-size: 16px;
    }

    #navbar-contact {
        margin-top: 10px;
    }

    .hamburger {
        padding-right: 3%;
        padding-top: 3%;
    }

    /*Zichtbaar maken menu en animatie hamburger-icoon*/
    #mainnav.active {
        right: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 150;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }    

    /* Footer */
}


@media only screen and (max-width: 1024px) {
    .footer-menu a, .footer-adres li {
        font-size: 16px;
    }
}



/* Moblie menu */
@media only screen and (max-width: 640px) {
    .cv-error {
        color: green;
        font-size: 14px !important;

    }

    .cv-succes {
        color: green;
        padding-top: 20px;
        font-size: 14px !important;
    }



    #menu {
        flex-direction: column;
    }

    #mainnav ul.submenu {
        display: none;
    }

    .submenu-btn {
        display: none;
    }

    .mobile-submenu-links {
        display: block;
    }

    #mainnav {
        padding: 15%;
        position: absolute;
        overflow-y:scroll;
        overflow-x:hidden;
        z-index: 120;
        right: -100%;
        top: 0%;
        bottom: 0%;
        flex-direction: column;
        justify-content: flex-start;
        background-color: #191716;
        width: 100vw; 
        height: 100vh;
        transition: 0.3s;
    }

    #navbar {
        height: 60px;
    }

    #mainnav > ul > li {
        padding-bottom: 10px;
    }

    #mainnav > ul > li > a {
        color: rgb(232, 232, 232);
        font-size: 16px !important;
    }

    #navbar-contact {
        margin-top: 20px !important;
    }

    /*Zichtbaar maken menu en animatie hamburger-icoon*/
    #mainnav.active {
        right: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 150;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }  
    
    /* Footer */
    .footer-pictures {
        display: none;
    }

    .footer-form-small {
        display: block;
        width: 100%;
    }

    .footer-form-small div{
        width: 100%;
        padding: 8%;
    }

    .footer-content div:last-child {
        display: none;
    }

    .footer-content {
        width: 100%;
        padding: 8%;
    }

    .footer-menu, .footer-adres {
        width: 50%;
    }

    .footer-menu h3, .footer-adres h3 {
        font-size: 1.2em;
        padding-bottom: 10%;
    }

    .footer-content li,.footer-content a  {
        font-size: 14px;
        padding-bottom: 6%;
    }

    .footer-form h3 {
        font-size: 1.2em;
        padding-bottom: 2%;
    }
    
    label {
        font-size: 14px;
    }

    hr {
        width: 85%;
    }

    .footer-extra-info p:first-child {
        display: none;
    }

    .footer-extra-info p {
        
        font-size: 14px;
    }

    .footer-extra-info a {
        font-size: 14px;
    }

    .footer-last-p-small {
        display: block;
        text-align: center;
        color: #9099a1;
        font-size: 12px;
        padding: 4%;
    }

    
}







/* mobile small */
@media only screen and (max-width: 414px) {
    .footer-content {
        flex-direction: column-reverse;
        width: 100%;
    }

    .footer-menu, .footer-adres {
        width: 100% !important;
    }

    .footer-content li, .footer-content a {
        padding-bottom: 2% !important;
    }
}














































































@media only screen and (max-width: 414px) {
    /* navbar */
    
    
    


    /* Footer */
    .footer-pictures {
        display: none;
    }

    .footer-form-small {
        display: block;
        width: 100%;
    }

    .footer-form-small div{
        width: 100%;
        padding: 8%;
    }

    .footer-content div:last-child {
        display: none;
    }

    .footer-content {
        width: 100%;
        padding: 8%;
    }

    .footer-menu, .footer-adres {
        width: 50%;
    }

    .footer-menu h3, .footer-adres h3 {
        font-size: 1.2em;
        padding-bottom: 10%;
    }

    .footer-content li,.footer-content a  {
        font-size: 14px;
        padding-bottom: 6%;
    }

    .footer-form h3 {
        font-size: 1.2em;
        padding-bottom: 2%;
    }
    
    label {
        font-size: 14px;
    }

    hr {
        width: 85%;
    }

    .footer-extra-info p:first-child {
        display: none;
    }

    .footer-extra-info p {
        
        font-size: 14px;
    }

    .footer-last-p-small {
        display: block;
        text-align: center;
        color: #9099a1;
        font-size: 12px;
        padding: 4%;
    }
}