/* 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: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --second-color: #89367e;
    --color-purple-red: #a3195b;
    --heading-color: #2d465e;
    --color-ru-blue: #6aa84f;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #a3195b;
    /* 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: #212529;
    /* The default color of the main navmenu links */
    --nav-hover-color: #3690e7;
    /* 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: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #3690e7;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #89367e;
    --bs-btn-border-color: #89367e;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a3195b;
    --bs-btn-hover-border-color: #a3195b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #a3195b;
    --bs-btn-active-border-color: #89367e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #89367e;
    --bs-btn-disabled-border-color: #89367e;
}


/* 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: #f9f9f9;
    --surface-color: #ffffff;
    --default-color: #212529;
    --heading-color: #2d465e;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}

main {
    margin-top: 80px;
}


/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

.sticky-top {
    top: 90px;
    z-index: 1;
}

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
    top: 0px;
}

.index-page.scrolled .header {
    padding: 5px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 50px;
    margin-right: 8px;
    transition: all 0.5s;
}

.index-page.scrolled .header .logo img {
    max-height: 40px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    top: 0px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Navmenu - Desktop */

@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 a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        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;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .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;
    }
}


/* Navmenu - Mobile */

@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;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .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);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        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;
    }
}


/* NEWSLETTER */

.newsletter {
    color: white;
    background-color: transparent
}

.newsletter h5 {
    color: white;
}

.newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
    width: 600px;
    max-width: 100%;
}

.newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

.newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--accent-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.newsletter form input[type=submit]:active {
    border: none;
}

.newsletter form input[type=submit]:hover {
    background: var(--color-ru-redpurple);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: var(--second-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
    color: white;

}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, white, transparent 50%);
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 300px; 
  height: 300px;
  background-image: url('/img/huisicoon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: 0;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
    color: white;

}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
    color: white;

}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--header-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    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;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
    .footer .LogoCompany img {}
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    background-image: linear-gradient(61deg, rgba(85, 39, 95, 1) 10%, rgba(0, 163, 189, 0.5215336134453781) 50%, rgba(0, 163, 189, 0) 80%), url('../img/achtergrond4.jpg');
    background-size: cover;
    background-position: 50% 35%;
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
    color: white;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav 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 {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.knowledge .hero {
    min-height: auto;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background-image: linear-gradient(61deg, rgba(85, 39, 95, 1) 10%, rgba(0, 163, 189, 0.5215336134453781) 50%, rgba(0, 163, 189, 0) 80%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 5px 0 0 0;
    font-size: 20px;
}

.hero .search-form form,
.aanbod .search-form form {
    background: #fff;
    border: 1px solid rgba(34, 34, 34, 0.3);
    padding: 5px 10px;
    position: relative;
    border-radius: 50px;
}

.hero .search-form form input[type=text],
.aanbod .search-form form input[type=text] {
    border: 0;
    padding: 10px;
    border-radius: 50px;
    width: calc(100% - 60px);
}

.hero .search-form form input[type=text]:focus,
.aanbod .search-form form input[type=text]:focus {
    outline: none;
}

.hero .search-form form button,
.aanbod .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 25px;
    margin: -1px;
    background: var(--accent-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    line-height: 0;
}

.hero .search-form form button i,
.aanbod .search-form form button i {
    line-height: 0;
}

.hero .search-form form button:hover,
.aanbod .search-form form button:hover {
    background: rgba(0, 131, 116, 0.8);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    padding: 10px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
    border-radius: 7px;
    display: inline-block;
}

.about .content h2 {
    font-weight: 700;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

.about .icon-box {
    background-color: var(--surface-color);
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.about .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.about .icon-box p {
    margin-bottom: 0;
}

.about .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: -40px;
}

@media (max-width: 768px) {
    .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.blog-posts article:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-posts .post-img {
    height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
    object-fit: cover !important;
}

article .post-img img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts article:hover .title a {
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action .content {
    padding: 20px 0;
}

.call-to-action .content h3 {
    font-weight: 300;
    text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
    border: 2px solid var(--accent-color);
    background: var(--surface-color);
    border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
    height: 63px !important;
    color: var(--default-color);
}

.call-to-action .content .form-subscribe input[type=email]:focus {
    box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
    color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
    margin-top: 15px;
}

.call-to-action .content .btn {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
    box-shadow: none;
    outline: none;
    background-color: var(--contrast-color);
    border: 1px solid var(--contrrast-color);
}


/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/

.blog-posts-2 article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts-2 .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts-2 .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts-2 .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts-2 .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts-2 .title a:hover {
    color: var(--accent-color);
}

.blog-posts-2 .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts-2 .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts-2 .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/

.cards .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

.cards .why-box h3 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.cards .why-box p {
    margin-bottom: 30px;
}

.cards .why-box .more-btn {
    display: inline-block;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    padding: 8px 40px 10px 40px;
    color: var(--contrast-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
}

.cards .why-box .more-btn i {
    font-size: 14px;
}

.cards .why-box .more-btn:hover {
    color: var(--accent-color);
    background: var(--surface-color);
}

.cards .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards .icon-box i {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-size: 32px;
    margin-bottom: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: 0.3s;
}

.cards .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.cards .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards .icon-box:hover i {
    color: var(--contrast-color);
    background: var(--accent-color);
}


/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/

.get-a-quote .quote-bg {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.get-a-quote .php-email-form {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .get-a-quote .php-email-form {
        padding: 20px;
    }
}

.get-a-quote .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 20%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.starter-section {
    /* Add your styles here */
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/

.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.knowledgebase.blog-details .article {
    background-color: transparent;
    padding: 0px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.0);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}


/*--------------------------------------------------------------
# Blog Details 2 Section
--------------------------------------------------------------*/

.blog-details-2 {
    padding-bottom: 30px;
}

.blog-details-2 .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 100ch;
}

.blog-details-2 .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details-2 .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details-2 .content {
    margin-top: 20px;
}

.blog-details-2 .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details-2 .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details-2 .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details-2 .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details-2 .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details-2 .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details-2 .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details-2 .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-2 .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details-2 .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details-2 .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details-2 .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details-2 .meta-bottom .cats li {
    display: inline-block;
}

.blog-details-2 .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details-2 .meta-bottom .tags li {
    display: inline-block;
}

.blog-details-2 .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details-2 .meta-bottom .share {
    font-size: 16px;
}

.blog-details-2 .meta-bottom .share i {
    padding-left: 5px;
}

.section-bg {
    background-color: var(--second-color);
}

.section-bg h2 {
    color: white !important;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widgets-container {
    background-color: var(--surface-color);
    padding: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type=text] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type=text]:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
    cursor: pointer;
}

.recent-posts-widget .blogdescription {
    font-size: small;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item:hover h4 a {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/* Kenniscentrum */

.knowledge .swiper {
    overflow: unset;
}

.knowledge .icon-box {
    background-color: var(--surface-color);
    padding: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.knowledge .icon-box.active {
    background-color: var(--color-purple-red);
    color: white;
}

.knowledge .icon-box i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.knowledge .icon-box.active i {
    color: var(--color-purple-red);
    background-color: white;
}

.knowledge .icon-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    max-width: 70%;
    word-wrap: break-word;
}

.knowledge .icon-box.active h3 {
    color: white;
}

.knowledge .icon-box p {
    margin-bottom: 0;
}

.knowledge .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.knowledge .icon-boxes .col-md-6:nth-child(2) .icon-box,
.knowledge .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: -40px;
}


.knowledge .categories {
    width: 300px;
    margin-right: 15px;
    height: fit-content;
}

.knowledge .search-box {
    background-color: rgba(0, 0, 0, 0.536);
    padding: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    margin-top: 40px;
}

.knowledge .article-box {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

.knowledge .article-box:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.knowledge .article-box .thumbnail-box {
    margin-left: -30px;
    margin-top: -30px;
    margin-bottom:-30px;
    margin-right: 30px;
}


.knowledge .article-box .thumbnail-box  img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px  0px 0px 5px;
    width: 150px;
}



@media (max-width: 768px) {
    .knowledge .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .knowledge .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }

    .knowledge .article-box .thumbnail-box {
        margin-left: -30px;
        margin-top: -30px;
        margin-bottom: 30px;
        margin-right: -30px;
    }
    
    
    .knowledge .article-box .thumbnail-box  img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        object-position: center center;
        border-radius: 5px  5px 0px 0px;
    }

    .sidebar {
        margin-bottom: 40px;
    }
    
}




.knowledge .article-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    word-wrap: break-word;
    padding-bottom: 5px;
}

.knowledge .article-box:hover .d-flex span.category {
    background-color: var(--color-purple-red);
    color: white;
}

.knowledge .article-box .d-flex span.category {
    background-color: var(--accent-color);
    color: white;
}

.knowledge .article-box .d-flex span {
    padding: 8px 12px 8px 12px;
    border-radius: 50px;
    background-color: rgb(213, 213, 213);
    color: black;
    margin: 5px;
    transition: all 0.3s ease-out 0s;
}

.knowledge .article-box:hover .d-flex span {
    background-color: rgb(186, 186, 186);
}

.knowledge .article-box .d-flex span i {
    margin-right: 10px;
}

.knowledge .articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
    gap: 15px;
    height: fit-content;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-pagination {
    margin-top: 30px;
    color: #555555;
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 10px;
}

.blog-pagination li a {
    color: var(--default-color);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li.active,
.blog-pagination li:hover {
    background: var(--accent-color);
    color: #fff;
}

.blog-pagination li.active a,
.blog-pagination li:hover a {
    color: var(--color-white);
}


/* CHECKBOX */


/* The container */

.widget-item .container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.widget-item .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.widget-item .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}


/* On mouse-over, add a grey background color */

.widget-item .container:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.widget-item .container input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the checkmark/indicator (hidden when not checked) */

.widget-item .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.widget-item .container input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.widget-item .container .checkmark:after {
    left: 10px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.center-v {
    margin-top: auto;
    margin-bottom: auto;
}

.postlist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 0.33fr));
    gap: 15px;
    height: fit-content;
}

.btn.btn-thuisopderots {
    padding: 10px;
    background-color: var(--accent-color);
    border-radius: 5px;
    color: white;
    margin-bottom: 15px;
}

.btn.btn-thuisopderots:hover {
    background-color: #0d6efd;
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.list-pagination {
    margin-top: 30px;
    color: #555555;
}

.list-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-pagination li {
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 10px;
}

.list-pagination li a {
    color: var(--accent-color);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-pagination li.active,
.list-pagination li:hover {
    background: var(--accent-color);
    color: #fff;
}

.list-pagination li.active a,
.list-pagination li:hover a {
    color: var(--color-white);
}


/* CONTENT PAGE, KNOWLEDGEPAGE */

.content-page .container,
.knowledgebase .container.consmall {
    max-width: 95ch;
}

.content-page .container img,
.knowledgebase .container img {
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.content-page .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.knowledgebase .title {
    color: var(--heading-color);
    font-size: 35px;
    font-weight: 700;
    padding: 0;
    margin-top: 15px;
}

#videos>div>div {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 of the videos */
}

#videos>div>div>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.knowledgebase .category {
    padding: 10px 15px 10px 15px;
    border-radius: 20px;
    background-color: var(--accent-color);
    color: white;
    width: fit-content;
    font-size: medium;
    margin-bottom: 0px;
    cursor: pointer;
}

.knowledgebase .category.arrow {
    background-color: var(--heading-color) !important;
    margin-right: 5px;
}

.btn.bluebtn.btn-thuisopderots {
    background-color: var(--nav-hover-color);
    border-radius: 20px;
}


/* AANBOD */

.aanbod article, .postlist-home article {
    position: relative;
}

.aanbod .category, .postlist-home .category {
    padding: 10px 15px 10px 15px;
    border-radius: 20px;
    background-color: var(--accent-color);
    color: white;
    width: fit-content;
    position: absolute;
    top: 10px;
    left: 10px;
}

p.post-intro {
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar .widgets-container div.post-img {
    margin: -25px -25px 20px -25px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    height: 230px;
}

.sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--color-default);
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/

.events {
    position: relative;
    z-index: 1;
  }
  
  .events .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 30px;
  }
  
  .events .nav-tabs li {
    display: inline-block;
    margin-bottom: 0;
  }
  
  .events .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    padding: 10px 100px;
  }
  
  .events .button-row {
    text-align: right;
  }
  
  @media (max-width: 991px) {
    .events .nav-tabs a {
      padding: 8px 60px;
    }
  }
  
  @media (max-width: 767px) {
    .events .nav-tabs a {
      padding: 8px 50px;
    }
  }
  
  @media (max-width: 480px) {
    .events .nav-tabs a {
      padding: 8px 30px;
    }
  
    .events .tab-pane,
    .events .button-row {
      text-align: center !important;
    }
  }
  
  .events .nav-tabs a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .events .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
  }
  
  @media (min-width: 991px) {
    .events .sub-heading {
      width: 75%;
    }
  }
  
  .events .tab-pane {
    transition: ease-in-out 0.2s;
  }
  
  .events .schedule-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
  }
  
  .events .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
  }
  
  .events .schedule-item span.info {
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #ecf5ff;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    line-height: 3;
  }
  
  .events .schedule-item span.info i {
    margin-right: 5px;
    color: var(--nav-color)
  }
  
  
  .events .schedule-item span.info.button {
    background-color: var(--nav-color);
    color: white;
    cursor: pointer;
  }
  
  
  .events .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
  }
  
  .events .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
  }
  
  .events .schedule-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .events .schedule-item h4 span {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: normal;
    font-size: 16px;
  }
  
  .events .schedule-item p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
  }

  .newsletter {
    background-color: var(--second-color);
    color: white;
}

.knowledge .newsletter {
    background-color: black;
    border-bottom: 20px solid var(--accent-color);
}

.knowledge .newsletter form input[type=email] {
    border-color: var(--second-color);
    border-width: 5px;;
}
