body,
html {
  height: 100%;
  margin: 0;
  background-color: #222831;
  font-family: "Avenir Next LT Pro", sans-serif;
}

h2,
h3,
h4,
h5 {
  font-family: "Arial Rounded MT";
  color: #fd7014;
}
p {
  font-family: "Avenir Next LT Pro", sans-serif;
  color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}

.section__title {
  margin-bottom: 5px;
  text-align: center;
  font-size: xx-large;
}
hr.Ondertitel {
  width: 160px;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: #fff;
}

/*---------------------------------------------------------------------------------------*/
/* ------------ style the full page ------------ */
.wrapper {
  min-width: 750px; /* De minimale waarde dat de pagina nog mag veranderen */
  margin: 0px auto 0px auto;
  background-color: #222831;
}

/*---------------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------*/
/* ------------ Header + Menu style ------------ */
header {
  position: relative;
}
/* Menu balk opmaak */
.MenuBalk {
  position: relative;
  height: 60px;
  background-color: rgba(57, 62, 70, 0.75);
}
.MenuBalk::after {
  /* Dit is voor een float item in zijn div te houden */
  content: "";
  display: block;
  clear: both;
  background-color: rgba(57, 62, 70, 0.75);
}
.logo {
  width: 200px;
  float: left;
}
.nav_blok {
  float: right;
}
.nav__list {
  padding-left: 0px;
}
.nav__item {
  color: white;
  display: inline-block;
  padding-left: 7px;
  padding-right: 9px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Avenir Next LT Pro", sans-serif;
  border-right: 2px solid white;
}
/* code van oefening Web engineering + eigen aanpassingen en toevoegingen*/
li a ul li a {
  content: "";
  clear: both;
}
/* selector must be specific to avoid using this style on last element of submenu */
nav > ul > li:last-child {
  border-right: none;
}
/* change color on hover except for the active menu item*/
nav .nav__link:hover {
  color: #7f7f7f;
}
/* hide lists level 2 */
nav li ul {
  position: absolute;
  width: 150px;
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* lengte van de verborgen menu items */
nav li:hover ul.taal_verborgen {
  display: block;
  width: 170px;
}
/* lengte breedte link */
.sub_link2 {
  display: inline-block;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom-left-radius: 15px;
  text-align: center;
}
/* opmaak van de verborgen menu items 2*/
.sub_item_2 {
  color: #fff;
  background-color: rgba(57, 62, 70, 0.75);
  border-bottom-left-radius: 15px;
  border-left: 1px solid #fd7014;
  border-bottom: 1px solid #fd7014;
}
.sub_item_2:hover {
  background-color: rgba(253, 112, 20, 0.7);
}
/* kleine cheat om de hover actief te houden en de achtergrond uitlijning van de verborgen items juiste onderaan de menu balk te zetten*/
nav li ul > .uitzondering {
  height: 16.4px;
  display: block;
}
/*---------------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------*/
/* ------------ Contact velden  ------------ */
.container {
  margin-top: 5%;
  margin-left: 20%;
  margin-right: 20%;
  border-radius: 50px;
  background-color: rgba(9, 32, 63, 0.15);
  padding: 20px;
}
h1 {
  margin-bottom: 5px;
  text-align: center;
  font-family: "Arial Rounded MT";
  color: #fd7014;
}
form {
  color: white;
  font-family: "Arial Rounded MT";
}
form label,input,textarea {
  display: block;
  width: 90%;
}
#j1,#j2,#j3,#j4{
  float: right;
  margin: 3px;
  display: none;
  color: green;
}
#f1,#f2,#f3,#f4{
  float: right;
  margin: 3px;
  display: none;
  color: red;
}
label {
  margin-top: 10px;
  margin-bottom: 5px;
}
textarea {
  max-width: 90%;
  height: 200px;
  border-radius: 5px;
  border-color: #fd7014;
}
input{
  display: inline-block;
  border-radius: 5px;
  border-color: #fd7014;
}
#submit {
  width: 100px;
  height: 20px;
  margin-top: 10px;
  background-color: #fd7014;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/*---------------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------*/
.footer_snede_begin {
  position: relative;
  height: 75.6px;
  width: 100%;
  background-color: #5d5c5cb0;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 90% 3%, 10% 3%, 0 100%);
}
/*---------------------------------------------------------------------------------------*/
/* ------------ footer ------------ */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  color: #fff;
}
footer > div.social_item {
  margin: 10px;
  font-size: large;
}
h6 {
  color: #fd7014;
  font-family: "Arial Rounded MT";
  margin: 5px;
  font-size: x-large;
}
.footer_paragraaf,
.footer_link {
  margin: 10px 5px;
  font-size: large;
}
.footer_link:hover {
  color: #7f7f7f;
}
/*---------------------------------------------------------------------------------------*/
