
:root {
  --background-color: #FAF9F6;
  --text-color: #5b5b5b;
  --primary-accent-color: #e36d1b;
  --secondary-accent-color: #ffa31b;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--background-color);
}

.small-text {
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

.container {
  max-width: 1300px;
}

ul {
  font-family: "Segoe UI", Arial, sans-serif;
  list-style-type: square;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 2.8rem;
}

a {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: normal;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--text-color);
   !important;
}

.navbar-brand .uil {
  font-size: 40px;
}

p {
  font-size: 20px;
  font-weight: 350;
  line-height: 1.5;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  font-weight: 450;
}

h1 {
  color: var(--text-color);
  font-size: 2.8em;
  margin: 1.618rem 0;
}

h2 {
  color: var(--text-color);
  font-size: 2.4em;
  font-weight: 450;
  margin: 1rem 0;
}

h3 {
  color: var(--text-color);
}

.logo-img {
  left: -5rem;
  position: absolute;
  width: 12%;
}

.logo {
  margin: 0 auto;
  width: 50%;
}

.hero-box{
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 33rem;
}

.pf {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  will-change: transform;
  transition: transform 200ms linear;
}

.hover-underline {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  height: 50%;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      var(--primary-accent-color),
      var(--secondary-accent-color));
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -1px;
  transform-origin: left;
}

.hover-underline:hover::after {
  transform: scaleX(1);
}

.navbar[class*="headroom--not-top"] {
  background: var(--background-color);
  border-bottom: 1px solid var(--background-color);
  ;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding: 0 50px;
}

.nav-link {
  text-transform: lowercase;
  font-weight: 300;
  font-size: 1.618rem;
  overflow: hidden;
}

.nav-link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}

.nav-link span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}

.navbar-light .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .navbar-toggler-icon {
  background: #212121;
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transition: all 0.4s ease;
  position: relative;
}

.navbar-collapse {
  text-align: center;
  padding-bottom: 20px;
}


.padding-up {
  padding-top: 1.61rem;
}

.padding-down {
  padding-bottom: 1.61rem;
}

.slide-demo {
  width: 100%;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.slide-demo:hover {
  filter: blur(0px);
}

.mySlides {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.mySlides:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.mySlides img {
  width: 100%;
  min-width: 100%;
}

.slide-text {
  font-size: 0.6rem;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  max-width: 70%;
}

.w3-left, .w3-right, .w3-badge {
  cursor: pointer
}

.w3-badge {
  height: 13px;
  width: 13px;
  padding: 0
}

.content-toggle {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--background);
  cursor: pointer;
  padding: 18px;
  border: none;
  border-bottom: 1px solid #585D59;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}


.active, .content-toggle:hover {
  color: white;
  background-color: #555;
}

.content {
  border: none;
  border-bottom: 1px solid #585D59;
  margin-bottom: 1.618rem;
  padding: 1rem;
  display: none;
  overflow: hidden;
}

.more-about .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.more-about h2, .more-about p {
  color: #fff;
}

.card {
  position: relative;
  padding: 1.618rem;
  border: 0px;
  background-color: var(--background);
}

.more-about {
  position: relative;
  height: 600px;
  margin: 30px auto;
  background-color: var(--accent-color);
  overflow: hidden;
}

.more-about .img-box {
  position: relative;
  width: 50%;
  margin-left: 40%;
}

.more-about .img-box img {
  max-width: 100%;
  width: 50%;
  position: relative;
  z-index: 2;
}

img {
  vertical-align: middle;
  border-style: none;
  user-drag: none;
  /* werkt in WebKit browsers */
  -webkit-user-drag: none;
  /* Safari/Chrome */
  user-select: none;
  /* voorkomt selecteren van de afbeelding */
}

.top-section{
  padding-top: 9.708rem;
}

.dienst-item:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.dienst-item:hover::before {
  opacity: 1;
  /* laat border zien bij hover */
}

.footer{
  margin-top: 0;
  padding-top: 0;
  background-color: #1b2a57;
}

.footer p, .footer a{
  color: white !important;
  font-size: 1rem;
}

.footer img{
  width: 50%;
}


.footer .footer-wrapper{
  border-bottom: 1px solid #40454f;
  flex-direction: column;
  align-items: stretch;
  padding-top: 320px;
  padding-bottom: 0;
}

.contact{
  margin-bottom: -211px;
  z-index: 1;
  position: relative;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.dienst-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  padding: 1px;

  background: linear-gradient(270deg,
    var(--primary-accent-color),
    var(--secondary-accent-color));
  background-size: 800% 800%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  animation: gradientMove 6s ease infinite;
  opacity: 0;
  /* start onzichtbaar */
  transition: opacity 0.3s ease;
}

.dienst-item {
  position: relative;
  background-color: white;
  padding: 33px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  cursor: pointer;
  z-index: 0;
  min-height: 100%;
}

.dienst-item .price {
  position: absolute;
  bottom: 10px;
}

.dienst-item-wrapper {
  margin-bottom: 30px;
}

.dienst-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 30px;
}

.contact-form {
  position: relative;
}

.contact-form .form-control {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: lighter;
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  font-weight: bold;
  margin: 16px 0;
}

.contact-form .form-control:not(textarea) {
  height: 48px;
}

.about-img {
  max-width: 85%;
}

.contact-img{
  width: 100%;
}

.contact-info {
  background: #2857d1;
  border-radius: 0 0 3px 3px;
  position: relative;
  bottom: 8px;
}

.contact-info p, .contact-info a {
  color: #f7f3f3;
}

.social-links .uil {
  color: #f7f3f3;
  font-size: 20px;
  display: block;
  margin: 5px 0;
}

.social-links .uil:hover {
  color: #ffc200;
}

@media (min-width: 1270px) {
  .owl-theme .owl-dots {
    position: relative;
    bottom: 50px;
  }
}

  .mobile-carousel{
    display: none;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
  }

  .mobile-carousel .title-wrap {
    display: none;
  }

  .mobile-carousel .container {
   padding-top: 0;
   padding-bottom: 0;
 }

@media (max-width: 991px) {
  .mobile-carousel .title-wrap {
    display: block;
  }
  .carousel {
    display: none; /* de grote desktop carousel verbergen */
  }

  .mobile-carousel {
    overflow: hidden;
    display: block; /* zorgen dat de section zichtbaar is */
  }

  .arrow-left, .arrow-right{
    width: 2.8rem;

    top:50%;
    position: absolute;
    text-align: center;

    opacity: 0.3;
  }

  .arrow-left{
    left: -0.8rem;
      transform: scaleX(-1);
  }

  .arrow-right{
    right: -0.8rem;
  }

  .carousel-img{
    width: 100%;

  }


  .card {
    position: relative;
    padding: 0.6rem;
    border: 0px;
    background-color: var(--background);
  }

  .carousel-track {

    display: flex;
    transition: transform 0.3s ease;
    width: max-content; /* belangrijk, zodat items naast elkaar staan */
  }





  .carousel-item {
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.618rem;
    background-color: white;
    border-radius: 8px;
    margin-right: 2rem;
    display: block; /* zorgen dat het zichtbaar is */
  }

  .color-mode {
    display: none;
  }

  .about-image {
    margin-top: 4em;
  }

  .mobile-mt-2,
  .contact-form {
    margin-top: 2em;
  }

  .contact-info {
    padding: 0 2rem;
  }

  .padding-down {
  padding-bottom: 1.61rem;
}

.padding-up {
    padding-bottom: 1.61rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  .animated-item {
    font-size: 28px;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding: 3px 20px;
  }
}

@media (max-width: 580px) {
.faq{
  display: none;
}

  .animated-info {
    min-width: 200px;
  }

  .animated-item {
    font-size: 30px;
  }

  .custom-btn-group {
    text-align: center;
  }

  .custom-btn {
    display: block;
    margin: 10px 0;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .timeline-info small {
    display: block;
    margin: 10px 0 0 0;
  }
}

@media (max-width: 320px) {
  .animated-text {
    margin-top: 0;
  }

  .about-text {
    text-align: center;
  }

  .mobile-block {
    display: block;
  }

  .contact-info {
    flex-direction: column;
  }

  .social-links li {
    display: inline-block;
    vertical-align: top;
  }
}
