/*
	Theme Name: Method Stories Theme
	Author: Bart Merkus
	Author URI: https://www.bartmerkus.nl/
	Description: A custom made WordPress theme for Method-stories.com.
	Version: 1.0
	License: GNU General Public License v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: method-stories-theme
*/
@font-face {
    font-family: "TT Commons";
    src: url("fonts/TT_Commons_Pro_Trial_Variable.ttf") format("truetype");
}
/*-------------------- VARIABLEN */
:root {
    --kleur-groen: #00ffa6;
    --kleur-licht-groen: #e3fff5;
    --kleur-wit: #fff;
    --kleur-grijs: #e1e7ec;
    --kleur-zwart: #000;
    --kleur-tekst-donker: #000;
    --kleur-tekst-grijs: #adadad;
    --kleur-tekst-licht: #fff;
    --primary-font: "TT Commons", sans-serif;
    --font-size-hero: 120px;
    --font-size-large: 48px;
    --font-size-big: 30px;
    --font-size-medium: 24px;
    --font-size-text: 18px;
    --line-height-hero: 110px;
    --line-height-large: 70px;
    --line-height-big: 48px;
    --line-height-medium: 38px;
    --line-height-medium-mobile: 32px;
    --line-height-text: 26px;
    --ti-cursor-color: #00ffa6;
}

.mobileNavSwitch {
    display: none !important;
}

.mobileNavMetaContainer {
    display: none !important;
}

.admin-bar .headerFullWidth {
    top: 32px;
}
.admin-bar .headerBarStickyClosed {
    top: -132px;
}

/*-------------------- ALGEMEEN */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: var(--kleur-tekst-donker);
    font-family: var(--primary-font);
    font-size: var(--font-size-text);
    line-height: var(--line-height-text);
    background-image: url("img/Delta_wolk_rgb_hero.png");
    background-size: auto;
    background-position: 300px -300px;
    background-repeat: no-repeat;
}

h1 {
    font-weight: 400;
    font-size: var(--font-size-large);
    line-height: var(--line-height-large);
    margin-bottom: 20px;
}

h2 {
    font-weight: 400;
    font-size: var(--font-size-large);
    line-height: var(--line-height-large);
    margin-bottom: 20px;
}

h3 {
    font-weight: 400;
    margin-bottom: 20px;
}

h4 {
    font-weight: 400;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}
p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--kleur-tekst-donker);
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

.fullWidthContainer {
    width: 100%;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.normalContainer {
    width: 100%;
    padding: 0 60px;
    max-width: 1440px;
}

.narrowContainer {
    width: 100%;
    padding: 0 60px;
    max-width: 1000px;
}

.kolomContainer {
    display: grid;
    grid-gap: 50px;
}

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

.kolom-2-3 {
    grid-template-columns: 2fr 3fr;
}

.kolom-3-1 {
    grid-template-columns: 3fr 1fr;
}

.button {
    position: relative;
    display: inline-block;
    border: none;
    background-color: transparent;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    font-size: 20px;
    line-height: 45px;
    text-decoration: none;
    padding: 0 20px;
}

.buttonArrowBlack {
    text-align: left;
    padding-right: 60px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlack::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    width: 20px;
    height: 16px;
    background-image: url("img/arrow-right-black.svg");
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlack:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlack:hover::after {
    right: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.buttonArrowBlackDown {
    text-align: left;
    padding-right: 60px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlackDown::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    width: 20px;
    height: 16px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-image: url("img/arrow-right-black.svg");
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlackDown:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.buttonArrowBlackDown:hover::after {
    top: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.buttonGreen {
    background-color: var(--kleur-groen);
    color: var(--kleur-tekst-donker);
}

.buttonTransparent {
    background-color: transparent;
    border: 2px solid var(--kleur-zwart);
    color: var(--kleur-tekst-donker);
}

.ajaxStoriesCount {
    display: none !important;
}

.textColorGreen {
    color: var(--kleur-groen);
}

.textColorGray {
    color: var(--kleur-tekst-grijs);
}

.headerFullWidth {
    position: fixed;
    height: 100px;
    top: 0;
    left: 0;
    padding: 20px 0;
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.headerFullWidth .headerContainer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.headerFullWidth .headerContainer .headerContainerLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.headerFullWidth .headerContainer .headerContainerLeft .navHomeLink {
    margin-right: 40px;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu li {
    padding-left: 20px;
    margin-right: 30px;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu li a {
    font-family: var(--primary-medium-font);
    text-transform: lowercase;
    text-decoration: none;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu li:last-child {
    margin-right: 0;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu .current-menu-item {
    position: relative;
    padding-left: 20px;
}
.headerFullWidth .headerContainer .headerContainerLeft .menu .current-menu-item::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--kleur-groen);
    border-radius: 5px;
}
.headerFullWidth .headerContainer .headerContainerRight .headerLogoText {
    font-size: var(--font-size-big);
    font-weight: 500;
    margin: 0;
    text-transform: lowercase;
}
.headerFullWidth .headerContainer .headerContainerRight .headerLogoText .headerLogoTextBold {
    font-weight: 700;
}

.headerBarStickyClosed {
    top: -100px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.headerBarSticky {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.heroFullWidth {
    position: relative;
    padding: 150px 0 100px 0;
    height: auto;
}
.heroFullWidth .heroContainer {
    height: 100%;
}
.heroFullWidth .heroContainer .heroContainerTop {
    padding-top: 50px;
    margin-bottom: 40px;
}
.heroFullWidth .heroContainer h2 {
    font-weight: 300;
    font-size: var(--font-size-hero);
    line-height: var(--line-height-hero);
    margin-bottom: 0;
}
.heroFullWidth .heroContainer p {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.heroFullWidth .heroContainer .heroContainerCenter {
    margin-bottom: 40px;
}

.homeHeroFullWidth {
    position: relative;
    padding: 150px 0 100px 0;
    height: auto;
}
.homeHeroFullWidth .homeHeroContainer {
    height: 100%;
}
.homeHeroFullWidth .homeHeroContainer .homeHeroContainerTop {
    padding-top: 50px;
    margin-bottom: 40px;
}
.homeHeroFullWidth .homeHeroContainer h2 {
    font-weight: 300;
    font-size: var(--font-size-hero);
    line-height: var(--line-height-hero);
    margin-bottom: 0;
}
.homeHeroFullWidth .homeHeroContainer p {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.homeHeroFullWidth .homeHeroContainer .homeHeroContainerCenter {
    margin-bottom: 40px;
}

.homeHeroTypewriterSlider {
    position: relative;
    min-height: 220px;
    opacity: 0;
}
.homeHeroTypewriterSlider .typewriterSlide {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    min-height: 220px;
    display: inline-block;
}
.homeHeroTypewriterSlider .typewriterSlide .ti-cursor {
    font-size: 80px;
    line-height: 80px;
    -webkit-transform: translateY(-14px) translateX(-10px);
    transform: translateY(-14px) translateX(-10px);
}
.homeHeroTypewriterSlider .typewriterSlideActive {
    opacity: 1;
}

.homeFullImage {
    padding: 0;
}
.homeFullImage .imageFullScreen {
    max-width: none;
    width: 100%;
}

.homeFullImageOverlayFullWidth {
    padding-top: 0;
    margin-top: -150px;
}
.homeFullImageOverlayFullWidth .normalContainer {
    padding: 100px;
    background-color: var(--kleur-wit);
    border-radius: 10px;
    border: 1px solid var(--kleur-grijs);
}
.homeFullImageOverlayFullWidth .normalContainer h2 {
    font-size: var(--font-size-large);
    line-height: var(--line-height-big);
    margin-bottom: 0;
}
.homeFullImageOverlayFullWidth .normalContainer .buttonHomeLearnMore {
    margin-top: 150px;
}
.homeFullImageOverlayFullWidth .normalContainer .homeFullImageOverlayContainerRight p {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
    font-weight: 400;
}

.methodSliderFullWidth {
    overflow: hidden;
}
.methodSliderFullWidth .methodSliderContainerTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-stage a {
    text-decoration: none;
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-stage .methodSliderItem img {
    max-width: none;
    width: 100%;
    margin-bottom: 20px;
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-stage .methodSliderItem h3 {
    font-size: var(--font-size-medium);
    margin-bottom: 10px;
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-stage .methodSliderItem p {
    color: var(--kleur-tekst-grijs);
}
.methodSliderFullWidth .methodSliderContainerBottom .owl-nav {
    display: none;
}

.discoverStoriesFullWidth {
    padding: 50px 0 100px 0;
}
.discoverStoriesFullWidth .discoverStoriesContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesContainerTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesContainerTop h2 {
    font-size: var();
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 2fr 4fr 3fr;
    width: 100%;
    margin-bottom: 40px;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop a,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom a {
    text-decoration: none;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemTop,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemTop {
    position: relative;
    margin-bottom: 20px;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemTop img,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemTop img {
    max-width: none;
    width: 100%;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer {
    position: absolute;
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer .storyGridLabel,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer .storyGridLabel {
    line-height: 30px;
    background-color: var(--kleur-groen);
    padding: 0 20px;
    border-radius: 15px;
    margin: 0 20px 20px 0;
    -ms-flex-item-align: baseline;
    align-self: baseline;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer .storyGridLabel:last-child,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemTop .discoverStoryItemCatLabelContainer .storyGridLabel:last-child {
    margin: 0;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItem .discoverStoryItemBottom h3,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItem .discoverStoryItemBottom h3 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItemTell,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItemTell {
    background-color: var(--kleur-licht-groen);
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItemTell .discoverStoryItemTellImage,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItemTell .discoverStoryItemTellImage {
    max-width: none;
    width: 100%;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop .discoverStoryItemTell .discoverStoryItemBottom,
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom .discoverStoryItemTell .discoverStoryItemBottom {
    padding: 20px;
}
.discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesLoadMoreContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.understandStoriesFullWidth {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background-size: cover;
    background-position: center bottom;
}
.understandStoriesFullWidth .understandStoriesOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
}
.understandStoriesFullWidth .understandStoriesContainer {
    position: relative;
    z-index: 2;
}
.understandStoriesFullWidth .understandStoriesContainer .underStandStoryTitleContainer h2 {
    color: var(--kleur-tekst-licht);
    line-height: var(--line-height-big);
}
.understandStoriesFullWidth .understandStoriesContainer .underStandStoryFoldOutContainer .understandStoryFoldOutItem button {
    color: var(--kleur-tekst-licht);
    background: transparent;
    border: 0;
    font-size: var(--font-size-medium);
    line-height: var(--line-height-medium);
    margin-bottom: 0;
    text-align: left;
}
.understandStoriesFullWidth .understandStoriesContainer .underStandStoryFoldOutContainer .understandStoryFoldOutContent {
    overflow: hidden;
    height: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.understandStoriesFullWidth .understandStoriesContainer .underStandStoryFoldOutContainer .understandStoryFoldOutContent p {
    color: var(--kleur-tekst-licht);
    padding-bottom: 0;
}

.heroCategoryFullWidth {
    padding-top: 150px;
}

.singleStoryHeroFullWidth .singleStoryHeroContainer {
    position: relative;
}
.singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 60px;
}
.singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer a {
    text-decoration: none;
}
.singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer .storyHeaderCatLabel {
    background-color: #efefef;
    font-size: var(--font-size-text);
    text-transform: lowercase;
    padding: 5px 20px;
    border-radius: 15px;
    margin-right: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer .storyHeaderCatLabel:hover {
    background-color: var(--kleur-licht-groen);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.interviewMediaFullWidth {
    padding: 0;
}
.interviewMediaFullWidth .normalContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}
.interviewMediaFullWidth .normalContainer .interviewMediaContainer {
    width: 800px;
    height: 80px;
    border-radius: 40px;
    background-color: var(--kleur-licht-groen);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.interviewMediaFullWidth .normalContainer .interviewMediaContainer .interViewMediaPlayer {
    width: 90%;
}
.interviewMediaFullWidth .normalContainer .interviewMediaContainer .interViewMediaPlayer::-webkit-media-controls-panel {
    background-color: var(--kleur-licht-groen);
}

.interviewMediaTextFullWidth .interviewMediaTextContainer .interviewMediaQuestions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--kleur-grijs);
    padding: 60px;
}
.interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}
.interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow:last-child {
    margin-bottom: 0;
}
.interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow .interviewQcolumn {
    padding-right: 100px;
}
.interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow .interviewQcolumn .interviewQuestion {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-medium);
}

.storyContentFullWidth {
    padding-bottom: 0;
}
.storyContentFullWidth:last-child {
    padding-bottom: 100px;
}
.storyContentFullWidth h2 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-big);
}

.heroEventsFullWidth {
    padding-top: 200px;
    padding-bottom: 0;
}
.heroEventsFullWidth .heroContainer h2 {
    font-size: var(--font-size-large);
    line-height: var(--line-height-large);
}
.heroEventsFullWidth .eventsListContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.heroEventsFullWidth .eventsListContainer a {
    text-decoration: none;
}
.heroEventsFullWidth .eventsListContainer a:hover > .eventItemContainer {
    background-color: rgba(0, 255, 166, 0.11);
    -webkit-transition: 1s;
    transition: 1s;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer {
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 20px 0;
    margin: 20px 0;
    border-radius: 10px;
    -webkit-transition: 1s;
    transition: 1s;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerLeft {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerRight {
    padding: 20px 60px;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerRight h3 {
    font-size: var(--font-size-big);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerRight .eventItemLabel {
    margin-left: 20px;
    background-color: var(--kleur-groen);
    padding: 3px 20px;
    font-size: var(--font-size-text);
    border-radius: 16px;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerRight .eventItemContainerInfo {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    margin-bottom: 10px;
}
.heroEventsFullWidth .eventsListContainer .eventItemContainer .eventItemContainerRight .eventItemContainerAddress {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    color: var(--kleur-tekst-grijs);
}

.eventListFullWidth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
}
.eventListFullWidth a {
    text-decoration: none;
    -webkit-transition: 1s;
    transition: 1s;
}
.eventListFullWidth a:hover > .eventItemContainerFull {
    background-color: rgba(0, 255, 166, 0.11);
    -webkit-transition: 1s;
    transition: 1s;
}
.eventListFullWidth .eventItemContainerFull {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.eventListFullWidth .eventItemContainer {
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 20px 60px;
    margin: 20px 0;
    border-radius: 10px;
    -webkit-transition: 1s;
    transition: 1s;
}
.eventListFullWidth .eventItemContainer .eventItemContainerLeft {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.eventListFullWidth .eventItemContainer .eventItemContainerRight {
    padding: 20px 60px;
}
.eventListFullWidth .eventItemContainer .eventItemContainerRight h3 {
    font-size: var(--font-size-big);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}
.eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemLabel {
    margin-left: 20px;
    background-color: var(--kleur-groen);
    padding: 3px 20px;
    font-size: var(--font-size-text);
    border-radius: 16px;
}
.eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemContainerInfo {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    margin-bottom: 10px;
}
.eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemContainerAddress {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    color: var(--kleur-tekst-grijs);
}

.communityFullWidth {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
}
.communityFullWidth .communityInnerContainer {
    width: 1920px;
    max-width: none;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-gap: 0;
    min-height: 100vh;
    min-height: 100svh;
    background-image: url("img/Delta_wolk_rgb_footer.png");
    background-size: 1000px auto;
    background-repeat: no-repeat;
    background-position: right 100px;
}
.communityFullWidth .communityContainerLeft {
    position: relative;
    height: 100%;
}
.communityFullWidth .communityContainerLeft .memberItemContainer {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(50px);
    transform: scale(0.3) translateY(50px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.communityFullWidth .communityContainerLeft .memberItemContainer1 {
    top: 100px;
    right: 10%;
    width: 300px;
    height: 300px;
}
.communityFullWidth .communityContainerLeft .memberItemContainer2 {
    top: 330px;
    right: 80%;
    width: 150px;
    height: 150px;
}
.communityFullWidth .communityContainerLeft .memberItemContainer3 {
    top: 550px;
    right: 50%;
    width: 250px;
    height: 250px;
}
.communityFullWidth .communityContainerCenter {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.communityFullWidth .communityContainerCenter h2,
.communityFullWidth .communityContainerCenter p {
    text-align: center;
}
.communityFullWidth .communityContainerCenter a {
    -ms-flex-item-align: center;
    align-self: center;
}
.communityFullWidth .communityContainerRight {
    position: relative;
    height: 100%;
}
.communityFullWidth .communityContainerRight .memberItemContainer {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: scale(0.3) translateY(50px);
    transform: scale(0.3) translateY(50px);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.communityFullWidth .communityContainerRight .memberItemContainer4 {
    top: 50px;
    left: 70%;
    width: 175px;
    height: 175px;
}
.communityFullWidth .communityContainerRight .memberItemContainer5 {
    top: 200px;
    left: 10%;
    width: 175px;
    height: 175px;
}
.communityFullWidth .communityContainerRight .memberItemContainer6 {
    top: 400px;
    left: 50%;
    width: 100px;
    height: 100px;
}
.communityFullWidth .communityContainerRight .memberItemContainer7 {
    top: 580px;
    left: 48%;
    width: 225px;
    height: 225px;
}
.communityFullWidth .communityHidden {
    display: none;
}

.fullScreenImageFullWidth {
    padding: 0;
}
.fullScreenImageFullWidth img {
    width: 100%;
    max-width: none;
}

.eventContentFullWidth {
    border-bottom: 1px solid #dddddd;
}
.eventContentFullWidth .narrowContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.eventContentFullWidth .narrowContainer .eventItemContainer {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    padding: 20px 0;
    margin: 20px 0 50px 0;
    border-radius: 10px;
    -webkit-transition: 1s;
    transition: 1s;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerLeft {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter {
    padding: 20px 60px;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter h3 {
    font-size: var(--font-size-medium);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter .eventItemLabel {
    margin-left: 20px;
    background-color: var(--kleur-groen);
    padding: 3px 20px;
    font-size: var(--font-size-text);
    border-radius: 16px;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter .eventItemContainerInfo {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    margin-bottom: 10px;
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter .eventItemContainerAddress {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-text);
    color: var(--kleur-tekst-grijs);
}
.eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.eventContentContainer p {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-medium);
}

.eventUpcommingFullWidth {
    padding-bottom: 0;
}

.eventListUpcommingFullWidth {
    padding-top: 0;
}
.eventListUpcommingFullWidth .eventItemContainer {
    max-width: 1000px;
}

.aboutHeroFullWidth {
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.aboutHeroFullWidth .heroContainer {
    padding-top: 50px;
    margin-bottom: 200px;
}
.aboutHeroFullWidth .heroContainer h2 {
    font-size: var(--font-size-large);
    line-height: var(--line-height-large);
    margin-bottom: 0;
}
.aboutHeroFullWidth .heroContainer h3 {
    font-size: var(--font-size-large);
    color: var(--kleur-tekst-grijs);
    line-height: var(--line-height-large);
    margin-bottom: 0;
}

.teamItemContainer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 50px;
    width: 100%;
}
.teamItemContainer .teamItemContainerLeft {
    min-width: 100px;
    width: auto;
    margin-right: 20px;
}
.teamItemContainer .teamItemContainerLeft img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
.teamItemContainer .teamItemContainerRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.teamItemContainer .teamItemContainerRight h3 {
    font-size: var(--font-size-big);
    margin-bottom: 10px;
}
.teamItemContainer .teamItemContainerRight .teamItemJob,
.teamItemContainer .teamItemContainerRight .teamItemRole {
    font-size: var(--font-size-medium);
    color: var(--kleur-tekst-grijs);
    margin-bottom: 0;
}
.teamItemContainer .teamItemContactContainer {
    position: absolute;
    right: 100px;
    top: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.teamItemContainer .teamItemContactContainer .teamContactIcon {
    width: auto;
    height: 18px;
    margin-right: 10px;
}
.teamItemContainer .teamItemContactContainer .teamContactIcon:last-child {
    margin-right: 0;
}

.toolsMethodsSingleContentFullWidth {
    padding-bottom: 0;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer {
    padding-top: 100px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmMainContentContainer {
    margin-bottom: 50px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmMainContentContainer h1 {
    margin-bottom: 0;
    line-height: var(--line-height-big);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmMainContentContainer h2 {
    font-size: var(--font-size-large);
    color: var(--kleur-tekst-grijs);
    line-height: var(--line-height-big);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmMainContentContainer p {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer1 {
    margin-bottom: 50px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer1 h3 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer2 {
    margin-bottom: 50px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer2 h3 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer3 {
    margin-bottom: 50px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmContentContainer3 h3 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e7ec;
    background-color: var(--kleur-wit);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn h4 {
    font-size: var(--font-size-big);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn ul {
    list-style-type: none;
    padding-left: 0;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn ul li a {
    text-decoration: none;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn ul li a:hover {
    text-decoration: underline;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 26px;
    background-image: url("img/icon-carot-left.svg");
    background-size: cover;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .personList li::before,
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .linkList li::before {
    top: 7px;
    left: -3px;
    width: 20px;
    height: 16px;
    background-image: url("img/icon-link.svg");
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .downloadList li::before {
    top: 3px;
    left: 0;
    width: 17px;
    height: 20px;
    background-image: url("img/icon-file.svg");
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .tmSideColumnImage img {
    width: 100%;
    max-width: none;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .tmSideColumnBenefits {
    margin: 40px 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e7ec;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .tmSideColumnLinks {
    margin: 40px 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e7ec;
}
.toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumn .tmSideColumnConnect {
    margin: 40px 20px;
}

.tmContentContainerNutshell {
    background-color: var(--kleur-licht-groen);
    padding: 50px;
    margin-bottom: 50px;
}
.tmContentContainerNutshell h3 {
    font-size: var(--font-size-big);
    line-height: var(--line-height-medium);
}
.tmContentContainerNutshell .nutshellList {
    list-style-type: none;
    padding-left: 0;
}
.tmContentContainerNutshell .nutshellList li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.tmContentContainerNutshell .nutshellList li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 26px;
    background-image: url("img/icon-carot-left.svg");
    background-size: cover;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footerFullWidth {
    padding: 100px 0 20px 0;
}
.footerFullWidth .footerContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footerFullWidth .footerContainer .footerContainerText {
    width: 400px;
    margin-right: 50px;
}
.footerFullWidth .footerContainer .footerContainerLogos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footerFullWidth .footerContainer .footerContainerLogos .footerLogoContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footerFullWidth .footerContainer .footerContainerLogos .footerLogo {
    margin-right: 40px;
}
.footerFullWidth .footerContainer .footerContainerLogos .footerLogo:last-child {
    margin-right: 0;
}

.tellYourStoryFullWidth {
    padding-top: 150px;
}
.tellYourStoryFullWidth .tellYourStoryContainer {
    background-color: var(--kleur-wit);
    padding: 60px;
    border: 1px solid var(--kleur-grijs);
    border-radius: 10px;
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-before-form-content {
    display: none;
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field-label label {
    text-align: left;
    font-weight: 400;
    color: var(--kleur-tekst-grijs);
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field-element input {
    font-family: var(--primary-font);
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--kleur-grijs);
    padding: 10px 20px;
    font-size: var(--font-size-text);
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-field-element textarea {
    font-family: var(--primary-font);
    border-radius: 10px;
    border: 1px solid var(--kleur-grijs);
    padding: 10px 20px;
    font-size: var(--font-size-text);
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.tellYourStoryFullWidth .tellYourStoryContainer .nf-form-content nf-fields-wrap nf-field .submit-container .nf-field .nf-field-element input {
    height: 50px;
    border-radius: 25px;
    line-height: 30px;
    border: 0;
}

@media (max-width: 1440px) {
    body {
        background-position: 0px -180px;
        background-size: 100%;
    }
    .normalContainer {
        padding: 0 20px;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer1 {
        top: 100px;
        right: 10%;
        width: 250px;
        height: 250px;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer2 {
        top: 370px;
        right: 52%;
        width: 150px;
        height: 150px;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer3 {
        top: 550px;
        right: 20%;
        width: 200px;
        height: 200px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer4 {
        top: 50px;
        left: 40%;
        width: 150px;
        height: 150px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer5 {
        top: 220px;
        left: 10%;
        width: 150px;
        height: 150px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer6 {
        top: 400px;
        left: 50%;
        width: 100px;
        height: 100px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer7 {
        top: 560px;
        left: 35%;
        width: 200px;
        height: 200px;
    }
    .footerFullWidth .footerContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .homeFullImageOverlayContainer {
        padding: 50px !important;
        width: 90%;
    }
    .eventListFullWidth .eventItemContainer {
        padding: 20px;
    }
    .teamItemContainer .teamItemContactContainer {
        right: 0;
    }
    .singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer {
        padding: 0 20px;
    }
    .tmContentContainerNutshell {
        margin: 0 20px 40px 20px;
    }
}
@media (max-width: 1000px) {
    body {
        background-position: 220px -180px;
    }
    .headerFullWidth .headerContainer {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .headerFullWidth .headerContainer .headerStoryButton {
        position: relative;
        right: 0;
    }
    .homeHeroFullWidth {
        background-position: top left;
    }
    .homeHeroFullWidth .homeHeroContainer h1 {
        font-size: 120px;
        line-height: 100px;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridTop {
        grid-template-columns: 1fr 1fr;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridTop *:nth-child(3n) {
        grid-column: 1/-1;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridTop *:nth-child(3n) img {
        max-height: 300px;
        -o-object-fit: fill;
        object-fit: fill;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridBottom {
        grid-template-columns: 1fr 1fr;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridBottom *:nth-child(3n) {
        grid-column: 1/-1;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridBottom *:nth-child(3n) img {
        max-height: 300px;
        -o-object-fit: fill;
        object-fit: fill;
    }
    .understandStoriesOverlay {
        background-color: rgba(0, 0, 0, 0.6) !important;
    }
    .kolom-2-3 {
        grid-template-columns: 1fr;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer1 {
        top: 150px;
        right: 10%;
        width: 140px;
        height: 140px;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer2 {
        top: 340px;
        right: 32%;
        width: 110px;
        height: 110px;
    }
    .communityFullWidth .communityContainerLeft .memberItemContainer3 {
        top: 530px;
        right: 20%;
        width: 120px;
        height: 120px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer4 {
        top: 180px;
        left: 50%;
        width: 100px;
        height: 100px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer5 {
        top: 310px;
        left: 10%;
        width: 100px;
        height: 100px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer6 {
        top: 420px;
        left: 50%;
        width: 60px;
        height: 60px;
    }
    .communityFullWidth .communityContainerRight .memberItemContainer7 {
        top: 510px;
        left: 35%;
        width: 120px;
        height: 120px;
    }
    .headerFullWidth .headerContainer .headerContainerLeft .navHomeLink {
        margin-right: 20px;
    }
    .headerFullWidth .headerContainer .headerContainerLeft .menu li {
        padding-left: 0;
        margin-right: 20px;
    }
    .headerFullWidth .headerContainer .headerContainerRight .headerLogoText {
        font-size: var(--font-size-medium);
    }
    .homeHeroFullWidth {
        padding: 50px 0;
    }
    .homeHeroFullWidth .homeHeroContainer h2 {
        font-size: var(--font-size-large);
        line-height: var(--line-height-big);
    }
    .homeHeroFullWidth .homeHeroContainer p {
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium-mobile);
    }
    .homeHeroFullWidth .homeHeroTypewriterSlider {
        min-height: 120px;
    }
    .homeHeroFullWidth .homeHeroTypewriterSlider .typewriterSlide .ti-cursor {
        font-size: 48px;
        line-height: 48px;
        -webkit-transform: translateY(-6px) translateX(0px);
        transform: translateY(-6px) translateX(0px);
    }
    .homeFullImageOverlayFullWidth .normalContainer {
        width: 96%;
    }
    .homeFullImageOverlayFullWidth .normalContainer .homeFullImageOverlayContainerRight p {
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium-mobile);
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridBottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .footerFullWidth .footerContainer .footerContainerText {
        margin-right: 30px;
    }
    .heroFullWidth {
        padding: 50px 0;
    }
    .heroFullWidth .heroContainer h2 {
        font-size: var(--font-size-large);
        line-height: var(--line-height-big);
    }
    .heroFullWidth .heroContainer p {
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium-mobile);
    }
    .understandStoriesFullWidth .understandStoriesContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemContainerInfo {
        font-size: var(--font-size-text);
        margin-bottom: 0;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemContainerAddress {
        font-size: var(--font-size-text);
    }
    .aboutHeroFullWidth .heroContainer h3 {
        line-height: var(--line-height-big);
    }
    .teamContainerBottom {
        grid-gap: 20px;
    }
    .teamContainerBottom .teamItemContainer .teamItemContainerRight h3 {
        font-size: var(--font-size-medium);
    }
    .teamContainerBottom .teamItemContainer .teamItemContainerRight {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .teamContainerBottom .teamItemContainer .teamItemContainerRight .teamItemJob,
    .teamContainerBottom .teamItemContainer .teamItemContainerRight .teamItemRole {
        font-size: var(--font-size-text);
    }
    .teamContainerBottom .teamItemContainer .teamItemContainerRight .teamItemContactContainer {
        position: relative;
    }
    .singleStoryHeroFullWidth {
        padding: 100px 0 50px 0;
    }
    .interviewMediaTextFullWidth {
        padding-bottom: 0;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewMediaQuestions {
        padding: 40px;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow .interviewQcolumn {
        padding-right: 40px;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewQaRow .interviewQcolumn .interviewQuestion {
        line-height: var(--line-height-medium-mobile);
    }
    .storyContentFullWidth {
        padding-top: 50px;
    }
    .storyContentFullWidth h2 {
        line-height: var(--line-height-medium);
    }
    .eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter {
        padding: 20px;
    }
    .eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter .eventItemContainerInfo {
        font-size: var(--font-size-text);
        margin-bottom: 0;
    }
    .eventContentFullWidth .narrowContainer .eventItemContainer .eventItemContainerCenter .eventItemContainerAddress {
        font-size: var(--font-size-text);
    }
    .toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmMainContentContainer p {
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium-mobile);
    }
    .toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer {
        padding-top: 0;
    }
    .toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .kolom-3-1 {
        grid-template-columns: 1fr;
    }
    .toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumnImage {
        height: 300px;
    }
    .toolsMethodsSingleContentFullWidth .toolsMethodsSingleContentContainer .tmSideColumnImage img {
        max-height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .heroEventsFullWidth {
        padding-top: 100px;
    }
    .eventListFullWidth {
        padding-bottom: 0;
    }
    .eventListFullWidth .eventItemContainer {
        margin: 0 !important;
    }
}
@media (max-width: 700px) {
    body {
        background-position: 100px -70px;
    }
    .mobileNavSwitch {
        display: block !important;
        position: absolute;
        top: 10px;
        right: 20px;
        width: 40px;
        height: 40px;
        border: 0;
        background-color: transparent;
        z-index: 9999;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavSwitch .mobileNavBar {
        position: absolute;
        right: 0;
        background-color: var(--kleur-zwart);
        width: 30px;
        height: 3px;
        border-radius: 1px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavSwitch .mobileNavBar1 {
        top: 16px;
    }
    .mobileNavSwitch .mobileNavBar2 {
        top: 24px;
    }
    .mobileNavSwitch:hover .mobileNavBar1 {
        width: 26px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavSwitch:hover .mobileNavBar2 {
        width: 22px !important;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavSwitchOpen .mobileNavBar1 {
        top: 20px;
        width: 22px !important;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavSwitchOpen .mobileNavBar2 {
        top: 20px;
        width: 22px !important;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobileNavMetaContainer {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 100%;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .mobileNavMetaContainer .footerContainerLogos {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .mobileNavMetaContainer .footerContainerLogos .footerLogoContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .mobileNavMetaContainer .footerContainerLogos .footerLogo {
        margin-right: 40px;
    }
    .mobileNavMetaContainer .footerContainerLogos .footerLogo:last-child {
        margin-right: 0;
    }
    h2 {
        font-size: var(--font-size-big);
        line-height: var(--line-height-big);
    }
    .kolom-1-1 {
        grid-template-columns: 1fr;
    }
    .headerFullWidth {
        position: relative;
        height: 60px;
    }
    .headerFullWidth .headerContainerLeft {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--kleur-wit);
        padding: 100px 20px 180px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        z-index: 999;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .headerFullWidth .headerContainerLeft .navHomeLink {
        font-size: var(--font-size-medium);
        margin-bottom: 20px;
        text-decoration: none;
    }
    .headerFullWidth .headerContainerLeft .navHomeLink img {
        margin-right: 10px;
    }
    .headerFullWidth .headerContainerLeft .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .headerFullWidth .headerContainerLeft .menu li {
        margin-bottom: 20px;
    }
    .headerFullWidth .headerContainerLeft .menu li a {
        font-size: var(--font-size-medium);
    }
    .headerFullWidth .headerContainerRight {
        position: relative;
        z-index: 9999;
    }
    .headerFullWidth .mobileNavOpen {
        left: 0 !important;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .homeHeroFullWidth {
        background-position: top center;
        padding: 50px 0;
    }
    .homeHeroFullWidth .homeHeroContainer h1 {
        font-size: var(--font-size-large);
        line-height: 60px;
    }
    .buttonHomeLearnMore {
        margin-top: 50px !important;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesContainerTop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesContainerTop .buttonDiscoverStories {
        padding-left: 0;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGrid .discoverStoryGridBottom {
        display: grid;
        grid-template-columns: 1fr !important;
    }
    .communityFullWidth .communityInnerContainer {
        grid-template-columns: 1fr;
    }
    .communityFullWidth .communityInnerContainer .communityContainerLeft {
        height: 300px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerLeft .memberItemContainer1 {
        top: 20px;
        left: 10%;
        width: 100px;
        height: 100px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerLeft .memberItemContainer2 {
        top: 70px;
        right: 5%;
        width: 140px;
        height: 140px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerLeft .memberItemContainer3 {
        top: 160px;
        left: 15%;
        width: 120px;
        height: 120px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerCenter {
        padding: 60px 20px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerRight {
        height: 300px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerRight .memberItemContainer4 {
        top: 10px;
        left: 10%;
        width: 100px;
        height: 100px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerRight .memberItemContainer5 {
        top: 50px;
        left: auto;
        right: 5%;
        width: 150px;
        height: 150px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerRight .memberItemContainer6 {
        top: 130px;
        left: 5%;
        width: 140px;
        height: 140px;
    }
    .communityFullWidth .communityInnerContainer .communityContainerRight .memberItemContainer7 {
        top: 210px;
        left: auto;
        right: 10%;
        width: 90px;
        height: 90px;
    }
    .footerFullWidth {
        margin-top: 40px;
    }
    .footerFullWidth .footerContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footerFullWidth .footerContainer .footerContainerText {
        width: auto;
        margin: 0 0 20px 0;
    }
    .homeFullImageOverlayFullWidth {
        margin-top: -20px;
        padding-bottom: 0;
    }
    .homeFullImageOverlayFullWidth .normalContainer {
        width: 90%;
        padding: 20px !important;
    }
    .methodSliderFullWidth .methodSliderContainerTop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .methodSliderFullWidth .methodSliderContainerTop .buttonArrowBlack {
        padding-left: 0;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoriesContainerTop .buttonArrowBlack {
        padding-left: 0;
    }
    .discoverStoriesFullWidth .discoverStoriesContainer .discoverStoryGridTop {
        grid-template-columns: 1fr !important;
        grid-template-areas: none;
    }
    .aboutHeroFullWidth .heroContainer {
        margin-bottom: 50px;
    }
    .tmContentContainerNutshell {
        margin: 0;
        padding: 30px;
        margin-bottom: 40px;
    }
    .eventListFullWidth .eventItemContainer {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px !important;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerLeft {
        width: 100%;
        height: 250px;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerRight {
        padding: 20px 20px 20px 0 !important;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerRight h3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .eventListFullWidth .eventItemContainer .eventItemContainerRight .eventItemLabel {
        margin-left: 0 !important;
        margin: 10px 0 0 0;
    }
    .eventContentFullWidth .eventItemContainer {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .eventContentFullWidth .eventItemContainer .eventItemContainerLeft {
        width: 100%;
        height: 250px;
    }
    .eventContentFullWidth .eventItemContainer .eventItemContainerRight {
        padding: 20px !important;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .eventContentFullWidth .eventItemContainer .eventItemContainerRight h3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .eventContentFullWidth .eventItemContainer .eventItemContainerRight .eventItemLabel {
        margin-left: 0 !important;
        margin: 10px 0 0 0;
    }
    .singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        top: -60px;
    }
    .singleStoryHeroFullWidth .singleStoryHeroContainer .singleStoryHeaderCatContainer a {
        display: block;
        margin-bottom: 10px;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewMediaQuestions {
        padding: 20px;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewMediaQuestions .interviewQaRow {
        grid-template-columns: 1fr;
    }
    .interviewMediaTextFullWidth .interviewMediaTextContainer .interviewMediaQuestions .interviewQaRow .interviewQcolumn {
        margin-bottom: 20px;
    }
}
