/* Block Styles */
.is-style-Normal span {
    mix-blend-mode: normal;
}
.is-style-Multiply span {
    mix-blend-mode: multiply;
}
.is-style-Screen span {
    mix-blend-mode: screen;
}
.is-style-Overlay span {
    mix-blend-mode: overlay;
}
.is-style-Darken span {
    mix-blend-mode: darken;
}
.is-style-Lighten span {
    mix-blend-mode: lighten;
}
.is-style-Color-Dodge span {
    mix-blend-mode: color-dodge;
}
.is-style-Color-Burn span {
    mix-blend-mode: color-burn;
}
.is-style-Hard-Light span {
    mix-blend-mode: hard-light;
}
.is-style-Soft-Light span {
    mix-blend-mode: soft-light;
}
.is-style-Difference span {
    mix-blend-mode: difference;
}
.is-style-Exclusion span {
    mix-blend-mode: exclusion;
}
.is-style-Hue span {
    mix-blend-mode: hue;
}
.is-style-Saturation span {
    mix-blend-mode: saturation;
}
.is-style-Color span {
    mix-blend-mode: color;
}
.is-style-Luminosity span {
    mix-blend-mode: luminosity;
}

.is-style-eq-height {
    gap: 30px !important;
    flex-wrap: nowrap !important;
    justify-content: center;
}

.is-style-eq-height figure.img_150 {
    max-width: 150px !important;
}
.is-style-eq-height figure.img_208 {
    max-width: 208px !important;
}
.is-style-eq-height figure.img_181 {
    max-width: 181px !important;
}


.is-style-border-double a {
    border-style: double;
    background: transparent none !important;
    border-width: 2px;
    padding-top: 0.667em;
    padding-right: 1.33em;
    padding-bottom: 0.667em;
    padding-left: 1.33em;
}

.is-style-border-double a.has-default-text-color {
    color: var(--wp--preset--color--default-text);
}
.is-style-border-double a.has-primary-text-color {
    color: var(--wp--preset--color--primary-text);
}
.is-style-border-double a.has-secondary-text-color {
    color: var(--wp--preset--color--secondary-text);
}
.is-style-border-double a.has-success-text-color {
    color: var(--wp--preset--color--success-text);
}
.is-style-border-double a.has-info-text-color {
    color: var(--wp--preset--color--info-text);
}
.is-style-border-double a.has-warning-text-color {
    color: var(--wp--preset--color--warning-text);
}
.is-style-border-double a.has-danger-text-color {
    color: var(--wp--preset--color--danger-text);
}
.is-style-border-double a.has-success-background-color {
    border-color: var(--wp--preset--color--success);
    background-color: transparent !important;
}
.is-style-border-double a.has-primary-background-color {
    border-color: var(--wp--preset--color--primary);
    background-color: transparent !important;
}
.is-style-border-double a.has-info-background-color {
    border-color: var(--wp--preset--color--info);
    background-color: transparent !important;
}
.is-style-border-double a.has-warning-background-color {
    border-color: var(--wp--preset--color--warning);
    background-color: transparent !important;
}
.is-style-border-double a.has-danger-background-color {
    border-color: var(--wp--preset--color--danger);
    background-color: transparent !important;
}


/* Slider */
.slider_container-contact {
    position: relative;
}
.slider_container-contact::before,
.slider_container-contact::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #8B9544 100%);
}
.slider_container-contact::after {
    right: 0;
    left: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #8B9544 100%);
}
.slider_container-contact::before {
    left: 0;
    right: auto;
}

.is-style-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 170px !important;
    scroll-snap-type: x mandatory;
    overflow-x: scroll; /* Zorg dat scrollen mogelijk is */
    scroll-behavior: smooth; /* Smooth scrolling */
  }
  
.is-style-slider figure {
    max-width: 145px;
    min-width: 145px;
    height: 145px;
    flex: 1 1 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.is-style-slider figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.slider_container-contact .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }
  
  .slider_container-contact .arrow.left {
    left: -10px;
  }
  
  .slider_container-contact .arrow.right {
    right: -10px;
  }