body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  color: #231718;
  font-size: 1.1rem;
}

/* header */

nav {
  font-size: 1.15rem;
  background-color: #231718;
  color: #f2f2f2;
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav img {
  width: 200px;
}

#section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8vh;
}

#section1 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

#section1 li {
  transition: transform 0.2s;
}

#section1 a {
  display: block;
  padding: 14px 16px;
  color: #f2f2f2;
  text-decoration: none;
}

#section1 li:hover {
  transform: scale(1.1);
}

#section2 a {
  color: #231718;
  text-decoration: none;
}

.upperpart {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 8vh;
}

.navbar-toggle {
  display: flex;
  color: #f2f2f2;
  margin-right: 5px;
  position: absolute;
  margin: auto 0;
  right: 10px;
}

.unfoldedpart {
  background-color: #f2f2f2;
  height: 92vh;
  width: 100%;
  font-size: 1.5rem;
  justify-content: center;
  /* align-items: center; */
}

.unfoldedpart ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  /*margin-left: 20px; */
  padding: 0;
  width: 80%;
  /* box-shadow: 0 10px 5px black; */
}

.unfoldedpart li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #231718;
}

/* 
.unfoldedpart li:last-child {
  margin-bottom: 0.7rem;
} */

#section2 {
  display: none;
}

@media (max-width: 768px) {
  #section1 {
    display: none;
  }

  #section2 {
    display: block;
  }

  .unfoldedpart {
    display: none;
  }

  nav {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
}

.dynamicunfold {
  display: flex;
}

.dynamiccenter {
  justify-content: center;
}

.hidescrollbar {
  overflow: hidden;
}

/*carousel*/
.carousel-inner {
  max-height: 92vh;
}

/*Info homepage*/

@media (max-width: 768px) {
  #info h1 {
    font-size: 2rem;
  }
}

#info p {
  text-align: justify;
}

#contact-button {
  position: relative;
  border-color: #231718;
  font-family: "Work Sans", sans-serif;
  color: #231718;
  z-index: 10;
}

#contact-button:hover {
  background-color: #231718;
  color: #f2f2f2;
}

@media (max-width: 768px) {
  #info {
    margin-top: 1.5rem !important;
  }
}

/*Interieur en exterieur*/

.section-hidden-left {
  opacity: 0;
  transform: translateX(-5rem);
}

.section-hidden-right {
  opacity: 0;
  transform: translateX(5rem);
}

img {
  max-width: 100%;
  border-radius: 2px;
}

/* #img-interieur,
#img-exterieur {
  max-width: 90%;
} */

#div-img-interieur {
  height: 100%;
}

#interieur p,
#exterieur p {
  margin: 0;
  text-align: justify;
}

#interieur {
  padding-top: 45px;
  margin-top: -45px;
}

#exterieur {
  margin-bottom: 40px;
  padding-top: 45px;
  margin-top: -45px;
}

@media (max-width: 992px) {
  #exterieur-content {
    flex-direction: column-reverse;
  }

  #img-interieur,
  #img-exterieur {
    margin-bottom: 10px;
  }
}

/*Realisaties*/

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gallery img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/* Set the size of the div element that contains the map */
#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.content {
  min-height: calc(
    100vh - 8vh - 250px - 2.5rem
  ); /*100vh - navbar - footer - margins top and bottom*/
  /* display: flex;
  justify-content: space-between; */
}

/*footer*/

.footer {
  height: 250px;
  width: 100%;
  background-color: #231718;
  color: #f2f2f2;
  justify-self: flex-end;
  display: flex;
  align-items: center;
}

.company_name {
  font-size: 1.5rem;
}

.footer ul {
  list-style-type: none;
}

#index-footer ul {
  padding: 0;
}

.footer a {
  color: #f2f2f2;
}

@media (max-width: 768px) {
  #index-footer {
    display: none;
  }

  #contact-info-footer ul {
    padding: 0;
  }
}
