/*
Theme Name: WKI
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wki
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/



:root {
    --max-w: 1540px;
    --accent: #ffa000;
    --hover: #467bba;
    /* change if needed */
    --muted: #6b6b6b;
    --bg: #ffffff;
    --card-bg: #f8f9fb;
    --radius: 12px;
    --gap: 20px;
    --font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    color: #1b1b1b;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* header */
.site-header {
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    z-index: 80;
}

.container.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 0;
}

.logo {
    /* height: 44px; */
    display: block;
    max-width: 200px;
}

.main-nav {
    display: flex;
    gap: 45px;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 25px;
    line-height: 29px;
    color: #002e47;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--hover);
}

.main-nav a:hover {
    background: rgba(15, 107, 158, 0.06);
}

.main-nav>li {
    position: relative;
}

/* CHEVRON */
.main-nav i {
    font-size: 21px;
    transition: transform 0.3s ease;
    color: var(--accent);
}

/* SUBMENU */
.main-nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 100;
}

/* SUBMENU LINKS */
.main-nav li ul li a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    line-height: 25px;
    color: #002e47;
}

.main-nav li ul li a:hover {
    background: #f5f5f5;
    border-radius: 0;
}

/* SHOW DROPDOWN */
.main-nav li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ROTATE CHEVRON */
.main-nav li:hover>a i {
    transform: rotate(180deg);
}

.btn-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
}

.cta-row.center {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 40px);
}

.cta-row.center .btn.outline:hover {
    color: var(--hover);
    background: var(--bg);
    border: 2px solid var(--hover);
}

/* mobile */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 22px;
}

/* hero */
.hero {
    padding: 42px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 792px;
    gap: 110px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 8px;
    font-weight: 700;
}

.hero-text h1.hero-large {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 73px;
    line-height: 82px;
    font-weight: 700;
    color: rgb(0, 46, 71);
}

.hero-kicker {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 43px;
    line-height: 49px;
    font-weight: 700;
    color: rgb(255, 160, 0);
}

.cta-row {
    display: flex;
    gap: 12px;

    /*   margin-top: 30px; */
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.outline {
    background: var(--accent);
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 25px;
    line-height: 29px;
    color: #002e47;
    font-weight: 500;
}

.btn.outline:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
}

/* hero image */
.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.heading-sm {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 27px;
    line-height: 32px;
    font-weight: 700;
    color: rgb(0, 46, 71);
}

.hero-media .heading-sm {
    text-align: center;
}

i.fa-thin.fa-chevron-left.slick-arrow,
i.fa-thin.fa-chevron-right.slick-arrow {
    position: absolute;
    left: 0;
    top: 21px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
}

i.fa-thin.fa-chevron-right.slick-arrow {
    left: auto;
    right: 0;
}

.brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-item img {
    max-height: 61px;
    width: auto;
    border-radius: 0;
}

/* quick contact row */
.contact-quick {
    padding: 76px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    background: #f3ede6;
}

.contact-quick h2 {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 31px;
    line-height: 47px;
    font-weight: 400;
    color: rgb(0, 46, 71);
    margin: 0;
}

.hero-subtitle {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 56px;
    line-height: 70.2697722822px;
    font-weight: 700;
    color: rgb(255, 160, 0);
    margin: 15px 0 40px;
}

.hero-subtitle.color-2 {
    color: rgb(5, 120, 190);
}

.quick-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.quick-row .quick-col {
    filter: drop-shadow(0 0 6.5px rgba(0, 0, 0, 0.3));
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    padding-bottom: 50px;
    flex: 0 0 calc(50% - 12px);
}

.h1-42 {
    font-size: 42px;
    line-height: 39.9102813598px;
    color: rgb(5, 120, 190);
}

.h1-42.def {
    color: rgb(255, 160, 0);
}

.text-24 {
    font-size: 24px;
    line-height: 34px;
}

.text-20 {
    font-size: 20px;
    line-height: 31px;
}

button.btn-large,
a.btn-large {
    background: var(--hover);
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 28px;
    line-height: 29px;
    border: 0;
    color: #fff;
    font-weight: 500;
    min-width: 257px;
    cursor: pointer;
}

button.btn-large.color-2,
a.btn-large.color-2 {
    background: var(--accent);
}

button.btn-large:hover,
a.btn-large:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
}

.contact-data {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-weight: 500;
}

section.about-wki {
    background-color: #002e47;
    padding: 76px 0;
}

section.about-wki h2 {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 31px;
    line-height: 47px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin: 0;
}

section#why-wki {
    background-color: #fff;
    padding: 76px 0;
}

section#why-wki h2 {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 31px;
    line-height: 47px;
    font-weight: 400;
    color: #002e47;
    margin: 0;
}

.three-col-row {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
}

.three-col {
    text-align: center;
}

.row-col p {
    font-size: 26px;
    line-height: 38px;
    color: #ffffff;
    font-weight: 400;
}

.img-wrap {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    max-height: 118px;
    width: auto;
    max-width: 50%;
}

a.btn-inline {
    background: none;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 28px;
    line-height: 29px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    min-width: 250px;
    display: inline-block;
    text-align: center;
}

a.btn-inline:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
    border: 2px solid var(--hover);
}

.row-text {
    display: flex;
    gap: 100px;
}

.row-text img {
    border-radius: 16px;
}

section#articals {
    background-color: #f3ede6;
    padding: 76px 0;
}

section#articals h2 {
    font-family: "Roboto", Roboto, sans-serif;
    font-size: 31px;
    line-height: 47px;
    font-weight: 400;
    color: #002e47;
    margin: 0;
}

.cards.three-col {
    display: flex;
    align-items: center;
}

.cards.three-col img {
    max-width: 100%;
}

/* grid utilities */
.grid {
    display: grid;
    gap: var(--gap);
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.two-col {
    grid-template-columns: 1fr 420px;
}

.cards.three-col {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-bottom: 60px;
}

.card-text {
    text-align: left;
    padding: 30px 20px;
}

/* cards */
.card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    filter: drop-shadow(0 0 6.5px rgba(0, 0, 0, 0.3));
    background-color: #ffffff;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 22px);
}

.card p {
    font-size: 22px;
    line-height: 33px;
    color: #002e47;
}

.card .date {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 8px;
}

.card a {
    font-size: 20px;
    text-decoration: none;
    color: #002e47;
    font-weight: bold;
}

.card a:hover {
    color: var(--hover);
}

a.btn-inline.dark {
    background: none;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    border: 2px solid #002e47;
    min-width: 250px;
    display: inline-block;
    text-align: center;
    font-size: 27px;
    line-height: 32px;
    color: #002e47;
    font-weight: 400;
}

a.btn-inline.dark:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
    border: 2px solid var(--hover);
}

.card h3 {
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #002e47;
}

.card h3+p {
    margin-top: 8px;
}

/* testimonial / for-whom */
.testimonial blockquote {
    font-style: italic;
    color: var(--muted);
    margin: 8px 0 12px;
    padding-left: 12px;
    border-left: 3px solid rgba(0, 0, 0, 0.06);
}

/* articles */
.articles .article-list {
    align-items: start;
}

.article {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.slide-item-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
}

.slide-item-inner img {
    max-width: 100%;
    height: 350px;
}

.right-block {
    padding: 20px;
}

.right-block-2 {
    padding: 20px;
}

blockquote {
    font-size: 24px;
    line-height: 34px;
}

.left-block {
    min-width: 490px;
}

.left-block-2 {
    min-width: 100px;
}

.left-block-2 img {
    width: 200px;
    height: auto;
}



ul.slick-dots {
    display: flex;
    list-style: none;
    text-indent: -1000px;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    padding: 0;
}

ul.slick-dots li {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
}

ul.slick-dots li button {
    cursor: pointer;
    display: none;
}

ul.slick-dots li.slick-active {
    background: var(--accent);
}


.why-wki ul.slick-dots li {
    background: #0f6b9e;
}

.why-wki ul.slick-dots li.slick-active {
    background: rgb(255, 160, 0);
}

section.section-full-hero {
    min-height: 446px;
    background-image: url(/wp-content/themes/wki/images/20251107_WKI_MKT_shoot_0162.jpg);
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    display: flex;
    background-position: center;
    position: relative;
    background-size: cover;
}

section.section-full-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 110, 110, 0.7);
    /* background: rgba(131, 174, 211, 0.7); */
    z-index: 1;
}

section.section-full-hero h2 {
    position: relative;
    z-index: 2;
    font-size: 63px;
    line-height: 79px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    font-family: "Roboto";
    text-align: center;
    margin: 0;

    margin-top: -100px;
    /*  filter: drop-shadow(7.071px 7.071px 4.2519685039px rgba(0, 0, 0, 0.5)); */
}

.legal-links {
    font-size: 14px;
}

.legal-links a {
    font-size: 15px;
    line-height: 32px;
    color: #002e47;
    font-weight: 400;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.legal-links .separator {
    margin: 0 6px;
    color: #6b6b6b;
}

.article h4 {
    margin: 8px 0;
}

.article time {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

/* partners */
.partners {
    padding: 32px 0;
}

.partner-logos {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 48px;
    filter: grayscale(0.03);
    opacity: 0.9;
}

a.btn.btn-cta-large {
    background: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    padding: 16px 43px;
    border-radius: 20px;
    font-size: 25px;
    line-height: 29px;
    color: #fff;
    font-weight: 500;
}

a.btn.btn-cta-large:hover {
    color: var(--hover);
    background: var(--bg);
    border: 2px solid var(--hover);
}

.center-btn {
    text-align: center;
    margin: 82px 0 0;
}

/* footer */
.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin-top: 30px;
}

.site-footer img {
    display: block;
    max-width: 175px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 45% repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer-col h4 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 28px;
    color: #002e47;
    font-weight: 600;
}

.footer-col a {
    text-decoration: none;
    font-size: 18px;
    line-height: 22px;
    color: #002e47;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: var(--hover);
}

.footer-col p {
    font-size: 18px;
    line-height: 22px;
    color: #002e47;
    font-weight: 400;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #000;
    padding-top: 20px;
}

.copyright small {
    font-size: 15px;
    line-height: 32px;
    color: #002e47;
    font-weight: 400;
}

.social-icons {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 40px 0 20px 23px;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* makes it radial */
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icons li a:hover {
    background: #0f6b9e;
    /* brand color */
    color: #fff;
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 18px;
}

.social-icons a[href*=youtube]:hover {
    background: #ff0000;
}

.social-icons a[href*=linkedin]:hover {
    background: #0a66c2;
}

#header {
    display: none;
}

header {
    width: 100%;
    position: relative;
    transition: top 0.3s ease;
    /* Fixed header state */
}

header .header-row {
    transition: padding 0.35s ease;
}

header .logo {
    transition: max-width 0.35s ease;
}

header .main-nav a {
    transition: padding 0.35s ease, font-size 0.35s ease, background-color 0.3s ease, color 0.3s ease;
}

header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #f3eded;
    box-shadow: 0 5px 13px rgba(243, 237, 237, 0.9);
    animation: slideDown 0.35s ease-out;
}

header.fixed .header-row {
    padding: 3px 0;
}

header.fixed .logo {
    max-width: 165px;
}

header.fixed .main-nav a {
    padding: 11px 18px;
    font-size: 20px;
}

header.fixed .main-nav li ul li a {
    font-size: 16px;
    line-height: 20px;
}

/* Keyframes */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.mm-wrapper--position-left .mm-slideout,
.mm-wrapper--position-right .mm-slideout {
    transform: none;
}







/* AS */

.footer-nav ul,
.footer-col ul {
    list-style-type: none;
    padding-inline-start: 0px;
}

.menu-item-63 a {
    background-color: #ffa000;
}

.height-360 {
    height: 330px;
}



p.text-24 {
    font-size: 24px;
    line-height: 34px;
    color: rgb(0, 46, 71);
}

p.text-20 {
    font-size: 20px;
    line-height: 31px;
    color: rgb(0, 46, 71);
}

.hero-inner {
    align-items: unset;
}

.hero-media {
    margin-top: 10px;
}


.breadcrumbs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    color: rgb(0, 46, 71);
}

.breadcrumbs__sep {
    opacity: .6;
}

.breadcrumbs__link {
    text-decoration: none;
    color: rgb(0, 46, 71);
}

.breadcrumbs__current {}


.quick-row-fullsize {
    /*   display: flex; */
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.quick-row-fullsize .quick-col-fullsize {
    filter: drop-shadow(0 0 6.5px rgba(0, 0, 0, 0.3));
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    flex: 0 0 calc(50% - 12px);
}

.wpcf7-text,
select {
    height: 60px;
    padding: 10px 10px 10px 10px;
    font-size: 20px;
    color: #002e47;
    width: 80%;
    background-color: rgba(15, 107, 158, 0.06);
    border: 1px solid #0f6b9e;
    border-radius: 10px 10px 10px 10px;
    margin-top: 8px;
}

input[type="checkbox"] {
    height: 20px;
    font-size: 20px;
    color: #002e47;
    width: 20px;
    background-color: rgba(15, 107, 158, 0.06);
    border: 1px solid #0f6b9e;
    border-radius: 10px 10px 10px 10px;
    margin-top: 8px;
    margin-right: 10px;
}

.wpcf7-textarea {
    padding: 10px 10px 10px 10px;
    font-size: 20px;
    color: #002e47;
    width: 80%;
    background-color: rgba(15, 107, 158, 0.06);
    border: 1px solid #0f6b9e;
    border-radius: 10px 10px 10px 10px;
}

.wpcf7-form {
    font-size: 20px;
    color: #002e47;
}

.wpcf7-submit {
    background: var(--hover);
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 28px;
    line-height: 29px;
    border: 0;
    color: #fff;
    font-weight: 500;
    min-width: 257px;
    cursor: pointer;
}

.wpcf7-submit:hover {
    background: var(--accent);
}

.wpcf7-submit22:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
}



.hidden-fields-container {
    display: none;
}

.quick-row-fullsize a,
.hero-inner a {
    color: #0f6b9e;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    /* spacing */
}


.kolommen-grid {
    /*
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
*/

    column-count: 2;
    column-gap: 2rem;

    column-gap: 60px;
    row-gap: 24px;
    vertical-align: top;
    /*  text-align: justify; // uit */
    /* spacing */
}

.twee-kolommen {
    /*  grid-template-columns: repeat(2, 1fr); */
}


.kolommen-grid>.text-20 {
    /*
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
*/
    margin-top: 0px;
    margin-bottom: 30px;

}

.kolommen-grid a {
    color: #0f6b9e;
}

.artikelen a {
    background: var(--hover);
    text-decoration: none;
    padding: 11px 10px;
    border-radius: 15px;
    font-size: 18px;
    line-height: 22px;
    border: 0;
    color: #fff;
    font-weight: 500;
    min-width: 257px;
    cursor: pointer;
}

.artikelen a:hover {
    color: var(--hover);
    background: rgba(15, 107, 158, 0.06);
}

.hero-justify {
    /*  text-align: justify; // uit */
}

.contact-quick {
    padding: 36px 0;
}


.wki_video {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: auto;
}

.hero-media .noshade {
    box-shadow: none;
}

#cmplz-document {
    color: rgb(0, 46, 71);
}

#cmplz-document p {
    font-size: 20px;
    line-height: 31px;
    color: rgb(0, 46, 71);
}



#cmplz-document h2 {
    font-size: 26px;
    line-height: 31px;
    color: rgb(0, 46, 71);
}

#cmplz-document h2 {
    font-size: 22px;
    line-height: 31px;
    color: rgb(0, 46, 71);
}

#cmplz-document ul li {
    font-size: 20px;
    line-height: 31px;
    color: rgb(0, 46, 71);
}

.mm-menu ul li {
    list-style-type: none;
    list-style-image: none;
}

.mm-menu ul li a {
    height: 40px;
    display: block;
    padding: 10px 0px 10px 10px;
    list-style-type: none;
    list-style-image: none;
}

.no-border-radius {
    border-radius: 0;
}

.over-front {
    margin-top: 165px;
}

.btn-kennismaking {
    z-index: 10;
}

/* test */
.col-right-img img {
    max-width: 600px;
    width: 600px;
    float: right;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.imagebar-right {
    display: flex;
}

.kolom-links {
    width: 75%;
}

.kolom-rechts {
    width: 600px;
    max-width: 600px;
    flex: 1;
    margin-left: 20px;
}

.kolom-rechts-partners {
    width: 600px;
    max-width: 600px;
    margin-left: 20px;
}

.kolom-rechts img {
    max-width: 600px;
    width: 600px;
    float: right;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 120px;
}


.card {
    position: relative;
    transform: translateY(0) scale(1);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.card:focus-within {
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.no-font {
    font-size: 22px;
    line-height: 33px;
    color: #002e47;
    font-weight: normal;
}

.linkje {
    font-size: 20px;
    text-decoration: none;
    color: #002e47;
    font-weight: bold;
}

.card.no-blowup:hover,
.card.no-blowup:focus-within {
    transform: none !important;
    box-shadow: inherit;
}



/* responsive */
@media (max-width: 1560px) {
    .hero-inner {
        grid-template-columns: 1fr 50%;
        gap: 40px;
    }

    .hero-text h1.hero-large {
        font-size: 56px;
        line-height: 62px;
    }

    .hero-kicker {
        font-size: 32px;
        line-height: 41px;
    }

    .main-nav a {
        padding: 11px 10px;
        border-radius: 15px;
        font-size: 18px;
        line-height: 22px;
    }

    .container.header-row {
        padding: 15px 15px;
    }

    .hero-subtitle {
        font-size: 40px;
        line-height: 54px;
        margin: 0px 0 30px;
    }

    .contact-quick h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .h1-42 {
        font-size: 30px;
    }

    .text-24 {
        font-size: 20px;
        line-height: 26px;
    }

    .text-20 {
        font-size: 16px;
        line-height: 24px;
    }

    .btn.outline {
        padding: 8px 18px;
        border-radius: 15px;
        font-size: 20px;
        line-height: 29px;
    }

    button.btn-large {
        padding: 7px 18px;
        border-radius: 15px;
        font-size: 20px;
    }

    section#articals h2,
    section#why-wki h2,
    section.about-wki h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .row-col p {
        font-size: 20px;
        line-height: 32px;
    }

    a.btn-inline.dark,
    a.btn-inline {
        padding: 8px 18px;
        border-radius: 15px;
        font-size: 22px;
        line-height: 25px;
    }

    .cta-row.center {
        transform: translate(-50%, 50px);
    }

    .card .date {
        font-size: 16px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card p {
        font-size: 18px;
        line-height: 26px;
    }

    .card a {
        font-size: 16px;
    }

    blockquote {
        font-size: 20px;
        line-height: 28px;
    }

    a.btn.btn-cta-large {
        padding: 8px 18px;
        border-radius: 15px;
        font-size: 20px;
        line-height: 29px;
    }

    section.section-full-hero h2 {
        font-size: 46px;
        line-height: 60px;
    }

    .footer-col h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 16px;
        line-height: 20px;
    }

    .legal-links a,
    .copyright small {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 1260px) {
    .main-nav {
        gap: 12px;
    }

    .hero-inner {
        grid-template-columns: 1fr 44%;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .three-col {
        grid-template-columns: 1fr;
    }

    .quick-row .quick-col {

        min-height: 400px;
    }

    .kolom-links {
        width: 100%;
    }

    .kolom-rechts {
        display: none;
    }
}


@media (max-width: 1060px) {
    header.fixed .main-nav a {
        font-size: 16px;
    }

}

@media (max-width: 991px) {
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: normal;
        justify-content: center;
    }

    .hero-media img {
        max-width: 100%;
    }

    .hero-media {
        flex: 0 0 100%;
    }

    .main-nav {
        display: none;
    }

    a.close {
        display: none;
        right: 13px;
        position: relative;
    }

    .mm-wrapper--opened a.trigger {
        display: none;
    }

    .mm-wrapper--opened a.close {
        display: inline-block;
    }

    #header {
        position: relative;
        display: inline-block;
        z-index: 2;
    }

    #header a {
        font-size: 41px;
        color: var(--accent);
    }

    .mm-menu--theme-light {
        --mm-color-background: #002e47;
        --mm-color-border: #fff;
        --mm-color-icon: #fff;
        --mm-color-text: #fff;
        --mm-color-text-dimmed: #fff;
        --mm-color-background-highlight: var(--hover);
        --mm-color-background-emphasis: #fff;
        --mm-color-focusring: var(--accent);
        border-left: 8px solid #fff;
    }

    .mm-listitem__text {
        font-size: 20px;
    }

    .mm-menu a:hover {
        background-color: #ffa000;
    }

    .mm-listitem:after {
        left: 0;
        right: 0;
    }

    .footer-grid {
        grid-template-columns: 27% repeat(3, minmax(0, 1fr));
    }

    .slide-item-inner {
        flex-direction: column;
    }

    .slide-item-inner img {
        max-width: 42%;
        display: inline-block;
        height: auto;
    }

    .left-block {
        min-width: 490px;
        text-align: center;
        margin-top: 30px;
    }

    .row-text {
        display: flex;
        gap: 10px;
        flex-direction: column-reverse;
    }

    .copyright {
        display: flex;
        flex-direction: column;
    }

    header.fixed {
        position: sticky;
    }

    .kolommen-grid {
        column-count: 1;
        column-gap: 2rem;

        column-gap: 60px;
        row-gap: 24px;
        vertical-align: top;
        /*  text-align: justify; //uit */
        /* spacing */
    }







    .hero-text h1.hero-large {
        font-size: 36px;
        line-height: 38px;
    }

    .wpcf7-text,
    select {
        width: 93%;
    }

    .wpcf7-textarea {
        width: 93%;
    }

    .items-grid {
        display: block;
        grid-template-columns: unset;
        gap: 24px;

    }

    .card {
        margin-bottom: 20px;
    }


    .over-front {
        margin-top: 0px;
    }

    .slide-item-inner img {
        max-width: none;
        max-height: 400px;
    }

    .left-block {
        margin-top: 30px;
    }

    .kolom-rechts-partners {
        width: 96%;
        max-width: 96%;

        /* display: block; */
    }

    .imagebar-right {
        display: block;
    }

    .height-360 {
        height: auto;
    }

}

@media (max-width: 720px) {
    .contact-data {
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quick-row {
        flex-direction: column;
    }

    .three-col-row h2 {
        font-size: 20px !important;
    }

    .cards.three-col {
        display: flex;
        align-items: center;
        gap: 33px;
        margin-bottom: 60px;
        flex-direction: column;
    }

    section.section-full-hero h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .three-col-row {
        flex-direction: column;
    }

    .three-col {
        padding: 20px;
        margin-bottom: 20px;
        /* border: 2px solid #e7e2e2; */
    }

    .left-block {
        margin-top: 0px;
    }
}




/*# sourceMappingURL=style.css.map */