/**
* Template Name: Kelly
* Template URL: https://bootstrapmade.com/kelly-free-bootstrap-cv-resume-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* 🌙 Dark Mode Styles */
.dark-mode .form-select {
  background-color: #303030;
  color: #e0e0e0;
  border: 1px solid #555;
}
.dark-mode .inlog-header {
  color: var(--bs-info-text-emphasis);
}
a.btn-danger {
  color: #fff !important;
}

.dark-mode a.btn-danger {
  background-color: #dc3545 !important; /* Bootstrap rood */
  color: #fff !important;
  border-color: #dc3545 !important;
}

.dark-mode a.btn-danger:hover {
  background-color: #bb2d3b !important; /* Iets donkerder rood */
  border-color: #b02a37 !important;
}
/* Zorg dat de knop in dark mode mooi blauw is */
.dark-mode a.btn-primary,
.dark-mode button.btn-primary,
.dark-mode .checkout-btn,
.dark-mode .custom-btn {
  background-color: #007bff !important; /* Bootstrap primary blauw */
  color: #fff !important;
  border-color: #007bff !important;
}

/* Hover gedrag */
.dark-mode a.btn-primary:hover,
.dark-mode button.btn-primary:hover,
.dark-mode .checkout-btn:hover,
.dark-mode .custom-btn:hover {
  background-color: #0069d9 !important;
  border-color: #0062cc !important;
}

:root.dark-mode {
  --background-color: #121212;
  --surface-color: #1e1e1e;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --accent-color: #007bff;
  --contrast-color: #ffffff;
  --nav-color: #e0e0e0;
  --nav-hover-color: #90caf9;
  --nav-mobile-background-color: #1e1e1e;
  --nav-dropdown-background-color: #1e1e1e;
  --nav-dropdown-color: #e0e0e0;
  --nav-dropdown-hover-color: #90caf9;
}
@media (max-width: 768px) {
  #product-overview .container {
    display: flex !important;
    flex-direction: column !important; /* NIET reverse */
    gap: 20px;
  }

  #product-overview img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
  }
}
/* Body achtergrond en tekstkleur aanpassen */
body.dark-mode {
  background-color: var(--background-color);
  color: var(--default-color);
}
/* preloader */ 
.dark-mode #preloader {
  background-color: #121212;
}

.dark-mode input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px #303030 inset !important;
		-webkit-text-fill-color: white;
}

/* Nav en header */
.dark-mode .header {
  background-color: #1e1e1e;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}
.dark-mode .header .logo img {
    filter: drop-shadow(1px 1px 0px #ffffff) 
    drop-shadow(1px 0px 1px #ffffff)
    drop-shadow(0px 1px 0px #ffffff)
    drop-shadow(0px 2px 0px #ffffff)
}


.dark-mode .header .logo h1 {
  color: var(--contrast-color);
}

/* Links */
.dark-mode a {
  color: var(--accent-color);
}

.dark-mode a:hover {
  color: var(--nav-hover-color);
}

/* Footer */
.dark-mode #footer {
  background-color: #101820;
  color: #e0e0e0;
}
/* 📌 **Cards & Containers** */
.dark-mode .card {
  background-color: #303030;
  color: var(--card-text-color);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
}

.dark-mode .card-body {
  background-color: var(--card-background);
  color: var(--card-text-color);
}

.dark-mode .card-title {
  color: var(--heading-color);
}

.dark-mode .card-text {
  color: red; 
  font-size: 25px
}
.dark-mode #services .box {
    background: #303030;
    color: #e0e0e0; /* Tekstkleur aanpassen voor leesbaarheid */
   
}
.dark-mode #cart-dropdown {
    background: #303030; /* Donkere achtergrond */
    color: #e0e0e0; /* Tekstkleur aanpassen voor leesbaarheid */
    border: 1px solid #444; /* Subtiele rand in Dark Mode */
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* Zachtere schaduw */
}

/* Optioneel: Links en knoppen in het dropdown-menu */
.dark-mode #cart-dropdown a {
    color: #90caf9; /* Lichte blauwe kleur voor links */
}

.dark-mode #cart-dropdown a:hover {
    color: #ffffff; /* Oplichten bij hover */
}

/* Optioneel: Maak de overgangen vloeiender */
.dark-mode #cart-dropdown {
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* Navigatie dropdown */
.dark-mode .navmenu .dropdown ul {
  background-color: var(--nav-dropdown-background-color);
  color: var(--nav-dropdown-color);
}

.dark-mode .navmenu .dropdown ul a {
  color: var(--nav-dropdown-color);
}

.dark-mode .navmenu .dropdown ul a:hover {
  color: var(--nav-dropdown-hover-color);
}

/* Hero sectie */
.dark-mode .hero h2, 
.dark-mode .hero p {
  color: var(--contrast-color);
}

/* Knoppen */
.dark-mode .list-group-item {
    background-color: #303030; /* Donkere achtergrond */
    color: #e0e0e0; /* Lichtgrijze tekstkleur */
    border-color: #444; /* Donkere rand voor een subtiele afscheiding */
}

/* Zorg ervoor dat de afgeronde hoeken ook in Dark Mode correct blijven */
.dark-mode .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.dark-mode .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.dark-mode .form-control {
    background-color: #303030; /* Donkere achtergrond */
    color: #e0e0e0; /* Lichtgrijze tekstkleur */
    border: 1px solid #555; /* Subtiele donkere rand */
}

/* Placeholder-kleur aanpassen voor betere leesbaarheid */
.dark-mode .form-control::placeholder {
    color: #a0a0a0;
}

/* Optioneel: Focus-styling voor beter contrast */
.dark-mode .form-control:focus {
    background-color: #3a3a3a; /* Iets lichtere achtergrond bij focus */
    border-color: #90caf9; /* Blauwe rand bij focus */
    box-shadow: 0 0 5px rgba(144, 202, 249, 0.5); /* Zachte gloed */
    color: #ffffff;
}
.dark-mode .form-check-input {
    background-color: #303030; /* Donkere achtergrond */
    border: 1px solid #555; /* Subtiele donkere rand */
}

.dark-mode .form-check-input:checked {
    background-color: #90caf9; /* Lichtblauwe achtergrond als aangevinkt */
    border-color: #90caf9; /* Blauwe rand als aangevinkt */
}

/* Optioneel: Stijl voor hover-effect */
.dark-mode .form-check-input:hover {
    border-color: #90caf9;
}

/* Optioneel: Focus-styling voor betere zichtbaarheid */
.dark-mode .form-check-input:focus {
    box-shadow: 0 0 5px rgba(144, 202, 249, 0.5);
}

/* Kaarten & content-boxes */
.dark-mode .services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
}

.dark-mode .portfolio .portfolio-item .portfolio-info {
  background-color: var(--surface-color);
}

/* Scroll top button */
.dark-mode .scroll-top {
  background-color: var(--accent-color);
}

.dark-mode .scroll-top:hover {
  background-color: var(--nav-hover-color);
}

/* Contact formulier */
.dark-mode .contact .php-email-form {
  background-color: var(--surface-color);
}

.dark-mode .contact .php-email-form input,
.dark-mode .contact .php-email-form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border-color: var(--default-color);
}
.dark-mode .section-bg {
    background: #1e1e1e; /* Donkere achtergrondkleur */
}

.dark-mode .contact .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.dark-mode .modal {
    --bs-modal-bg: #303030; /* Donkere achtergrondkleur */
    --bs-modal-color: #e0e0e0; /* Lichtgrijze tekstkleur */
    --bs-modal-border-color: #555; /* Subtiele donkere rand */
    --bs-modal-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1); /* Zachtere schaduw */
}

.dark-mode .modal-content {
    background-color: var(--bs-modal-bg);
    color: var(--bs-modal-color);
    border: 1px solid var(--bs-modal-border-color);
    box-shadow: var(--bs-modal-box-shadow);
}

/* 📌 Optioneel: Modal header aanpassen */
.dark-mode .modal-header {
    background-color: #2a2a2a; /* Iets donkerdere header */
    border-bottom: 1px solid #555;
    color: #ffffff;
}

/* 📌 Optioneel: Modal body */
.dark-mode .modal-body {
    background-color: var(--bs-modal-bg);
    color: var(--bs-modal-color);
}

/* 📌 Optioneel: Modal footer aanpassen */
.dark-mode .modal-footer {
    background-color: #2a2a2a;
    border-top: 1px solid #555;
}

/* 📌 Knoppen in de modal */
.dark-mode .modal-footer .btn {
    background-color: #007bff; /* Blauwe knop */
    color: #ffffff;
}

.dark-mode .modal-footer .btn:hover {
    background-color: #0056b3; /* Donkerdere blauwe hover */
}

/* 📌 Sluitknop aanpassen */
.dark-mode .modal-header .btn-close {
    filter: invert(1); /* Maakt de sluitknop wit in dark mode */
}

.dark-mode .reviewblok {
  background-color: #303030;
  color: #e0e0e0;
  border-color: #474747;
}
/* Knop stijling */
button[type="submit"] {
  color: #ffffff; /* Tekstkleur */
  background-color: green; /* Achtergrondkleur */
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all .15s;
  font-size: 15px;
  margin-left: auto; /* Zorgt ervoor dat de knop naar rechts verschuift */
  flex: 1 1 auto;
	margin-bottom: 5px;
}

button[type="submit"]:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Feedback berichten stijling */
.loading,
.error-message,
.sent-message {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Tekst kopjes */
h5 {
  color: #007BFF;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.reviewblok {
  flex: 1;
  max-width: 300px;
  border: 1px solid #ddd; 
  border-radius: 8px; 
  padding: 20px; 
  background-color: rgb(255, 255, 255);
}

body.succes {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body.succes #content {
    flex: 1;
}

body.succes #content {
	padding-bottom: 20px;
}

body.succes #footer {
    background-color: #004080; /* Aanpassen naar je gewenste kleur */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.cart-header {
  display: flex;
  justify-content: space-between;
}

.cart-items {
  padding-left: 0;
}

.is-hidden {
  display: none;
}
.announcement-bar {
  background: #004080; /* Aanpassen naar je gewenste kleur */
  color: white;
  padding: 5px 0; /* Verminder de padding voor een kleinere balk */
  text-align: center;
  font-size: 14px; /* Pas de tekstgrootte aan indien nodig */
  display: flex;
  justify-content: center;
  align-items: center; /* Zorg ervoor dat de tekst precies in het midden staat */
}

.custom-btn {
	color: #ffffff; /* Tekstkleur */
  background-color: #004a99; /* Achtergrondkleur */
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all .15s;
  font-size: 15px;
  margin-left: auto; /* Zorgt ervoor dat de knop naar rechts verschuift */
  flex: 1 1 auto;
	margin-bottom: 5px;
}

.custom-btn.activeBtn {
  background-color: #177be5!important;
}

.a .checkout-btn {
	color: #ffffff; /* Tekstkleur */
  background-color: #004a99; /* Achtergrondkleur */
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  margin-left: auto; /* Zorgt ervoor dat de knop naar rechts verschuift */
  flex: 1 1 auto;
	width: 100%;
}


.custom-btn:hover {
  color: #ffffff; /* Tekstkleur */
    background-color: #03448a; /* Achtergrondkleur */
}

.custom-btn:focus {
 color: #ffffff; /* Tekstkleur */
    background-color: #004a99; /* Achtergrondkleur */
}


#cart-dropdown {
    position: absolute;
    right: 10px;
    top: 50px;
    width: 300px; /* Zorg voor een vaste breedte */
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 9999;
    display: none; /* Verborgen standaard */
    max-height: 400px; /* Voeg een maximale hoogte toe */
    overflow-y: auto; /* Zorg ervoor dat scrollen mogelijk is */
    padding: 15px;
}

#cart-dropdown:not(.is-hidden) {
    display: block; /* Toon de dropdown als de class wordt verwijderd */
}

.cart-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-total {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}
/* Animatie */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.map-container {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}


/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2352df; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #2352df; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2352df; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #e9e8e6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap; /* Zorg ervoor dat alles op één regel blijft */
}

.header .logo {
  line-height: 1;
  flex: 0 0 auto; /* Zorgt ervoor dat het logo geen extra ruimte inneemt */
  order: 1; /* Logo komt altijd eerst */
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .custom-btn {
  margin-left: auto; /* Zet de knop naar rechts op desktops */
  	color: #ffffff; /* Tekstkleur */
    background-color: #004a99; /* Achtergrondkleur */
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  flex: 0 0 auto; /* Zorgt ervoor dat de knop geen extra ruimte inneemt */
  order: 3; /* Winkelmandknop komt als laatste op desktops */
}

.header .custom-btn:hover {
  	color: #ffffff; /* Tekstkleur */
    background-color: #004a99; /* Achtergrondkleur */
}

.header .custom-btn:focus {
  outline: none;
  box-shadow: 0 0 5px var(--accent-color);
}

.header .navmenu {
  flex: 1 1 auto; /* Navigatie neemt zoveel mogelijk resterende ruimte in */
  display: flex;
  justify-content: center; /* Navigatie gecentreerd op desktops */
  order: 2; /* Navigatie komt na het logo en vóór de knop */
}

@media (max-width: 1200px) {
  .header {
    flex-wrap: wrap; /* Meerdere regels toestaan */
    align-items: center;
  }

  .header .logo {
    order: 1;
    flex: 1 1 auto; /* Logo neemt volledige breedte op kleinere apparaten */
    text-align: left;
  }

  .header .custom-btn {
    order: 3; /* Knop komt direct na de navigatie */
    flex: 0 0 auto; /* Knop behoudt zijn afmetingen */
    margin: 0 auto; /* Centreer de knop */
    text-align: center;
  }

  .header .navmenu {
    order: 2;
    flex: 1 1 auto; /* Navigatie neemt resterende ruimte in */
    justify-content: center; /* Navigatie gecentreerd op mobiel */
  }
}

@media (max-width: 768px) {
  .header {
    flex-wrap: wrap; /* Zorgt ervoor dat alles in meerdere regels past */
    justify-content: space-between; /* Zorgt dat elementen verdeeld worden */
  }

  .header .logo {
    order: 1;
    flex: 1 1 auto;
    text-align: left;
  }

  .header .custom-btn {
    order: 2; /* Knop komt dicht bij het menu */
    flex: 0 0 auto;
    margin: 0;
    text-align: center;
  }

  .header .navmenu {
    order: 3;
    flex: 1 1 100%; /* Navigatie neemt volledige breedte */
    justify-content: center;
  }

  .header .navmenu ul {
    flex-direction: column; /* Zorgt ervoor dat menu-items onder elkaar komen te staan */
  }

  .header .navmenu ul li {
    margin-bottom: 10px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #00428a;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer a {
	
	color: #ffff;
}

#footer .footer-top {
  background: #004a99;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 15px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  display: flex; /* Flexbox voor Handige Links en Colofon */
  justify-content: space-between; /* Ruimte tussen de links */
}

#footer .footer-top .footer-links > div {
  flex: 1; /* Zorg dat beide kolommen dezelfde breedte hebben */
  margin-right: 20px; /* Ruimte tussen de kolommen */
}

#footer .footer-top .footer-links > div:last-child {
  margin-right: 0; /* Verwijder marge voor de laatste kolom */
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 2px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #ccc;
  font-size: 13px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
  text-decoration: none;
}

#footer .credits a:hover {
  color: #f1f7ff;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  display: block;
  visibility: visible;
  opacity: 1;
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 82px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
	color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Zwarte schaduw */

}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Zwarte schaduw */
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
  grid-gap: 20px; /* Ruimte tussen de blokken */
  max-width: 60%; /* Maximale breedte van de container */
  margin: 0 auto; /* Centreert de container */
  padding: 20px; /* Voegt ruimte toe binnen de container */
}

.grid-item {
  display: flex; /* Activeer Flexbox voor betere uitlijning */
  flex-direction: column; /* Stapel de inhoud verticaal */
  justify-content: center; /* Centreert inhoud verticaal */
  align-items: center; /* Centreert inhoud horizontaal */
  padding: 15px; /* Minder padding voor compactere blokken */
  border-radius: 5px; /* Afgeronde hoeken */
  text-align: center; /* Voor eventuele tekst in de grid-item */
}

.grid-item img {
  max-width: 50%; /* Zorgt dat de afbeelding niet groter wordt dan de container */
  height: auto; /* Houdt de verhoudingen intact */
  display: block; /* Zorgt voor consistente weergave */
  margin: 0 auto; /* Centreert de afbeelding horizontaal */
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Eén kolom op kleine schermen */
    max-width: 100%; /* Volledige breedte op mobiele apparaten */
  }

  .grid-item {
    padding: 10px; /* Minder padding op kleine schermen */
  }
}


/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: 20px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  color:#6e7b89;
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

.section-bg {
    background: #ecf5ff;
}
#carouselTelefoon img {
  max-width: 200px; /* Beperk de grootte van de telefoonafbeeldingen */
  margin: 0 auto; /* Centreer de afbeeldingen */
}

#carouselVragen img {
  max-width: 400px; /* Grotere vragenafbeeldingen */
  margin: 0 auto; /* Centreer de afbeeldingen */
}



/* Specifieke styling voor organisator-slide */
.organisator .grid-item img {
  max-width: 80%; /* Grotere afbeelding voor organisator */
}

.organisator .grid-item {
  flex: 1.5; /* Tekst en ruimte van organisator groter maken */
}

.deelnemer .grid-item img {
  max-width: 40%; /* Kleinere afbeelding voor deelnemer */
}

.deelnemer .grid-item {
  flex: 1; /* Standaard grootte */
}
@media (max-width: 768px) {
  .carousel-item .row {
    flex-direction: column !important;
  }
  .carousel-item img {
    margin-bottom: 15px;
  }
  .carousel-item h4,
  .carousel-item p {
    text-align: center;
  }
}