/* Header */

  body {
    margin: 0;
    padding: 0;
    font-family: 'Libre Franklin', sans-serif !important;
  }

  .full-width-image {
    position: relative;
    width: 100%;
    max-width: 100vw !important;
    overflow: hidden;
  }

  .full-width-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2; /* nav boven img*/
  }

  .video-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video {
    width: calc(25% - 10px); /* 25% breedte met 10px ruimte ertussen */
    height: 300px;
    margin-bottom: 20px;
}
.video iframe {
    width: 100%;
    height: 100%; /* Zorg ervoor dat de video's de volledige grootte van hun container innemen */
}
iframe {
    width: 100%;
    height: 315px; /* Stel de hoogte van de video's in */
}
/* Navbar */
.navbar {
  position: fixed-top;
  top: 0px;
  width: 100%;

  z-index: 1000; /* Make sure it's above other elements */
}

.nav-link{
  display: flex;
  align-items: center; /* Center items vertically */
    color:#899582;
    font-size: 24px !important;
}

.nav-link:visited {
  color:#899582 !important;
}

.nav-title{
    color:#899582;
    font-size: 38px;
    font-weight: bold;
    font-family: 'Abril Fatface', serif;
    
}


.navbar-brand img{
    height: 90px;
    width: 90px;
}

.navbar-toggler {
  position: fixed;
    right: 15px;
    top: 45px;
    z-index: 1001; /* Ensure it's above the navbar */
    background-color: transparent;
    border: none;
    outline: none;
    margin-right: 15px;
}
  .navbar-toggler-icon {
    background-color: #899582;  
}
.circle-button {
  position: fixed;
  
  width: 60px; /* Pas dit aan naar de gewenste grootte van de knop */
  height: 60px; /* Pas dit aan naar de gewenste grootte van de knop */
  padding: 0; /* Verwijder eventuele padding om een perfecte cirkel te maken */
  background-color: #899582 ;
}
  .navbar-toggler:focus {
    box-shadow: none; 
  }
 
  .nav-link .bullet {
    margin-right: 10px;
    /* Space between bullet and text */
    font-size: 72px;
    /* Adjust to the desired size */
    color: #bfad6c;
  }
  


  .bullet {
  align-items: center;
    color: #bfad6c; 
    margin-right: 10px; /* Ruimte tussen bolletje en tekst */
    font-size: 86px; /* Aanpassen naar de gewenste grootte */
  }

 /* Back to top button */

 .back-to-top {
  position: fixed;
  right: 25px;
  bottom: 15px;
  z-index: 99999;
  background: #899582;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #C9DEC1;
  color: #fff;
}

.back-to-top.active {
  opacity: 1;
}

 /* Sidebar nav */

/* Aanvullende stijlen voor de bullet (lijstpunt) in de links */


 /* Footer */
.footer-nav{
  background-color: #F6F9F5;
}

 /* Maps */
#map {
  filter: grayscale(100%); 
} 

.map {
  padding: 0;
  margin-bottom: -10px;
}

.map iframe {
  width: 100%;
  height: 680px;
}

/* Contact */

  .contact-area {
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      background-color: #f6f9f5;
     
  }
  
  @media only screen and (max-width:768px) {
      .contact {
          margin-bottom: 60px;
      }
  }
  
  .contact input {
      background: #ffffff;
      border: 1px solid #fff;
      border-radius: 3px;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #232434;
      font-size: 16px;
      height: 60px;
      padding: 10px;
      width: 100%;
      font-family: 'poppins', sans-serif;
      padding-left: 30px;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      margin-bottom: 10px;
      margin-top: 10px;
  }
  
  .contact textarea {
      background: #ffffff;
      border: 1px solid #fff;
      border-radius: 3px;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #859583;
      font-size: 16px;
      padding: 10px;
      width: 100%;
      font-family: 'poppins', sans-serif;
      padding-left: 30px;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      margin-bottom: 20px;
      margin-top: 20px;
  }
  
  .contact input:focus {
      background: #fff;
      border: 1px solid #fff;
      color: #232434;
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: 0 none;
  }
  
  .contact textarea:focus {
      background: #fff;
      border: 1px solid #fff;
      color: #232434;
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: 0 none;
      margin-top: 10px;
      
  }
  
  .form-control::placeholder {
      color: #232434;
      opacity: 1;
  
  }
  
  .btn-contact-bg {
      border-radius: 30px;
      color: #ffffff;
      outline: medium none !important;
      padding: 15px 27px;
      text-transform: capitalize;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      background:#899582;
      font-family: 'poppins', sans-serif;
      cursor: pointer;
      width: 100%;
      margin-bottom: 30px;
      margin-top: 20px;
  }
  
  .btn-contact-bg:hover,
  .btn-contact-bg:focus {
      background: #ffffff;
      color: #fff;
  }
  
  .single_address {
      overflow: hidden;
      margin-bottom: 10px;
      padding-left: 40px;
  }
  
  @media only screen and (max-width:768px) {
      .single_address {
          padding-left: 0px;
      }
  }
  
  .single_address i {
      background: #ffffff;
      color:#899582;
      border-radius: 30px;
      width: 60px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      float: left;
      margin-right: 14px;
      font-size: 24px;
      -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }
  
  .single_address:hover i {
      background: #C9DEC1;
      color: #fff;
  }
  
  .single_address h4 {
      font-size: 24px;
      margin-bottom: 0px;
      overflow: hidden;
      font-weight: 600;
  }
  
  .single_address p {
      overflow: hidden;
      margin-top: 5px;
  }
  
  .section-title h1 {
      font-size: 44px;
      font-weight: 500;
      margin-top: 0;
      position: relative;
      text-transform: capitalize;
      margin-bottom: 15px;
      margin-top: 20px;
  }
  .section-title p {
      padding: 0 10px;
      width: 70%;
      margin: auto;
      letter-spacing: 1px;
  }
  .section-title {
      margin-bottom: 60px;
  }
  .text-center {
      text-align: center!important;
  }

  h4 {
    font-size: 28px;
    color: #355645;
  }

  p, a, href{
    font-size: 18px;
    color: #859583;
  }
  
  /* FAQ */


.accordion-style .card:last-child {
    margin-bottom: 0;
}
.accordion-style .card-header {
    border: 0;
    background: #C9DEC1;
    padding: 0;
    border-bottom: none;
}
.accordion-style .btn-link {
    color: #ffffff;
    position: relative;
    background: #899582;
    border: 1px solid #899582;
    display: block;
    width: 100%;
    font-size: 24px;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    padding: 15px 55px;
    text-decoration: none;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed {
    background: #ffffff;
    border: 1px solid #899582;
    color: #899582;
    border-radius: 3px;
}
.accordion-style .btn-link.collapsed:after {
    background: none;
    border-radius: 3px;
    content: "+";
    left: 16px;
    right: inherit;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    text-align: center;
    background-color: #899582;
    color: #fff;
}
.accordion-style .btn-link:after {
    background: #fff;
    border: none;
    border-radius: 3px;
    content: "-";
    left: 16px;
    right: inherit;
    font-size: 28px;
    font-weight: 600;
    height: 26px;
    line-height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    position: absolute;
    color: #899582;
    text-align: center;
}
.accordion-style .card-body {
    padding: 20px;
    border-top: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-left: 1px solid #899582;
    border-right: 1px solid #899582;
    border-bottom: 1px solid #899582;
}
@media screen and (max-width: 767px) {
    .accordion-style .btn-link {
        padding: 15px 40px 15px 55px;
    }
}
@media screen and (max-width: 575px) {
    .accordion-style .btn-link {
        padding: 15px 20px 15px 55px;
    }
}
.card-style1 {
    box-shadow: 0px 0px 10px 0px #899582 / 9%;
}
.border-0 {
    border: 0!important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
  
    background-clip: border-box;
    border: 1px solid #899582;
    border-radius: 0.25rem;
}

section {
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}
.mb-2-3, .my-2-3 {
    margin-bottom: 2.3rem;
}

.text-primary {
    color: #ceaa4d !important;
    font-size: 28px;
}

.card-body{
  font-size: 20px;
}
h1{
  color:#899582;
  font-size: 55px;
  font-weight: bold;
  font-family: 'Abril Fatface', serif;
  text-align: center;
}
/* Services */

.feature-box-1 {
  padding: 32px;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  margin: 15px 0;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
  top: 0;
}
.feature-box-1 * {
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}
.feature-box-1 .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #C9DEC1;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 22px;
  font-size: 27px;
}
.feature-box-1 .icon i {
  line-height: 70px;
}
.feature-box-1 h5 {
  color: #3c6355;
  font-weight: 600;
}
.feature-box-1 p {
  margin: 0;
}
.feature-box-1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-radius: 10px;
  width: 0;
  background: #C9DEC1;
  z-index: -1;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}
.feature-box-1:hover {
  top: -5px;
}
.feature-box-1:hover h5 {
  color: #3c6355;
}
.feature-box-1:hover p {
  color: #3c6355;
}
.feature-box-1:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 0;
  right: auto;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-title {
    padding-bottom: 45px;
}
.section-title h2 {
    font-weight: 700;
    color: #20247b;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #C9DEC1;
    padding-left: 15px;
}

.cloud{
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.faq {
  background-image: url(''); /* Replace 'path/to/your/image.jpg' with the actual path to your image file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}

.carousel-item img {
  max-height: 300px; /* Pas deze waarde aan naar wens */
  object-fit: cover; /* Behoudt de aspect ratio en snijdt de afbeeldingen bij indien nodig */

}

.carousel-control-prev,
.carousel-control-next {
  margin-top: 120px;
  margin-left: 15px;
  margin-right: 15px;
  width: 50px;
        height: 50px;
    border-radius: 50%;
    background-color: #536a49;
}

.button-container {
  display: flex;
  justify-content: space-between;
  max-width: 800px; /* Optioneel: pas dit aan afhankelijk van de gewenste breedte */
  margin: 0 auto;
}

.button {
  background-color: #899582;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background-color: rgb(183, 161, 64);
}
.image-container {
  display: flex;
  justify-content: space-between;
  margin: 0 -10px; /* Compensate for the margin between images */
}
.image-container img {
  width: calc(33.33% - 13.33px); /* 33.33% for equal width of each image, 13.33px for margin */
  margin: 0 10px; /* 20px of margin between images */
}