html {
  font-size: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
section {
  padding: 80px 0;
}
ul,
ol {
  margin: 0 0 30px 0;
  padding: 0 0 0 40px;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}
p {
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
a {
  color: #008DF4;
}
a:hover,
a:focus {
  color: #0170c1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Kumbh Sans', sans-serif;
  color: #000;
}
h1 {
  font-size: 44px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: calc(22px);
  }
}
@media only screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  p {
    margin-bottom: 20px;
  }
}
.btn {
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
  padding: 15px 25px;
  border: none;
}
.btn.btn-primary {
  background-color: #008DF4;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #2aa5fe;
}
.btn.btn-secondary {
  background-color: #ed7301;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background-color: #fe8d23;
}
@media only screen and (max-width: 400px) {
  .btn {
    font-size: 15px;
    padding: 9px 15px;
  }
}
header {
  position: sticky;
  width: 100%;
  padding: 0;
  z-index: 200;
  transition-duration: 0.4s;
}
header section#header {
  background-color: #3E3128;
  height: 60px;
  padding: 0;
  margin: 0;
}
header section#header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header section#header .container .logocont {
  height: 100%;
  margin: 0;
  transition-duration: 0.4s;
}
header section#header .container .logocont a {
  height: 100%;
  display: flex;
  align-items: center;
}
header section#header .container .logocont a img {
  height: 70%;
  transition-duration: 0.4s;
  margin-bottom: -3px;
}
header section#header .container .mobile-triggers {
  display: none;
}
header section#header .container nav {
  display: table;
}
header section#header .container nav ul#menu-hoofdmenu {
  list-style: none;
  display: table-cell;
  vertical-align: middle;
}
header section#header .container nav ul#menu-hoofdmenu li {
  display: inline-block;
  position: relative;
}
header section#header .container nav ul#menu-hoofdmenu li a {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  padding: 17px 0;
  display: inline-block;
}
header section#header .container nav ul#menu-hoofdmenu li a img {
  margin-left: 10px;
}
header section#header .container nav ul#menu-hoofdmenu li a:hover,
header section#header .container nav ul#menu-hoofdmenu li a:focus {
  color: #fff;
  text-decoration: none;
}
header section#header .container nav ul#menu-hoofdmenu li.current-menu-item a {
  color: #fff;
}
header section#header .container nav ul#menu-hoofdmenu li.current-menu-item a:hover,
header section#header .container nav ul#menu-hoofdmenu li.current-menu-item a:focus {
  color: #fff;
}
header section#header .container nav ul#menu-hoofdmenu li:not(:last-child) {
  margin-right: 40px;
}
header section#header .container nav ul#menu-hoofdmenu li ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 0;
  border-radius: 4px;
  transition-duration: 0.15s;
  z-index: 10;
  border: none;
  border-radius: 3px;
  margin: 0;
  border-top: 4px solid rgba(0,0,0,0);
  transition: opacity ease-in-out .1s;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
}
header section#header .container nav ul#menu-hoofdmenu li ul.sub-menu li a {
  display: block;
  transition-duration: 0.15s;
  background-color: #fff;
  color: #333;
  font-size: 19px;
  padding: 16px 24px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 16px;
}
header section#header .container nav ul#menu-hoofdmenu li ul.sub-menu li:first-child a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
header section#header .container nav ul#menu-hoofdmenu li ul.sub-menu li:last-child a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
header section#header .container nav ul#menu-hoofdmenu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
header.fixed-top {
  top: initial;
}
@media only screen and (max-width: 992px) {
  header section#header {
    height: 50px;
  }
  header section#header .container nav {
    display: none;
  }
  header section#header .container .mobile-triggers {
    display: inline-block;
    padding: 0;
    float: right;
    margin-top: 2px;
    transition-duration: 0.4s;
  }
  header section#header .container .mobile-triggers img {
    height: 30px;
  }
  header section#header .container .mobile-triggers a {
    display: inline-block;
    padding: 7px;
    transition-duration: 0.4s;
  }
  header section#header .container .mobile-triggers a:not(:last-child) {
    margin-right: 4px;
  }
}
section#slider {
  background-color: #7f7f83;
  background-image: linear-gradient(0deg,rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%), url('../img/keukengerei-achtergrond.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 240px 0;
}
section#slider h1 {
  color: #fff;
  font-size: 70px;
}
section#slider p {
  color: rgba(255,255,255,0.8);
  font-size: 22px;
}
section#slider a.btn {
  background-color: #506f3a;
  border-radius: 99px;
  padding: 20px 50px;
  font-size: 19px;
}
footer {
  padding: 0;
  background-color: #222;
}
footer a {
  color: #696969;
}
footer a:hover,
footer a:focus {
  text-decoration: underline;
  color: #696969;
}
footer .main {
  padding: 50px 0 50px;
}
footer .main h4 {
  color: #fff;
}
footer .main p {
  color: rgba(255,255,255,0.7);
}
footer .disclaimer {
  font-size: 15px;
  padding: 30px 0 30px;
  background-color: #111;
  color: rgba(255,255,255,0.55);
}
footer .disclaimer a {
  color: rgba(255,255,255,0.7);
}
footer .disclaimer .row > div:last-of-type {
  text-align: right;
}
@media only screen and (max-width: 992px) {
  footer .main {
    font-size: 16px;
    text-align: center;
  }
  footer .main .row > div {
    margin-bottom: 20px;
  }
  footer .disclaimer {
    text-align: center;
  }
  footer .disclaimer .row > div:last-of-type {
    text-align: center;
  }
}
#wrapper {
  z-index: 3;
  position: relative;
  background-color: #fff;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#wrapper.menu-is-open {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
#mobile-navigation {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
  width: 100%;
  background-color: #000;
  overflow-y: auto;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-navigation.menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  -webkit-overflow-scrolling: touch;
}
#mobile-navigation > ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
#mobile-navigation > ul > li > a {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 16px 12px 32px;
  color: #fff;
  text-decoration: none;
}
#mobile-navigation > ul > li > a:hover {
  color: rgba(255,255,255,0.7);
}
#mobile-navigation > ul > li > ul {
  padding: 0;
}
#mobile-navigation > ul > li > ul li a {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 12px 16px 12px 32px;
  color: #fff;
  text-decoration: none;
}
#mobile-navigation > ul > li > ul li a:hover {
  color: rgba(255,255,255,0.7);
}
section#properties {
  background-color: ;
}
@media only screen and (max-width: 768px) {
  section#properties .row > div:not(:last-child) {
    margin-bottom: 30px;
  }
  section#properties p {
    margin-bottom: 15px;
  }
}
.wpcf7 form div.row > div {
  padding: 0 5px;
}
.wpcf7 form div.row > div:first-child {
  padding-left: 15px;
}
.wpcf7 form div.row > div:last-child {
  padding-right: 15px;
}
.wpcf7 form div.row > div label {
  width: 100%;
  font-size: 16px;
  color: #555;
  font-family: 'Kumbh Sans', sans-serif;
}
.wpcf7 form div.row > div label > span {
  width: 100%;
}
.wpcf7 form div.row > div label > span input,
.wpcf7 form div.row > div label > span textarea {
  border: 1px solid #d7d7d7;
  outline: none;
  width: 100%;
  border-radius: 4px;
  padding: 12px 16px 10px 16px;
  font-size: 19px;
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.05);
  margin-bottom: 12px;
  margin-top: 4px;
}
.wpcf7 form div.row > div label > span input.wpcf7-not-valid,
.wpcf7 form div.row > div label > span textarea.wpcf7-not-valid {
  border: 1px solid #eb9191;
}
.wpcf7 form div.row > div label > span select {
  border: 1px solid #ddd;
  font-size: 16px;
  color: #333;
  display: block;
}
.wpcf7 form div.row > div label > span textarea {
  height: 120px;
}
.wpcf7 form div.row > div label > span span.wpcf7-not-valid-tip {
  margin-bottom: 15px;
}
.wpcf7 form .wpcf7-submit {
  margin-top: 20px;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  font-family: 'Kumbh Sans', sans-serif;
  padding: 17px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
  background-color: #fbfbfb;
  border: 2px solid #e2e2e2;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #EDFDF8;
  border: 2px solid #92EBD1;
}
.wpcf7 form.spam .wpcf7-response-output {
  background-color: #fcecec;
  border: 2px solid #eb9191;
}
.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #fbfaf5;
  border: 2px solid #ffb900;
}
@media only screen and (max-width: 768px) {
  .wpcf7 form div.row > div {
    padding: 0 15px;
  }
  .wpcf7 form div.row > div label > span input,
  .wpcf7 form div.row > div label > span textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
