/*-------------- GENERAL -----------------*/
main {
  min-height: calc(100% - 274px);
}
main:not(.homePage) {
  margin-top: 1rem;
}
.imgContainer img {
  width: 100%;
}
button,
a[role="button"] {
  background-color: #faa226;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
}
button:hover,
a[role="button"]:hover {
  background-color: #fe564c;
}
/*-------------------------------*/
/*------------- HEADER ------------*/
header {
  background: #ccc;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header a {
  color: #444;
  text-decoration: none;
}
header a:hover {
  font-weight: 700;
}
.mainMenu {
  align-self: center;
}
.mainMenu .item {
  text-transform: capitalize;
  font-size: 18px;
}
.mainMenu .item:nth-child(1n + 0) {
  border-right: 1px solid #000;
}
.mainMenu .item:last-child {
  border-right: none;
}
.mainMenu.active {
  position: absolute;
  background: #444;
  color: #fff;
  padding: 0.5rem 1rem;
  display: block !important;
  width: 10rem;
  max-width: 90%;
  top: 100%;
  right: 0;
  z-index: 10;
}
.mainMenu.active a {
  color: #fff;
}
.mainMenu.active div.row {
  flex-direction: column;
}
.mainMenu.active div.item {
  border-right: none;
  border-bottom: 1px solid #fff;
}
/*-------------------------------*/
/*----------- MAIN --------------*/
.main {
  min-height: calc(100% - 275px);
}
.main .logo {
  width: 150px;
}
.main .logo img {
  width: 100%;
}
.main a:not([role="button"]) {
  color: #faa226;
  text-decoration: none;
}
/*-------------------------------*/
/*------------- FOOTER -----------*/
footer {
  background: #444;
  width: 100%;
  padding: 2rem 0 1rem 0;
  color: #fff;
  margin-top: 5rem;
}
footer ul {
  list-style-type: none;
  padding: 0;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
}
footer ul li a:hover {
  color: #faa226;
}
footer img {
  width: 100%;
}
footer .footerBottom {
  text-align: center;
}
footer .footerBottom p {
  margin: 0 0 0.5rem 0;
}
footer .footerBottom a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  footer {
    text-align: center;
  }
}
/*-------------------------------*/
/*---------- Home Pagina --------*/
.homePage .imgContainer {
  width: 100%;
  position: relative;
}
.homePage .imgContainer .banner {
  height: 450px;
  margin-bottom: 1rem;
}
.homePage .imgContainer img {
  width: 100%;
}
.homePage .infoBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 1em 2em;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr 40px;
}
.homePage .homepage-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.homePage .homepage-overlay .homePage-title {
  font-weight: bold;
  color: #444;
  font-size: 24px;
}
.homePage .homepage-overlay .contactButton {
  text-align: center;
}
/*------------- Contact Pagina ------------*/
.contactPage .infoBox,
.contactPage .contactBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 1em 2em;
}
.contactPage .contactBox {
  margin: 1em 0;
}
.contactPage .contactBox table {
  width: 75%;
  margin: auto;
}
.contactPage .contactBox table input,
.contactPage .contactBox table textarea {
  width: 100%;
  border-radius: 5px;
  border: none;
  background-color: #eee;
}
.contactPage .contactBox table textarea {
  resize: none;
}
.contactPage .contactBox table button {
  background: limegreen;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  border: none;
  width: 25%;
  min-width: 10em;
}
/*-------------------------------*/
/*------------- Diensten Pagina ------------*/
.dienstBlok {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 1em 2em;
  border-radius: 10px;
  margin: 1em 0;
}
.dienstBlok .imgContainer {
  width: 100%;
}
.dienstBlok .imgContainer img {
  width: 100%;
  object-fit: cover;
}
.dienstBlok:nth-child(even) p,
.dienstBlok:nth-child(even) h2 {
  text-align: right;
}
/*-------------------------------*/
/*------------- Over ons Pagina ------------*/
.over-ons .imgContainer {
  margin-bottom: 1rem;
}
.over-ons .imgContainer img {
  width: 100%;
  height: 500px;
}
.over-ons .infoBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  margin-bottom: 1rem;
  padding: 0 1rem 0 1rem;
}
/*-------------------------------*/
/*------------- Zonnepanelen Pagina ------------*/
.zonnepanelen .imgContainer {
  position: relative;
}
.zonnepanelen .imgContainer button {
  position: absolute;
  top: 50%;
  border: none;
  background: #444;
  color: #fff;
  z-index: 2;
  translate: 0 -50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 0;
}
.zonnepanelen .imgContainer button.left {
  left: 0;
}
.zonnepanelen .imgContainer button.right {
  right: 0;
}
/*-------------------------------*/
